vw_jobs
Creates, updates, deletes, gets or lists a vw_jobs
resource.
Overview
Name | vw_jobs |
Type | View |
Id | azure.scheduler.vw_jobs |
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, '$.startTime') as "start_time",
JSON_EXTRACT(properties, '$.action') as "action",
JSON_EXTRACT(properties, '$.recurrence') as "recurrence",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.status') as "status",
subscriptionId,
resourceGroupName,
jobCollectionName,
jobName
FROM azure.scheduler.jobs
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND jobCollectionName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.startTime') as "start_time",
json_extract_path_text(properties, '$.action') as "action",
json_extract_path_text(properties, '$.recurrence') as "recurrence",
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.status') as "status",
subscriptionId,
resourceGroupName,
jobCollectionName,
jobName
FROM azure.scheduler.jobs
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND jobCollectionName = 'replace-me';