state property

String? state
getter/setter pair

The current state of the cluster.

Output only. Possible string values are:

  • "STATE_NOT_KNOWN" : The state of the cluster could not be determined.
  • "READY" : The cluster has been successfully created and is ready to serve requests.
  • "CREATING" : The cluster is currently being created, and may be destroyed if the creation process encounters an error. A cluster may not be able to serve requests while being created.
  • "RESIZING" : The cluster is currently being resized, and may revert to its previous node count if the process encounters an error. A cluster is still capable of serving requests while being resized, but may exhibit performance as if its number of allocated nodes is between the starting and requested states.
  • "DISABLED" : The cluster has no backing nodes. The data (tables) still exist, but no operations can be performed on the cluster.

Implementation

core.String? state;