Source code for models_v2.action_8_enum

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

[docs]class Action8Enum(object): """Implementation of the 'Action8' enum. Specifies the action to be performed on all the specfied Protection Groups. 'kActivate' specifies that Protection Group should be activated. 'kDeactivate' sepcifies that Protection Group should be deactivated. 'kPause' specifies that Protection Group should be paused. 'kResume' specifies that Protection Group should be resumed. Attributes: KPAUSE: TODO: type description here. KRESUME: TODO: type description here. """ KPAUSE = 'kPause' KRESUME = 'kResume'