Package com.google.cloud.datastream.v1
Interface MysqlDatabaseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MysqlDatabase
,MysqlDatabase.Builder
public interface MysqlDatabaseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDatabase()
Database name.com.google.protobuf.ByteString
getDatabaseBytes()
Database name.MysqlTable
getMysqlTables(int index)
Tables in the database.int
getMysqlTablesCount()
Tables in the database.List<MysqlTable>
getMysqlTablesList()
Tables in the database.MysqlTableOrBuilder
getMysqlTablesOrBuilder(int index)
Tables in the database.List<? extends MysqlTableOrBuilder>
getMysqlTablesOrBuilderList()
Tables in the database.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDatabase
String getDatabase()
Database name.
string database = 1;
- Returns:
- The database.
-
getDatabaseBytes
com.google.protobuf.ByteString getDatabaseBytes()
Database name.
string database = 1;
- Returns:
- The bytes for database.
-
getMysqlTablesList
List<MysqlTable> getMysqlTablesList()
Tables in the database.
repeated .google.cloud.datastream.v1.MysqlTable mysql_tables = 2;
-
getMysqlTables
MysqlTable getMysqlTables(int index)
Tables in the database.
repeated .google.cloud.datastream.v1.MysqlTable mysql_tables = 2;
-
getMysqlTablesCount
int getMysqlTablesCount()
Tables in the database.
repeated .google.cloud.datastream.v1.MysqlTable mysql_tables = 2;
-
getMysqlTablesOrBuilderList
List<? extends MysqlTableOrBuilder> getMysqlTablesOrBuilderList()
Tables in the database.
repeated .google.cloud.datastream.v1.MysqlTable mysql_tables = 2;
-
getMysqlTablesOrBuilder
MysqlTableOrBuilder getMysqlTablesOrBuilder(int index)
Tables in the database.
repeated .google.cloud.datastream.v1.MysqlTable mysql_tables = 2;
-
-