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