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
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
message | string | User friendly status message. |
provisioningState | string | The quota request status. Known values are: "Accepted", "Invalid", "Succeeded", "Failed", and "InProgress". (Accepted, Invalid, Succeeded, Failed, InProgress) |
requestSubmitTime | string (date-time) | The time when the quota request was submitted using format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
value | array | The quotaRequests. |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
message | string | User friendly status message. |
provisioningState | string | The quota request status. Known values are: "Accepted", "Invalid", "Succeeded", "Failed", and "InProgress". (Accepted, Invalid, Succeeded, Failed, InProgress) |
requestSubmitTime | string (date-time) | The time when the quota request was submitted using format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
value | array | The quotaRequests. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscription_id, provider_id, 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 | subscription_id, provider_id, 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. Required. |
location | string | Azure region. Required. |
provider_id | string | Azure resource provider ID. Required. |
subscription_id | string | The ID of the target subscription. The value must be an UUID. Required. |
$filter | string | | Field | Supported operators | |---------------------|------------------------| |requestSubmitTime | ge, le, eq, gt, lt |. Default value is None. |
$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. Default value is None. |
$top | integer | Number of records to return. Default value is None. |
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,
message,
provisioningState,
requestSubmitTime,
systemData,
type,
value
FROM azure.reservations.quota_request_status
WHERE subscription_id = '{{ subscription_id }}' -- required
AND provider_id = '{{ provider_id }}' -- 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,
message,
provisioningState,
requestSubmitTime,
systemData,
type,
value
FROM azure.reservations.quota_request_status
WHERE subscription_id = '{{ subscription_id }}' -- required
AND provider_id = '{{ provider_id }}' -- required
AND location = '{{ location }}' -- required
AND $filter = '{{ $filter }}'
AND $top = '{{ $top }}'
AND $skiptoken = '{{ $skiptoken }}'
;