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:

Ok. Returns the status of the quota request.

NameDatatypeDescription
idstringQuota request ID.
namestringQuota request name.
propertiesobjectQuota request details.
typestringResource type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, providerId, 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.
listselectsubscriptionId, providerId, 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.
locationstringAzure region.
providerIdstringAzure resource provider ID.
subscriptionIdstringAzure subscription ID.
$filterstring| Field | Supported operators |
|---------------------|------------------------|
|requestSubmitTime | ge, le, eq, gt, lt |
$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.
$topinteger (int32)Number of records to return.

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,
properties,
type
FROM azure.reservations.quota_request_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND providerId = '{{ providerId }}' -- required
AND location = '{{ location }}' -- required
AND id = '{{ id }}' -- required
;