Package com.google.cloud.datastream.v1
Interface OracleTableOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
OracleTable
,OracleTable.Builder
public interface OracleTableOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OracleColumn
getOracleColumns(int index)
Oracle columns in the schema.int
getOracleColumnsCount()
Oracle columns in the schema.List<OracleColumn>
getOracleColumnsList()
Oracle columns in the schema.OracleColumnOrBuilder
getOracleColumnsOrBuilder(int index)
Oracle columns in the schema.List<? extends OracleColumnOrBuilder>
getOracleColumnsOrBuilderList()
Oracle 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.
-
getOracleColumnsList
List<OracleColumn> getOracleColumnsList()
Oracle columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.OracleColumn oracle_columns = 2;
-
getOracleColumns
OracleColumn getOracleColumns(int index)
Oracle columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.OracleColumn oracle_columns = 2;
-
getOracleColumnsCount
int getOracleColumnsCount()
Oracle columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.OracleColumn oracle_columns = 2;
-
getOracleColumnsOrBuilderList
List<? extends OracleColumnOrBuilder> getOracleColumnsOrBuilderList()
Oracle columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.OracleColumn oracle_columns = 2;
-
getOracleColumnsOrBuilder
OracleColumnOrBuilder getOracleColumnsOrBuilder(int index)
Oracle columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
repeated .google.cloud.datastream.v1.OracleColumn oracle_columns = 2;
-
-