Sha256: 46756ea152a3a6946fe0ab95f467b765f3fe33abd6729e4b4f1454c7364792ec
Contents?: true
Size: 511 Bytes
Versions: 85
Compression:
Stored size: 511 Bytes
Contents
module Fog module Compute class OpenStack class Real def get_console_output(server_id, log_length) body = { 'os-getConsoleOutput' => { 'length' => log_length } } server_action(server_id, body) end end class Mock def get_console_output(server_id, log_length) response = Excon::Response.new response.status = 200 response end end end end end
Version data entries
85 entries across 85 versions & 13 rubygems