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

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id represents the complete path to the resource.
namestringResource name associated with the resource.
propertiesobjectAzureBackupRecoveryPointResource properties (title: AzureBackupRecoveryPoint)
systemDataobjectMetadata pertaining to creation and last modification of the resource.
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
listselectsubscriptionId, resourceGroupName, location$filter, $skipTokenReturns a list of Secondary Recovery Points for a DataSource in a vault, that can be used for Cross Region Restore.

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
locationstringThe name of the Azure region.
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.
$filterstringOData filter options.
$skipTokenstringskipToken Filter.

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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND location = '{{ location }}' -- required
AND $filter = '{{ $filter }}'
AND $skipToken = '{{ $skipToken }}'
;