Sha256: 7623d2478d205a28f394302cfbe0a6ace6a38773159b1fbb52ee4038b0652243
Contents?: true
Size: 644 Bytes
Versions: 39
Compression:
Stored size: 644 Bytes
Contents
module Fog module Compute class Rackspace 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') body = { 'reboot' => { 'type' => type }} server_action(server_id, body) end end class Mock def reboot_server(server_id, type = 'SOFT') response = Excon::Response.new response.status = 202 response end end end end end
Version data entries
39 entries across 37 versions & 6 rubygems