Skip to main content

group_quota_subscription_allocations

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

Overview

Namegroup_quota_subscription_allocations
TypeResource
Idazure.quota.group_quota_subscription_allocations

Fields

NameDatatypeDescription
nametextfield from the properties object
$filtertextfield 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
shareable_quotatextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECT$filter, groupQuotaName, managementGroupId, resourceName, subscriptionIdGets Quota allocated to a subscription for the specific Resource Provider, Location, ResourceName. This will include the GroupQuota and total quota allocated to the subscription. Only the Group quota allocated to the subscription can be allocated back to the MG Group Quota.
listSELECT$filter, groupQuotaName, managementGroupId, subscriptionIdGets all the quota allocated to a subscription for the specific Resource Provider, Location. This will include the GroupQuota and total quota allocated to the subscription. Only the Group quota allocated to the subscription can be allocated back to the MG Group Quota. Use the $filter parameter to filter out the specific resource based on the ResourceProvider/Location. $filter is a required parameter.

SELECT examples

Gets all the quota allocated to a subscription for the specific Resource Provider, Location. This will include the GroupQuota and total quota allocated to the subscription. Only the Group quota allocated to the subscription can be allocated back to the MG Group Quota. Use the $filter parameter to filter out the specific resource based on the ResourceProvider/Location. $filter is a required parameter.

SELECT
name,
$filter,
groupQuotaName,
limit,
managementGroupId,
region,
resourceName,
shareable_quota,
subscriptionId
FROM azure.quota.vw_group_quota_subscription_allocations
WHERE $filter = '{{ $filter }}'
AND groupQuotaName = '{{ groupQuotaName }}'
AND managementGroupId = '{{ managementGroupId }}'
AND subscriptionId = '{{ subscriptionId }}';