operation_status
Creates, updates, deletes, gets or lists a operation_status
resource.
Overview
Name | operation_status |
Type | Resource |
Id | azure.service_fabric_managed_clusters.operation_status |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the operation. |
endTime | string | The end time of the operation. |
error | object | The error details. |
percentComplete | number | The completion percentage of the operation. |
startTime | string | The start time of the operation. |
status | string | The status of the operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, operationId, subscriptionId | Get 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 }}';