Source code for models_v2.target_type_enum
# -*- coding: utf-8 -*-
[docs]class TargetTypeEnum(object):
"""Implementation of the 'TargetType' enum.
Specifies the Archival target type where Snapshots are copied.
Attributes:
TAPE: TODO: type description here.
CLOUD: TODO: type description here.
NAS: TODO: type description here.
"""
TAPE = 'Tape'
CLOUD = 'Cloud'
NAS = 'Nas'