Source code for models_v2.target_type_1_enum

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

[docs]class TargetType1Enum(object): """Implementation of the 'TargetType1' enum. Specifies the archival target type. Attributes: TAPE: TODO: type description here. CLOUD: TODO: type description here. NAS: TODO: type description here. """ TAPE = 'Tape' CLOUD = 'Cloud' NAS = 'Nas'