models.action_enum module

class models.action_enum.ActionEnum[source]

Bases: object

Implementation of the ‘Action’ enum.

Specifies the action to take on the specified service. ‘kStop’ indicates that the specified services will be stopped. ‘kStart’ indicates that the specified services will be started. ‘kRestart’ indicates that the specified services will be restarted.

Attributes:

KSTOP: TODO: type description here. KSTART: TODO: type description here. KRESTART: TODO: type description here.

KRESTART = 'kRestart'
KSTART = 'kStart'
KSTOP = 'kStop'