Skip to main content

operations_results

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

Overview

Nameoperations_results
TypeResource
Idazure.data_explorer.operations_results

Fields

The following fields are returned by SELECT queries:

Successfully retrieved the operation result.

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.
percentCompletenumber (double)Percentage completed.
propertiesobjectProperties of the operation results
startTimestring (date-time)The operation start time
statusstringstatus of the Operation result.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, location, operationIdReturns 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 Azure region.
operationIdstringThe ID of an ongoing async operation.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Returns operation results.

SELECT
id,
name,
endTime,
error,
percentComplete,
properties,
startTime,
status
FROM azure.data_explorer.operations_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND operationId = '{{ operationId }}' -- required
;