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