Source code for cfxdb.gen.mrealm.ClusterStatus

# automatically generated by the FlatBuffers compiler, do not modify

# namespace: mrealm

# Cluster status for WebClusters or RouterClusters.
[docs] class ClusterStatus(object): # Unset status.
[docs] NONE = 0
# Initial status of a newly created web cluster.
[docs] STOPPED = 1
# The cluster is currently starting.
[docs] STARTING = 2
# The cluster is currently running.
[docs] RUNNING = 3
# The cluster is currently paused (it is serving, but the watch/change engine doesn't operate).
[docs] PAUSED = 4
# The cluster is currently stopping.
[docs] STOPPING = 5
# The cluster is stopped in an error state.
[docs] ERROR = 6
# The cluster 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