Package com.google.cloud.datastream.v1
Interface PostgresqlSchemaOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PostgresqlSchema
,PostgresqlSchema.Builder
public interface PostgresqlSchemaOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PostgresqlTable
getPostgresqlTables(int index)
Tables in the schema.int
getPostgresqlTablesCount()
Tables in the schema.List<PostgresqlTable>
getPostgresqlTablesList()
Tables in the schema.PostgresqlTableOrBuilder
getPostgresqlTablesOrBuilder(int index)
Tables in the schema.List<? extends PostgresqlTableOrBuilder>
getPostgresqlTablesOrBuilderList()
Tables in the schema.String
getSchema()
Schema name.com.google.protobuf.ByteString
getSchemaBytes()
Schema name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSchema
String getSchema()
Schema name.
string schema = 1;
- Returns:
- The schema.
-
getSchemaBytes
com.google.protobuf.ByteString getSchemaBytes()
Schema name.
string schema = 1;
- Returns:
- The bytes for schema.
-
getPostgresqlTablesList
List<PostgresqlTable> getPostgresqlTablesList()
Tables in the schema.
repeated .google.cloud.datastream.v1.PostgresqlTable postgresql_tables = 2;
-
getPostgresqlTables
PostgresqlTable getPostgresqlTables(int index)
Tables in the schema.
repeated .google.cloud.datastream.v1.PostgresqlTable postgresql_tables = 2;
-
getPostgresqlTablesCount
int getPostgresqlTablesCount()
Tables in the schema.
repeated .google.cloud.datastream.v1.PostgresqlTable postgresql_tables = 2;
-
getPostgresqlTablesOrBuilderList
List<? extends PostgresqlTableOrBuilder> getPostgresqlTablesOrBuilderList()
Tables in the schema.
repeated .google.cloud.datastream.v1.PostgresqlTable postgresql_tables = 2;
-
getPostgresqlTablesOrBuilder
PostgresqlTableOrBuilder getPostgresqlTablesOrBuilder(int index)
Tables in the schema.
repeated .google.cloud.datastream.v1.PostgresqlTable postgresql_tables = 2;
-
-