import_machines_controllers
Creates, updates, deletes, gets or lists a import_machines_controllers
resource.
Overview
Name | import_machines_controllers |
Type | Resource |
Id | azure.migrate.import_machines_controllers |
Fields
- vw_import_machines_controllers
- import_machines_controllers
Name | Datatype | Description |
---|---|---|
allocated_memory_in_mb | text | field from the properties object |
bios_guid | text | field from the properties object |
bios_serial_number | text | field from the properties object |
created_timestamp | text | field from the properties object |
disks | text | field from the properties object |
display_name | text | field from the properties object |
firmware | text | field from the properties object |
hypervisor | text | field from the properties object |
hypervisor_version_number | text | field from the properties object |
ip_addresses | text | field from the properties object |
is_deleted | text | field from the properties object |
mac_address | text | field from the properties object |
machineName | text | field from the properties object |
machine_id | text | field from the properties object |
machine_manager_id | text | field from the properties object |
network_in_throughput | text | field from the properties object |
network_out_throughput | text | field from the properties object |
number_of_disks | text | field from the properties object |
number_of_network_adapters | text | field from the properties object |
number_of_processor_core | text | field from the properties object |
operating_system_details | text | field from the properties object |
percentage_cpu_utilization | text | field from the properties object |
percentage_memory_utilization | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
server_type | text | field from the properties object |
siteName | text | field from the properties object |
storage_in_use_gb | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | field from the properties object |
total_disk_read_operations_per_second | text | field from the properties object |
total_disk_read_throughput | text | field from the properties object |
total_disk_write_operations_per_second | text | field from the properties object |
total_disk_write_throughput | text | field from the properties object |
updated_timestamp | text | field from the properties object |
vm_fqdn | 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 ImportMachine |
list_by_import_site | SELECT | resourceGroupName, siteName, subscriptionId | List ImportMachine resources by ImportSite |
delete | DELETE | machineName, resourceGroupName, siteName, subscriptionId | Delete a ImportMachine |
SELECT
examples
List ImportMachine resources by ImportSite
- vw_import_machines_controllers
- import_machines_controllers
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 }}';
SELECT
properties
FROM azure.migrate.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 }}';