Skip to main content

hyperv_jobs_controllers

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

Overview

Namehyperv_jobs_controllers
TypeResource
Idazure.migrate.hyperv_jobs_controllers

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 VmwareJob
list_by_vmware_siteSELECTresourceGroupName, siteName, subscriptionIdList VmwareJob resources by VmwareSite

SELECT examples

List VmwareJob resources by VmwareSite

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_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';