Skip to main content

recovery_points

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

Overview

Namerecovery_points
TypeResource
Idazure.data_replication.recovery_points

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringGets or sets the Id of the resource.
namestringGets or sets the name of the resource.
propertiesobjectRecovery point model properties.
systemDataobjectSystem data required to be defined for Azure resources.
typestringGets or sets the type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, vaultName, protectedItemName, recoveryPointNameGets the details of the recovery point of a protected item.
listselectsubscriptionId, resourceGroupName, vaultName, protectedItemNameGets the list of recovery points of the given protected 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
protectedItemNamestringThe protected item name.
recoveryPointNamestringThe recovery point name.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
vaultNamestringThe vault name.

SELECT examples

Gets the details of the recovery point of a protected item.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_replication.recovery_points
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND vaultName = '{{ vaultName }}' -- required
AND protectedItemName = '{{ protectedItemName }}' -- required
AND recoveryPointName = '{{ recoveryPointName }}' -- required
;