vw_java_components
Creates, updates, deletes, gets or lists a vw_java_components
resource.
Overview
Name | vw_java_components |
Type | View |
Id | azure.container_apps.vw_java_components |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.componentType') as "component_type",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.configurations') as "configurations",
JSON_EXTRACT(properties, '$.serviceBinds') as "service_binds",
subscriptionId,
resourceGroupName,
environmentName,
name
FROM azure.container_apps.java_components
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND environmentName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.componentType') as "component_type",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.configurations') as "configurations",
json_extract_path_text(properties, '$.serviceBinds') as "service_binds",
subscriptionId,
resourceGroupName,
environmentName,
name
FROM azure.container_apps.java_components
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND environmentName = 'replace-me';