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
idstringThe recovery point Id.
namestringThe recovery point name.
providerSpecificDetailsobjectThe provider specific details for the recovery point.
recoveryPointTimestring (date-time)The recovery point time.
recoveryPointTypestringThe recovery point type. Known values are: "NotSpecified", "ApplicationConsistent", and "CrashConsistent". (NotSpecified, ApplicationConsistent, CrashConsistent)
typestringThe resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_replication_protection_clusterselectresource_group_name, resource_name, fabric_name, protection_container_name, replication_protection_cluster_name, subscription_idGets the list of cluster recovery points. The 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
fabric_namestringFabric name. Required.
protection_container_namestringProtection container name. Required.
replication_protection_cluster_namestringReplication protection cluster name. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
resource_namestringThe name of the recovery services vault. Required.
subscription_idstring

SELECT examples

Gets the list of cluster recovery points. The list of cluster recovery points.

SELECT
id,
name,
providerSpecificDetails,
recoveryPointTime,
recoveryPointType,
type
FROM azure.recovery_services_site_recovery.cluster_recovery_points
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND resource_name = '{{ resource_name }}' -- required
AND fabric_name = '{{ fabric_name }}' -- required
AND protection_container_name = '{{ protection_container_name }}' -- required
AND replication_protection_cluster_name = '{{ replication_protection_cluster_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;