quota_request_status
Creates, updates, deletes, gets or lists a quota_request_status
resource.
Overview
Name | quota_request_status |
Type | Resource |
Id | azure.reservations.quota_request_status |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Ok. Returns the status of the quota request.
Name | Datatype | Description |
---|---|---|
id | string | Quota request ID. |
name | string | Quota request name. |
properties | object | Quota request details. |
type | string | Resource type |
Ok. Returns details and status of the quota request.
Name | Datatype | Description |
---|---|---|
id | string | Quota request ID. |
name | string | Quota request name. |
properties | object | Quota request details. |
type | string | Resource type |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , providerId , location , id | 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. | |
list | select | subscriptionId , providerId , location | $filter , $top , $skiptoken | 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. |
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.
Name | Datatype | Description |
---|---|---|
id | string | Quota Request ID. |
location | string | Azure region. |
providerId | string | Azure resource provider ID. |
subscriptionId | string | Azure subscription ID. |
$filter | string | | Field | Supported operators | |---------------------|------------------------| |requestSubmitTime | ge, le, eq, gt, lt | |
$skiptoken | string | Skiptoken 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. |
$top | integer (int32) | Number of records to return. |
SELECT
examples
- get
- list
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
;
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,
properties,
type
FROM azure.reservations.quota_request_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND providerId = '{{ providerId }}' -- required
AND location = '{{ location }}' -- required
AND $filter = '{{ $filter }}'
AND $top = '{{ $top }}'
AND $skiptoken = '{{ $skiptoken }}'
;