vw_quotas
Creates, updates, deletes, gets or lists a vw_quotas
resource.
Overview
Name | vw_quotas |
Type | View |
Id | azure_stack.subscriptions_admin.vw_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,
tags as tags,
JSON_EXTRACT(properties, '$.allowCustomPortalBranding') as "allow_custom_portal_branding",
subscriptionId,
location,
quota
FROM azure_stack.subscriptions_admin.quotas
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.allowCustomPortalBranding') as "allow_custom_portal_branding",
subscriptionId,
location,
quota
FROM azure_stack.subscriptions_admin.quotas
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';