SslConfigResponse

data class SslConfigResponse(val caCertificate: String, val clientCertificate: String, val clientKey: String, val type: String)

SSL configuration information.

Constructors

Link copied to clipboard
fun SslConfigResponse(caCertificate: String, clientCertificate: String, clientKey: String, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate. The replica will use this certificate to verify it's connecting to the right host.

Link copied to clipboard

Input only. The x509 PEM-encoded certificate that will be used by the replica to authenticate against the source database server.If this field is used then the 'client_key' field is mandatory.

Link copied to clipboard

Input only. The unencrypted PKCS#1 or PKCS#8 PEM-encoded private key associated with the Client Certificate. If this field is used then the 'client_certificate' field is mandatory.

Link copied to clipboard

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