Sha256: 6406cef72245068db599d54a6c358c0588dcfc54475862702967cf0e84784dd3

Contents?: true

Size: 571 Bytes

Versions: 43

Compression:

Stored size: 571 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

43 entries across 41 versions & 6 rubygems

Version Path
ns-fog-1.22.3 lib/fog/ibm/requests/compute/get_instance_logs.rb
ns-fog-1.22.2 lib/fog/ibm/requests/compute/get_instance_logs.rb
fog-1.22.1 lib/fog/ibm/requests/compute/get_instance_logs.rb