Source code for models_v2.tier_enum

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

[docs]class TierEnum(object): """Implementation of the 'Tier' enum. Specifies the tier of the disk Attributes: PCIESSD: TODO: type description here. SATASSD: TODO: type description here. SATAHDD: TODO: type description here. CLOUD: TODO: type description here. """ PCIESSD = 'PCIeSSD' SATASSD = 'SATA-SSD' SATAHDD = 'SATA-HDD' CLOUD = 'CLOUD'