vw_quotas
Creates, updates, deletes, gets or lists a vw_quotas
resource.
Overview
Name | vw_quotas |
Type | View |
Id | azure_stack.container_registry_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,
type as type,
JSON_EXTRACT(properties, '$.numberOfRegistries') as "number_of_registries",
JSON_EXTRACT(properties, '$.capacityPerRegistryInGiB') as "capacity_per_registry_in_gib",
subscriptionId,
location,
quotaName
FROM azure_stack.container_registry_admin.quotas
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.numberOfRegistries') as "number_of_registries",
json_extract_path_text(properties, '$.capacityPerRegistryInGiB') as "capacity_per_registry_in_gib",
subscriptionId,
location,
quotaName
FROM azure_stack.container_registry_admin.quotas
WHERE subscriptionId = 'replace-me' AND location = 'replace-me';