Skip to main content

fetch_cross_region_restore_jobs

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

Overview

Namefetch_cross_region_restore_jobs
TypeResource
Idazure.data_protection.fetch_cross_region_restore_jobs

Fields

The following fields are returned by SELECT queries:

Details about a Cross Region Restore Job

NameDatatypeDescription
idstringResource Id represents the complete path to the resource.
namestringResource name associated with the resource.
propertiesobjectAzureBackupJobResource properties
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
getselectresourceGroupName, subscriptionId, locationFetches the Cross Region Restore Job
listselectresourceGroupName, subscriptionId, location$filterFetches list of Cross Region Restore job belonging to the vault

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.

SELECT examples

Fetches the Cross Region Restore Job

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