com.google.cloud.datastream.v1.MysqlSslConfigOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-datastream-v1 Show documentation
Show all versions of proto-google-cloud-datastream-v1 Show documentation
Proto library for google-cloud-datastream
/*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/datastream/v1/datastream_resources.proto
package com.google.cloud.datastream.v1;
public interface MysqlSslConfigOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.datastream.v1.MysqlSslConfig)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* 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];
*
* @return The clientKey.
*/
java.lang.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];
*
* @return The bytes for clientKey.
*/
com.google.protobuf.ByteString getClientKeyBytes();
/**
*
*
*
* Output only. Indicates whether the client_key field is set.
*
*
* bool client_key_set = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The clientKeySet.
*/
boolean getClientKeySet();
/**
*
*
*
* 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];
*
* @return The clientCertificate.
*/
java.lang.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];
*
* @return The bytes for clientCertificate.
*/
com.google.protobuf.ByteString getClientCertificateBytes();
/**
*
*
*
* Output only. Indicates whether the client_certificate field is set.
*
*
* bool client_certificate_set = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The clientCertificateSet.
*/
boolean getClientCertificateSet();
/**
*
*
*
* 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];
*
* @return The caCertificate.
*/
java.lang.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];
*
* @return The bytes for caCertificate.
*/
com.google.protobuf.ByteString getCaCertificateBytes();
/**
*
*
*
* Output only. Indicates whether the ca_certificate field is set.
*
*
* bool ca_certificate_set = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The caCertificateSet.
*/
boolean getCaCertificateSet();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy