Sha256: 42e9b76876c19ca92771b41fcc8f5d75efde138086006261e239f2b49793c2d3

Contents?: true

Size: 1007 Bytes

Versions: 4

Compression:

Stored size: 1007 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 = HTTP_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

4 entries across 4 versions & 1 rubygems

Version Path
elasticsearch-api-2.0.2 lib/elasticsearch/api/actions/ingest/get_pipeline.rb
elasticsearch-api-2.0.1 lib/elasticsearch/api/actions/ingest/get_pipeline.rb
elasticsearch-api-2.0.0 lib/elasticsearch/api/actions/ingest/get_pipeline.rb
elasticsearch-api-2.0.0.pre lib/elasticsearch/api/actions/ingest/get_pipeline.rb