module SauceWhisk::RestRequestBuilder

def put(resource_id, body={})

def put(resource_id, body={})
  url = "#{fully_qualified_resource}/#{resource_id}"
  length = body.length
  headers = {"Content-Length" => length}
  req_params = {
      :method => :put,
      :url => url,
      :payload => body,
      :content_type => :json,
      :headers => headers
  }
  make_request(req_params.merge auth_details)
end