Package com.google.cloud.clouddms.v1
Interface TableEntityOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TableEntity
,TableEntity.Builder
public interface TableEntityOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ColumnEntity
getColumns(int index)
Table columns.int
getColumnsCount()
Table columns.List<ColumnEntity>
getColumnsList()
Table columns.ColumnEntityOrBuilder
getColumnsOrBuilder(int index)
Table columns.List<? extends ColumnEntityOrBuilder>
getColumnsOrBuilderList()
Table columns.String
getComment()
Comment associated with the table.com.google.protobuf.ByteString
getCommentBytes()
Comment associated with the table.ConstraintEntity
getConstraints(int index)
Table constraints.int
getConstraintsCount()
Table constraints.List<ConstraintEntity>
getConstraintsList()
Table constraints.ConstraintEntityOrBuilder
getConstraintsOrBuilder(int index)
Table constraints.List<? extends ConstraintEntityOrBuilder>
getConstraintsOrBuilderList()
Table constraints.com.google.protobuf.Struct
getCustomFeatures()
Custom engine specific features.com.google.protobuf.StructOrBuilder
getCustomFeaturesOrBuilder()
Custom engine specific features.IndexEntity
getIndices(int index)
Table indices.int
getIndicesCount()
Table indices.List<IndexEntity>
getIndicesList()
Table indices.IndexEntityOrBuilder
getIndicesOrBuilder(int index)
Table indices.List<? extends IndexEntityOrBuilder>
getIndicesOrBuilderList()
Table indices.TriggerEntity
getTriggers(int index)
Table triggers.int
getTriggersCount()
Table triggers.List<TriggerEntity>
getTriggersList()
Table triggers.TriggerEntityOrBuilder
getTriggersOrBuilder(int index)
Table triggers.List<? extends TriggerEntityOrBuilder>
getTriggersOrBuilderList()
Table triggers.boolean
hasCustomFeatures()
Custom engine specific features.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getColumnsList
List<ColumnEntity> getColumnsList()
Table columns.
repeated .google.cloud.clouddms.v1.ColumnEntity columns = 1;
-
getColumns
ColumnEntity getColumns(int index)
Table columns.
repeated .google.cloud.clouddms.v1.ColumnEntity columns = 1;
-
getColumnsCount
int getColumnsCount()
Table columns.
repeated .google.cloud.clouddms.v1.ColumnEntity columns = 1;
-
getColumnsOrBuilderList
List<? extends ColumnEntityOrBuilder> getColumnsOrBuilderList()
Table columns.
repeated .google.cloud.clouddms.v1.ColumnEntity columns = 1;
-
getColumnsOrBuilder
ColumnEntityOrBuilder getColumnsOrBuilder(int index)
Table columns.
repeated .google.cloud.clouddms.v1.ColumnEntity columns = 1;
-
getConstraintsList
List<ConstraintEntity> getConstraintsList()
Table constraints.
repeated .google.cloud.clouddms.v1.ConstraintEntity constraints = 2;
-
getConstraints
ConstraintEntity getConstraints(int index)
Table constraints.
repeated .google.cloud.clouddms.v1.ConstraintEntity constraints = 2;
-
getConstraintsCount
int getConstraintsCount()
Table constraints.
repeated .google.cloud.clouddms.v1.ConstraintEntity constraints = 2;
-
getConstraintsOrBuilderList
List<? extends ConstraintEntityOrBuilder> getConstraintsOrBuilderList()
Table constraints.
repeated .google.cloud.clouddms.v1.ConstraintEntity constraints = 2;
-
getConstraintsOrBuilder
ConstraintEntityOrBuilder getConstraintsOrBuilder(int index)
Table constraints.
repeated .google.cloud.clouddms.v1.ConstraintEntity constraints = 2;
-
getIndicesList
List<IndexEntity> getIndicesList()
Table indices.
repeated .google.cloud.clouddms.v1.IndexEntity indices = 3;
-
getIndices
IndexEntity getIndices(int index)
Table indices.
repeated .google.cloud.clouddms.v1.IndexEntity indices = 3;
-
getIndicesCount
int getIndicesCount()
Table indices.
repeated .google.cloud.clouddms.v1.IndexEntity indices = 3;
-
getIndicesOrBuilderList
List<? extends IndexEntityOrBuilder> getIndicesOrBuilderList()
Table indices.
repeated .google.cloud.clouddms.v1.IndexEntity indices = 3;
-
getIndicesOrBuilder
IndexEntityOrBuilder getIndicesOrBuilder(int index)
Table indices.
repeated .google.cloud.clouddms.v1.IndexEntity indices = 3;
-
getTriggersList
List<TriggerEntity> getTriggersList()
Table triggers.
repeated .google.cloud.clouddms.v1.TriggerEntity triggers = 4;
-
getTriggers
TriggerEntity getTriggers(int index)
Table triggers.
repeated .google.cloud.clouddms.v1.TriggerEntity triggers = 4;
-
getTriggersCount
int getTriggersCount()
Table triggers.
repeated .google.cloud.clouddms.v1.TriggerEntity triggers = 4;
-
getTriggersOrBuilderList
List<? extends TriggerEntityOrBuilder> getTriggersOrBuilderList()
Table triggers.
repeated .google.cloud.clouddms.v1.TriggerEntity triggers = 4;
-
getTriggersOrBuilder
TriggerEntityOrBuilder getTriggersOrBuilder(int index)
Table triggers.
repeated .google.cloud.clouddms.v1.TriggerEntity triggers = 4;
-
hasCustomFeatures
boolean hasCustomFeatures()
Custom engine specific features.
.google.protobuf.Struct custom_features = 5;
- Returns:
- Whether the customFeatures field is set.
-
getCustomFeatures
com.google.protobuf.Struct getCustomFeatures()
Custom engine specific features.
.google.protobuf.Struct custom_features = 5;
- Returns:
- The customFeatures.
-
getCustomFeaturesOrBuilder
com.google.protobuf.StructOrBuilder getCustomFeaturesOrBuilder()
Custom engine specific features.
.google.protobuf.Struct custom_features = 5;
-
getComment
String getComment()
Comment associated with the table.
string comment = 6;
- Returns:
- The comment.
-
getCommentBytes
com.google.protobuf.ByteString getCommentBytes()
Comment associated with the table.
string comment = 6;
- Returns:
- The bytes for comment.
-
-