mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
26 lines
573 B
Ruby
26 lines
573 B
Ruby
|
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
|