vw_subvolumes
Creates, updates, deletes, gets or lists a vw_subvolumes
resource.
Overview
Name | vw_subvolumes |
Type | View |
Id | azure_isv.netapp.vw_subvolumes |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.path') as "path",
JSON_EXTRACT(properties, '$.size') as "size",
JSON_EXTRACT(properties, '$.parentPath') as "parent_path",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
accountName,
poolName,
volumeName,
subvolumeName
FROM azure_isv.netapp.subvolumes
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me' AND poolName = 'replace-me' AND volumeName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.path') as "path",
json_extract_path_text(properties, '$.size') as "size",
json_extract_path_text(properties, '$.parentPath') as "parent_path",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
accountName,
poolName,
volumeName,
subvolumeName
FROM azure_isv.netapp.subvolumes
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me' AND poolName = 'replace-me' AND volumeName = 'replace-me';