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
The following fields are returned by SELECT queries:
- list_by_replication_protection_cluster
| Name | Datatype | Description |
|---|---|---|
id | string | The recovery point Id. |
name | string | The recovery point name. |
providerSpecificDetails | object | The provider specific details for the recovery point. |
recoveryPointTime | string (date-time) | The recovery point time. |
recoveryPointType | string | The recovery point type. Known values are: "NotSpecified", "ApplicationConsistent", and "CrashConsistent". (NotSpecified, ApplicationConsistent, CrashConsistent) |
type | string | The resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_replication_protection_cluster | select | resource_group_name, resource_name, fabric_name, protection_container_name, replication_protection_cluster_name, subscription_id | Gets 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.
| Name | Datatype | Description |
|---|---|---|
fabric_name | string | Fabric name. Required. |
protection_container_name | string | Protection container name. Required. |
replication_protection_cluster_name | string | Replication protection cluster name. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
resource_name | string | The name of the recovery services vault. Required. |
subscription_id | string |
SELECT examples
- list_by_replication_protection_cluster
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
;