group_quota_subscription_allocations
Creates, updates, deletes, gets or lists a group_quota_subscription_allocations
resource.
Overview
Name | group_quota_subscription_allocations |
Type | Resource |
Id | azure.quota.group_quota_subscription_allocations |
Fields
- vw_group_quota_subscription_allocations
- group_quota_subscription_allocations
Name | Datatype | Description |
---|---|---|
name | text | field from the properties object |
$filter | 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 |
shareable_quota | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Subscription Quota details. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | $filter, groupQuotaName, managementGroupId, resourceName, subscriptionId | Gets 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. |
list | SELECT | $filter, groupQuotaName, managementGroupId, subscriptionId | 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
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.
- vw_group_quota_subscription_allocations
- group_quota_subscription_allocations
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 }}';
SELECT
properties
FROM azure.quota.group_quota_subscription_allocations
WHERE $filter = '{{ $filter }}'
AND groupQuotaName = '{{ groupQuotaName }}'
AND managementGroupId = '{{ managementGroupId }}'
AND subscriptionId = '{{ subscriptionId }}';