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

26 lines
697 B
Ruby
Raw Normal View History

2010-11-29 13:36:10 -05:00
module Fog
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)
#
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