2010-11-08 07:21:31 -05:00
|
|
|
module Fog
|
|
|
|
module Brightbox
|
|
|
|
class Compute
|
|
|
|
class Real
|
|
|
|
|
|
|
|
def update_server(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/servers/#{identifier}",
|
|
|
|
:headers => {"Content-Type" => "application/json"},
|
|
|
|
:body => options.to_json
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def update_server(identifier, options = {})
|
|
|
|
Fog::Mock.not_implemented
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|