target_compute_sizes
Creates, updates, deletes, gets or lists a target_compute_sizes
resource.
Overview
Name | target_compute_sizes |
Type | Resource |
Id | azure.recovery_services_site_recovery.target_compute_sizes |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The Id. |
name | string | The name. |
properties | object | Represents applicable recovery vm sizes properties. |
type | string | The Type of the object. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_replication_protected_items | SELECT | fabricName, protectionContainerName, replicatedProtectedItemName, resourceGroupName, resourceName, subscriptionId | Lists the available target compute sizes for a replication protected item. |
SELECT
examples
Lists the available target compute sizes for a replication protected item.
SELECT
id,
name,
properties,
type
FROM azure.recovery_services_site_recovery.target_compute_sizes
WHERE fabricName = '{{ fabricName }}'
AND protectionContainerName = '{{ protectionContainerName }}'
AND replicatedProtectedItemName = '{{ replicatedProtectedItemName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';