Skip to main content

group_quota_limits

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

Overview

Namegroup_quota_limits
TypeResource
Idazure.quota.group_quota_limits

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectGroup Quota properties for the specified resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectmanagementGroupId, groupQuotaName, resourceProviderName, resourceName, $filterGets the GroupQuotaLimits for the specific resource for a specific resource based on the resourceProviders, resourceName and $filter passed.
The $filter=location eq {location} is required to location specific resources groupQuota.
listselectmanagementGroupId, groupQuotaName, resourceProviderName, $filterGets the GroupQuotaLimits for the all resource for a specific resourceProvider and $filter passed.
The $filter=location eq {location} is required to location specific resources groupQuota.

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
$filterstring| Field | Supported operators
|---------------------|------------------------
location eq {location} Example: $filter=location eq eastus
groupQuotaNamestringThe GroupQuota name. The name should be unique for the provided context tenantId/MgId.
managementGroupIdstringManagement Group Id.
resourceNamestringResource name.
resourceProviderNamestringThe resource provider name, such as - Microsoft.Compute. Currently only Microsoft.Compute resource provider supports this API.

SELECT examples

Gets the GroupQuotaLimits for the specific resource for a specific resource based on the resourceProviders, resourceName and $filter passed.
The $filter=location eq {location} is required to location specific resources groupQuota.

SELECT
properties
FROM azure.quota.group_quota_limits
WHERE managementGroupId = '{{ managementGroupId }}' -- required
AND groupQuotaName = '{{ groupQuotaName }}' -- required
AND resourceProviderName = '{{ resourceProviderName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND $filter = '{{ $filter }}' -- required
;