vw_job_details
Creates, updates, deletes, gets or lists a vw_job_details
resource.
Overview
Name | vw_job_details |
Type | View |
Id | azure.recovery_services_backup.vw_job_details |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
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';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.entityFriendlyName') as "entity_friendly_name",
json_extract_path_text(properties, '$.backupManagementType') as "backup_management_type",
json_extract_path_text(properties, '$.operation') as "operation",
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.startTime') as "start_time",
json_extract_path_text(properties, '$.endTime') as "end_time",
json_extract_path_text(properties, '$.activityId') as "activity_id",
json_extract_path_text(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';