request_status
Creates, updates, deletes, gets or lists a request_status
resource.
Overview
Name | request_status |
Type | Resource |
Id | azure.quota.request_status |
Fields
- vw_request_status
- request_status
Name | Datatype | Description |
---|---|---|
id | text | Quota request ID. |
name | text | Quota request name. |
error | text | field from the properties object |
message | text | field from the properties object |
provisioning_state | text | field from the properties object |
request_submit_time | text | field from the properties object |
scope | text | field from the properties object |
type | text | Resource type. "Microsoft.Quota/quotas". |
value | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Quota request ID. |
name | string | Quota request name. |
properties | object | Quota request properties. |
type | string | Resource type. "Microsoft.Quota/quotas". |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | id, scope | Get 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. |
list | SELECT | scope | 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
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.
- vw_request_status
- request_status
SELECT
id,
name,
error,
message,
provisioning_state,
request_submit_time,
scope,
type,
value
FROM azure.quota.vw_request_status
WHERE scope = '{{ scope }}';
SELECT
id,
name,
properties,
type
FROM azure.quota.request_status
WHERE scope = '{{ scope }}';