cluster_recovery_points
Creates, updates, deletes, gets or lists a cluster_recovery_points
resource.
Overview
Name | cluster_recovery_points |
Type | Resource |
Id | azure.recovery_services_site_recovery.cluster_recovery_points |
Fields
- vw_cluster_recovery_points
- cluster_recovery_points
Name | Datatype | Description |
---|---|---|
id | text | The recovery point Id. |
name | text | The name of the recovery point. |
fabricName | text | field from the properties object |
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 |
replicationProtectionClusterName | 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 | The resource type. |
Name | Datatype | Description |
---|---|---|
id | string | The recovery point Id. |
name | string | The name of the recovery point. |
properties | object | Cluster recovery point properties. |
type | string | The resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | fabricName, protectionContainerName, recoveryPointName, replicationProtectionClusterName, resourceGroupName, resourceName, subscriptionId | Get the details of specified recovery point. |
list_by_replication_protection_cluster | SELECT | fabricName, protectionContainerName, replicationProtectionClusterName, resourceGroupName, resourceName, subscriptionId | The list of cluster recovery points. |
SELECT
examples
The list of cluster recovery points.
- vw_cluster_recovery_points
- cluster_recovery_points
SELECT
id,
name,
fabricName,
protectionContainerName,
provider_specific_details,
recoveryPointName,
recovery_point_time,
recovery_point_type,
replicationProtectionClusterName,
resourceGroupName,
resourceName,
subscriptionId,
type
FROM azure.recovery_services_site_recovery.vw_cluster_recovery_points
WHERE fabricName = '{{ fabricName }}'
AND protectionContainerName = '{{ protectionContainerName }}'
AND replicationProtectionClusterName = '{{ replicationProtectionClusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.recovery_services_site_recovery.cluster_recovery_points
WHERE fabricName = '{{ fabricName }}'
AND protectionContainerName = '{{ protectionContainerName }}'
AND replicationProtectionClusterName = '{{ replicationProtectionClusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';