Skip to main content

async_operation_status

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

Overview

Nameasync_operation_status
TypeResource
Idazure_isv.redis.async_operation_status

Fields

NameDatatypeDescription
idstringFully qualified ID for the async operation.
namestringName of the async operation.
endTimestringThe end time of the operation.
errorobjectThe error detail.
operationsarrayThe operations list.
percentCompletenumberPercent of the operation that is complete.
propertiesobjectAdditional properties from RP, only when operation is successful
startTimestringThe start time of the operation.
statusstringOperation status.

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, operationId, subscriptionIdFor checking the ongoing status of an operation

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 }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';