mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
52 lines
1.5 KiB
Ruby
52 lines
1.5 KiB
Ruby
module Fog
|
|
module AWS
|
|
class Compute
|
|
class Real
|
|
|
|
require 'fog/aws/parsers/compute/get_console_output'
|
|
|
|
# Retrieve console output for specified instance
|
|
#
|
|
# ==== Parameters
|
|
# * instance_id<~String> - Id of instance to get console output from
|
|
#
|
|
# ==== Returns
|
|
# # * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
# * 'instanceId'<~String> - Id of instance
|
|
# * 'output'<~String> - Console output
|
|
# * 'requestId'<~String> - Id of request
|
|
# * 'timestamp'<~Time> - Timestamp of last update to output
|
|
def get_console_output(instance_id)
|
|
request(
|
|
'Action' => 'GetConsoleOutput',
|
|
'InstanceId' => instance_id,
|
|
:idempotent => true,
|
|
:parser => Fog::Parsers::AWS::Compute::GetConsoleOutput.new
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def get_console_output(instance_id)
|
|
response = Excon::Response.new
|
|
if instance = @data[:instances][instance_id]
|
|
response.status = 200
|
|
response.body = {
|
|
'instanceId' => instance_id,
|
|
'output' => nil,
|
|
'requestId' => Fog::AWS::Mock.request_id,
|
|
'timestamp' => Time.now
|
|
}
|
|
response
|
|
else;
|
|
raise Fog::AWS::Compute::NotFound.new("The instance ID '#{instance_id}' does not exist")
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|