Package com.google.cloud.clouddms.v1
Interface EntityDdlOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EntityDdl,EntityDdl.Builder
public interface EntityDdlOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDdl()The actual ddl code.com.google.protobuf.ByteStringgetDdlBytes()The actual ddl code.StringgetDdlType()Type of DDL (Create, Alter).com.google.protobuf.ByteStringgetDdlTypeBytes()Type of DDL (Create, Alter).StringgetEntity()The name of the database entity the ddl refers to.com.google.protobuf.ByteStringgetEntityBytes()The name of the database entity the ddl refers to.DatabaseEntityTypegetEntityType()The entity type (if the DDL is for a sub entity).intgetEntityTypeValue()The entity type (if the DDL is for a sub entity).StringgetIssueId(int index)EntityIssues found for this ddl.com.google.protobuf.ByteStringgetIssueIdBytes(int index)EntityIssues found for this ddl.intgetIssueIdCount()EntityIssues found for this ddl.List<String>getIssueIdList()EntityIssues found for this ddl.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDdlType
String getDdlType()
Type of DDL (Create, Alter).
string ddl_type = 1;- Returns:
- The ddlType.
-
getDdlTypeBytes
com.google.protobuf.ByteString getDdlTypeBytes()
Type of DDL (Create, Alter).
string ddl_type = 1;- Returns:
- The bytes for ddlType.
-
getEntity
String getEntity()
The name of the database entity the ddl refers to.
string entity = 2;- Returns:
- The entity.
-
getEntityBytes
com.google.protobuf.ByteString getEntityBytes()
The name of the database entity the ddl refers to.
string entity = 2;- Returns:
- The bytes for entity.
-
getDdl
String getDdl()
The actual ddl code.
string ddl = 3;- Returns:
- The ddl.
-
getDdlBytes
com.google.protobuf.ByteString getDdlBytes()
The actual ddl code.
string ddl = 3;- Returns:
- The bytes for ddl.
-
getEntityTypeValue
int getEntityTypeValue()
The entity type (if the DDL is for a sub entity).
.google.cloud.clouddms.v1.DatabaseEntityType entity_type = 4;- Returns:
- The enum numeric value on the wire for entityType.
-
getEntityType
DatabaseEntityType getEntityType()
The entity type (if the DDL is for a sub entity).
.google.cloud.clouddms.v1.DatabaseEntityType entity_type = 4;- Returns:
- The entityType.
-
getIssueIdList
List<String> getIssueIdList()
EntityIssues found for this ddl.
repeated string issue_id = 100;- Returns:
- A list containing the issueId.
-
getIssueIdCount
int getIssueIdCount()
EntityIssues found for this ddl.
repeated string issue_id = 100;- Returns:
- The count of issueId.
-
getIssueId
String getIssueId(int index)
EntityIssues found for this ddl.
repeated string issue_id = 100;- Parameters:
index- The index of the element to return.- Returns:
- The issueId at the given index.
-
getIssueIdBytes
com.google.protobuf.ByteString getIssueIdBytes(int index)
EntityIssues found for this ddl.
repeated string issue_id = 100;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the issueId at the given index.
-
-