Skip to main content

operation_results

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

Overview

Nameoperation_results
TypeResource
Idazure_stack.deployment_admin.operation_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringID of the resource.
namestringName of the resource.
endTimestring (date-time)The deployment end time
percentCompletenumber (double)Percentage completed.
startTimestring (date-time)The deployment start time
statusstringstatus of the Operation result.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, location, operationResultIdRetrieves the specific 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
locationstringLocation of the resource.
operationResultIdstringThe operation result identifier.
subscriptionIdstringSubscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Retrieves the specific operation results.

SELECT
id,
name,
endTime,
percentComplete,
startTime,
status
FROM azure_stack.deployment_admin.operation_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND operationResultId = '{{ operationResultId }}' -- required
;