Skip to main content

target_compute_sizes

Creates, updates, deletes, gets or lists a target_compute_sizes resource.

Overview

Nametarget_compute_sizes
TypeResource
Idazure.recovery_services_site_recovery.target_compute_sizes

Fields

NameDatatypeDescription
idstringThe Id.
namestringThe name.
propertiesobjectRepresents applicable recovery vm sizes properties.
typestringThe Type of the object.

Methods

NameAccessible byRequired ParamsDescription
list_by_replication_protected_itemsSELECTfabricName, protectionContainerName, replicatedProtectedItemName, resourceGroupName, resourceName, subscriptionIdLists 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 }}';