Source code for models_v2.operation_enum

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

[docs]class OperationEnum(object): """Implementation of the 'Operation' enum. The operation clould be poweroff, reboot. Attributes: POWEROFF: TODO: type description here. REBOOT: TODO: type description here. """ POWEROFF = 'poweroff' REBOOT = 'reboot'