vw_patches
Creates, updates, deletes, gets or lists a vw_patches
resource.
Overview
Name | vw_patches |
Type | View |
Id | azure.container_apps.vw_patches |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.targetEnvironmentId') as "target_environment_id",
JSON_EXTRACT(properties, '$.targetContainerAppId') as "target_container_app_id",
JSON_EXTRACT(properties, '$.targetRevisionId') as "target_revision_id",
JSON_EXTRACT(properties, '$.patchApplyStatus') as "patch_apply_status",
JSON_EXTRACT(properties, '$.createdAt') as "created_at",
JSON_EXTRACT(properties, '$.lastModifiedAt') as "last_modified_at",
JSON_EXTRACT(properties, '$.patchDetails') as "patch_details",
subscriptionId,
resourceGroupName,
containerAppName,
patchName
FROM azure.container_apps.patches
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND containerAppName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.targetEnvironmentId') as "target_environment_id",
json_extract_path_text(properties, '$.targetContainerAppId') as "target_container_app_id",
json_extract_path_text(properties, '$.targetRevisionId') as "target_revision_id",
json_extract_path_text(properties, '$.patchApplyStatus') as "patch_apply_status",
json_extract_path_text(properties, '$.createdAt') as "created_at",
json_extract_path_text(properties, '$.lastModifiedAt') as "last_modified_at",
json_extract_path_text(properties, '$.patchDetails') as "patch_details",
subscriptionId,
resourceGroupName,
containerAppName,
patchName
FROM azure.container_apps.patches
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND containerAppName = 'replace-me';