operation_status
Creates, updates, deletes, gets or lists a operation_status
resource.
Overview
Name | operation_status |
Type | Resource |
Id | azure.device_registry.operation_status |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified ID for the async operation. |
name | string | Name of the async operation. |
endTime | string | The end time of the operation. |
error | object | The error detail. |
operations | array | The operations list. |
percentComplete | number | Percent of the operation that is complete. |
resourceId | string | Fully qualified ID of the resource against which the original async operation was started. |
startTime | string | The start time of the operation. |
status | string | Operation status. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, operationId, subscriptionId | Returns the current status of an async operation. |
SELECT
examples
Returns the current status of an async operation.
SELECT
id,
name,
endTime,
error,
operations,
percentComplete,
resourceId,
startTime,
status
FROM azure.device_registry.operation_status
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';