vw_snapshots
Creates, updates, deletes, gets or lists a vw_snapshots
resource.
Overview
Name | vw_snapshots |
Type | View |
Id | azure.aks.vw_snapshots |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.creationData') as "creation_data",
JSON_EXTRACT(properties, '$.snapshotType') as "snapshot_type",
JSON_EXTRACT(properties, '$.kubernetesVersion') as "kubernetes_version",
JSON_EXTRACT(properties, '$.nodeImageVersion') as "node_image_version",
JSON_EXTRACT(properties, '$.osType') as "os_type",
JSON_EXTRACT(properties, '$.osSku') as "os_sku",
JSON_EXTRACT(properties, '$.vmSize') as "vm_size",
JSON_EXTRACT(properties, '$.enableFIPS') as "enable_fips",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.aks.snapshots
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.creationData') as "creation_data",
json_extract_path_text(properties, '$.snapshotType') as "snapshot_type",
json_extract_path_text(properties, '$.kubernetesVersion') as "kubernetes_version",
json_extract_path_text(properties, '$.nodeImageVersion') as "node_image_version",
json_extract_path_text(properties, '$.osType') as "os_type",
json_extract_path_text(properties, '$.osSku') as "os_sku",
json_extract_path_text(properties, '$.vmSize') as "vm_size",
json_extract_path_text(properties, '$.enableFIPS') as "enable_fips",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.aks.snapshots
WHERE subscriptionId = 'replace-me';