Sha256: ad3212124ffe042a62fd8b38da95f80c595bd288fcd534cb50dcd7218a556093
Contents?: true
Size: 538 Bytes
Versions: 73
Compression:
Stored size: 538 Bytes
Contents
module Elasticsearch module API module Actions # Retrieve an indexed template from Elasticsearch # # @option arguments [String] :id Template ID # # @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/search-template.html # def delete_template(arguments={}) method = HTTP_DELETE path = "_search/template/#{arguments[:id]}" params = {} body = nil perform_request(method, path, params, body).body end end end end
Version data entries
73 entries across 73 versions & 6 rubygems