Source code for models_v2.status_22_enum

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

[docs]class Status22Enum(object): """Implementation of the 'Status22' enum. Specifies the failover status. Attributes: RUNNING: TODO: type description here. SUCCEEDED: TODO: type description here. FAILED: TODO: type description here. """ RUNNING = 'Running' SUCCEEDED = 'Succeeded' FAILED = 'Failed'