operations_results
Creates, updates, deletes, gets or lists a operations_results
resource.
Overview
Name | operations_results |
Type | Resource |
Id | azure.data_explorer.operations_results |
Fields
- vw_operations_results
- operations_results
Name | Datatype | Description |
---|---|---|
id | text | ID of the resource. |
name | text | Name of the resource. |
end_time | text | field from the properties object |
error | text | Operation result error properties |
location | text | field from the properties object |
operationId | text | field from the properties object |
operation_kind | text | field from the properties object |
operation_state | text | field from the properties object |
percent_complete | text | field from the properties object |
provisioning_state | text | field from the properties object |
start_time | text | field from the properties object |
status | text | The status of operation. |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
endTime | string | The operation end time |
error | object | Operation result error properties |
percentComplete | number | Percentage completed. |
properties | object | Operation result properties |
startTime | string | The operation start time |
status | string | The status of operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, operationId, subscriptionId | Returns operation results. |
SELECT
examples
Returns operation results.
- vw_operations_results
- operations_results
SELECT
id,
name,
end_time,
error,
location,
operationId,
operation_kind,
operation_state,
percent_complete,
provisioning_state,
start_time,
status,
subscriptionId
FROM azure.data_explorer.vw_operations_results
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
endTime,
error,
percentComplete,
properties,
startTime,
status
FROM azure.data_explorer.operations_results
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';