Skip to main content

operation_status

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

Overview

Nameoperation_status
TypeResource
Idazure.service_fabric_managed_clusters.operation_status

Fields

NameDatatypeDescription
namestringThe name of the operation.
endTimestringThe end time of the operation.
errorobjectThe error details.
percentCompletenumberThe completion percentage of the operation.
startTimestringThe start time of the operation.
statusstringThe status of the operation.

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, operationId, subscriptionIdGet long running operation status.

SELECT examples

Get long running operation status.

SELECT
name,
endTime,
error,
percentComplete,
startTime,
status
FROM azure.service_fabric_managed_clusters.operation_status
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';