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/rackspace/requests/servers/reboot_server.rb
2010-03-19 18:29:42 -07:00

32 lines
743 B
Ruby

module Fog
module Rackspace
module Servers
class Real
# Reboot an existing server
#
# ==== Parameters
# * server_id<~Integer> - Id of server to reboot
# * type<~String> - Type of reboot, must be in ['HARD', 'SOFT']
#
def reboot_server(server_id, type = 'SOFT')
request(
:body => { 'reboot' => { 'type' => type }}.to_json,
:expects => 202,
:method => 'POST',
:path => "servers/#{server_id}/action.json"
)
end
end
class Mock
def reboot_server(server_id, type)
raise MockNotImplemented.new("Contributions welcome!")
end
end
end
end
end