fetch_cross_region_restore_jobs
Creates, updates, deletes, gets or lists a fetch_cross_region_restore_jobs
resource.
Overview
Name | fetch_cross_region_restore_jobs |
Type | Resource |
Id | azure.data_protection.fetch_cross_region_restore_jobs |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource Id represents the complete path to the resource. |
name | string | Resource name associated with the resource. |
properties | object | AzureBackup Job Class |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/... |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, resourceGroupName, subscriptionId, data__jobId, data__sourceBackupVaultId, data__sourceRegion | Fetches the Cross Region Restore Job |
list | SELECT | location, resourceGroupName, subscriptionId, data__sourceBackupVaultId, data__sourceRegion | Fetches 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 }}';