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/compute/server_action.rb
2012-04-25 10:31:28 -04:00

25 lines
697 B
Ruby

module Fog
module Compute
class Rackspace
class Real
# Reboot an existing server
#
# ==== Parameters
# * server_id<~Integer> - Id of server to reboot
# * body<~String> - Body of the request, describes the action (see reboot_server as an example)
# * expect<~Integer> - expected return, 202 except for confirm resize (204)
#
def server_action(server_id, body, expects=202)
request(
:body => Fog::JSON.encode(body),
:expects => expects,
:method => 'POST',
:path => "servers/#{server_id}/action.json"
)
end
end
end
end
end