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