lib/elasticsearch/api/actions/indices/delete_template.rb in elasticsearch-api-6.2.0 vs lib/elasticsearch/api/actions/indices/delete_template.rb in elasticsearch-api-6.3.0
- old
+ new
@@ -13,12 +13,13 @@
#
# client.indices.delete_template name: '*'
#
# @option arguments [String] :name The name of the template (*Required*)
# @option arguments [Time] :timeout Explicit operation timeout
+ # @option arguments [Time] :master_timeout Specify timeout for connection to master
#
- # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-templates/
+ # @see http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-templates.html
#
def delete_template(arguments={})
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]
method = HTTP_DELETE
path = Utils.__pathify '_template', Utils.__escape(arguments[:name])
@@ -34,10 +35,12 @@
end
# Register this action with its valid params when the module is loaded.
#
# @since 6.2.0
- ParamsRegistry.register(:delete_template, [ :timeout ].freeze)
+ ParamsRegistry.register(:delete_template, [
+ :timeout,
+ :master_timeout ].freeze)
end
end
end
end