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
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
objectTypestringRequired. Default value is None.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group_name, location, subscription_id$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. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
$filterstringOData filter options. Default value is None.
$skipTokenstringskipToken Filter. Default value is None.

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,
objectType,
systemData,
type
FROM azure.data_protection.fetch_secondary_recovery_points
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND location = '{{ location }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND $filter = '{{ $filter }}'
AND $skipToken = '{{ $skipToken }}'
;