vw_cloud_service_operating_systems_os_families
Creates, updates, deletes, gets or lists a vw_cloud_service_operating_systems_os_families
resource.
Overview
Name | vw_cloud_service_operating_systems_os_families |
Type | View |
Id | azure.compute.vw_cloud_service_operating_systems_os_families |
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, '$.name') as "name",
JSON_EXTRACT(properties, '$.label') as "label",
JSON_EXTRACT(properties, '$.versions') as "versions",
subscriptionId,
location,
osFamilyName
FROM azure.compute.cloud_service_operating_systems_os_families
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, '$.name') as "name",
json_extract_path_text(properties, '$.label') as "label",
json_extract_path_text(properties, '$.versions') as "versions",
subscriptionId,
location,
osFamilyName
FROM azure.compute.cloud_service_operating_systems_os_families
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';