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 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.