Skip to main content

quota_request_status

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

Overview

Namequota_request_status
TypeResource
Idazure.quota.quota_request_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
errorobjectError details of the quota request.
messagestringUser-friendly status message.
provisioningStatestringThe quota request status. Known values are: "Accepted", "Invalid", "Succeeded", "Failed", and "InProgress". (Accepted, Invalid, Succeeded, Failed, InProgress)
requestSubmitTimestring (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.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
valuearrayQuota request details.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectid, scopeGet 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.
listselectscope$filter, $top, $skiptokenFor 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.

NameDatatypeDescription
idstringQuota request ID. Required.
scopestringThe fully qualified Azure Resource manager identifier of the resource. Required.
$filterstring| Field | Supported operators |---------------------|------------------------ |requestSubmitTime | ge, le, eq, gt, lt |provisioningState eq {QuotaRequestState} |resourceName eq {resourceName}. Default value is None.
$skiptokenstringThe 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.
$topintegerNumber of records to return. Default value is None.

SELECT examples

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
;