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
- vw_quota_request_status
- quota_request_status
Name | Datatype | Description |
---|---|---|
id | text | Quota request ID. |
name | text | Quota request name. |
location | text | field from the properties object |
message | text | field from the properties object |
providerId | text | field from the properties object |
provisioning_state | text | field from the properties object |
request_submit_time | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource type |
value | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Quota request ID. |
name | string | Quota request name. |
properties | object | The details of quota request. |
type | string | Resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | id, location, providerId, subscriptionId | 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 | location, providerId, subscriptionId | 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
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.
- vw_quota_request_status
- quota_request_status
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 }}';
SELECT
id,
name,
properties,
type
FROM azure.reservations.quota_request_status
WHERE location = '{{ location }}'
AND providerId = '{{ providerId }}'
AND subscriptionId = '{{ subscriptionId }}';