Interface MysqlTableOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MysqlTable
,MysqlTable.Builder
public interface MysqlTableOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MysqlColumn
getMysqlColumns(int index)
MySQL columns in the database.int
getMysqlColumnsCount()
MySQL columns in the database.List<MysqlColumn>
getMysqlColumnsList()
MySQL columns in the database.MysqlColumnOrBuilder
getMysqlColumnsOrBuilder(int index)
MySQL columns in the database.List<? extends MysqlColumnOrBuilder>
getMysqlColumnsOrBuilderList()
MySQL columns in the database.String
getTableName()
Table name.com.google.protobuf.ByteString
getTableNameBytes()
Table name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTableName
String getTableName()
Table name.
string table_name = 1;
- Returns:
- The tableName.
-
getTableNameBytes
com.google.protobuf.ByteString getTableNameBytes()
Table name.
string table_name = 1;
- Returns:
- The bytes for tableName.
-
getMysqlColumnsList
List<MysqlColumn> getMysqlColumnsList()
MySQL columns in the database. When unspecified as part of include/exclude lists, includes/excludes everything.
repeated .google.cloud.datastream.v1alpha1.MysqlColumn mysql_columns = 2;
-
getMysqlColumns
MysqlColumn getMysqlColumns(int index)
MySQL columns in the database. When unspecified as part of include/exclude lists, includes/excludes everything.
repeated .google.cloud.datastream.v1alpha1.MysqlColumn mysql_columns = 2;
-
getMysqlColumnsCount
int getMysqlColumnsCount()
MySQL columns in the database. When unspecified as part of include/exclude lists, includes/excludes everything.
repeated .google.cloud.datastream.v1alpha1.MysqlColumn mysql_columns = 2;
-
getMysqlColumnsOrBuilderList
List<? extends MysqlColumnOrBuilder> getMysqlColumnsOrBuilderList()
MySQL columns in the database. When unspecified as part of include/exclude lists, includes/excludes everything.
repeated .google.cloud.datastream.v1alpha1.MysqlColumn mysql_columns = 2;
-
getMysqlColumnsOrBuilder
MysqlColumnOrBuilder getMysqlColumnsOrBuilder(int index)
MySQL columns in the database. When unspecified as part of include/exclude lists, includes/excludes everything.
repeated .google.cloud.datastream.v1alpha1.MysqlColumn mysql_columns = 2;
-
-