Skip to main content

recovery_points_crr

Creates, updates, deletes, gets or lists a recovery_points_crr resource.

Overview

Namerecovery_points_crr
TypeResource
Idazure.recovery_services_backup_passive_stamp.recovery_points_crr

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id represents the complete path to the resource.
namestringResource name associated with the resource.
eTagstringOptional ETag.
locationstringResource location.
objectTypestringThis property will be used as the discriminator for deciding the specific types in the polymorphic chain of types. Required.
tagsobjectResource tags.
typestringResource type represents the complete path of the form Namespace/ResourceType/ResourceType/...

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectvault_name, resource_group_name, fabric_name, container_name, protected_item_name, recovery_point_id, subscription_idProvides the information of the backed up data identified using RecoveryPointID.
listselectvault_name, resource_group_name, fabric_name, container_name, protected_item_name, subscription_id$filterLists 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.

NameDatatypeDescription
container_namestringContainer name associated with the backed up item. Required.
fabric_namestringFabric name associated with the backed up item. Required.
protected_item_namestringBacked up item whose backup copies are to be fetched. Required.
recovery_point_idstringRecoveryPointID represents the backed up data to be fetched. Required.
resource_group_namestringThe name of the resource group where the recovery services vault is present. Required.
subscription_idstring
vault_namestringThe name of the recovery services vault. Required.
$filterstringOData filter options. Default value is None.

SELECT examples

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
;