Skip to main content

fetch_secondary_recovery_points

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

Overview

Namefetch_secondary_recovery_points
TypeResource
Idazure.data_protection.fetch_secondary_recovery_points

Fields

NameDatatypeDescription
idstringResource Id represents the complete path to the resource.
namestringResource name associated with the resource.
propertiesobjectAzure backup recoveryPoint
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringResource type represents the complete path of the form Namespace/ResourceType/ResourceType/...

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocation, resourceGroupName, subscriptionIdReturns a list of Secondary Recovery Points for a DataSource in a vault, that can be used for Cross Region Restore.

SELECT examples

Returns a list of Secondary Recovery Points for a DataSource in a vault, that can be used for Cross Region Restore.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_protection.fetch_secondary_recovery_points
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';