state property

String? state
getter/setter pair

Runtime state.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : State is not specified.
  • "STARTING" : The compute layer is starting the runtime. It is not ready for use.
  • "PROVISIONING" : The compute layer is installing required frameworks and registering the runtime with notebook proxy. It cannot be used.
  • "ACTIVE" : The runtime is currently running. It is ready for use.
  • "STOPPING" : The control logic is stopping the runtime. It cannot be used.
  • "STOPPED" : The runtime is stopped. It cannot be used.
  • "DELETING" : The runtime is being deleted. It cannot be used.
  • "UPGRADING" : The runtime is upgrading. It cannot be used.
  • "INITIALIZING" : The runtime is being created and set up. It is not ready for use.

Implementation

core.String? state;