group_quota_limits
Creates, updates, deletes, gets or lists a group_quota_limits
resource.
Overview
Name | group_quota_limits |
Type | Resource |
Id | azure.quota.group_quota_limits |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
properties | object | Group Quota properties for the specified resource. |
Name | Datatype | Description |
---|---|---|
properties | object | Group Quota properties for the specified resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | managementGroupId , groupQuotaName , resourceProviderName , resourceName , $filter | 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. | |
list | select | managementGroupId , groupQuotaName , resourceProviderName , $filter | Gets 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.
Name | Datatype | Description |
---|---|---|
$filter | string | | Field | Supported operators |---------------------|------------------------ location eq {location} Example: $filter=location eq eastus |
groupQuotaName | string | The GroupQuota name. The name should be unique for the provided context tenantId/MgId. |
managementGroupId | string | Management Group Id. |
resourceName | string | Resource name. |
resourceProviderName | string | The resource provider name, such as - Microsoft.Compute. Currently only Microsoft.Compute resource provider supports this API. |
SELECT
examples
- get
- list
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
;
Gets 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.
SELECT
properties
FROM azure.quota.group_quota_limits
WHERE managementGroupId = '{{ managementGroupId }}' -- required
AND groupQuotaName = '{{ groupQuotaName }}' -- required
AND resourceProviderName = '{{ resourceProviderName }}' -- required
AND $filter = '{{ $filter }}' -- required
;