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 MysqlColumngetMysqlColumns(int index)MySQL columns in the database.intgetMysqlColumnsCount()MySQL columns in the database.List<MysqlColumn>getMysqlColumnsList()MySQL columns in the database.MysqlColumnOrBuildergetMysqlColumnsOrBuilder(int index)MySQL columns in the database.List<? extends MysqlColumnOrBuilder>getMysqlColumnsOrBuilderList()MySQL columns in the database.StringgetTableName()Table name.com.google.protobuf.ByteStringgetTableNameBytes()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;
-
-