Source code for models_v2.action_1_enum
# -*- coding: utf-8 -*-
[docs]class Action1Enum(object):
"""Implementation of the 'Action1' enum.
Specifies the TDM Task action.
Attributes:
CLONE: TODO: type description here.
TEARDOWN: TODO: type description here.
REFRESH: TODO: type description here.
SNAPSHOT: TODO: type description here.
REWIND: TODO: type description here.
"""
CLONE = 'clone'
TEARDOWN = 'teardown'
REFRESH = 'refresh'
SNAPSHOT = 'snapshot'
REWIND = 'rewind'