Skip to main content

vw_volumes

Creates, updates, deletes, gets or lists a vw_volumes resource.

Overview

Namevw_volumes
TypeView
Idazure.container_storage.vw_volumes

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.labels') as "labels",
JSON_EXTRACT(properties, '$.capacityGiB') as "capacity_gib",
JSON_EXTRACT(properties, '$.volumeType') as "volume_type",
subscriptionId,
resourceGroupName,
poolName,
volumeName
FROM azure.container_storage.volumes
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND poolName = 'replace-me';