Package com.google.cloud.clouddms.v1
Interface EntityMappingOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EntityMapping
,EntityMapping.Builder
public interface EntityMappingOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDraftEntity()
Target entity full name.com.google.protobuf.ByteString
getDraftEntityBytes()
Target entity full name.DatabaseEntityType
getDraftType()
Type of draft entity.int
getDraftTypeValue()
Type of draft entity.EntityMappingLogEntry
getMappingLog(int index)
Entity mapping log entries.int
getMappingLogCount()
Entity mapping log entries.List<EntityMappingLogEntry>
getMappingLogList()
Entity mapping log entries.EntityMappingLogEntryOrBuilder
getMappingLogOrBuilder(int index)
Entity mapping log entries.List<? extends EntityMappingLogEntryOrBuilder>
getMappingLogOrBuilderList()
Entity mapping log entries.String
getSourceEntity()
Source entity full name.com.google.protobuf.ByteString
getSourceEntityBytes()
Source entity full name.DatabaseEntityType
getSourceType()
Type of source entity.int
getSourceTypeValue()
Type of source entity.-
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()
Source entity full name. The source entity can also be a column, index or constraint using the same naming notation schema.table.column.
string source_entity = 1;
- Returns:
- The sourceEntity.
-
getSourceEntityBytes
com.google.protobuf.ByteString getSourceEntityBytes()
Source entity full name. The source entity can also be a column, index or constraint using the same naming notation schema.table.column.
string source_entity = 1;
- Returns:
- The bytes for sourceEntity.
-
getDraftEntity
String getDraftEntity()
Target entity full name. The draft entity can also include a column, index or constraint using the same naming notation schema.table.column.
string draft_entity = 2;
- Returns:
- The draftEntity.
-
getDraftEntityBytes
com.google.protobuf.ByteString getDraftEntityBytes()
Target entity full name. The draft entity can also include a column, index or constraint using the same naming notation schema.table.column.
string draft_entity = 2;
- Returns:
- The bytes for draftEntity.
-
getSourceTypeValue
int getSourceTypeValue()
Type of source entity.
.google.cloud.clouddms.v1.DatabaseEntityType source_type = 4;
- Returns:
- The enum numeric value on the wire for sourceType.
-
getSourceType
DatabaseEntityType getSourceType()
Type of source entity.
.google.cloud.clouddms.v1.DatabaseEntityType source_type = 4;
- Returns:
- The sourceType.
-
getDraftTypeValue
int getDraftTypeValue()
Type of draft entity.
.google.cloud.clouddms.v1.DatabaseEntityType draft_type = 5;
- Returns:
- The enum numeric value on the wire for draftType.
-
getDraftType
DatabaseEntityType getDraftType()
Type of draft entity.
.google.cloud.clouddms.v1.DatabaseEntityType draft_type = 5;
- Returns:
- The draftType.
-
getMappingLogList
List<EntityMappingLogEntry> getMappingLogList()
Entity mapping log entries. Multiple rules can be effective and contribute changes to a converted entity, such as a rule can handle the entity name, another rule can handle an entity type. In addition, rules which did not change the entity are also logged along with the reason preventing them to do so.
repeated .google.cloud.clouddms.v1.EntityMappingLogEntry mapping_log = 3;
-
getMappingLog
EntityMappingLogEntry getMappingLog(int index)
Entity mapping log entries. Multiple rules can be effective and contribute changes to a converted entity, such as a rule can handle the entity name, another rule can handle an entity type. In addition, rules which did not change the entity are also logged along with the reason preventing them to do so.
repeated .google.cloud.clouddms.v1.EntityMappingLogEntry mapping_log = 3;
-
getMappingLogCount
int getMappingLogCount()
Entity mapping log entries. Multiple rules can be effective and contribute changes to a converted entity, such as a rule can handle the entity name, another rule can handle an entity type. In addition, rules which did not change the entity are also logged along with the reason preventing them to do so.
repeated .google.cloud.clouddms.v1.EntityMappingLogEntry mapping_log = 3;
-
getMappingLogOrBuilderList
List<? extends EntityMappingLogEntryOrBuilder> getMappingLogOrBuilderList()
Entity mapping log entries. Multiple rules can be effective and contribute changes to a converted entity, such as a rule can handle the entity name, another rule can handle an entity type. In addition, rules which did not change the entity are also logged along with the reason preventing them to do so.
repeated .google.cloud.clouddms.v1.EntityMappingLogEntry mapping_log = 3;
-
getMappingLogOrBuilder
EntityMappingLogEntryOrBuilder getMappingLogOrBuilder(int index)
Entity mapping log entries. Multiple rules can be effective and contribute changes to a converted entity, such as a rule can handle the entity name, another rule can handle an entity type. In addition, rules which did not change the entity are also logged along with the reason preventing them to do so.
repeated .google.cloud.clouddms.v1.EntityMappingLogEntry mapping_log = 3;
-
-