Sha256: 215ccbc4c3501a65fc789f6a7686120fd6d0310c0a00399827acdd3163b54a3a
Contents?: true
Size: 1002 Bytes
Versions: 5
Compression:
Stored size: 1002 Bytes
Contents
module Elasticsearch module API module Ingest module Actions # Return a specified pipeline # # @option arguments [String] :id Comma separated list of pipeline ids. Wildcards supported (*Required*) # @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node # # @see https://www.elastic.co/guide/en/elasticsearch/plugins/master/ingest.html # def get_pipeline(arguments={}) Utils.__report_unsupported_method(__method__) raise ArgumentError, "Required argument 'id' missing" unless arguments[:id] valid_params = [ :master_timeout ] method = 'GET' path = Utils.__pathify "_ingest/pipeline", Utils.__escape(arguments[:id]) params = Utils.__validate_and_extract_params arguments, valid_params body = nil perform_request(method, path, params, body).body end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems