Sha256: f222ba638e661d2e988c2a3cc0b05b32e09365a4ed51dadf0e9a4c32b0b4332c
Contents?: true
Size: 511 Bytes
Versions: 4
Compression:
Stored size: 511 Bytes
Contents
module Fog module Compute class HuaweiCloud 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
4 entries across 4 versions & 1 rubygems