vcenter vm hardware floppy: create spec

The create_spec structure provides a specification for the configuration of a newly-created virtual floppy drive.

Representations:

{
    "allow_guest_control"true,
    "backing"{
        "host_device""string",
        "image_file""string",
        "type""IMAGE_FILE"
    },
    "start_connected"true
}
<?xml version="1.0" ?>
<ns0:CreateSpec xmlns:ns0="http://vmware.com/vcenter/vm/hardware/floppy" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <allow_guest_control>true</allow_guest_control>
  <backing>
    <image_file>string</image_file>
    <type>IMAGE_FILE</type>
    <host_device>string</host_device>
  </backing>
  <start_connected>true</start_connected>
</ns0:CreateSpec>

Attributes:

Name Type Description
Optional
backing backing_spec Physical resource backing for the virtual floppy drive.

Optional. If unset, defaults to automatic detection of a suitable host device.

start_connected boolean Flag indicating whether the virtual device should be connected whenever the virtual machine is powered on.

Optional. Defaults to false if unset.

allow_guest_control boolean Flag indicating whether the guest can connect and disconnect the device.

Optional. Defaults to false if unset.