Sha256: 88106b322cac873756cb4a002bb025768b3e725d1ac6d06e4d3141e78055b4f0
Contents?: true
Size: 863 Bytes
Versions: 65
Compression:
Stored size: 863 Bytes
Contents
module Elasticsearch module API module Actions # Retrieve an indexed script from Elasticsearch # # @option arguments [String] :id Template ID (*Required*) # @option arguments [Hash] :body The document # # @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/search-template.html # def get_template(arguments={}) raise ArgumentError, "Required argument 'id' missing" unless arguments[:id] method = HTTP_GET path = "_search/template/#{arguments[:id]}" params = {} body = arguments[:body] if Array(arguments[:ignore]).include?(404) Utils.__rescue_from_not_found { perform_request(method, path, params, body).body } else perform_request(method, path, params, body).body end end end end end
Version data entries
65 entries across 65 versions & 6 rubygems