Skip to main content

operation_status

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

Overview

Nameoperation_status
TypeResource
Idazure.service_fabric_managed_clusters.operation_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the operation.
endTimestring (date-time)The end time of the operation.
errorobjectThe operation error.
percentCompletenumberThe completion percentage of the operation.
startTimestring (date-time)The start time of the operation.
statusstringThe status of the operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation, operation_id, subscription_idGet long running operation status. Get long running operation status.

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_idstringoperation identifier. Required.
subscription_idstring

SELECT examples

Get long running operation status. Get long running operation status.

SELECT
name,
endTime,
error,
percentComplete,
startTime,
status
FROM azure.service_fabric_managed_clusters.operation_status
WHERE location = '{{ location }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;