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
|
.. _long: https://docs.python.org/2/library/stdtypes.html
.. _float: https://docs.python.org/2/library/stdtypes.html
.. _vim.Datastore: ../../vim/Datastore.rst
.. _vSphere API 5.0: ../../vim/version.rst#vimversionversion7
.. _vim.cluster.Action: ../../vim/cluster/Action.rst
.. _vim.VirtualMachine: ../../vim/VirtualMachine.rst
.. _vim.vm.RelocateSpec: ../../vim/vm/RelocateSpec.rst
vim.storageDrs.StorageMigrationAction
=====================================
Describes a single storage migration action. The storage migration action applies either to a virtual machine or a set of virtual disks.
:extends: vim.cluster.Action_
:since: `vSphere API 5.0`_
Attributes:
vm (`vim.VirtualMachine`_):
Virtual machine reference.
relocateSpec (`vim.vm.RelocateSpec`_):
Specification for moving a virtual machine or a set of virtual disks to a different datastore.
source (`vim.Datastore`_):
Source datastore.
destination (`vim.Datastore`_):
Destination datastore.
sizeTransferred (`long`_):
The amount of data to be transferred. Unit: KB.
spaceUtilSrcBefore (`float`_, optional):
Space utilization on the source datastore before storage migration. Unit: percentage. For example, if set to 70.0, space utilization is 70%. If not set, the value is not available.
spaceUtilDstBefore (`float`_, optional):
Space utilization on the destination datastore before storage migration. Unit: percentage. For example, if set to 70.0, space utilization is 70%. If not set, the value is not available.
spaceUtilSrcAfter (`float`_, optional):
Expected space utilization on the source datastore after storage migration. Unit: percentage. For example, if set to 70.0, space utilization is 70%. If not set, the value is not available.
spaceUtilDstAfter (`float`_, optional):
Expected space utilization on the destination datastore after storage migration. Unit: percentage. For example, if set to 70.0, space utilization is 70%. If not set, the value is not available.
ioLatencySrcBefore (`float`_, optional):
I/O latency on the source datastore before storage migration. Unit: millisecond. If not set, the value is not available.
ioLatencyDstBefore (`float`_, optional):
I/O latency on the destination datastore before storage migration. Unit: millisecond. If not set, the value is not available.
|