vw_managed_clusters_upgrade_profiles
Creates, updates, deletes, gets or lists a vw_managed_clusters_upgrade_profiles
resource.
Overview
Name | vw_managed_clusters_upgrade_profiles |
Type | View |
Id | azure.aks.vw_managed_clusters_upgrade_profiles |
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,
JSON_EXTRACT(properties, '$.controlPlaneProfile') as "control_plane_profile",
JSON_EXTRACT(properties, '$.agentPoolProfiles') as "agent_pool_profiles",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.aks.managed_clusters_upgrade_profiles
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.controlPlaneProfile') as "control_plane_profile",
json_extract_path_text(properties, '$.agentPoolProfiles') as "agent_pool_profiles",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.aks.managed_clusters_upgrade_profiles
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';