Source code for models_v2.volume_type_enum

# -*- coding: utf-8 -*-

[docs]class VolumeTypeEnum(object): """Implementation of the 'VolumeType' enum. Specifies the volume type. Attributes: SIMPLEVOLUME: TODO: type description here. LVM: TODO: type description here. LDM: TODO: type description here. """ SIMPLEVOLUME = 'SimpleVolume' LVM = 'LVM' LDM = 'LDM'