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