Skip to main content

operation_results

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

Overview

Nameoperation_results
TypeResource
Idazure_extras.healthcare.operation_results

Fields

NameDatatypeDescription
idstringThe ID of the operation returned.
namestringThe name of the operation result.
endTimestringThe time that the operation finished.
propertiesobjectAdditional properties of the operation result.
startTimestringThe time that the operation was started.
statusstringThe status of the operation being performed.

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocationName, operationResultId, subscriptionIdGet the operation result for a long running operation.

SELECT examples

Get the operation result for a long running operation.

SELECT
id,
name,
endTime,
properties,
startTime,
status
FROM azure_extras.healthcare.operation_results
WHERE locationName = '{{ locationName }}'
AND operationResultId = '{{ operationResultId }}'
AND subscriptionId = '{{ subscriptionId }}';