Source code for models_v2.action_4_enum

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

[docs]class Action4Enum(object): """Implementation of the 'Action4' enum. Specifies the action to be performed on all the specified Data Migration source analysis groups. 'Pause' specifies to pause. 'Resume' specifies to resume. Attributes: PAUSE: TODO: type description here. RESUME: TODO: type description here. """ PAUSE = 'Pause' RESUME = 'Resume'