Class MysqlSslConfig (1.40.0)

public final class MysqlSslConfig extends GeneratedMessageV3 implements MysqlSslConfigOrBuilder

MySQL SSL configuration information.

Protobuf type google.cloud.datastream.v1.MysqlSslConfig

Static Fields

CA_CERTIFICATE_FIELD_NUMBER

public static final int CA_CERTIFICATE_FIELD_NUMBER
Field Value
TypeDescription
int

CA_CERTIFICATE_SET_FIELD_NUMBER

public static final int CA_CERTIFICATE_SET_FIELD_NUMBER
Field Value
TypeDescription
int

CLIENT_CERTIFICATE_FIELD_NUMBER

public static final int CLIENT_CERTIFICATE_FIELD_NUMBER
Field Value
TypeDescription
int

CLIENT_CERTIFICATE_SET_FIELD_NUMBER

public static final int CLIENT_CERTIFICATE_SET_FIELD_NUMBER
Field Value
TypeDescription
int

CLIENT_KEY_FIELD_NUMBER

public static final int CLIENT_KEY_FIELD_NUMBER
Field Value
TypeDescription
int

CLIENT_KEY_SET_FIELD_NUMBER

public static final int CLIENT_KEY_SET_FIELD_NUMBER
Field Value
TypeDescription
int

Static Methods

getDefaultInstance()

public static MysqlSslConfig getDefaultInstance()
Returns
TypeDescription
MysqlSslConfig

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
TypeDescription
Descriptor

newBuilder()

public static MysqlSslConfig.Builder newBuilder()
Returns
TypeDescription
MysqlSslConfig.Builder

newBuilder(MysqlSslConfig prototype)

public static MysqlSslConfig.Builder newBuilder(MysqlSslConfig prototype)
Parameter
NameDescription
prototypeMysqlSslConfig
Returns
TypeDescription
MysqlSslConfig.Builder

parseDelimitedFrom(InputStream input)

public static MysqlSslConfig parseDelimitedFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
MysqlSslConfig
Exceptions
TypeDescription
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static MysqlSslConfig parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
MysqlSslConfig
Exceptions
TypeDescription
IOException

parseFrom(byte[] data)

public static MysqlSslConfig parseFrom(byte[] data)
Parameter
NameDescription
databyte[]
Returns
TypeDescription
MysqlSslConfig
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static MysqlSslConfig parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
databyte[]
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
MysqlSslConfig
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data)

public static MysqlSslConfig parseFrom(ByteString data)
Parameter
NameDescription
dataByteString
Returns
TypeDescription
MysqlSslConfig
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static MysqlSslConfig parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteString
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
MysqlSslConfig
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static MysqlSslConfig parseFrom(CodedInputStream input)
Parameter
NameDescription
inputCodedInputStream
Returns
TypeDescription
MysqlSslConfig
Exceptions
TypeDescription
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static MysqlSslConfig parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputCodedInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
MysqlSslConfig
Exceptions
TypeDescription
IOException

parseFrom(InputStream input)

public static MysqlSslConfig parseFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
MysqlSslConfig
Exceptions
TypeDescription
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static MysqlSslConfig parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
MysqlSslConfig
Exceptions
TypeDescription
IOException

parseFrom(ByteBuffer data)

public static MysqlSslConfig parseFrom(ByteBuffer data)
Parameter
NameDescription
dataByteBuffer
Returns
TypeDescription
MysqlSslConfig
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static MysqlSslConfig parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteBuffer
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
MysqlSslConfig
Exceptions
TypeDescription
InvalidProtocolBufferException

parser()

public static Parser<MysqlSslConfig> parser()
Returns
TypeDescription
Parser<MysqlSslConfig>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
NameDescription
objObject
Returns
TypeDescription
boolean
Overrides

getCaCertificate()

public String getCaCertificate()

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

string ca_certificate = 5 [(.google.api.field_behavior) = INPUT_ONLY];

Returns
TypeDescription
String

The caCertificate.

getCaCertificateBytes()

public ByteString getCaCertificateBytes()

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

string ca_certificate = 5 [(.google.api.field_behavior) = INPUT_ONLY];

Returns
TypeDescription
ByteString

The bytes for caCertificate.

getCaCertificateSet()

public boolean getCaCertificateSet()

Output only. Indicates whether the ca_certificate field is set.

bool ca_certificate_set = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
boolean

The caCertificateSet.

getClientCertificate()

public String getClientCertificate()

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.

string client_certificate = 3 [(.google.api.field_behavior) = INPUT_ONLY];

Returns
TypeDescription
String

The clientCertificate.

getClientCertificateBytes()

public ByteString getClientCertificateBytes()

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.

string client_certificate = 3 [(.google.api.field_behavior) = INPUT_ONLY];

Returns
TypeDescription
ByteString

The bytes for clientCertificate.

getClientCertificateSet()

public boolean getClientCertificateSet()

Output only. Indicates whether the client_certificate field is set.

bool client_certificate_set = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
boolean

The clientCertificateSet.

getClientKey()

public String getClientKey()

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.

string client_key = 1 [(.google.api.field_behavior) = INPUT_ONLY];

Returns
TypeDescription
String

The clientKey.

getClientKeyBytes()

public ByteString getClientKeyBytes()

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.

string client_key = 1 [(.google.api.field_behavior) = INPUT_ONLY];

Returns
TypeDescription
ByteString

The bytes for clientKey.

getClientKeySet()

public boolean getClientKeySet()

Output only. Indicates whether the client_key field is set.

bool client_key_set = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
boolean

The clientKeySet.

getDefaultInstanceForType()

public MysqlSslConfig getDefaultInstanceForType()
Returns
TypeDescription
MysqlSslConfig

getParserForType()

public Parser<MysqlSslConfig> getParserForType()
Returns
TypeDescription
Parser<MysqlSslConfig>
Overrides

getSerializedSize()

public int getSerializedSize()
Returns
TypeDescription
int
Overrides

hashCode()

public int hashCode()
Returns
TypeDescription
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
TypeDescription
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
TypeDescription
boolean
Overrides

newBuilderForType()

public MysqlSslConfig.Builder newBuilderForType()
Returns
TypeDescription
MysqlSslConfig.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected MysqlSslConfig.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
NameDescription
parentBuilderParent
Returns
TypeDescription
MysqlSslConfig.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
NameDescription
unusedUnusedPrivateParameter
Returns
TypeDescription
Object
Overrides

toBuilder()

public MysqlSslConfig.Builder toBuilder()
Returns
TypeDescription
MysqlSslConfig.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
NameDescription
outputCodedOutputStream
Overrides
Exceptions
TypeDescription
IOException