vw_managed_cluster_versions
Creates, updates, deletes, gets or lists a vw_managed_cluster_versions
resource.
Overview
Name | vw_managed_cluster_versions |
Type | View |
Id | azure.service_fabric_managed_clusters.vw_managed_cluster_versions |
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, '$.clusterCodeVersion') as "cluster_code_version",
JSON_EXTRACT(properties, '$.supportExpiryUtc') as "support_expiry_utc",
JSON_EXTRACT(properties, '$.osType') as "os_type",
subscriptionId,
location,
environment,
clusterVersion
FROM azure.service_fabric_managed_clusters.managed_cluster_versions
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.clusterCodeVersion') as "cluster_code_version",
json_extract_path_text(properties, '$.supportExpiryUtc') as "support_expiry_utc",
json_extract_path_text(properties, '$.osType') as "os_type",
subscriptionId,
location,
environment,
clusterVersion
FROM azure.service_fabric_managed_clusters.managed_cluster_versions
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';