Skip to main content

operations_status

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

Overview

Nameoperations_status
TypeResource
Idazure_isv.redisenterprise.operations_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe operation's unique id.
namestringThe operation's name.
endTimestringThe end time of the operation.
errorobjectError response describing why the operation failed.
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, operation_id, subscription_idGets 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 the Azure region. Required.
operation_idstringThe ID of an ongoing async operation. Required.
subscription_idstring

SELECT examples

Gets the status of operation.

SELECT
id,
name,
endTime,
error,
startTime,
status
FROM azure_isv.redisenterprise.operations_status
WHERE location = '{{ location }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;