hyperv_jobs_controllers
Creates, updates, deletes, gets or lists a hyperv_jobs_controllers
resource.
Overview
Name | hyperv_jobs_controllers |
Type | Resource |
Id | azure.migrate.hyperv_jobs_controllers |
Fields
- vw_hyperv_jobs_controllers
- hyperv_jobs_controllers
Name | Datatype | Description |
---|---|---|
activity_id | text | field from the properties object |
client_request_id | text | field from the properties object |
display_name | text | field from the properties object |
end_time | text | field from the properties object |
errors | text | field from the properties object |
jobName | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
siteName | text | field from the properties object |
start_time | text | field from the properties object |
status | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Job REST Resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | jobName, resourceGroupName, siteName, subscriptionId | Get a VmwareJob |
list_by_vmware_site | SELECT | resourceGroupName, siteName, subscriptionId | List VmwareJob resources by VmwareSite |
SELECT
examples
List VmwareJob resources by VmwareSite
- vw_hyperv_jobs_controllers
- hyperv_jobs_controllers
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 }}';
SELECT
properties
FROM azure.migrate.hyperv_jobs_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';