vw_build_service_supported_stacks
Creates, updates, deletes, gets or lists a vw_build_service_supported_stacks
resource.
Overview
Name | vw_build_service_supported_stacks |
Type | View |
Id | azure.spring_apps.vw_build_service_supported_stacks |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.stackId') as "stack_id",
JSON_EXTRACT(properties, '$.version') as "version",
subscriptionId,
resourceGroupName,
serviceName,
buildServiceName,
stackName
FROM azure.spring_apps.build_service_supported_stacks
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND buildServiceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.stackId') as "stack_id",
json_extract_path_text(properties, '$.version') as "version",
subscriptionId,
resourceGroupName,
serviceName,
buildServiceName,
stackName
FROM azure.spring_apps.build_service_supported_stacks
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND buildServiceName = 'replace-me';