vw_cloud_service_operating_systems_os_versions
Creates, updates, deletes, gets or lists a vw_cloud_service_operating_systems_os_versions
resource.
Overview
Name | vw_cloud_service_operating_systems_os_versions |
Type | View |
Id | azure.compute.vw_cloud_service_operating_systems_os_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,
location as location,
type as type,
JSON_EXTRACT(properties, '$.family') as "family",
JSON_EXTRACT(properties, '$.familyLabel') as "family_label",
JSON_EXTRACT(properties, '$.version') as "version",
JSON_EXTRACT(properties, '$.label') as "label",
JSON_EXTRACT(properties, '$.isDefault') as "is_default",
JSON_EXTRACT(properties, '$.isActive') as "is_active",
subscriptionId,
location,
osVersionName
FROM azure.compute.cloud_service_operating_systems_os_versions
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
json_extract_path_text(properties, '$.family') as "family",
json_extract_path_text(properties, '$.familyLabel') as "family_label",
json_extract_path_text(properties, '$.version') as "version",
json_extract_path_text(properties, '$.label') as "label",
json_extract_path_text(properties, '$.isDefault') as "is_default",
json_extract_path_text(properties, '$.isActive') as "is_active",
subscriptionId,
location,
osVersionName
FROM azure.compute.cloud_service_operating_systems_os_versions
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';