ENUM

EngineState

Enumeration containing the set of allowed values for the Engine state field.

link GraphQL Schema definition

1enum EngineState {
2
3# The engine is deployed and active. Set the state to this value to deploy it.
4active
5
6# The engine has been disabled. Set this state to disable the engine.
7disabled
8
9# The engine is awaiting approval before transitioning to the next state.
10pending
11
12# The engine has been deleted and is no longer available for use.
13deleted
14
15# The engine is in draft state, suitable for review and internal testing.
16draft
17
18# The engine is ready for deployment, but has not been deployed yet.
19ready
20}