Method: ZAWS::Sumoapi::SumoClient#put

Defined in:
lib/zaws/external/sumoapi/sumo_client.rb

#put(path, body, options = {}) ⇒ Object

Make a PUT request expecting a JSON response.



34
35
36
37
# File 'lib/zaws/external/sumoapi/sumo_client.rb', line 34

def put(path, body, options = {})
  options[:body] = body
  json_request('PUT', path, options)
end