Package com.google.cloud.clouddms.v1
Interface SynonymEntityOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SynonymEntity
,SynonymEntity.Builder
public interface SynonymEntityOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Struct
getCustomFeatures()
Custom engine specific features.com.google.protobuf.StructOrBuilder
getCustomFeaturesOrBuilder()
Custom engine specific features.String
getSourceEntity()
The name of the entity for which the synonym is being created (the source).com.google.protobuf.ByteString
getSourceEntityBytes()
The name of the entity for which the synonym is being created (the source).DatabaseEntityType
getSourceType()
The type of the entity for which the synonym is being created (usually a table or a sequence).int
getSourceTypeValue()
The type of the entity for which the synonym is being created (usually a table or a sequence).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
-
getSourceEntity
String getSourceEntity()
The name of the entity for which the synonym is being created (the source).
string source_entity = 1;
- Returns:
- The sourceEntity.
-
getSourceEntityBytes
com.google.protobuf.ByteString getSourceEntityBytes()
The name of the entity for which the synonym is being created (the source).
string source_entity = 1;
- Returns:
- The bytes for sourceEntity.
-
getSourceTypeValue
int getSourceTypeValue()
The type of the entity for which the synonym is being created (usually a table or a sequence).
.google.cloud.clouddms.v1.DatabaseEntityType source_type = 2;
- Returns:
- The enum numeric value on the wire for sourceType.
-
getSourceType
DatabaseEntityType getSourceType()
The type of the entity for which the synonym is being created (usually a table or a sequence).
.google.cloud.clouddms.v1.DatabaseEntityType source_type = 2;
- Returns:
- The sourceType.
-
hasCustomFeatures
boolean hasCustomFeatures()
Custom engine specific features.
.google.protobuf.Struct custom_features = 3;
- Returns:
- Whether the customFeatures field is set.
-
getCustomFeatures
com.google.protobuf.Struct getCustomFeatures()
Custom engine specific features.
.google.protobuf.Struct custom_features = 3;
- Returns:
- The customFeatures.
-
getCustomFeaturesOrBuilder
com.google.protobuf.StructOrBuilder getCustomFeaturesOrBuilder()
Custom engine specific features.
.google.protobuf.Struct custom_features = 3;
-
-