vw_applications
Creates, updates, deletes, gets or lists a vw_applications
resource.
Overview
Name | vw_applications |
Type | View |
Id | azure.batch.vw_applications |
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,
etag as etag,
tags as tags,
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.allowUpdates') as "allow_updates",
JSON_EXTRACT(properties, '$.defaultVersion') as "default_version",
subscriptionId,
resourceGroupName,
accountName,
applicationName
FROM azure.batch.applications
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
etag as etag,
tags as tags,
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.allowUpdates') as "allow_updates",
json_extract_path_text(properties, '$.defaultVersion') as "default_version",
subscriptionId,
resourceGroupName,
accountName,
applicationName
FROM azure.batch.applications
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';