1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/requests/ec2/get_console_output.rb

53 lines
1.5 KiB
Ruby
Raw Normal View History

2010-03-16 18:46:21 -04:00
module Fog
module AWS
module EC2
class Real
2010-03-16 18:46:21 -04:00
require 'fog/aws/parsers/ec2/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,
:parser => Fog::Parsers::AWS::EC2::GetConsoleOutput.new
)
end
2009-07-24 22:25:55 -04:00
end
2010-03-16 18:46:21 -04:00
class Mock
def get_console_output(instance_id)
2009-11-20 14:08:08 -05:00
response = Excon::Response.new
2010-03-16 18:46:21 -04:00
if instance = @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
2009-11-20 14:08:08 -05:00
raise(Excon::Errors.status_error({:expects => 200}, response))
end
response
end
end
2009-07-24 22:25:55 -04:00
end
end
end