operations_results
Creates, updates, deletes, gets or lists an operations_results resource.
Overview
| Name | operations_results |
| Type | Resource |
| Id | azure.kusto.operations_results |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
endTime | string (date-time) | The operation end time. |
error | object | Object that contains the error code and message if the operation failed. |
operationKind | string | The kind of the operation. |
operationState | string | The state of the operation. |
percentComplete | number | Percentage completed. |
provisioningState | string | The provisioned state of the resource. Known values are: "Running", "Creating", "Deleting", "Succeeded", "Failed", "Moving", and "Canceled". (Running, Creating, Deleting, Succeeded, Failed, Moving, Canceled) |
startTime | string (date-time) | The operation start time. |
status | string | status of the Operation result. Known values are: "Succeeded", "Canceled", "Failed", and "Running". (Succeeded, Canceled, Failed, Running) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | location, operation_id, subscription_id | Returns operation results. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
location | string | The name of the Azure region. Required. |
operation_id | string | The ID of an ongoing async operation. Required. |
subscription_id | string |
SELECT examples
- get
Returns operation results.
SELECT
id,
name,
endTime,
error,
operationKind,
operationState,
percentComplete,
provisioningState,
startTime,
status
FROM azure.kusto.operations_results
WHERE location = '{{ location }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;