vw_request_status
Creates, updates, deletes, gets or lists a vw_request_status
resource.
Overview
Name | vw_request_status |
Type | View |
Id | azure.quota.vw_request_status |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.message') as "message",
JSON_EXTRACT(properties, '$.error') as "error",
JSON_EXTRACT(properties, '$.requestSubmitTime') as "request_submit_time",
JSON_EXTRACT(properties, '$.value') as "value",
scope,
id
FROM azure.quota.request_status
WHERE scope = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.message') as "message",
json_extract_path_text(properties, '$.error') as "error",
json_extract_path_text(properties, '$.requestSubmitTime') as "request_submit_time",
json_extract_path_text(properties, '$.value') as "value",
scope,
id
FROM azure.quota.request_status
WHERE scope = 'replace-me';