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

NameDatatypeDescription
idtextQuota request ID.
nametextQuota request name.
errortextfield from the properties object
messagetextfield from the properties object
provisioning_statetextfield from the properties object
request_submit_timetextfield from the properties object
scopetextfield from the properties object
typetextResource type. "Microsoft.Quota/quotas".
valuetextfield from the properties object

Methods

NameAccessible byRequired 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.
listSELECTscopeFor 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 examples

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,
provisioning_state,
request_submit_time,
scope,
type,
value
FROM azure.quota.vw_request_status
WHERE scope = '{{ scope }}';