Skip to main content

backup_crr_jobs

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

Overview

Namebackup_crr_jobs
TypeResource
Idazure.recovery_services_backup_passive_stamp.backup_crr_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource Id represents the complete path to the resource.
namestringResource name associated with the resource.
activityIdstringActivityId of job.
backupManagementTypestringBackup management type to execute the current job. Known values are: "Invalid", "AzureIaasVM", "MAB", "DPM", "AzureBackupServer", "AzureSql", "AzureStorage", "AzureWorkload", and "DefaultBackup".
eTagstringOptional ETag.
endTimestring (date-time)The end time.
entityFriendlyNamestringFriendly name of the entity on which the current job is executing.
jobTypestringThis property will be used as the discriminator for deciding the specific types in the polymorphic chain of types. Required.
locationstringResource location.
operationstringThe operation name.
startTimestring (date-time)The start time.
statusstringJob status.
tagsobjectResource tags.
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
listselectazure_region, subscription_id$filter, $skipTokenGets 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.

NameDatatypeDescription
azure_regionstringAzure region to hit Api. Required.
subscription_idstring
$filterstringOData filter options. Default value is None.
$skipTokenstringskipToken Filter. Default value is None.

SELECT examples

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 }}'
;