state property

String? state
getter/setter pair

State. Possible string values are:

  • "STATE_UNSPECIFIED" : Connection does not have a state yet.
  • "CREATING" : Connection is being created.
  • "ACTIVE" : Connection is running and ready for requests.
  • "INACTIVE" : Connection is stopped.
  • "DELETING" : Connection is being deleted.
  • "UPDATING" : Connection is being updated.
  • "ERROR" : Connection is not running due to an error.
  • "AUTHORIZATION_REQUIRED" : Connection is not running because the authorization configuration is not complete.

Implementation

core.String? state;