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
- vw_group_quota_limits
- group_quota_limits
Name | Datatype | Description |
---|---|---|
name | text | field from the properties object |
$filter | text | field from the properties object |
allocated_to_subscriptions | text | field from the properties object |
available_limit | text | field from the properties object |
comment | text | field from the properties object |
groupQuotaName | text | field from the properties object |
limit | text | field from the properties object |
managementGroupId | text | field from the properties object |
region | text | field from the properties object |
resourceName | text | field from the properties object |
resourceProviderName | text | field from the properties object |
unit | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Group Quota details. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | $filter, groupQuotaName, managementGroupId, resourceName, resourceProviderName | 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 | $filter, groupQuotaName, managementGroupId, resourceProviderName | 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
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.
- vw_group_quota_limits
- group_quota_limits
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 }}';
SELECT
properties
FROM azure.quota.group_quota_limits
WHERE $filter = '{{ $filter }}'
AND groupQuotaName = '{{ groupQuotaName }}'
AND managementGroupId = '{{ managementGroupId }}'
AND resourceProviderName = '{{ resourceProviderName }}';