Skip to main content

recovery_points

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

Overview

Namerecovery_points
TypeResource
Idazure.recovery_services_site_recovery.recovery_points

Fields

NameDatatypeDescription
idtextResource Id
nametextResource Name
fabricNametextfield from the properties object
locationtextResource Location
protectionContainerNametextfield from the properties object
provider_specific_detailstextfield from the properties object
recoveryPointNametextfield from the properties object
recovery_point_timetextfield from the properties object
recovery_point_typetextfield from the properties object
replicatedProtectedItemNametextfield from the properties object
resourceGroupNametextfield from the properties object
resourceNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource Type

Methods

NameAccessible byRequired ParamsDescription
getSELECTfabricName, protectionContainerName, recoveryPointName, replicatedProtectedItemName, resourceGroupName, resourceName, subscriptionIdGet the details of specified recovery point.
list_by_replication_protected_itemsSELECTfabricName, protectionContainerName, replicatedProtectedItemName, resourceGroupName, resourceName, subscriptionIdLists the available recovery points for a replication protected item.

SELECT examples

Lists the available recovery points for a replication protected item.

SELECT
id,
name,
fabricName,
location,
protectionContainerName,
provider_specific_details,
recoveryPointName,
recovery_point_time,
recovery_point_type,
replicatedProtectedItemName,
resourceGroupName,
resourceName,
subscriptionId,
type
FROM azure.recovery_services_site_recovery.vw_recovery_points
WHERE fabricName = '{{ fabricName }}'
AND protectionContainerName = '{{ protectionContainerName }}'
AND replicatedProtectedItemName = '{{ replicatedProtectedItemName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';