Skip to main content

group_quota_usages

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

Overview

Namegroup_quota_usages
TypeResource
Idazure.quota.group_quota_usages

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
propertiesobjectResource details with usages and GroupQuota.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectmanagementGroupId, groupQuotaName, resourceProviderName, locationGets 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.

NameDatatypeDescription
groupQuotaNamestringThe GroupQuota name. The name should be unique for the provided context tenantId/MgId.
locationstringThe name of the Azure region.
managementGroupIdstringManagement Group Id.
resourceProviderNamestringThe resource provider name, such as - Microsoft.Compute. Currently only Microsoft.Compute resource provider supports this API.

SELECT examples

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
;