DataStream v1 API - Class MysqlSslConfig (2.6.0)

public sealed class MysqlSslConfig : IMessage<MysqlSslConfig>, IEquatable<MysqlSslConfig>, IDeepCloneable<MysqlSslConfig>, IBufferMessage, IMessage

Reference documentation and code samples for the DataStream v1 API class MysqlSslConfig.

MySQL SSL configuration information.

Inheritance

object > MysqlSslConfig

Namespace

Google.Cloud.Datastream.V1

Assembly

Google.Cloud.Datastream.V1.dll

Constructors

MysqlSslConfig()

public MysqlSslConfig()

MysqlSslConfig(MysqlSslConfig)

public MysqlSslConfig(MysqlSslConfig other)
Parameter
NameDescription
otherMysqlSslConfig

Properties

CaCertificate

public string CaCertificate { get; set; }

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

Property Value
TypeDescription
string

CaCertificateSet

public bool CaCertificateSet { get; set; }

Output only. Indicates whether the ca_certificate field is set.

Property Value
TypeDescription
bool

ClientCertificate

public string ClientCertificate { get; set; }

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.

Property Value
TypeDescription
string

ClientCertificateSet

public bool ClientCertificateSet { get; set; }

Output only. Indicates whether the client_certificate field is set.

Property Value
TypeDescription
bool

ClientKey

public string ClientKey { get; set; }

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.

Property Value
TypeDescription
string

ClientKeySet

public bool ClientKeySet { get; set; }

Output only. Indicates whether the client_key field is set.

Property Value
TypeDescription
bool