Skip to main content

operations_status

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

Overview

Nameoperations_status
TypeResource
Idazure_isv.redis_enterprise.operations_status

Fields

NameDatatypeDescription
idstringThe operation's unique id.
namestringThe operation's name.
endTimestringThe end time of the operation.
errorobjectCommon error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
startTimestringThe start time of the operation.
statusstringThe current status of the operation.

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, operationId, subscriptionIdGets the status of operation.

SELECT examples

Gets the status of operation.

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