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

NameDatatypeDescription
nametextfield from the properties object
$filtertextfield from the properties object
allocated_to_subscriptionstextfield from the properties object
available_limittextfield from the properties object
commenttextfield from the properties object
groupQuotaNametextfield from the properties object
limittextfield from the properties object
managementGroupIdtextfield from the properties object
regiontextfield from the properties object
resourceNametextfield from the properties object
resourceProviderNametextfield from the properties object
unittextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECT$filter, groupQuotaName, managementGroupId, resourceName, resourceProviderNameGets 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.
listSELECT$filter, groupQuotaName, managementGroupId, resourceProviderNameGets 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 examples

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
name,
$filter,
allocated_to_subscriptions,
available_limit,
comment,
groupQuotaName,
limit,
managementGroupId,
region,
resourceName,
resourceProviderName,
unit
FROM azure.quota.vw_group_quota_limits
WHERE $filter = '{{ $filter }}'
AND groupQuotaName = '{{ groupQuotaName }}'
AND managementGroupId = '{{ managementGroupId }}'
AND resourceProviderName = '{{ resourceProviderName }}';