Skip to main content

job_runs

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

Overview

Namejob_runs
TypeResource
Idazure.storage_mover.job_runs

Fields

NameDatatypeDescription
agent_nametextfield from the properties object
agent_resource_idtextfield from the properties object
bytes_excludedtextfield from the properties object
bytes_failedtextfield from the properties object
bytes_no_transfer_neededtextfield from the properties object
bytes_scannedtextfield from the properties object
bytes_transferredtextfield from the properties object
bytes_unsupportedtextfield from the properties object
errortextfield from the properties object
execution_end_timetextfield from the properties object
execution_start_timetextfield from the properties object
items_excludedtextfield from the properties object
items_failedtextfield from the properties object
items_no_transfer_neededtextfield from the properties object
items_scannedtextfield from the properties object
items_transferredtextfield from the properties object
items_unsupportedtextfield from the properties object
jobDefinitionNametextfield from the properties object
jobRunNametextfield from the properties object
job_definition_propertiestextfield from the properties object
last_status_updatetextfield from the properties object
projectNametextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
scan_statustextfield from the properties object
source_nametextfield from the properties object
source_propertiestextfield from the properties object
source_resource_idtextfield from the properties object
statustextfield from the properties object
storageMoverNametextfield from the properties object
subscriptionIdtextfield from the properties object
system_datatextfield from the properties object
target_nametextfield from the properties object
target_propertiestextfield from the properties object
target_resource_idtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTjobDefinitionName, jobRunName, projectName, resourceGroupName, storageMoverName, subscriptionIdGets a Job Run resource.
listSELECTjobDefinitionName, projectName, resourceGroupName, storageMoverName, subscriptionIdLists all Job Runs in a Job Definition.

SELECT examples

Lists all Job Runs in a Job Definition.

SELECT
agent_name,
agent_resource_id,
bytes_excluded,
bytes_failed,
bytes_no_transfer_needed,
bytes_scanned,
bytes_transferred,
bytes_unsupported,
error,
execution_end_time,
execution_start_time,
items_excluded,
items_failed,
items_no_transfer_needed,
items_scanned,
items_transferred,
items_unsupported,
jobDefinitionName,
jobRunName,
job_definition_properties,
last_status_update,
projectName,
provisioning_state,
resourceGroupName,
scan_status,
source_name,
source_properties,
source_resource_id,
status,
storageMoverName,
subscriptionId,
system_data,
target_name,
target_properties,
target_resource_id
FROM azure.storage_mover.vw_job_runs
WHERE jobDefinitionName = '{{ jobDefinitionName }}'
AND projectName = '{{ projectName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND storageMoverName = '{{ storageMoverName }}'
AND subscriptionId = '{{ subscriptionId }}';