lib/elasticsearch/api/actions/ingest/get_pipeline.rb in elasticsearch-api-6.2.0 vs lib/elasticsearch/api/actions/ingest/get_pipeline.rb in elasticsearch-api-6.3.0
- old
+ new
@@ -3,14 +3,14 @@
module Ingest
module Actions
# Return a specified pipeline
#
- # @option arguments [String] :id Comma separated list of pipeline ids (wildcards supported).
+ # @option arguments [String] :id Comma separated list of pipeline ids. Wildcards supported
# @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
+ # @see https://www.elastic.co/guide/en/elasticsearch/plugins/current/ingest.html
#
def get_pipeline(arguments={})
method = 'GET'
path = Utils.__pathify "_ingest/pipeline", Utils.__escape(arguments[:id])
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
@@ -20,10 +20,11 @@
end
# Register this action with its valid params when the module is loaded.
#
# @since 6.2.0
- ParamsRegistry.register(:get_pipeline, [ :master_timeout ].freeze)
+ ParamsRegistry.register(:get_pipeline, [
+ :master_timeout ].freeze)
end
end
end
end