group_quota_usages
Creates, updates, deletes, gets or lists a group_quota_usages
resource.
Overview
Name | group_quota_usages |
Type | Resource |
Id | azure.quota.group_quota_usages |
Fields
The following fields are returned by SELECT
queries:
- list
OK.
Name | Datatype | Description |
---|---|---|
properties | object | Resource details with usages and GroupQuota. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | managementGroupId , groupQuotaName , resourceProviderName , location | Gets the GroupQuotas usages and limits(quota). Location is required paramter. |
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 |
---|---|---|
groupQuotaName | string | The GroupQuota name. The name should be unique for the provided context tenantId/MgId. |
location | string | The name of the Azure region. |
managementGroupId | string | Management Group Id. |
resourceProviderName | string | The resource provider name, such as - Microsoft.Compute. Currently only Microsoft.Compute resource provider supports this API. |
SELECT
examples
- list
Gets the GroupQuotas usages and limits(quota). Location is required paramter.
SELECT
properties
FROM azure.quota.group_quota_usages
WHERE managementGroupId = '{{ managementGroupId }}' -- required
AND groupQuotaName = '{{ groupQuotaName }}' -- required
AND resourceProviderName = '{{ resourceProviderName }}' -- required
AND location = '{{ location }}' -- required
;