jobs
Creates, updates, deletes, gets or lists a jobs
resource.
Overview
Name | jobs |
Type | Resource |
Id | azure.data_box_edge.jobs |
Fields
- vw_jobs
- jobs
Name | Datatype | Description |
---|---|---|
id | text | The path ID that uniquely identifies the object. |
name | text | The name of the object. |
current_stage | text | field from the properties object |
deviceName | text | field from the properties object |
download_progress | text | field from the properties object |
end_time | text | field from the properties object |
error | text | The job error information containing the list of job errors. |
error_manifest_file | text | field from the properties object |
folder | text | field from the properties object |
install_progress | text | field from the properties object |
job_type | text | field from the properties object |
percent_complete | integer | field from the properties object |
refreshed_entity_id | text | field from the properties object |
resourceGroupName | text | field from the properties object |
start_time | text | field from the properties object |
status | text | The current status of the job. |
subscriptionId | text | field from the properties object |
total_refresh_errors | text | field from the properties object |
type | text | The hierarchical type of the object. |
Name | Datatype | Description |
---|---|---|
id | string | The path ID that uniquely identifies the object. |
name | string | The name of the object. |
endTime | string | The UTC date and time at which the job completed. |
error | object | The job error information containing the list of job errors. |
percentComplete | integer | The percentage of the job that is complete. |
properties | object | The properties for the job. |
startTime | string | 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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | deviceName, name, resourceGroupName, subscriptionId |
SELECT
examples
- vw_jobs
- jobs
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 }}';
SELECT
id,
name,
endTime,
error,
percentComplete,
properties,
startTime,
status,
type
FROM azure.data_box_edge.jobs
WHERE deviceName = '{{ deviceName }}'
AND name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';