Source code for cfxdb.gen.arealm.ApplicationRealmStatus

# automatically generated by the FlatBuffers compiler, do not modify

# namespace: arealm

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