Class PostDataRequest

All Implemented Interfaces:
Writeable, org.elasticsearch.core.RefCounted, TaskAwareRequest, org.elasticsearch.xcontent.ToXContent, org.elasticsearch.xcontent.ToXContentObject

public class PostDataRequest extends ActionRequest implements org.elasticsearch.xcontent.ToXContentObject
Request to post data to a Machine Learning job
  • Field Details

    • RESET_START

      public static final org.elasticsearch.xcontent.ParseField RESET_START
    • RESET_END

      public static final org.elasticsearch.xcontent.ParseField RESET_END
    • CONTENT_TYPE

      public static final org.elasticsearch.xcontent.ParseField CONTENT_TYPE
    • PARSER

      public static final org.elasticsearch.xcontent.ConstructingObjectParser<PostDataRequest,Void> PARSER
  • Constructor Details

    • PostDataRequest

      public PostDataRequest(String jobId, org.elasticsearch.xcontent.XContentType xContentType, BytesReference content)
      Create a new PostDataRequest object
      Parameters:
      jobId - non-null jobId of the job to post data to
      xContentType - content type of the data to post. Only XContentType.JSON or XContentType.SMILE are supported
      content - bulk serialized content in the format of the passed XContentType
    • PostDataRequest

      public PostDataRequest(String jobId, org.elasticsearch.xcontent.XContentType xContentType, byte[] content)
      Create a new PostDataRequest object referencing the passed byte[] content
      Parameters:
      jobId - non-null jobId of the job to post data to
      xContentType - content type of the data to post. Only XContentType.JSON or XContentType.SMILE are supported
      content - bulk serialized content in the format of the passed XContentType
    • PostDataRequest

      public PostDataRequest(String jobId, PostDataRequest.JsonBuilder builder)
      Create a new PostDataRequest object referencing the passed PostDataRequest.JsonBuilder object
      Parameters:
      jobId - non-null jobId of the job to post data to
      builder - PostDataRequest.JsonBuilder object containing documents to be serialized and sent in XContentType.JSON format
  • Method Details

    • getJobId

      public String getJobId()
    • getResetStart

      public String getResetStart()
    • setResetStart

      public void setResetStart(String resetStart)
      Specifies the start of the bucket resetting range
      Parameters:
      resetStart - String representation of a timestamp; may be an epoch seconds, epoch millis or an ISO 8601 string
    • getResetEnd

      public String getResetEnd()
    • setResetEnd

      public void setResetEnd(String resetEnd)
      Specifies the end of the bucket resetting range
      Parameters:
      resetEnd - String representation of a timestamp; may be an epoch seconds, epoch millis or an ISO 8601 string
    • getContent

      public BytesReference getContent()
    • getXContentType

      public org.elasticsearch.xcontent.XContentType getXContentType()
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • validate

      Specified by:
      validate in class ActionRequest
    • toXContent

      public org.elasticsearch.xcontent.XContentBuilder toXContent(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) throws IOException
      Specified by:
      toXContent in interface org.elasticsearch.xcontent.ToXContent
      Throws:
      IOException