vw_configurations
Creates, updates, deletes, gets or lists a vw_configurations
resource.
Overview
Name | vw_configurations |
Type | View |
Id | azure.maintenance.vw_configurations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
systemData as system_data,
tags as tags,
JSON_EXTRACT(properties, '$.namespace') as "namespace",
JSON_EXTRACT(properties, '$.extensionProperties') as "extension_properties",
JSON_EXTRACT(properties, '$.maintenanceScope') as "maintenance_scope",
JSON_EXTRACT(properties, '$.maintenanceWindow') as "maintenance_window",
JSON_EXTRACT(properties, '$.visibility') as "visibility",
JSON_EXTRACT(properties, '$.installPatches') as "install_patches",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.maintenance.configurations
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
systemData as system_data,
tags as tags,
json_extract_path_text(properties, '$.namespace') as "namespace",
json_extract_path_text(properties, '$.extensionProperties') as "extension_properties",
json_extract_path_text(properties, '$.maintenanceScope') as "maintenance_scope",
json_extract_path_text(properties, '$.maintenanceWindow') as "maintenance_window",
json_extract_path_text(properties, '$.visibility') as "visibility",
json_extract_path_text(properties, '$.installPatches') as "install_patches",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.maintenance.configurations
WHERE subscriptionId = 'replace-me';