group_quota_subscription_requests
Creates, updates, deletes, gets or lists a group_quota_subscription_requests resource.
Overview
| Name | group_quota_subscription_requests |
| Type | Resource |
| Id | azure.quota.group_quota_subscription_requests |
Fields
The following fields are returned by SELECT queries:
- get
- list
Success, with the details of the subscriptionId request.
| Name | Datatype | Description |
|---|---|---|
properties | object |
Success, with the details of the subscriptionId request.
| Name | Datatype | Description |
|---|---|---|
properties | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | managementGroupId, groupQuotaName, requestId | 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. | |
list | select | managementGroupId, groupQuotaName | List 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.
| Name | Datatype | Description |
|---|---|---|
groupQuotaName | string | The GroupQuota name. The name should be unique for the provided context tenantId/MgId. |
managementGroupId | string | Management Group Id. |
requestId | string | Request Id. |
SELECT examples
- get
- list
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
;
List API to check the status of a subscriptionId requests by requestId. Request history is maintained for 1 year.
SELECT
properties
FROM azure.quota.group_quota_subscription_requests
WHERE managementGroupId = '{{ managementGroupId }}' -- required
AND groupQuotaName = '{{ groupQuotaName }}' -- required
;