operations_status
Creates, updates, deletes, gets or lists an operations_status resource.
Overview
| Name | operations_status |
| Type | Resource |
| Id | azure.data_box_edge.operations_status |
Fields
The following fields are returned by SELECT queries:
- get
The job details.
| Name | Datatype | Description |
|---|---|---|
id | string | The path ID that uniquely identifies the object. |
name | string | The name of the object. |
endTime | string (date-time) | The UTC date and time at which the job completed. |
error | object | The error details. |
percentComplete | integer (int32) | The percentage of the job that is complete. |
properties | object | The properties of the job. |
startTime | string (date-time) | The UTC date and time at which the job started. |
status | string | The current status of the job. |
type | string | The hierarchical type of the object. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | deviceName, name, subscriptionId, resourceGroupName |
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 |
|---|---|---|
deviceName | string | The device name. |
name | string | The job name. |
resourceGroupName | string | The resource group name. |
subscriptionId | string | The subscription ID. |
SELECT examples
- get
The job details.
SELECT
id,
name,
endTime,
error,
percentComplete,
properties,
startTime,
status,
type
FROM azure.data_box_edge.operations_status
WHERE deviceName = '{{ deviceName }}' -- required
AND name = '{{ name }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;