Source code for models_v2.action_7_enum
# -*- coding: utf-8 -*-
[docs]class Action7Enum(object):
"""Implementation of the 'Action7' enum.
Specifies the action to be performed on all the specified data
tiering groups.
'Pause' specifies to pause.
'Resume' specifies to resume.
Attributes:
PAUSE: TODO: type description here.
RESUME: TODO: type description here.
"""
PAUSE = 'Pause'
RESUME = 'Resume'