vw_storage_containers
Creates, updates, deletes, gets or lists a vw_storage_containers
resource.
Overview
Name | vw_storage_containers |
Type | View |
Id | azure_stack.azure_stack_hci.vw_storage_containers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
JSON_EXTRACT(properties, '$.path') as "path",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.status') as "status",
subscriptionId,
resourceGroupName,
storageContainerName
FROM azure_stack.azure_stack_hci.storage_containers
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
json_extract_path_text(properties, '$.path') as "path",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.status') as "status",
subscriptionId,
resourceGroupName,
storageContainerName
FROM azure_stack.azure_stack_hci.storage_containers
WHERE subscriptionId = 'replace-me';