Skip to main content

group_quota_subscription_requests

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

Overview

Namegroup_quota_subscription_requests
TypeResource
Idazure.quota.group_quota_subscription_requests

Fields

The following fields are returned by SELECT queries:

Success, with the details of the subscriptionId request.

NameDatatypeDescription
propertiesobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectmanagementGroupId, groupQuotaName, requestIdGet API to check the status of a subscriptionIds request by requestId. Use the polling API - OperationsStatus URI specified in Azure-AsyncOperation header field, with retry-after duration in seconds to check the intermediate status. This API provides the finals status with the request details and status.
listselectmanagementGroupId, groupQuotaNameList API to check the status of a subscriptionId requests by requestId. Request history is maintained for 1 year.

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.
managementGroupIdstringManagement Group Id.
requestIdstringRequest Id.

SELECT examples

Get API to check the status of a subscriptionIds request by requestId. Use the polling API - OperationsStatus URI specified in Azure-AsyncOperation header field, with retry-after duration in seconds to check the intermediate status. This API provides the finals status with the request details and status.

SELECT
properties
FROM azure.quota.group_quota_subscription_requests
WHERE managementGroupId = '{{ managementGroupId }}' -- required
AND groupQuotaName = '{{ groupQuotaName }}' -- required
AND requestId = '{{ requestId }}' -- required
;