Skip to main content

operations_results

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

Overview

Nameoperations_results
TypeResource
Idazure_extras.orbital.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 (ISO 8601 UTC standard).
errorobjectOperation result error properties.
nextLinkstringThe URL to get the next set of results.
percentCompletenumberPercentage completed.
propertiesobjectOperation result properties.
startTimestring (date-time)The operation start time (ISO 8601 UTC standard).
statusstringThe status of operation. Known values are: "Succeeded", "Canceled", "Failed", and "Running".
valuearrayA list of results when the operation returns multiple results.

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 Azure region. Required.
operation_idstringThe ID of an ongoing async operation. Required.
subscription_idstring

SELECT examples

Returns operation results.

SELECT
id,
name,
endTime,
error,
nextLink,
percentComplete,
properties,
startTime,
status,
value
FROM azure_extras.orbital.operations_results
WHERE location = '{{ location }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;