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