vw_jobs
Creates, updates, deletes, gets or lists a vw_jobs
resource.
Overview
Name | vw_jobs |
Type | View |
Id | azure.spring_apps.vw_jobs |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.template') as "template",
JSON_EXTRACT(properties, '$.source') as "source",
JSON_EXTRACT(properties, '$.managedComponentReferences') as "managed_component_references",
JSON_EXTRACT(properties, '$.triggerConfig') as "trigger_config",
subscriptionId,
resourceGroupName,
serviceName,
jobName
FROM azure.spring_apps.jobs
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.template') as "template",
json_extract_path_text(properties, '$.source') as "source",
json_extract_path_text(properties, '$.managedComponentReferences') as "managed_component_references",
json_extract_path_text(properties, '$.triggerConfig') as "trigger_config",
subscriptionId,
resourceGroupName,
serviceName,
jobName
FROM azure.spring_apps.jobs
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me';