Sha256: b6306ca9fb42c58b8c30f35a709434191ae743cf28917648093a23028b45895b
Contents?: true
Size: 433 Bytes
Versions: 40
Compression:
Stored size: 433 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
40 entries across 40 versions & 5 rubygems