Source code for models_v2.archival_targets_1_enum
# -*- coding: utf-8 -*-
[docs]class ArchivalTargets1Enum(object):
"""Implementation of the 'ArchivalTargets1' enum.
Specifies the archival target.
Attributes:
TAPE: TODO: type description here.
CLOUD: TODO: type description here.
NAS: TODO: type description here.
"""
TAPE = 'Tape'
CLOUD = 'Cloud'
NAS = 'Nas'