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
      String getDdl()
      The actual ddl code.
      com.google.protobuf.ByteString getDdlBytes()
      The actual ddl code.
      String getDdlType()
      Type of DDL (Create, Alter).
      com.google.protobuf.ByteString getDdlTypeBytes()
      Type of DDL (Create, Alter).
      String getEntity()
      The name of the database entity the ddl refers to.
      com.google.protobuf.ByteString getEntityBytes()
      The name of the database entity the ddl refers to.
      DatabaseEntityType getEntityType()
      The entity type (if the DDL is for a sub entity).
      int getEntityTypeValue()
      The entity type (if the DDL is for a sub entity).
      String getIssueId​(int index)
      EntityIssues found for this ddl.
      com.google.protobuf.ByteString getIssueIdBytes​(int index)
      EntityIssues found for this ddl.
      int getIssueIdCount()
      EntityIssues found for this ddl.
      List<String> getIssueIdList()
      EntityIssues found for this ddl.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

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