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
The following fields are returned by SELECT
queries:
- get
- list
Details about a Cross Region Restore Job
Name | Datatype | Description |
---|---|---|
id | string | Resource Id represents the complete path to the resource. |
name | string | Resource name associated with the resource. |
properties | object | AzureBackupJobResource properties |
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/... |
List of Cross Region Restore Jobs
Name | Datatype | Description |
---|---|---|
id | string | Resource Id represents the complete path to the resource. |
name | string | Resource name associated with the resource. |
properties | object | AzureBackupJobResource properties |
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , subscriptionId , location | Fetches the Cross Region Restore Job | |
list | select | resourceGroupName , subscriptionId , location | $filter | Fetches 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.
Name | Datatype | Description |
---|---|---|
location | string | The name of the Azure region. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
$filter | string | OData filter options. |
SELECT
examples
- get
- list
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
;
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 resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND $filter = '{{ $filter }}'
;