Skip to main content

backup_crr_job_details

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

Overview

Namebackup_crr_job_details
TypeResource
Idazure.recovery_services_backup_passive_stamp.backup_crr_job_details

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
getselectazure_region, subscription_idGet CRR job details from target region. Get CRR job details from 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

SELECT examples

Get CRR job details from target region. Get CRR job details from 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_job_details
WHERE azure_region = '{{ azure_region }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;