mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
57 lines
1.5 KiB
Ruby
57 lines
1.5 KiB
Ruby
unless Fog.mocking?
|
|
|
|
module Fog
|
|
module AWS
|
|
class EC2
|
|
|
|
# Retrieve console output for specified instance
|
|
#
|
|
# ==== Parameters
|
|
# * instance_id<~String> - Id of instance to get console output from
|
|
#
|
|
# ==== Returns
|
|
# # * response<~Fog::AWS::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
|
|
}, Fog::Parsers::AWS::EC2::GetConsoleOutput.new)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
else
|
|
|
|
module Fog
|
|
module AWS
|
|
class EC2
|
|
|
|
def get_console_output(instance_id)
|
|
response = Fog::Response.new
|
|
if instance = Fog::AWS::EC2.data[:instances][instance_id]
|
|
response.status = 200
|
|
response.body = {
|
|
'instanceId' => instance_id,
|
|
'output' => Fog::AWS::Mock.console_output,
|
|
'requestId' => Fog::AWS::Mock.request_id,
|
|
'timestamp' => Time.now
|
|
}
|
|
else
|
|
response.status = 400
|
|
raise(Fog::Errors.status_error(200, 400, response))
|
|
end
|
|
response
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|