quota_request_status
Creates, updates, deletes, gets or lists a quota_request_status resource.
Overview
| Name | quota_request_status |
| Type | Resource |
| Id | azure.quota.quota_request_status |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
error | object | Error details of the quota request. |
message | string | User-friendly status message. |
provisioningState | string | The quota request status. Known values are: "Accepted", "Invalid", "Succeeded", "Failed", and "InProgress". (Accepted, Invalid, Succeeded, Failed, InProgress) |
requestSubmitTime | string (date-time) | The quota request submission time. The date conforms to the following format specified by the ISO 8601 standard: yyyy-MM-ddTHH:mm:ssZ. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
value | array | Quota request details. |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
error | object | Error details of the quota request. |
message | string | User-friendly status message. |
provisioningState | string | The quota request status. Known values are: "Accepted", "Invalid", "Succeeded", "Failed", and "InProgress". (Accepted, Invalid, Succeeded, Failed, InProgress) |
requestSubmitTime | string (date-time) | The quota request submission time. The date conforms to the following format specified by the ISO 8601 standard: yyyy-MM-ddTHH:mm:ssZ. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
value | array | Quota request details. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | id, scope | Get the quota request details and status by quota request ID for the resources of the resource provider at a specific location. The quota request ID id is returned in the response of the PUT operation. | |
list | select | scope | $filter, $top, $skiptoken | For the specified scope, get the current quota requests for a one year period ending at the time is made. Use the oData filter to select quota requests. |
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 |
|---|---|---|
id | string | Quota request ID. Required. |
scope | string | The fully qualified Azure Resource manager identifier of the resource. Required. |
$filter | string | | Field | Supported operators |---------------------|------------------------ |requestSubmitTime | ge, le, eq, gt, lt |provisioningState eq {QuotaRequestState} |resourceName eq {resourceName}. Default value is None. |
$skiptoken | string | The Skiptoken parameter is used only if a previous operation returned a partial result. If a previous response contains a nextLink element, its value includes a skiptoken parameter that specifies a starting point to use for subsequent calls. Default value is None. |
$top | integer | Number of records to return. Default value is None. |
SELECT examples
- get
- list
Get the quota request details and status by quota request ID for the resources of the resource provider at a specific location. The quota request ID id is returned in the response of the PUT operation.
SELECT
id,
name,
error,
message,
provisioningState,
requestSubmitTime,
systemData,
type,
value
FROM azure.quota.quota_request_status
WHERE id = '{{ id }}' -- required
AND scope = '{{ scope }}' -- required
;
For the specified scope, get the current quota requests for a one year period ending at the time is made. Use the oData filter to select quota requests.
SELECT
id,
name,
error,
message,
provisioningState,
requestSubmitTime,
systemData,
type,
value
FROM azure.quota.quota_request_status
WHERE scope = '{{ scope }}' -- required
AND $filter = '{{ $filter }}'
AND $top = '{{ $top }}'
AND $skiptoken = '{{ $skiptoken }}'
;