state property

String? state
getter/setter pair

Current execution state of this environment.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : The environment's states is unknown.
  • "SUSPENDED" : The environment is not running and can't be connected to. Starting the environment will transition it to the PENDING state.
  • "PENDING" : The environment is being started but is not yet ready to accept connections.
  • "RUNNING" : The environment is running and ready to accept connections. It will automatically transition back to DISABLED after a period of inactivity or if another environment is started.
  • "DELETING" : The environment is being deleted and can't be connected to.

Implementation

core.String? state;