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:
- get
- list_by_replication_protection_cluster
| Name | Datatype | Description |
|---|---|---|
id | string (arm-id) | The recovery point Id. |
name | string | The name of the recovery point. |
properties | object | The recovery point properties. |
type | string | The resource type. |
| Name | Datatype | Description |
|---|---|---|
id | string (arm-id) | The recovery point Id. |
name | string | The name of the recovery point. |
properties | object | The recovery point properties. |
type | string | The resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resourceName, resourceGroupName, subscriptionId, fabricName, protectionContainerName, replicationProtectionClusterName, recoveryPointName | api-version | Get the details of specified recovery point. |
list_by_replication_protection_cluster | select | resourceName, resourceGroupName, subscriptionId, fabricName, protectionContainerName, replicationProtectionClusterName | api-version | 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 |
|---|---|---|
fabricName | string | Fabric name. |
protectionContainerName | string | Protection container name. |
recoveryPointName | string | The recovery point name. |
replicationProtectionClusterName | string | Replication protection cluster name. |
resourceGroupName | string | The name of the resource group where the recovery services vault is present. |
resourceName | string | The name of the recovery services vault. |
subscriptionId | string | The subscription Id. |
api-version | string | Client Api Version. |
SELECT examples
- get
- list_by_replication_protection_cluster
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 }}'
;
The list of cluster recovery points.
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 api-version = '{{ api-version }}'
;