Skip to main content

quotas

Creates, updates, deletes, gets or lists a quotas resource.

Overview

Namequotas
TypeResource
Idazure_stack.subscriptions_admin.quotas

Fields

NameDatatypeDescription
idtextURI of the resource.
nametextName of the resource.
allow_custom_portal_brandingtextfield from the properties object
locationtextLocation of the resource
quotatextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextList of key-value pairs.
typetextType of resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, quota, subscriptionIdGets a quota by name.
listSELECTlocation, subscriptionIdGet the list of quotas at a location.

SELECT examples

Get the list of quotas at a location.

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 }}';