MysqlSslConfigResponse

data class MysqlSslConfigResponse(val caCertificate: String, val caCertificateSet: Boolean, val clientCertificate: String, val clientCertificateSet: Boolean, val clientKey: String, val clientKeySet: Boolean)

MySQL SSL configuration information.

Constructors

Link copied to clipboard
constructor(caCertificate: String, caCertificateSet: Boolean, clientCertificate: String, clientCertificateSet: Boolean, clientKey: String, clientKeySet: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Input only. PEM-encoded certificate of the CA that signed the source database server's certificate.

Link copied to clipboard

Indicates whether the ca_certificate field is set.

Link copied to clipboard

Input only. 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' and the 'ca_certificate' fields are mandatory.

Link copied to clipboard

Indicates whether the client_certificate field is set.

Link copied to clipboard

Input only. PEM-encoded private key associated with the Client Certificate. If this field is used then the 'client_certificate' and the 'ca_certificate' fields are mandatory.

Link copied to clipboard

Indicates whether the client_key field is set.