Skip to main content

vw_job_details

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

Overview

Namevw_job_details
TypeView
Idazure.recovery_services_backup.vw_job_details

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.entityFriendlyName') as "entity_friendly_name",
JSON_EXTRACT(properties, '$.backupManagementType') as "backup_management_type",
JSON_EXTRACT(properties, '$.operation') as "operation",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.startTime') as "start_time",
JSON_EXTRACT(properties, '$.endTime') as "end_time",
JSON_EXTRACT(properties, '$.activityId') as "activity_id",
JSON_EXTRACT(properties, '$.jobType') as "job_type",
subscriptionId,
resourceGroupName,
vaultName,
jobName
FROM azure.recovery_services_backup.job_details
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND vaultName = 'replace-me' AND jobName = 'replace-me';