state property

String? state
getter/setter pair

The current state of the environment. Possible string values are:

  • "STATE_UNSPECIFIED" : The state of the environment is unknown.
  • "CREATING" : The environment is in the process of being created.
  • "RUNNING" : The environment is currently running and healthy. It is ready for use.
  • "UPDATING" : The environment is being updated. It remains usable but cannot receive additional update requests or be deleted at this time.
  • "DELETING" : The environment is undergoing deletion. It cannot be used.
  • "ERROR" : The environment has encountered an error and cannot be used.

Implementation

core.String? state;