Sha256: 309c9e6721601a0349bbb32929906f446bf75fa621b1cab599e2d53c0abf81ed
Contents?: true
Size: 900 Bytes
Versions: 37
Compression:
Stored size: 900 Bytes
Contents
module Fog module Compute class HPV2 class Real # Reboot an existing server # # ==== Parameters # * 'server_id'<~String> - UUId 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 if list_servers_detail.body['servers'].detect {|_| _['id'] == server_id} self.data[:servers][server_id]['status'] = (type == 'SOFT') ? 'REBOOT' : 'HARD_REBOOT' response.status = 202 response else raise Fog::Compute::HPV2::NotFound end end end end end end
Version data entries
37 entries across 37 versions & 2 rubygems