Skip to main content

hyperv_jobs

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

Overview

Namehyperv_jobs
TypeResource
Idazure.migrate.hyperv_jobs

Fields

NameDatatypeDescription
activity_idtextfield from the properties object
client_request_idtextfield from the properties object
display_nametextfield from the properties object
end_timetextfield from the properties object
errorstextfield from the properties object
jobNametextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
siteNametextfield from the properties object
start_timetextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTjobName, resourceGroupName, siteName, subscriptionIdGet a HypervJob
list_by_hyperv_siteSELECTresourceGroupName, siteName, subscriptionIdList HypervJob resources by HypervSite

SELECT examples

List HypervJob resources by HypervSite

SELECT
activity_id,
client_request_id,
display_name,
end_time,
errors,
jobName,
provisioning_state,
resourceGroupName,
siteName,
start_time,
status,
subscriptionId
FROM azure.migrate.vw_hyperv_jobs
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';