Sha256: d0a8e8ea28549cf3573878e52d89b2793392bd0a6c68fd54e05bb6f807e55a53
Contents?: true
Size: 697 Bytes
Versions: 79
Compression:
Stored size: 697 Bytes
Contents
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
Version data entries
79 entries across 79 versions & 12 rubygems