state property

String? state
getter/setter pair

The current instance state.

For CreateInstance, the state must be either omitted or set to CREATING. For UpdateInstance, the state must be either omitted or set to READY.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : Not specified.
  • "CREATING" : The instance is still being created. Resources may not be available yet, and operations such as database creation may not work.
  • "READY" : The instance is fully created and ready to do work such as creating databases.

Implementation

core.String? state;