Skip to main content

request_status

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

Overview

Namerequest_status
TypeResource
Idazure.quota.request_status

Fields

The following fields are returned by SELECT queries:

OK. Returning the status for the quota request.

NameDatatypeDescription
idstringQuota request ID.
namestringQuota request name.
propertiesobjectQuota request details.
typestringResource type. "Microsoft.Quota/quotas".

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.
scopestringThe target Azure resource URI. For example, /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qms-test/providers/Microsoft.Batch/batchAccounts/testAccount/. This is the target Azure resource URI for the List GET operation. If a {resourceName} is added after /quotas, then it's the target Azure resource URI in the GET operation for the specific resource.
$filterstring| Field | Supported operators |---------------------|------------------------
|requestSubmitTime | ge, le, eq, gt, lt |provisioningState eq {QuotaRequestState} |resourceName eq {resourceName}
$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.
$topinteger (int32)Number of records to return.

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,
properties,
type
FROM azure.quota.request_status
WHERE id = '{{ id }}' -- required
AND scope = '{{ scope }}' -- required
;