vw_network_device_skus
Creates, updates, deletes, gets or lists a vw_network_device_skus
resource.
Overview
Name | vw_network_device_skus |
Type | View |
Id | azure.managed_network_fabric.vw_network_device_skus |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.model') as "model",
JSON_EXTRACT(properties, '$.manufacturer') as "manufacturer",
JSON_EXTRACT(properties, '$.supportedVersions') as "supported_versions",
JSON_EXTRACT(properties, '$.supportedRoleTypes') as "supported_role_types",
JSON_EXTRACT(properties, '$.interfaces') as "interfaces",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
networkDeviceSkuName
FROM azure.managed_network_fabric.network_device_skus
WHERE subscriptionId = 'replace-me';
SELECT
json_extract_path_text(properties, '$.model') as "model",
json_extract_path_text(properties, '$.manufacturer') as "manufacturer",
json_extract_path_text(properties, '$.supportedVersions') as "supported_versions",
json_extract_path_text(properties, '$.supportedRoleTypes') as "supported_role_types",
json_extract_path_text(properties, '$.interfaces') as "interfaces",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
networkDeviceSkuName
FROM azure.managed_network_fabric.network_device_skus
WHERE subscriptionId = 'replace-me';