Class IndexRequest.Builder<TDocument>

    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • ifPrimaryTerm

        public final IndexRequest.Builder<TDocument> ifPrimaryTerm​(@Nullable
                                                                   java.lang.Long value)
        only perform the index operation if the last operation that has changed the document has the specified primary term

        API name: if_primary_term

      • ifSeqNo

        public final IndexRequest.Builder<TDocument> ifSeqNo​(@Nullable
                                                             java.lang.Long value)
        only perform the index operation if the last operation that has changed the document has the specified sequence number

        API name: if_seq_no

      • opType

        public final IndexRequest.Builder<TDocument> opType​(@Nullable
                                                            OpType value)
        Explicit operation type. Defaults to index for requests with an explicit document ID, and to createfor requests without an explicit document ID

        API name: op_type

      • pipeline

        public final IndexRequest.Builder<TDocument> pipeline​(@Nullable
                                                              java.lang.String value)
        The pipeline id to preprocess incoming documents with

        API name: pipeline

      • refresh

        public final IndexRequest.Builder<TDocument> refresh​(@Nullable
                                                             Refresh value)
        If true then refresh the affected shards to make this operation visible to search, if wait_for then wait for a refresh to make this operation visible to search, if false (the default) then do nothing with refreshes.

        API name: refresh

      • requireAlias

        public final IndexRequest.Builder<TDocument> requireAlias​(@Nullable
                                                                  java.lang.Boolean value)
        When true, requires destination to be an alias. Default is false

        API name: require_alias

      • version

        public final IndexRequest.Builder<TDocument> version​(@Nullable
                                                             java.lang.Long value)
        Explicit version number for concurrency control

        API name: version

      • waitForActiveShards

        public final IndexRequest.Builder<TDocument> waitForActiveShards​(@Nullable
                                                                         WaitForActiveShards value)
        Sets the number of shard copies that must be active before proceeding with the index operation. Defaults to 1, meaning the primary shard only. Set to all for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1)

        API name: wait_for_active_shards

      • waitForActiveShards

        public final IndexRequest.Builder<TDocument> waitForActiveShards​(java.util.function.Function<WaitForActiveShards.Builder,​ObjectBuilder<WaitForActiveShards>> fn)
        Sets the number of shard copies that must be active before proceeding with the index operation. Defaults to 1, meaning the primary shard only. Set to all for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1)

        API name: wait_for_active_shards