Integration Connectors v1 API - Class SslConfig (1.1.0)

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

Reference documentation and code samples for the Integration Connectors v1 API class SslConfig.

SSL Configuration of a connection

Inheritance

object > SslConfig

Namespace

Google.Cloud.Connectors.V1

Assembly

Google.Cloud.Connectors.V1.dll

Constructors

SslConfig()

public SslConfig()

SslConfig(SslConfig)

public SslConfig(SslConfig other)
Parameter
NameDescription
otherSslConfig

Properties

AdditionalVariables

public RepeatedField<ConfigVariable> AdditionalVariables { get; }

Additional SSL related field values

Property Value
TypeDescription
RepeatedFieldConfigVariable

ClientCertType

public CertType ClientCertType { get; set; }

Type of Client Cert (PEM/JKS/.. etc.)

Property Value
TypeDescription
CertType

ClientCertificate

public Secret ClientCertificate { get; set; }

Client Certificate

Property Value
TypeDescription
Secret

ClientPrivateKey

public Secret ClientPrivateKey { get; set; }

Client Private Key

Property Value
TypeDescription
Secret

ClientPrivateKeyPass

public Secret ClientPrivateKeyPass { get; set; }

Secret containing the passphrase protecting the Client Private Key

Property Value
TypeDescription
Secret

PrivateServerCertificate

public Secret PrivateServerCertificate { get; set; }

Private Server Certificate. Needs to be specified if trust model is PRIVATE.

Property Value
TypeDescription
Secret

ServerCertType

public CertType ServerCertType { get; set; }

Type of Server Cert (PEM/JKS/.. etc.)

Property Value
TypeDescription
CertType

TrustModel

public SslConfig.Types.TrustModel TrustModel { get; set; }

Trust Model of the SSL connection

Property Value
TypeDescription
SslConfigTypesTrustModel

Type

public SslType Type { get; set; }

Controls the ssl type for the given connector version.

Property Value
TypeDescription
SslType

UseSsl

public bool UseSsl { get; set; }

Bool for enabling SSL

Property Value
TypeDescription
bool