1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
.. _bool: https://docs.python.org/2/library/stdtypes.html
.. _append: ../../../../vim/vm/device/VirtualDiskOption/DiskMode.rst#append
.. _undoable: ../../../../vim/vm/device/VirtualDiskOption/DiskMode.rst#undoable
.. _persistent: ../../../../vim/vm/device/VirtualDiskOption/DiskMode.rst#persistent
.. _nonpersistent: ../../../../vim/vm/device/VirtualDiskOption/DiskMode.rst#nonpersistent
.. _VirtualDiskMode: ../../../../vim/vm/device/VirtualDiskOption/DiskMode.rst
.. _vim.option.BoolOption: ../../../../vim/option/BoolOption.rst
.. _independent_persistent: ../../../../vim/vm/device/VirtualDiskOption/DiskMode.rst#independent_persistent
.. _vim.option.ChoiceOption: ../../../../vim/option/ChoiceOption.rst
.. _independent_nonpersistent: ../../../../vim/vm/device/VirtualDiskOption/DiskMode.rst#independent_nonpersistent
.. _vim.vm.device.VirtualDeviceOption.FileBackingOption: ../../../../vim/vm/device/VirtualDeviceOption/FileBackingOption.rst
vim.vm.device.VirtualDiskOption.FlatVer1BackingOption
=====================================================
This data object type contains the available options when backing a virtual disk using a host file with the flat file format from GSX Server 2.x. Flat disks are pre-allocated, whereas sparse disks are grown as needed.
:extends: vim.vm.device.VirtualDeviceOption.FileBackingOption_
Attributes:
diskMode (`vim.option.ChoiceOption`_):
The disk mode. Valid disk modes are:
* `persistent`_
*
* `nonpersistent`_
*
* `undoable`_
*
* `independent_persistent`_
*
* `independent_nonpersistent`_
*
* `append`_
*
* See
* `VirtualDiskMode`_
*
split (`vim.option.BoolOption`_):
Flag to indicate whether or not the host supports allowing the client to select whether or not a disk should be split.
writeThrough (`vim.option.BoolOption`_):
Flag to indicate whether or not the host supports allowing the client to select "writethrough" as a mode for virtual disks. Typically, this is available only for GSX Server Linux hosts.
growable (`bool`_):
Flag to indicate whether this backing can have its size changed.
|