Source code for models_v2.controller_type_enum

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

[docs]class ControllerTypeEnum(object): """Implementation of the 'ControllerType' enum. Specifies the disk controller type. Attributes: KSCSI: TODO: type description here. KIDE: TODO: type description here. KSATA: TODO: type description here. """ KSCSI = 'kScsi' KIDE = 'kIde' KSATA = 'kSata'