Skip to main content

operations_status

Creates, updates, deletes, gets or lists an operations_status resource.

Overview

Nameoperations_status
TypeResource
Idazure.data_box_edge.operations_status

Fields

The following fields are returned by SELECT queries:

The job details.

NameDatatypeDescription
idstringThe path ID that uniquely identifies the object.
namestringThe name of the object.
endTimestring (date-time)The UTC date and time at which the job completed.
errorobjectThe error details.
percentCompleteinteger (int32)The percentage of the job that is complete.
propertiesobjectThe properties of the job.
startTimestring (date-time)The UTC date and time at which the job started.
statusstringThe current status of the job.
typestringThe hierarchical type of the object.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdeviceName, 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.

NameDatatypeDescription
deviceNamestringThe device name.
namestringThe job name.
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription ID.

SELECT examples

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
;