cluster_recovery_point
Creates, updates, deletes, gets or lists a cluster_recovery_point resource.
Overview
| Name | cluster_recovery_point |
| Type | Resource |
| Id | azure.recovery_services_site_recovery.cluster_recovery_point |
Fields
The following fields are returned by SELECT queries:
- get
| 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 |
|---|---|---|---|---|
get | select | resource_group_name, resource_name, fabric_name, protection_container_name, replication_protection_cluster_name, recovery_point_name, subscription_id | Gets a recovery point. Get the details of specified recovery point. |
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. |
recovery_point_name | string | The recovery point 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
- get
Gets a recovery point. Get the details of specified recovery point.
SELECT
id,
name,
providerSpecificDetails,
recoveryPointTime,
recoveryPointType,
type
FROM azure.recovery_services_site_recovery.cluster_recovery_point
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 recovery_point_name = '{{ recovery_point_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;