state property

String? state
getter/setter pair

The current database state.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : Not specified.
  • "CREATING" : The database is still being created. Operations on the database may fail with FAILED_PRECONDITION in this state.
  • "READY" : The database is fully created and ready for use.
  • "READY_OPTIMIZING" : The database is fully created and ready for use, but is still being optimized for performance and cannot handle full load. In this state, the database still references the backup it was restore from, preventing the backup from being deleted. When optimizations are complete, the full performance of the database will be restored, and the database will transition to READY state.

Implementation

core.String? state;