Package com.google.cloud.datastream.v1
Interface PostgresqlTableOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PostgresqlTable
,PostgresqlTable.Builder
public interface PostgresqlTableOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PostgresqlColumn
getPostgresqlColumns(int index)
PostgreSQL columns in the schema.int
getPostgresqlColumnsCount()
PostgreSQL columns in the schema.List<PostgresqlColumn>
getPostgresqlColumnsList()
PostgreSQL columns in the schema.PostgresqlColumnOrBuilder
getPostgresqlColumnsOrBuilder(int index)
PostgreSQL columns in the schema.List<? extends PostgresqlColumnOrBuilder>
getPostgresqlColumnsOrBuilderList()
PostgreSQL columns in the schema.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.
-
getPostgresqlColumnsList
List<PostgresqlColumn> getPostgresqlColumnsList()
PostgreSQL columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.PostgresqlColumn postgresql_columns = 2;
-
getPostgresqlColumns
PostgresqlColumn getPostgresqlColumns(int index)
PostgreSQL columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.PostgresqlColumn postgresql_columns = 2;
-
getPostgresqlColumnsCount
int getPostgresqlColumnsCount()
PostgreSQL columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.PostgresqlColumn postgresql_columns = 2;
-
getPostgresqlColumnsOrBuilderList
List<? extends PostgresqlColumnOrBuilder> getPostgresqlColumnsOrBuilderList()
PostgreSQL columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.PostgresqlColumn postgresql_columns = 2;
-
getPostgresqlColumnsOrBuilder
PostgresqlColumnOrBuilder getPostgresqlColumnsOrBuilder(int index)
PostgreSQL columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.PostgresqlColumn postgresql_columns = 2;
-
-