Skip to main content

vw_patches

Creates, updates, deletes, gets or lists a vw_patches resource.

Overview

Namevw_patches
TypeView
Idazure.container_apps.vw_patches

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

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';