Skip to main content

operations_results

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

Overview

Nameoperations_results
TypeResource
Idazure.data_explorer.operations_results

Fields

NameDatatypeDescription
idtextID of the resource.
nametextName of the resource.
end_timetextfield from the properties object
errortextOperation result error properties
locationtextfield from the properties object
operationIdtextfield from the properties object
operation_kindtextfield from the properties object
operation_statetextfield from the properties object
percent_completetextfield from the properties object
provisioning_statetextfield from the properties object
start_timetextfield from the properties object
statustextThe status of operation.
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, operationId, subscriptionIdReturns operation results.

SELECT examples

Returns operation 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 }}';