type property

String? type
getter/setter pair

The ssl config type according to 'client_key', 'client_certificate' and 'ca_certificate'.

Optional. Possible string values are:

  • "SSL_TYPE_UNSPECIFIED" : Unspecified.
  • "SERVER_ONLY" : Only 'ca_certificate' specified.
  • "SERVER_CLIENT" : Both server ('ca_certificate'), and client ('client_key', 'client_certificate') specified.
  • "REQUIRED" : Mandates SSL encryption for all connections. This doesn’t require certificate verification.
  • "NONE" : Connection is not encrypted.

Implementation

core.String? type;