vw_job_collections
Creates, updates, deletes, gets or lists a vw_job_collections
resource.
Overview
Name | vw_job_collections |
Type | View |
Id | azure.scheduler.vw_job_collections |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
JSON_EXTRACT(properties, '$.sku') as "sku",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.quota') as "quota",
subscriptionId,
resourceGroupName,
jobCollectionName
FROM azure.scheduler.job_collections
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.sku') as "sku",
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.quota') as "quota",
subscriptionId,
resourceGroupName,
jobCollectionName
FROM azure.scheduler.job_collections
WHERE subscriptionId = 'replace-me';