Source code for models_v2.tier_2_enum
# -*- coding: utf-8 -*-
[docs]class Tier2Enum(object):
"""Implementation of the 'tier2' enum.
TODO: type enum description here.
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'