backup_crr_jobs
Creates, updates, deletes, gets or lists a backup_crr_jobs resource.
Overview
| Name | backup_crr_jobs |
| Type | Resource |
| Id | azure.recovery_services_backup_passive_stamp.backup_crr_jobs |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Resource Id represents the complete path to the resource. |
name | string | Resource name associated with the resource. |
activityId | string | ActivityId of job. |
backupManagementType | string | Backup management type to execute the current job. Known values are: "Invalid", "AzureIaasVM", "MAB", "DPM", "AzureBackupServer", "AzureSql", "AzureStorage", "AzureWorkload", and "DefaultBackup". |
eTag | string | Optional ETag. |
endTime | string (date-time) | The end time. |
entityFriendlyName | string | Friendly name of the entity on which the current job is executing. |
jobType | string | This property will be used as the discriminator for deciding the specific types in the polymorphic chain of types. Required. |
location | string | Resource location. |
operation | string | The operation name. |
startTime | string (date-time) | The start time. |
status | string | Job status. |
tags | object | Resource tags. |
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 |
|---|---|---|---|---|
list | select | azure_region, subscription_id | $filter, $skipToken | Gets the list of CRR jobs from the target region. Gets the list of CRR jobs from the target region. |
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 |
|---|---|---|
azure_region | string | Azure region to hit Api. Required. |
subscription_id | string | |
$filter | string | OData filter options. Default value is None. |
$skipToken | string | skipToken Filter. Default value is None. |
SELECT examples
- list
Gets the list of CRR jobs from the target region. Gets the list of CRR jobs from the target region.
SELECT
id,
name,
activityId,
backupManagementType,
eTag,
endTime,
entityFriendlyName,
jobType,
location,
operation,
startTime,
status,
tags,
type
FROM azure.recovery_services_backup_passive_stamp.backup_crr_jobs
WHERE azure_region = '{{ azure_region }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND $filter = '{{ $filter }}'
AND $skipToken = '{{ $skipToken }}'
;