recovery_points_crr
Creates, updates, deletes, gets or lists a recovery_points_crr resource.
Overview
| Name | recovery_points_crr |
| Type | Resource |
| Id | azure.recovery_services_backup_passive_stamp.recovery_points_crr |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Resource Id represents the complete path to the resource. |
name | string | Resource name associated with the resource. |
eTag | string | Optional ETag. |
location | string | Resource location. |
objectType | string | This property will be used as the discriminator for deciding the specific types in the polymorphic chain of types. Required. |
tags | object | Resource tags. |
type | string | Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/... |
| Name | Datatype | Description |
|---|---|---|
id | string | Resource Id represents the complete path to the resource. |
name | string | Resource name associated with the resource. |
eTag | string | Optional ETag. |
location | string | Resource location. |
objectType | string | This property will be used as the discriminator for deciding the specific types in the polymorphic chain of types. Required. |
tags | object | Resource tags. |
type | string | Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/... |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | vault_name, resource_group_name, fabric_name, container_name, protected_item_name, recovery_point_id, subscription_id | Provides the information of the backed up data identified using RecoveryPointID. | |
list | select | vault_name, resource_group_name, fabric_name, container_name, protected_item_name, subscription_id | $filter | Lists the backup copies for the backed up item. |
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 |
|---|---|---|
container_name | string | Container name associated with the backed up item. Required. |
fabric_name | string | Fabric name associated with the backed up item. Required. |
protected_item_name | string | Backed up item whose backup copies are to be fetched. Required. |
recovery_point_id | string | RecoveryPointID represents the backed up data to be fetched. Required. |
resource_group_name | string | The name of the resource group where the recovery services vault is present. Required. |
subscription_id | string | |
vault_name | string | The name of the recovery services vault. Required. |
$filter | string | OData filter options. Default value is None. |
SELECT examples
- get
- list
Provides the information of the backed up data identified using RecoveryPointID.
SELECT
id,
name,
eTag,
location,
objectType,
tags,
type
FROM azure.recovery_services_backup_passive_stamp.recovery_points_crr
WHERE vault_name = '{{ vault_name }}' -- required
AND resource_group_name = '{{ resource_group_name }}' -- required
AND fabric_name = '{{ fabric_name }}' -- required
AND container_name = '{{ container_name }}' -- required
AND protected_item_name = '{{ protected_item_name }}' -- required
AND recovery_point_id = '{{ recovery_point_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
Lists the backup copies for the backed up item.
SELECT
id,
name,
eTag,
location,
objectType,
tags,
type
FROM azure.recovery_services_backup_passive_stamp.recovery_points_crr
WHERE vault_name = '{{ vault_name }}' -- required
AND resource_group_name = '{{ resource_group_name }}' -- required
AND fabric_name = '{{ fabric_name }}' -- required
AND container_name = '{{ container_name }}' -- required
AND protected_item_name = '{{ protected_item_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND $filter = '{{ $filter }}'
;