vw_maintenance_configurations
Creates, updates, deletes, gets or lists a vw_maintenance_configurations
resource.
Overview
Name | vw_maintenance_configurations |
Type | View |
Id | azure.aks.vw_maintenance_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,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.timeInWeek') as "time_in_week",
JSON_EXTRACT(properties, '$.notAllowedTime') as "not_allowed_time",
JSON_EXTRACT(properties, '$.maintenanceWindow') as "maintenance_window",
subscriptionId,
resourceGroupName,
resourceName,
configName
FROM azure.aks.maintenance_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.timeInWeek') as "time_in_week",
json_extract_path_text(properties, '$.notAllowedTime') as "not_allowed_time",
json_extract_path_text(properties, '$.maintenanceWindow') as "maintenance_window",
subscriptionId,
resourceGroupName,
resourceName,
configName
FROM azure.aks.maintenance_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';