Skip to main content

machines_controllers

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

Overview

Namemachines_controllers
TypeResource
Idazure.migrate.machines_controllers

Fields

NameDatatypeDescription
descriptiontextfield from the properties object
allocated_memory_in_mbtextfield from the properties object
alt_guest_nametextfield from the properties object
appliance_namestextfield from the properties object
application_discoverytextfield from the properties object
apps_and_rolestextfield from the properties object
bios_guidtextfield from the properties object
bios_serial_numbertextfield from the properties object
change_tracking_enabledtextfield from the properties object
change_tracking_supportedtextfield from the properties object
created_timestamptextfield from the properties object
data_center_scopetextfield from the properties object
dependency_map_discoverytextfield from the properties object
dependency_mappingtextfield from the properties object
dependency_mapping_end_timetextfield from the properties object
dependency_mapping_start_timetextfield from the properties object
disk_enabled_uuidtextfield from the properties object
diskstextfield from the properties object
display_nametextfield from the properties object
errorstextfield from the properties object
firmwaretextfield from the properties object
guest_details_discovery_timestamptextfield from the properties object
guest_os_detailstextfield from the properties object
host_in_maintenance_modetextfield from the properties object
host_nametextfield from the properties object
host_power_statetextfield from the properties object
host_versiontextfield from the properties object
iis_discoverytextfield from the properties object
instance_uuidtextfield from the properties object
is_deletedtextfield from the properties object
is_guest_details_discovery_in_progresstextfield from the properties object
machineNametextfield from the properties object
max_snapshotstextfield from the properties object
network_adapterstextfield from the properties object
number_of_applicationstextfield from the properties object
number_of_processor_coretextfield from the properties object
number_of_snapshotstextfield from the properties object
operating_system_detailstextfield from the properties object
oracle_discoverytextfield from the properties object
power_statustextfield from the properties object
product_support_statustextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
run_as_account_idtextfield from the properties object
siteNametextfield from the properties object
spring_boot_discoverytextfield from the properties object
sql_discoverytextfield from the properties object
static_discoverytextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextfield from the properties object
tomcat_discoverytextfield from the properties object
updated_timestamptextfield from the properties object
v_center_fqdntextfield from the properties object
v_center_idtextfield from the properties object
v_mware_tools_statustextfield from the properties object
v_mware_tools_versiontextfield from the properties object
vm_configuration_file_locationtextfield from the properties object
vm_fqdntextfield from the properties object
web_app_discoverytextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTmachineName, resourceGroupName, siteName, subscriptionIdGet a MachineResource
list_by_vmware_siteSELECTresourceGroupName, siteName, subscriptionIdList MachineResource resources by VmwareSite
updateUPDATEmachineName, resourceGroupName, siteName, subscriptionIdUpdate a MachineResource
startEXECmachineName, resourceGroupName, siteName, subscriptionIdMethod to start a machine.
stopEXECmachineName, resourceGroupName, siteName, subscriptionIdMethod to stop a machine.

SELECT examples

List MachineResource resources by VmwareSite

SELECT
description,
allocated_memory_in_mb,
alt_guest_name,
appliance_names,
application_discovery,
apps_and_roles,
bios_guid,
bios_serial_number,
change_tracking_enabled,
change_tracking_supported,
created_timestamp,
data_center_scope,
dependency_map_discovery,
dependency_mapping,
dependency_mapping_end_time,
dependency_mapping_start_time,
disk_enabled_uuid,
disks,
display_name,
errors,
firmware,
guest_details_discovery_timestamp,
guest_os_details,
host_in_maintenance_mode,
host_name,
host_power_state,
host_version,
iis_discovery,
instance_uuid,
is_deleted,
is_guest_details_discovery_in_progress,
machineName,
max_snapshots,
network_adapters,
number_of_applications,
number_of_processor_core,
number_of_snapshots,
operating_system_details,
oracle_discovery,
power_status,
product_support_status,
provisioning_state,
resourceGroupName,
run_as_account_id,
siteName,
spring_boot_discovery,
sql_discovery,
static_discovery,
subscriptionId,
tags,
tomcat_discovery,
updated_timestamp,
v_center_fqdn,
v_center_id,
v_mware_tools_status,
v_mware_tools_version,
vm_configuration_file_location,
vm_fqdn,
web_app_discovery
FROM azure.migrate.vw_machines_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';

UPDATE example

Updates a machines_controllers resource.

/*+ update */
UPDATE azure.migrate.machines_controllers
SET
properties = '{{ properties }}'
WHERE
machineName = '{{ machineName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';