Skip to main content

operation_results

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

Overview

Nameoperation_results
TypeResource
Idazure_stack.deployment_admin.operation_results

Fields

NameDatatypeDescription
idstringID of the resource.
namestringName of the resource.
endTimestringThe deployment end time
percentCompletenumberPercentage completed.
startTimestringThe deployment start time
statusstringSpecifies the state of the Operation result.

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, operationResultId, subscriptionIdRetrieves the specific operation results.

SELECT examples

Retrieves the specific operation results.

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