vw_storage_quotas
Creates, updates, deletes, gets or lists a vw_storage_quotas
resource.
Overview
Name | vw_storage_quotas |
Type | View |
Id | azure_stack.storage_admin.vw_storage_quotas |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
JSON_EXTRACT(properties, '$.numberOfStorageAccounts') as "number_of_storage_accounts",
JSON_EXTRACT(properties, '$.capacityInGb') as "capacity_in_gb",
subscriptionId,
location,
quotaName
FROM azure_stack.storage_admin.storage_quotas
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
json_extract_path_text(properties, '$.numberOfStorageAccounts') as "number_of_storage_accounts",
json_extract_path_text(properties, '$.capacityInGb') as "capacity_in_gb",
subscriptionId,
location,
quotaName
FROM azure_stack.storage_admin.storage_quotas
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';