recovery_points
Creates, updates, deletes, gets or lists a recovery_points
resource.
Overview
Name | recovery_points |
Type | Resource |
Id | azure.recovery_services_site_recovery.recovery_points |
Fields
- vw_recovery_points
- recovery_points
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource Name |
fabricName | text | field from the properties object |
location | text | Resource Location |
protectionContainerName | text | field from the properties object |
provider_specific_details | text | field from the properties object |
recoveryPointName | text | field from the properties object |
recovery_point_time | text | field from the properties object |
recovery_point_type | text | field from the properties object |
replicatedProtectedItemName | 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 |
type | text | Resource Type |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource Name |
location | string | Resource Location |
properties | object | Recovery point properties. |
type | string | Resource Type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | fabricName, protectionContainerName, recoveryPointName, replicatedProtectedItemName, resourceGroupName, resourceName, subscriptionId | Get the details of specified recovery point. |
list_by_replication_protected_items | SELECT | fabricName, protectionContainerName, replicatedProtectedItemName, resourceGroupName, resourceName, subscriptionId | Lists the available recovery points for a replication protected item. |
SELECT
examples
Lists the available recovery points for a replication protected item.
- vw_recovery_points
- recovery_points
SELECT
id,
name,
fabricName,
location,
protectionContainerName,
provider_specific_details,
recoveryPointName,
recovery_point_time,
recovery_point_type,
replicatedProtectedItemName,
resourceGroupName,
resourceName,
subscriptionId,
type
FROM azure.recovery_services_site_recovery.vw_recovery_points
WHERE fabricName = '{{ fabricName }}'
AND protectionContainerName = '{{ protectionContainerName }}'
AND replicatedProtectedItemName = '{{ replicatedProtectedItemName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.recovery_services_site_recovery.recovery_points
WHERE fabricName = '{{ fabricName }}'
AND protectionContainerName = '{{ protectionContainerName }}'
AND replicatedProtectedItemName = '{{ replicatedProtectedItemName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';