Skip to main content

operations_results

Creates, updates, deletes, gets or lists an operations_results resource.

Overview

Nameoperations_results
TypeResource
Idazure.kusto.operations_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringID of the resource.
namestringName of the resource.
endTimestring (date-time)The operation end time.
errorobjectObject that contains the error code and message if the operation failed.
operationKindstringThe kind of the operation.
operationStatestringThe state of the operation.
percentCompletenumberPercentage completed.
provisioningStatestringThe provisioned state of the resource. Known values are: "Running", "Creating", "Deleting", "Succeeded", "Failed", "Moving", and "Canceled". (Running, Creating, Deleting, Succeeded, Failed, Moving, Canceled)
startTimestring (date-time)The operation start time.
statusstringstatus 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:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation, operation_id, subscription_idReturns 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.

NameDatatypeDescription
locationstringThe name of the Azure region. Required.
operation_idstringThe ID of an ongoing async operation. Required.
subscription_idstring

SELECT examples

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
;