Skip to main content

async_operation_status

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

Overview

Nameasync_operation_status
TypeResource
Idazure_isv.redis.async_operation_status

Fields

The following fields are returned by SELECT queries:

Asynchronous operation status response

NameDatatypeDescription
idstringFully qualified ID for the async operation.
namestringName of the async operation.
endTimestring (date-time)The end time of the operation.
errorobjectIf present, details of the operation error.
operationsarrayThe operations list.
percentCompletenumberPercent of the operation that is complete.
propertiesobjectAdditional properties from RP, only when operation is successful
startTimestring (date-time)The start time of the operation.
statusstringOperation status.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation, operationId, subscriptionIdFor checking the ongoing status of an 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
locationstringThe location at which operation was triggered
operationIdstringThe ID of asynchronous operation
subscriptionIdstringThe ID of the target subscription.

SELECT examples

For checking the ongoing status of an operation

SELECT
id,
name,
endTime,
error,
operations,
percentComplete,
properties,
startTime,
status
FROM azure_isv.redis.async_operation_status
WHERE location = '{{ location }}' -- required
AND operationId = '{{ operationId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;