Source code for models_v2.qos_policy_enum
# -*- coding: utf-8 -*-
[docs]class QosPolicyEnum(object):
"""Implementation of the 'QosPolicy' enum.
Specifies whether the Data Migration task will be written to HDD or SSD.
Attributes:
KBACKUPHDD: TODO: type description here.
KBACKUPSSD: TODO: type description here.
KTESTANDDEVHIGH: TODO: type description here.
"""
KBACKUPHDD = 'kBackupHDD'
KBACKUPSSD = 'kBackupSSD'
KTESTANDDEVHIGH = 'kTestAndDevHigh'