1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/compute/requests/brightbox/shutdown_server.rb

20 lines
496 B
Ruby
Raw Normal View History

module Fog
module Compute
class Brightbox
class Real
def shutdown_server(identifier, options = {})
return nil if identifier.nil? || identifier == ""
request(
:expects => [202],
:method => 'POST',
:path => "/1.0/servers/#{identifier}/shutdown",
:headers => {"Content-Type" => "application/json"},
2011-07-20 12:08:11 -04:00
:body => MultiJson.encode(options)
)
end
end
end
end
end