state property

String? state
getter/setter pair

State of the connector. Possible string values are:

  • "STATE_UNSPECIFIED" : State unspecified.
  • "ACTIVE" : The connector is active and ready to process runtime requests. This can also mean that from the connector's perspective, the connector is not in an error state and should be able to process runtime requests successfully.
  • "ERROR" : The connector is in an error state and cannot process runtime requests. An example reason would be that the connection container has some network issues that prevent outbound requests from being sent.
  • "AUTH_ERROR" : This is a more specific error state that the developers can opt to use when the connector is facing auth-related errors caused by auth configuration not present, invalid auth credentials, etc.

Implementation

core.String? state;