vw_apply_updates_parents
Creates, updates, deletes, gets or lists a vw_apply_updates_parents
resource.
Overview
Name | vw_apply_updates_parents |
Type | View |
Id | azure.maintenance.vw_apply_updates_parents |
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,
systemData as system_data,
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.resourceId') as "resource_id",
JSON_EXTRACT(properties, '$.lastUpdateTime') as "last_update_time",
subscriptionId,
resourceGroupName,
providerName,
resourceParentType,
resourceParentName,
resourceType,
resourceName,
applyUpdateName
FROM azure.maintenance.apply_updates_parents
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND providerName = 'replace-me' AND resourceParentType = 'replace-me' AND resourceParentName = 'replace-me' AND resourceType = 'replace-me' AND resourceName = 'replace-me' AND applyUpdateName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.resourceId') as "resource_id",
json_extract_path_text(properties, '$.lastUpdateTime') as "last_update_time",
subscriptionId,
resourceGroupName,
providerName,
resourceParentType,
resourceParentName,
resourceType,
resourceName,
applyUpdateName
FROM azure.maintenance.apply_updates_parents
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND providerName = 'replace-me' AND resourceParentType = 'replace-me' AND resourceParentName = 'replace-me' AND resourceType = 'replace-me' AND resourceName = 'replace-me' AND applyUpdateName = 'replace-me';