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

NameDatatypeDescription
idtextQuota request ID.
nametextQuota request name.
locationtextfield from the properties object
messagetextfield from the properties object
providerIdtextfield from the properties object
provisioning_statetextfield from the properties object
request_submit_timetextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource type
valuetextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTid, location, providerId, subscriptionIdFor 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.
listSELECTlocation, providerId, subscriptionIdFor 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.

SELECT examples

For 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.

SELECT
id,
name,
location,
message,
providerId,
provisioning_state,
request_submit_time,
subscriptionId,
type,
value
FROM azure.reservations.vw_quota_request_status
WHERE location = '{{ location }}'
AND providerId = '{{ providerId }}'
AND subscriptionId = '{{ subscriptionId }}';