vw_operations_results
Creates, updates, deletes, gets or lists a vw_operations_results
resource.
Overview
Name | vw_operations_results |
Type | View |
Id | azure.data_explorer.vw_operations_results |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
status as status,
startTime as start_time,
endTime as end_time,
percentComplete as percent_complete,
error as error,
JSON_EXTRACT(properties, '$.operationKind') as "operation_kind",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.operationState') as "operation_state",
subscriptionId,
location,
operationId
FROM azure.data_explorer.operations_results
WHERE subscriptionId = 'replace-me' AND location = 'replace-me' AND operationId = 'replace-me';
SELECT
id as id,
name as name,
status as status,
startTime as start_time,
endTime as end_time,
percentComplete as percent_complete,
error as error,
json_extract_path_text(properties, '$.operationKind') as "operation_kind",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.operationState') as "operation_state",
subscriptionId,
location,
operationId
FROM azure.data_explorer.operations_results
WHERE subscriptionId = 'replace-me' AND location = 'replace-me' AND operationId = 'replace-me';