Source code for models_v2.actions_1_enum

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

[docs]class Actions1Enum(object): """Implementation of the 'actions1' enum. TODO: type enum description here. Attributes: LOGIN: TODO: type description here. LOGOUT: TODO: type description here. CREATE: TODO: type description here. MODIFY: TODO: type description here. DELETE: TODO: type description here. ACTIVATE: TODO: type description here. DEACTIVATE: TODO: type description here. PAUSE: TODO: type description here. RESUME: TODO: type description here. RUNNOW: TODO: type description here. CLONE: TODO: type description here. RECOVER: TODO: type description here. CANCEL: TODO: type description here. REGISTER: TODO: type description here. UNREGISTER: TODO: type description here. UPDATE: TODO: type description here. REFRESH: TODO: type description here. UPGRADE: TODO: type description here. UPLOAD: TODO: type description here. DOWNLOAD: TODO: type description here. RENAME: TODO: type description here. ACCEPT: TODO: type description here. MARK: TODO: type description here. CLOSE: TODO: type description here. JOIN: TODO: type description here. DISJOIN: TODO: type description here. OVERWRITE: TODO: type description here. MARKREMOVAL: TODO: type description here. CLOUDSPIN: TODO: type description here. ASSIGN: TODO: type description here. UNASSIGN: TODO: type description here. NOTIFICATIONRULE: TODO: type description here. SCHEDULEREPORT: TODO: type description here. INSTALL: TODO: type description here. UNINSTALL: TODO: type description here. STOP: TODO: type description here. START: TODO: type description here. RESTART: TODO: type description here. RUNDIAGNOSTICS: TODO: type description here. """ LOGIN = 'Login' LOGOUT = 'Logout' CREATE = 'Create' MODIFY = 'Modify' DELETE = 'Delete' ACTIVATE = 'Activate' DEACTIVATE = 'Deactivate' PAUSE = 'Pause' RESUME = 'Resume' RUNNOW = 'RunNow' CLONE = 'Clone' RECOVER = 'Recover' CANCEL = 'Cancel' REGISTER = 'Register' UNREGISTER = 'Unregister' UPDATE = 'Update' REFRESH = 'Refresh' UPGRADE = 'Upgrade' UPLOAD = 'Upload' DOWNLOAD = 'Download' RENAME = 'Rename' ACCEPT = 'Accept' MARK = 'Mark' CLOSE = 'Close' JOIN = 'Join' DISJOIN = 'DisJoin' OVERWRITE = 'Overwrite' MARKREMOVAL = 'MarkRemoval' CLOUDSPIN = 'CloudSpin' ASSIGN = 'Assign' UNASSIGN = 'Unassign' NOTIFICATIONRULE = 'NotificationRule' SCHEDULEREPORT = 'ScheduleReport' INSTALL = 'Install' UNINSTALL = 'Uninstall' STOP = 'Stop' START = 'Start' RESTART = 'Restart' RUNDIAGNOSTICS = 'RunDiagnostics'