2010-11-08 07:21:31 -05:00
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class Brightbox
|
2010-11-08 07:21:31 -05:00
|
|
|
class Real
|
|
|
|
|
|
|
|
def update_user(identifier, options = {})
|
2010-11-10 11:06:02 -05:00
|
|
|
return nil if identifier.nil? || identifier == ""
|
2010-11-11 16:02:20 -05:00
|
|
|
return nil if options.empty? || options.nil?
|
2010-11-08 07:21:31 -05:00
|
|
|
request(
|
|
|
|
:expects => [200],
|
|
|
|
:method => 'PUT',
|
|
|
|
:path => "/1.0/users/#{identifier}",
|
|
|
|
:headers => {"Content-Type" => "application/json"},
|
2011-07-20 12:08:11 -04:00
|
|
|
:body => MultiJson.encode(options)
|
2010-11-08 07:21:31 -05:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|