Skip to main content

operation_results

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

Overview

Nameoperation_results
TypeResource
Idazure.bot_service.operation_results

Fields

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

Methods

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

SELECT examples

Get the operation result for a long running operation.

SELECT
id,
name,
startTime,
status
FROM azure.bot_service.operation_results
WHERE operationResultId = '{{ operationResultId }}'
AND subscriptionId = '{{ subscriptionId }}';