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

NameDatatypeDescription
idstringResource Id represents the complete path to the resource.
namestringResource name associated with the resource.
propertiesobjectAzureBackup Job Class
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
getSELECTlocation, resourceGroupName, subscriptionId, data__jobId, data__sourceBackupVaultId, data__sourceRegionFetches the Cross Region Restore Job
listSELECTlocation, resourceGroupName, subscriptionId, data__sourceBackupVaultId, data__sourceRegionFetches list of Cross Region Restore job belonging to the vault

SELECT examples

Fetches list of Cross Region Restore job belonging to the vault

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