lib/elasticsearch/api/actions/indices/put_template.rb in elasticsearch-api-6.1.0 vs lib/elasticsearch/api/actions/indices/put_template.rb in elasticsearch-api-6.2.0

- old
+ new

@@ -22,19 +22,22 @@ # @see http://www.elasticsearch.org/guide/reference/api/admin-indices-templates/ # def put_template(arguments={}) raise ArgumentError, "Required argument 'name' missing" unless arguments[:name] raise ArgumentError, "Required argument 'body' missing" unless arguments[:body] - valid_params = [ :create, :order, :timeout ] - method = HTTP_PUT path = Utils.__pathify '_template', Utils.__escape(arguments[:name]) - params = Utils.__validate_and_extract_params arguments, valid_params + params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__) body = arguments[:body] perform_request(method, path, params, body).body end + + # Register this action with its valid params when the module is loaded. + # + # @since 6.2.0 + ParamsRegistry.register(:put_template, [ :create, :order, :timeout ].freeze) end end end end