Skip to main content

quotas

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

Overview

Namequotas
TypeResource
Idazure.quota.quotas

Fields

The following fields are returned by SELECT queries:

OK. The quota information will be returned in the response with pagination.

NameDatatypeDescription
idstringThe resource ID.
namestringThe resource name.
propertiesobjectQuota properties for the specified resource, based on the API called, Quotas or Usages.
typestringThe resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceName, scopeGet the quota limit of a resource. The response can be used to determine the remaining quota to calculate a new quota limit that can be submitted with a PUT request.
listselectscopeGet a list of current quota limits of all resources for the specified scope. The response from this GET operation can be leveraged to submit requests to update a quota.
create_or_updateinsertresourceName, scopeCreate or update the quota limit for the specified resource with the requested value. To update the quota, follow these steps:
1. Use the GET operation for quotas and usages to determine how much quota remains for the specific resource and to calculate the new quota limit. These steps are detailed in this example.
2. Use this PUT operation to update the quota limit. Please check the URI in location header for the detailed status of the request.
updateupdateresourceName, scopeUpdate the quota limit for a specific resource to the specified value:
1. Use the Usages-GET and Quota-GET operations to determine the remaining quota for the specific resource and to calculate the new quota limit. These steps are detailed in this example.
2. Use this PUT operation to update the quota limit. Please check the URI in location header for the detailed status of the request.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
resourceNamestringResource name for a given resource provider. For example:
- SKU name for Microsoft.Compute
- SKU or TotalLowPriorityCores for Microsoft.MachineLearningServices
For Microsoft.Network PublicIPAddresses.
scopestringThe target Azure resource URI. For example, /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qms-test/providers/Microsoft.Batch/batchAccounts/testAccount/. This is the target Azure resource URI for the List GET operation. If a {resourceName} is added after /quotas, then it's the target Azure resource URI in the GET operation for the specific resource.

SELECT examples

Get the quota limit of a resource. The response can be used to determine the remaining quota to calculate a new quota limit that can be submitted with a PUT request.

SELECT
id,
name,
properties,
type
FROM azure.quota.quotas
WHERE resourceName = '{{ resourceName }}' -- required
AND scope = '{{ scope }}' -- required
;

INSERT examples

Create or update the quota limit for the specified resource with the requested value. To update the quota, follow these steps:
1. Use the GET operation for quotas and usages to determine how much quota remains for the specific resource and to calculate the new quota limit. These steps are detailed in this example.
2. Use this PUT operation to update the quota limit. Please check the URI in location header for the detailed status of the request.

INSERT INTO azure.quota.quotas (
data__properties,
resourceName,
scope
)
SELECT
'{{ properties }}',
'{{ resourceName }}',
'{{ scope }}'
RETURNING
id,
name,
properties,
type
;

UPDATE examples

Update the quota limit for a specific resource to the specified value:
1. Use the Usages-GET and Quota-GET operations to determine the remaining quota for the specific resource and to calculate the new quota limit. These steps are detailed in this example.
2. Use this PUT operation to update the quota limit. Please check the URI in location header for the detailed status of the request.

UPDATE azure.quota.quotas
SET
data__properties = '{{ properties }}'
WHERE
resourceName = '{{ resourceName }}' --required
AND scope = '{{ scope }}' --required
RETURNING
id,
name,
properties,
type;