Sha256: c55157a2a18594be4e41d80c94ad441aa67652df3c28736d6478a67032fd5799
Contents?: true
Size: 1.21 KB
Versions: 5
Compression:
Stored size: 1.21 KB
Contents
module Elasticsearch module API module Ingest module Actions # Add or update a specified pipeline # # @option arguments [String] :id Pipeline ID (*Required*) # @option arguments [Hash] :body The ingest definition (*Required*) # @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node # @option arguments [Time] :timeout Explicit operation timeout # # @see https://www.elastic.co/guide/en/elasticsearch/plugins/master/ingest.html # def put_pipeline(arguments={}) Utils.__report_unsupported_method(__method__) raise ArgumentError, "Required argument 'id' missing" unless arguments[:id] raise ArgumentError, "Required argument 'body' missing" unless arguments[:body] valid_params = [ :master_timeout, :timeout ] method = 'PUT' path = Utils.__pathify "_ingest/pipeline", Utils.__escape(arguments[:id]) 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
5 entries across 5 versions & 1 rubygems