Source code for models_v2.qos_policy_4_enum
# -*- coding: utf-8 -*-
[docs]class QosPolicy4Enum(object):
    """Implementation of the 'QosPolicy4' enum.
    Specifies QOS Policy type.
    Attributes:
        KBACKUPHDD: TODO: type description here.
        KBACKUPSSD: TODO: type description here.
        KTESTANDDEVHIGH: TODO: type description here.
        KBACKUPALL: TODO: type description here.
    """
    KBACKUPHDD = 'kBackupHDD'
    KBACKUPSSD = 'kBackupSSD'
    KTESTANDDEVHIGH = 'kTestAndDevHigh'
    KBACKUPALL = 'kBackupAll'