Skip to main content

quota_request_status

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

Overview

Namequota_request_status
TypeResource
Idazure.reservations.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.
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 time when the quota request was submitted using format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
valuearrayThe quotaRequests.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscription_id, provider_id, location, idFor the specified Azure region (location), get the details and status of the quota request by the quota request ID for the resources of the resource provider. The PUT request for the quota (service limit) returns a response with the requestId parameter.
listselectsubscription_id, provider_id, location$filter, $top, $skiptokenFor the specified Azure region (location), subscription, and resource provider, get the history of the quota requests for the past year. To select specific quota requests, use the oData filter.

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.
locationstringAzure region. Required.
provider_idstringAzure resource provider ID. Required.
subscription_idstringThe ID of the target subscription. The value must be an UUID. Required.
$filterstring| Field | Supported operators | |---------------------|------------------------| |requestSubmitTime | ge, le, eq, gt, lt |. Default value is None.
$skiptokenstringSkiptoken is only used if a previous operation returned a partial result. If a previous response contains a nextLink element, the value of the nextLink element 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

For the specified Azure region (location), get the details and status of the quota request by the quota request ID for the resources of the resource provider. The PUT request for the quota (service limit) returns a response with the requestId parameter.

SELECT
id,
name,
message,
provisioningState,
requestSubmitTime,
systemData,
type,
value
FROM azure.reservations.quota_request_status
WHERE subscription_id = '{{ subscription_id }}' -- required
AND provider_id = '{{ provider_id }}' -- required
AND location = '{{ location }}' -- required
AND id = '{{ id }}' -- required
;