Skip to main content

import_machines_controllers

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

Overview

Nameimport_machines_controllers
TypeResource
Idazure.migrate.import_machines_controllers

Fields

NameDatatypeDescription
allocated_memory_in_mbtextfield from the properties object
bios_guidtextfield from the properties object
bios_serial_numbertextfield from the properties object
created_timestamptextfield from the properties object
diskstextfield from the properties object
display_nametextfield from the properties object
firmwaretextfield from the properties object
hypervisortextfield from the properties object
hypervisor_version_numbertextfield from the properties object
ip_addressestextfield from the properties object
is_deletedtextfield from the properties object
mac_addresstextfield from the properties object
machineNametextfield from the properties object
machine_idtextfield from the properties object
machine_manager_idtextfield from the properties object
network_in_throughputtextfield from the properties object
network_out_throughputtextfield from the properties object
number_of_diskstextfield from the properties object
number_of_network_adapterstextfield from the properties object
number_of_processor_coretextfield from the properties object
operating_system_detailstextfield from the properties object
percentage_cpu_utilizationtextfield from the properties object
percentage_memory_utilizationtextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
server_typetextfield from the properties object
siteNametextfield from the properties object
storage_in_use_gbtextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextfield from the properties object
total_disk_read_operations_per_secondtextfield from the properties object
total_disk_read_throughputtextfield from the properties object
total_disk_write_operations_per_secondtextfield from the properties object
total_disk_write_throughputtextfield from the properties object
updated_timestamptextfield from the properties object
vm_fqdntextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTmachineName, resourceGroupName, siteName, subscriptionIdGet a ImportMachine
list_by_import_siteSELECTresourceGroupName, siteName, subscriptionIdList ImportMachine resources by ImportSite
deleteDELETEmachineName, resourceGroupName, siteName, subscriptionIdDelete a ImportMachine

SELECT examples

List ImportMachine resources by ImportSite

SELECT
allocated_memory_in_mb,
bios_guid,
bios_serial_number,
created_timestamp,
disks,
display_name,
firmware,
hypervisor,
hypervisor_version_number,
ip_addresses,
is_deleted,
mac_address,
machineName,
machine_id,
machine_manager_id,
network_in_throughput,
network_out_throughput,
number_of_disks,
number_of_network_adapters,
number_of_processor_core,
operating_system_details,
percentage_cpu_utilization,
percentage_memory_utilization,
provisioning_state,
resourceGroupName,
server_type,
siteName,
storage_in_use_gb,
subscriptionId,
tags,
total_disk_read_operations_per_second,
total_disk_read_throughput,
total_disk_write_operations_per_second,
total_disk_write_throughput,
updated_timestamp,
vm_fqdn
FROM azure.migrate.vw_import_machines_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';

DELETE example

Deletes the specified import_machines_controllers resource.

/*+ delete */
DELETE FROM azure.migrate.import_machines_controllers
WHERE machineName = '{{ machineName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND subscriptionId = '{{ subscriptionId }}';