vw_pools
Creates, updates, deletes, gets or lists a vw_pools
resource.
Overview
Name | vw_pools |
Type | View |
Id | azure_isv.netapp.vw_pools |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
etag as etag,
JSON_EXTRACT(properties, '$.poolId') as "pool_id",
JSON_EXTRACT(properties, '$.size') as "size",
JSON_EXTRACT(properties, '$.serviceLevel') as "service_level",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.totalThroughputMibps') as "total_throughput_mibps",
JSON_EXTRACT(properties, '$.utilizedThroughputMibps') as "utilized_throughput_mibps",
JSON_EXTRACT(properties, '$.qosType') as "qos_type",
JSON_EXTRACT(properties, '$.coolAccess') as "cool_access",
JSON_EXTRACT(properties, '$.encryptionType') as "encryption_type",
subscriptionId,
resourceGroupName,
accountName,
poolName
FROM azure_isv.netapp.pools
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';
SELECT
location as location,
tags as tags,
etag as etag,
json_extract_path_text(properties, '$.poolId') as "pool_id",
json_extract_path_text(properties, '$.size') as "size",
json_extract_path_text(properties, '$.serviceLevel') as "service_level",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.totalThroughputMibps') as "total_throughput_mibps",
json_extract_path_text(properties, '$.utilizedThroughputMibps') as "utilized_throughput_mibps",
json_extract_path_text(properties, '$.qosType') as "qos_type",
json_extract_path_text(properties, '$.coolAccess') as "cool_access",
json_extract_path_text(properties, '$.encryptionType') as "encryption_type",
subscriptionId,
resourceGroupName,
accountName,
poolName
FROM azure_isv.netapp.pools
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';