Skip to main content

operations_status

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

Overview

Nameoperations_status
TypeResource
Idazure_isv.redis_enterprise.operations_status

Fields

The following fields are returned by SELECT queries:

Success. The detailed status of the operation is in the response.

NameDatatypeDescription
idstringThe operation's unique id.
namestringThe operation's name.
endTimestringThe end time of the operation.
errorobjectError response describing why the operation failed. (title: Error response)
startTimestringThe start time of the operation.
statusstringThe current status of the operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation, operationId, subscriptionIdGets the status of 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 name of Azure region.
operationIdstringThe ID of an ongoing async operation.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Gets the status of operation.

SELECT
id,
name,
endTime,
error,
startTime,
status
FROM azure_isv.redis_enterprise.operations_status
WHERE location = '{{ location }}' -- required
AND operationId = '{{ operationId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;