Skip to main content

job_details

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

Overview

Namejob_details
TypeResource
Idazure.recovery_services_backup.job_details

Fields

NameDatatypeDescription
idtextFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
nametextThe name of the resource
activity_idtextfield from the properties object
backup_management_typetextfield from the properties object
end_timetextfield from the properties object
entity_friendly_nametextfield from the properties object
jobNametextfield from the properties object
job_typetextfield from the properties object
operationtextfield from the properties object
resourceGroupNametextfield from the properties object
start_timetextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
vaultNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTjobName, resourceGroupName, subscriptionId, vaultNameGets extended information associated with the job.

SELECT examples

Gets extended information associated with the job.

SELECT
id,
name,
activity_id,
backup_management_type,
end_time,
entity_friendly_name,
jobName,
job_type,
operation,
resourceGroupName,
start_time,
status,
subscriptionId,
type,
vaultName
FROM azure.recovery_services_backup.vw_job_details
WHERE jobName = '{{ jobName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';