Skip to main content

jobs

Creates, updates, deletes, gets or lists a jobs resource.

Overview

Namejobs
TypeResource
Idazure.data_box_edge.jobs

Fields

NameDatatypeDescription
idtextThe path ID that uniquely identifies the object.
nametextThe name of the object.
current_stagetextfield from the properties object
deviceNametextfield from the properties object
download_progresstextfield from the properties object
end_timetextfield from the properties object
errortextThe job error information containing the list of job errors.
error_manifest_filetextfield from the properties object
foldertextfield from the properties object
install_progresstextfield from the properties object
job_typetextfield from the properties object
percent_completeintegerfield from the properties object
refreshed_entity_idtextfield from the properties object
resourceGroupNametextfield from the properties object
start_timetextfield from the properties object
statustextThe current status of the job.
subscriptionIdtextfield from the properties object
total_refresh_errorstextfield from the properties object
typetextThe hierarchical type of the object.

Methods

NameAccessible byRequired ParamsDescription
getSELECTdeviceName, name, resourceGroupName, subscriptionId

SELECT examples

SELECT
id,
name,
current_stage,
deviceName,
download_progress,
end_time,
error,
error_manifest_file,
folder,
install_progress,
job_type,
percent_complete,
refreshed_entity_id,
resourceGroupName,
start_time,
status,
subscriptionId,
total_refresh_errors,
type
FROM azure.data_box_edge.vw_jobs
WHERE deviceName = '{{ deviceName }}'
AND name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';