Source code for cfxdb.gen.mrealm.WorkerGroupStatus

# automatically generated by the FlatBuffers compiler, do not modify

# namespace: mrealm

# Status of RouterWorkerGroups.
[docs] class WorkerGroupStatus(object): # Unset status.
[docs] NONE = 0
# Initial status of a newly created worker group.
[docs] STOPPED = 1
# The worker group is currently starting.
[docs] STARTING = 2
# The worker group is currently running.
[docs] RUNNING = 3
# The worker group is currently paused (it is serving, but the watch/change engine doesn't operate).
[docs] PAUSED = 4
# The worker group is currently stopping.
[docs] STOPPING = 5
# The worker group is stopped in an error state.
[docs] ERROR = 6
# The worker group is currently running, but degraded (not all components and services desired are actually running at this moment, but some have failed, but may be retried automatically).
[docs] DEGRADED = 7