2010-11-29 13:36:10 -05:00
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class Rackspace
|
2010-11-29 13:36:10 -05:00
|
|
|
class Real
|
|
|
|
|
|
|
|
# Reboot an existing server
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * server_id<~Integer> - Id of server to reboot
|
2011-07-20 12:08:11 -04:00
|
|
|
# * body<~String> - Body of the request, describes the action (see reboot_server as an example)
|
2010-11-29 13:36:10 -05:00
|
|
|
# * expect<~Integer> - expected return, 202 except for confirm resize (204)
|
|
|
|
#
|
2010-11-29 22:28:14 -05:00
|
|
|
def server_action(server_id, body, expects=202)
|
2010-11-29 13:36:10 -05:00
|
|
|
request(
|
2012-04-25 10:31:28 -04:00
|
|
|
:body => Fog::JSON.encode(body),
|
2010-11-29 13:36:10 -05:00
|
|
|
:expects => expects,
|
|
|
|
:method => 'POST',
|
|
|
|
:path => "servers/#{server_id}/action.json"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|