Package com.google.cloud.clouddms.v1
Interface EntityIssueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EntityIssue,EntityIssue.Builder
public interface EntityIssueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCode()Error/Warning codecom.google.protobuf.ByteStringgetCodeBytes()Error/Warning codeStringgetDdl()The ddl which caused the issue, if relevant.com.google.protobuf.ByteStringgetDdlBytes()The ddl which caused the issue, if relevant.DatabaseEntityTypegetEntityType()The entity type (if the DDL is for a sub entity).intgetEntityTypeValue()The entity type (if the DDL is for a sub entity).StringgetId()Unique Issue ID.com.google.protobuf.ByteStringgetIdBytes()Unique Issue ID.StringgetMessage()Issue detailed messagecom.google.protobuf.ByteStringgetMessageBytes()Issue detailed messageEntityIssue.PositiongetPosition()The position of the issue found, if relevant.EntityIssue.PositionOrBuildergetPositionOrBuilder()The position of the issue found, if relevant.EntityIssue.IssueSeveritygetSeverity()Severity of the issueintgetSeverityValue()Severity of the issueEntityIssue.IssueTypegetType()The type of the issue.intgetTypeValue()The type of the issue.booleanhasDdl()The ddl which caused the issue, if relevant.booleanhasPosition()The position of the issue found, if relevant.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getId
String getId()
Unique Issue ID.
string id = 1;- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
Unique Issue ID.
string id = 1;- Returns:
- The bytes for id.
-
getTypeValue
int getTypeValue()
The type of the issue.
.google.cloud.clouddms.v1.EntityIssue.IssueType type = 2;- Returns:
- The enum numeric value on the wire for type.
-
getType
EntityIssue.IssueType getType()
The type of the issue.
.google.cloud.clouddms.v1.EntityIssue.IssueType type = 2;- Returns:
- The type.
-
getSeverityValue
int getSeverityValue()
Severity of the issue
.google.cloud.clouddms.v1.EntityIssue.IssueSeverity severity = 3;- Returns:
- The enum numeric value on the wire for severity.
-
getSeverity
EntityIssue.IssueSeverity getSeverity()
Severity of the issue
.google.cloud.clouddms.v1.EntityIssue.IssueSeverity severity = 3;- Returns:
- The severity.
-
getMessage
String getMessage()
Issue detailed message
string message = 4;- Returns:
- The message.
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()
Issue detailed message
string message = 4;- Returns:
- The bytes for message.
-
getCode
String getCode()
Error/Warning code
string code = 5;- Returns:
- The code.
-
getCodeBytes
com.google.protobuf.ByteString getCodeBytes()
Error/Warning code
string code = 5;- Returns:
- The bytes for code.
-
hasDdl
boolean hasDdl()
The ddl which caused the issue, if relevant.
optional string ddl = 6;- Returns:
- Whether the ddl field is set.
-
getDdl
String getDdl()
The ddl which caused the issue, if relevant.
optional string ddl = 6;- Returns:
- The ddl.
-
getDdlBytes
com.google.protobuf.ByteString getDdlBytes()
The ddl which caused the issue, if relevant.
optional string ddl = 6;- Returns:
- The bytes for ddl.
-
hasPosition
boolean hasPosition()
The position of the issue found, if relevant.
optional .google.cloud.clouddms.v1.EntityIssue.Position position = 7;- Returns:
- Whether the position field is set.
-
getPosition
EntityIssue.Position getPosition()
The position of the issue found, if relevant.
optional .google.cloud.clouddms.v1.EntityIssue.Position position = 7;- Returns:
- The position.
-
getPositionOrBuilder
EntityIssue.PositionOrBuilder getPositionOrBuilder()
The position of the issue found, if relevant.
optional .google.cloud.clouddms.v1.EntityIssue.Position position = 7;
-
getEntityTypeValue
int getEntityTypeValue()
The entity type (if the DDL is for a sub entity).
.google.cloud.clouddms.v1.DatabaseEntityType entity_type = 8;- 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 = 8;- Returns:
- The entityType.
-
-