Sha256: 61abf28f38ff23673a2e7c9dd129fceca267d36ca5c303cd7bf9eab35b38bd59
Contents?: true
Size: 1.15 KB
Versions: 2
Compression:
Stored size: 1.15 KB
Contents
module Elasticsearch module API module Indices module Actions # Delete an index template. # # @example Delete a template named _mytemplate_ # # client.indices.delete_template name: 'mytemplate' # # @example Delete all templates # # client.indices.delete_template name: '*' # # @option arguments [String] :name The name of the template (*Required*) # @option arguments [Time] :timeout Explicit operation timeout # # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-templates/ # def delete_template(arguments={}) raise ArgumentError, "Required argument 'name' missing" unless arguments[:name] valid_params = [ :timeout ] method = HTTP_DELETE path = Utils.__pathify '_template', Utils.__escape(arguments[:name]) params = Utils.__validate_and_extract_params arguments, valid_params body = nil Utils.__rescue_from_not_found do perform_request(method, path, params, body).body end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
elasticsearch-api-1.0.11 | lib/elasticsearch/api/actions/indices/delete_template.rb |
elasticsearch-api-1.0.10 | lib/elasticsearch/api/actions/indices/delete_template.rb |