Sha256: a951e1f3f70af81e58a5ceb66b35fefd5b3efde337500cc92af60f9a4bd2511c

Contents?: true

Size: 1.11 KB

Versions: 48

Compression:

Stored size: 1.11 KB

Contents

module Elasticsearch
  module API
    module Ingest
      module Actions

        # Execute a specific pipeline against the set of documents provided in the body of the request
        #
        # @option arguments [String] :id Pipeline ID
        # @option arguments [Hash] :body The pipeline definition (*Required*)
        # @option arguments [Boolean] :verbose Verbose mode. Display data output for each processor
        #                                                    in executed pipeline
        #
        # @see https://www.elastic.co/guide/en/elasticsearch/reference/master/simulate-pipeline-api.html
        #
        def simulate(arguments={})
          raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
          valid_params = [
            :verbose ]
          method = 'GET'
          path   = Utils.__pathify "_ingest/pipeline", Utils.__escape(arguments[:id]), '_simulate'
          params = Utils.__validate_and_extract_params arguments, valid_params
          body   = arguments[:body]

          perform_request(method, path, params, body).body
        end
      end
    end
  end
end

Version data entries

48 entries across 48 versions & 6 rubygems

Version Path
logstash-filter-cache-redis-0.2.0 vendor/bundle/jruby/1.9/gems/elasticsearch-api-5.0.4/lib/elasticsearch/api/actions/ingest/simulate.rb
elasticsearch-api-5.0.4 lib/elasticsearch/api/actions/ingest/simulate.rb
elasticsearch-api-5.0.3 lib/elasticsearch/api/actions/ingest/simulate.rb
elasticsearch-api-5.0.2 lib/elasticsearch/api/actions/ingest/simulate.rb
elasticsearch-api-5.0.1 lib/elasticsearch/api/actions/ingest/simulate.rb
elasticsearch-api-5.0.0 lib/elasticsearch/api/actions/ingest/simulate.rb
elasticsearch-api-5.0.0.pre lib/elasticsearch/api/actions/ingest/simulate.rb
elasticsearch-api-1.0.18 lib/elasticsearch/api/actions/ingest/simulate.rb