quotas
Creates, updates, deletes, gets or lists a quotas
resource.
Overview
Name | quotas |
Type | Resource |
Id | azure_stack.subscriptions_admin.quotas |
Fields
- vw_quotas
- quotas
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
allow_custom_portal_branding | text | field from the properties object |
location | text | Location of the resource |
quota | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | List of key-value pairs. |
type | text | Type of resource. |
Name | Datatype | Description |
---|---|---|
id | string | URI of the resource. |
name | string | Name of the resource. |
location | string | Location of the resource |
properties | object | Quotas for DelegatedProviders. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, quota, subscriptionId | Gets a quota by name. |
list | SELECT | location, subscriptionId | Get the list of quotas at a location. |
SELECT
examples
Get the list of quotas at a location.
- vw_quotas
- quotas
SELECT
id,
name,
allow_custom_portal_branding,
location,
quota,
subscriptionId,
tags,
type
FROM azure_stack.subscriptions_admin.vw_quotas
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.subscriptions_admin.quotas
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';