operation_status
Creates, updates, deletes, gets or lists an operation_status
resource.
Overview
Name | operation_status |
Type | Resource |
Id | azure.service_fabric_managed_clusters.operation_status |
Fields
The following fields are returned by SELECT
queries:
- get
OK. The request has succeeded.
Name | Datatype | Description |
---|---|---|
name | string | The name of the operation. |
endTime | string (date-time) | The end time of the operation. |
error | object | The operation error. |
percentComplete | number (double) | The completion percentage of the operation. |
startTime | string (date-time) | The start time of the operation. |
status | string | The status of the operation. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , location , operationId | api-version | 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.
Name | Datatype | Description |
---|---|---|
location | string | The location for the cluster code versions. This is different from cluster location. |
operationId | string | operation identifier. |
subscriptionId | string | The customer subscription identifier. |
api-version | string | The version of the Service Fabric resource provider API. This is a required parameter and it's value must be "2024-06-01-preview" for this specification. |
SELECT
examples
- get
Get long running operation status.
SELECT
name,
endTime,
error,
percentComplete,
startTime,
status
FROM azure.service_fabric_managed_clusters.operation_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND operationId = '{{ operationId }}' -- required
AND api-version = '{{ api-version }}'
;