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

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring (arm-id)The recovery point Id.
namestringThe name of the recovery point.
propertiesobjectThe recovery point properties.
typestringThe resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceName, resourceGroupName, subscriptionId, fabricName, protectionContainerName, replicationProtectionClusterName, recoveryPointNameapi-versionGet the details of specified recovery point.
list_by_replication_protection_clusterselectresourceName, resourceGroupName, subscriptionId, fabricName, protectionContainerName, replicationProtectionClusterNameapi-versionThe list of cluster recovery points.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
fabricNamestringFabric name.
protectionContainerNamestringProtection container name.
recoveryPointNamestringThe recovery point name.
replicationProtectionClusterNamestringReplication protection cluster name.
resourceGroupNamestringThe name of the resource group where the recovery services vault is present.
resourceNamestringThe name of the recovery services vault.
subscriptionIdstringThe subscription Id.
api-versionstringClient Api Version.

SELECT examples

Get the details of specified recovery point.

SELECT
id,
name,
properties,
type
FROM azure.recovery_services_site_recovery.cluster_recovery_points
WHERE resourceName = '{{ resourceName }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND fabricName = '{{ fabricName }}' -- required
AND protectionContainerName = '{{ protectionContainerName }}' -- required
AND replicationProtectionClusterName = '{{ replicationProtectionClusterName }}' -- required
AND recoveryPointName = '{{ recoveryPointName }}' -- required
AND api-version = '{{ api-version }}'
;