Sha256: 93773784c0a9ecc6346eedabda1ac9acedcda29953f77c1744be552f613d21cb
Contents?: true
Size: 1.38 KB
Versions: 2
Compression:
Stored size: 1.38 KB
Contents
module Elasticsearch module API module Indices module Actions # Delete one or more warmers for a list of indices. # # @example Delete a warmer named _mywarmer_ for index named _myindex_ # # client.indices.delete_warmer index: 'myindex', name: 'mywarmer' # # @option arguments [List] :index A comma-separated list of index names to register warmer for; use `_all` # or empty string to perform the operation on all indices (*Required*) # @option arguments [String] :name The name of the warmer (supports wildcards); leave empty to delete all warmers # @option arguments [List] :type A comma-separated list of document types to register warmer for; use `_all` # or empty string to perform the operation on all types # # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-warmers/ # def delete_warmer(arguments={}) raise ArgumentError, "Required argument 'index' missing" unless arguments[:index] method = 'DELETE' path = Utils.__pathify( Utils.__listify(arguments[:index]), '_warmer', Utils.__listify(arguments[:name]) ) params = {} body = nil perform_request(method, path, params, body).body end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
elasticsearch-api-0.4.0 | lib/elasticsearch/api/actions/indices/delete_warmer.rb |
elasticsearch-api-0.0.2 | lib/elasticsearch/api/actions/indices/delete_warmer.rb |