Package com.google.cloud.datastream.v1
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
getTable()
Table name.com.google.protobuf.ByteString
getTableBytes()
Table name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTable
String getTable()
Table name.
string table = 1;
- Returns:
- The table.
-
getTableBytes
com.google.protobuf.ByteString getTableBytes()
Table name.
string table = 1;
- Returns:
- The bytes for table.
-
getMysqlColumnsList
List<MysqlColumn> getMysqlColumnsList()
MySQL columns in the database. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.MysqlColumn mysql_columns = 2;
-
getMysqlColumns
MysqlColumn getMysqlColumns(int index)
MySQL columns in the database. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.MysqlColumn mysql_columns = 2;
-
getMysqlColumnsCount
int getMysqlColumnsCount()
MySQL columns in the database. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.MysqlColumn mysql_columns = 2;
-
getMysqlColumnsOrBuilderList
List<? extends MysqlColumnOrBuilder> getMysqlColumnsOrBuilderList()
MySQL columns in the database. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.MysqlColumn mysql_columns = 2;
-
getMysqlColumnsOrBuilder
MysqlColumnOrBuilder getMysqlColumnsOrBuilder(int index)
MySQL columns in the database. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.MysqlColumn mysql_columns = 2;
-
-