Source code for models_v2.archival_target_type_enum

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

[docs]class ArchivalTargetTypeEnum(object): """Implementation of the 'ArchivalTargetType' enum. Specifies the snapshot's archival target type from which recovery has been performed. Attributes: TAPE: TODO: type description here. CLOUD: TODO: type description here. NAS: TODO: type description here. """ TAPE = 'Tape' CLOUD = 'Cloud' NAS = 'Nas'