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

NameDatatypeDescription
idtextGets or sets the Id of the resource.
nametextGets or sets the name of the resource.
custom_propertiestextfield from the properties object
protectedItemNametextfield from the properties object
recoveryPointNametextfield from the properties object
recovery_point_timetextfield from the properties object
recovery_point_typetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
system_datatextfield from the properties object
typetextGets or sets the type of the resource.
vaultNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTprotectedItemName, recoveryPointName, resourceGroupName, subscriptionId, vaultNameGets the details of the recovery point of a protected item.
listSELECTprotectedItemName, resourceGroupName, subscriptionId, vaultNameGets the list of recovery points of the given protected item.

SELECT examples

Gets the list of recovery points of the given protected item.

SELECT
id,
name,
custom_properties,
protectedItemName,
recoveryPointName,
recovery_point_time,
recovery_point_type,
resourceGroupName,
subscriptionId,
system_data,
type,
vaultName
FROM azure.data_replication.vw_recovery_points
WHERE protectedItemName = '{{ protectedItemName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';