Source code for models_v2.archival_target_type_2_enum

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

[docs]class ArchivalTargetType2Enum(object): """Implementation of the 'archivalTargetType2' enum. TODO: type enum description here. Attributes: TAPE: TODO: type description here. CLOUD: TODO: type description here. NAS: TODO: type description here. """ TAPE = 'Tape' CLOUD = 'Cloud' NAS = 'Nas'