Sha256: 6abccb514ac3069fa2e55b42887f35dc6a9ad6925f670208808f1a1831cf9572

Contents?: true

Size: 1.22 KB

Versions: 6

Compression:

Stored size: 1.22 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'
        #
        # @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 = 'DELETE'
          path   = Utils.__pathify '_template', Utils.__escape(arguments[:name])

          params = Utils.__validate_and_extract_params arguments, valid_params
          body = nil

          perform_request(method, path, params, body).body

        rescue Exception => e
          # NOTE: Use exception name, not full class in Elasticsearch::Client to allow client plugability
          if arguments[:ignore] == 404 && e.class.to_s =~ /NotFound/; false
          else raise(e)
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
elasticsearch-api-0.4.7 lib/elasticsearch/api/actions/indices/delete_template.rb
elasticsearch-api-0.4.6 lib/elasticsearch/api/actions/indices/delete_template.rb
elasticsearch-api-0.4.5 lib/elasticsearch/api/actions/indices/delete_template.rb
elasticsearch-api-0.4.4 lib/elasticsearch/api/actions/indices/delete_template.rb
elasticsearch-api-0.4.3 lib/elasticsearch/api/actions/indices/delete_template.rb
elasticsearch-api-0.4.2 lib/elasticsearch/api/actions/indices/delete_template.rb