Skip to main content

operation_results

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

Overview

Nameoperation_results
TypeResource
Idazure.bot_service.operation_results

Fields

The following fields are returned by SELECT queries:

The body contains all of the properties of the operation result.

NameDatatypeDescription
idstringThe ID of the operation returned.
namestringThe name of the operation result.
startTimestring (date-time)The time that the operation was started.
statusstringThe status of the operation being performed.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, operationResultIdGet the operation result for a long running operation.

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
operationResultIdstringThe ID of the operation result to get.
subscriptionIdstringAzure Subscription ID.

SELECT examples

Get the operation result for a long running operation.

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