VmHardwareEthernetCreateSpec
The Ethernet.CreateSpec structure provides a specification for the configuration of a newly-created virtual Ethernet adapter.
Properties
Flag indicating whether the guest can connect and disconnect the device. Defaults to false if unset.
Physical resource backing for the virtual Ethernet adapter. If unset, the system may try to find an appropriate backing. If one is not found, the request will fail.
MAC address. Workaround for PR1459647
MAC address type. If unset, defaults to GENERATED.
Address of the virtual Ethernet adapter on the PCI bus. If the PCI address is invalid, the server will change when it the VM is started or as the device is hot added. If unset, the server will choose an available address when the virtual machine is powered on.
Flag indicating whether the virtual device should be connected whenever the virtual machine is powered on. Defaults to false if unset.
Ethernet adapter emulation type. If unset, defaults to a guest-specific type.
Flag indicating whether Universal Pass-Through (UPT) compatibility is enabled on this virtual Ethernet adapter. If unset, defaults to false.
Flag indicating whether wake-on-LAN is enabled on this virtual Ethernet adapter. Defaults to false if unset.
JSON Example
{
"allow_guest_control": false,
"backing": {
"distributed_port": "string",
"network": "string",
"type": "enum"
},
"mac_address": "string",
"mac_type": "enum",
"pci_slot_number": 0,
"start_connected": false,
"type": "enum",
"upt_compatibility_enabled": false,
"wake_on_lan_enabled": false
}