Sha256: b031259d1d865acaf198e606b7a3db6b851fa59704673eebd537cdf121e5e5ca
Contents?: true
Size: 573 Bytes
Versions: 83
Compression:
Stored size: 573 Bytes
Contents
module Fog module Compute class IBM class Real # Get an instance's logs # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * logs<~Array>: # TODO: docs def get_instance_logs(instance_id, start_index=nil) request( :method => 'GET', :expects => 200, :path => "/instances/#{instance_id}/logs" + (start_index ? "?startIndex=#{start_index}" : '') ) end end end end end
Version data entries
83 entries across 83 versions & 14 rubygems