vw_network_fabric_skus
Creates, updates, deletes, gets or lists a vw_network_fabric_skus
resource.
Overview
Name | vw_network_fabric_skus |
Type | View |
Id | azure.managed_network_fabric.vw_network_fabric_skus |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.type') as "type",
JSON_EXTRACT(properties, '$.maxComputeRacks') as "max_compute_racks",
JSON_EXTRACT(properties, '$.maximumServerCount') as "maximum_server_count",
JSON_EXTRACT(properties, '$.supportedVersions') as "supported_versions",
JSON_EXTRACT(properties, '$.details') as "details",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
networkFabricSkuName
FROM azure.managed_network_fabric.network_fabric_skus
WHERE subscriptionId = 'replace-me';
SELECT
json_extract_path_text(properties, '$.type') as "type",
json_extract_path_text(properties, '$.maxComputeRacks') as "max_compute_racks",
json_extract_path_text(properties, '$.maximumServerCount') as "maximum_server_count",
json_extract_path_text(properties, '$.supportedVersions') as "supported_versions",
json_extract_path_text(properties, '$.details') as "details",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
networkFabricSkuName
FROM azure.managed_network_fabric.network_fabric_skus
WHERE subscriptionId = 'replace-me';