Sha256: 6fd7ad28d389160c8511e4dae159403f4800e7780121d6833444026485cb7c7c
Contents?: true
Size: 990 Bytes
Versions: 19
Compression:
Stored size: 990 Bytes
Contents
module Elasticsearch module API module Indices module Actions # Delete all documents and mapping for a specific document type. # # @option arguments [List] :index A comma-separated list of index names; use `_all` for all indices (*Required*) # @option arguments [String] :type The name of the document type to delete (*Required*) # # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-delete-mapping/ # def delete_mapping(arguments={}) raise ArgumentError, "Required argument 'index' missing" unless arguments[:index] raise ArgumentError, "Required argument 'type' missing" unless arguments[:type] method = 'DELETE' path = Utils.__pathify Utils.__listify(arguments[:index]), Utils.__escape(arguments[:type]) params = {} body = nil perform_request(method, path, params, body).body end end end end end
Version data entries
19 entries across 19 versions & 1 rubygems