Sha256: b5bfb3529d018f48f338a93e09607e9864e4b5f3d2229f05b6f441d9752517e7
Contents?: true
Size: 617 Bytes
Versions: 7
Compression:
Stored size: 617 Bytes
Contents
module Fog module Compute class Brightbox class Real # Shuts down and resets the server without disconnecting the console. # # @param [String] identifier Unique reference to identify the resource # # @return [Hash] if successful Hash version of JSON object # # @see https://api.gb1.brightbox.com/1.0/#server_reboot_server # def reboot_server(identifier) return nil if identifier.nil? || identifier == "" wrapped_request("post", "/1.0/servers/#{identifier}/reboot", [202]) end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems