machines_controllers
Creates, updates, deletes, gets or lists a machines_controllers
resource.
Overview
Name | machines_controllers |
Type | Resource |
Id | azure.migrate.machines_controllers |
Fields
- vw_machines_controllers
- machines_controllers
Name | Datatype | Description |
---|---|---|
description | text | field from the properties object |
allocated_memory_in_mb | text | field from the properties object |
alt_guest_name | text | field from the properties object |
appliance_names | text | field from the properties object |
application_discovery | text | field from the properties object |
apps_and_roles | text | field from the properties object |
bios_guid | text | field from the properties object |
bios_serial_number | text | field from the properties object |
change_tracking_enabled | text | field from the properties object |
change_tracking_supported | text | field from the properties object |
created_timestamp | text | field from the properties object |
data_center_scope | text | field from the properties object |
dependency_map_discovery | text | field from the properties object |
dependency_mapping | text | field from the properties object |
dependency_mapping_end_time | text | field from the properties object |
dependency_mapping_start_time | text | field from the properties object |
disk_enabled_uuid | text | field from the properties object |
disks | text | field from the properties object |
display_name | text | field from the properties object |
errors | text | field from the properties object |
firmware | text | field from the properties object |
guest_details_discovery_timestamp | text | field from the properties object |
guest_os_details | text | field from the properties object |
host_in_maintenance_mode | text | field from the properties object |
host_name | text | field from the properties object |
host_power_state | text | field from the properties object |
host_version | text | field from the properties object |
iis_discovery | text | field from the properties object |
instance_uuid | text | field from the properties object |
is_deleted | text | field from the properties object |
is_guest_details_discovery_in_progress | text | field from the properties object |
machineName | text | field from the properties object |
max_snapshots | text | field from the properties object |
network_adapters | text | field from the properties object |
number_of_applications | text | field from the properties object |
number_of_processor_core | text | field from the properties object |
number_of_snapshots | text | field from the properties object |
operating_system_details | text | field from the properties object |
oracle_discovery | text | field from the properties object |
power_status | text | field from the properties object |
product_support_status | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
run_as_account_id | text | field from the properties object |
siteName | text | field from the properties object |
spring_boot_discovery | text | field from the properties object |
sql_discovery | text | field from the properties object |
static_discovery | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | field from the properties object |
tomcat_discovery | text | field from the properties object |
updated_timestamp | text | field from the properties object |
v_center_fqdn | text | field from the properties object |
v_center_id | text | field from the properties object |
v_mware_tools_status | text | field from the properties object |
v_mware_tools_version | text | field from the properties object |
vm_configuration_file_location | text | field from the properties object |
vm_fqdn | text | field from the properties object |
web_app_discovery | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Class for machine properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | machineName, resourceGroupName, siteName, subscriptionId | Get a MachineResource |
list_by_vmware_site | SELECT | resourceGroupName, siteName, subscriptionId | List MachineResource resources by VmwareSite |
update | UPDATE | machineName, resourceGroupName, siteName, subscriptionId | Update a MachineResource |
start | EXEC | machineName, resourceGroupName, siteName, subscriptionId | Method to start a machine. |
stop | EXEC | machineName, resourceGroupName, siteName, subscriptionId | Method to stop a machine. |
SELECT
examples
List MachineResource resources by VmwareSite
- vw_machines_controllers
- machines_controllers
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 }}';
SELECT
properties
FROM azure.migrate.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 }}';