Skip to main content

operations_results

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

Overview

Nameoperations_results
TypeResource
Idazure.orbital.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
next_linktextfield from the properties object
operationIdtextfield from the properties object
percent_completetextfield from the properties object
start_timetextfield from the properties object
statustextThe status of operation.
subscriptionIdtextfield from the properties object
valuetextA list of results when the operation returns multiple results.

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, operationId, subscriptionIdReturns operation results.

SELECT examples

Returns operation results.

SELECT
id,
name,
end_time,
error,
location,
next_link,
operationId,
percent_complete,
start_time,
status,
subscriptionId,
value
FROM azure.orbital.vw_operations_results
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';