File: BlockRange.rst

package info (click to toggle)
python-pyvmomi 6.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 14,980 kB
  • sloc: python: 9,206; xml: 77; makefile: 9
file content (29 lines) | stat: -rw-r--r-- 1,360 bytes parent folder | download | duplicates (5)
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
.. _int: https://docs.python.org/2/library/stdtypes.html

.. _str: https://docs.python.org/2/library/stdtypes.html

.. _type: ../../../vim/host/DiskPartitionInfo/Partition.rst#type

.. _vmodl.DynamicData: ../../../vmodl/DynamicData.rst

.. _vim.host.DiskDimensions.Lba: ../../../vim/host/DiskDimensions/Lba.rst


vim.host.DiskPartitionInfo.BlockRange
=====================================
  A BlockRange data object type describes a contiguous set of blocks on a disk. A BlockRange may describe either a partition or unpartitioned (primordial) blocks on the disk.
:extends: vmodl.DynamicData_

Attributes:
    partition (`int`_, optional):

       Partition number. This number is a hint from the server indicating what the partition number for this block range is if the range corresponds to a partition. The partition number should correlate to the one in the partition specification. If sent back to the server, this property is ignored.
    type (`str`_):

       The type of data in the partition.See `type`_ 
    start (`vim.host.DiskDimensions.Lba`_):

       The starting block address of the disk range. The block numbers start from zero. The range is inclusive of the end address.
    end (`vim.host.DiskDimensions.Lba`_):

       The end block address of the disk range. The block numbers start from zero. The range is inclusive of the end address.