Method: MoesifApi::HttpClient#put
- Defined in:
- lib/moesif_api/http/http_client.rb
#put(query_url, headers: nil, parameters: nil, username: nil, password: nil) ⇒ Object
Get a PUT HttpRequest object.
64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/moesif_api/http/http_client.rb', line 64 def put(query_url, headers: nil, parameters: nil, username: nil, password: nil) return HttpRequest.new(HttpMethodEnum::PUT, query_url, headers: headers, parameters: parameters, username: username, password: password) end |