Sha256: 68026530341fe436f81cd1c7240871fe92c44d4b32f889f7e907a2a3dfe2ed02
Contents?: true
Size: 432 Bytes
Versions: 20
Compression:
Stored size: 432 Bytes
Contents
module Fog module OpenStack class Compute class Real 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
20 entries across 20 versions & 3 rubygems