replication_protectable_items
Creates, updates, deletes, gets or lists a replication_protectable_items
resource.
Overview
Name | replication_protectable_items |
Type | Resource |
Id | azure.recovery_services_site_recovery.replication_protectable_items |
Fields
- vw_replication_protectable_items
- replication_protectable_items
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource Name |
custom_details | text | field from the properties object |
fabricName | text | field from the properties object |
friendly_name | text | field from the properties object |
location | text | Resource Location |
protectableItemName | text | field from the properties object |
protectionContainerName | text | field from the properties object |
protection_readiness_errors | text | field from the properties object |
protection_status | text | field from the properties object |
recovery_services_provider_id | text | field from the properties object |
replication_protected_item_id | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
subscriptionId | text | field from the properties object |
supported_replication_providers | text | field from the properties object |
type | text | Resource Type |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource Name |
location | string | Resource Location |
properties | object | Replication protected item custom data details. |
type | string | Resource Type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | fabricName, protectableItemName, protectionContainerName, resourceGroupName, resourceName, subscriptionId | The operation to get the details of a protectable item. |
list_by_replication_protection_containers | SELECT | fabricName, protectionContainerName, resourceGroupName, resourceName, subscriptionId | Lists the protectable items in a protection container. |
SELECT
examples
Lists the protectable items in a protection container.
- vw_replication_protectable_items
- replication_protectable_items
SELECT
id,
name,
custom_details,
fabricName,
friendly_name,
location,
protectableItemName,
protectionContainerName,
protection_readiness_errors,
protection_status,
recovery_services_provider_id,
replication_protected_item_id,
resourceGroupName,
resourceName,
subscriptionId,
supported_replication_providers,
type
FROM azure.recovery_services_site_recovery.vw_replication_protectable_items
WHERE fabricName = '{{ fabricName }}'
AND protectionContainerName = '{{ protectionContainerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.recovery_services_site_recovery.replication_protectable_items
WHERE fabricName = '{{ fabricName }}'
AND protectionContainerName = '{{ protectionContainerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';