Skip to main content

cluster_recovery_points

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

Overview

Namecluster_recovery_points
TypeResource
Idazure.recovery_services_site_recovery.cluster_recovery_points

Fields

NameDatatypeDescription
idtextThe recovery point Id.
nametextThe name of the recovery point.
fabricNametextfield from the properties object
protectionContainerNametextfield from the properties object
provider_specific_detailstextfield from the properties object
recoveryPointNametextfield from the properties object
recovery_point_timetextfield from the properties object
recovery_point_typetextfield from the properties object
replicationProtectionClusterNametextfield from the properties object
resourceGroupNametextfield from the properties object
resourceNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe resource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTfabricName, protectionContainerName, recoveryPointName, replicationProtectionClusterName, resourceGroupName, resourceName, subscriptionIdGet the details of specified recovery point.
list_by_replication_protection_clusterSELECTfabricName, protectionContainerName, replicationProtectionClusterName, resourceGroupName, resourceName, subscriptionIdThe list of cluster recovery points.

SELECT examples

The list of 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 }}';