Method: Chef::HTTP#delete
- Defined in:
- lib/chef/http.rb
#delete(path, headers = {}) ⇒ Object
Send an HTTP DELETE request to the path
Parameters
- path
-
path part of the request URL
144 145 146 |
# File 'lib/chef/http.rb', line 144 def delete(path, headers = {}) request(:DELETE, path, headers) end |