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/parsers/ec2/get_console_output.rb

28 lines
545 B
Ruby
Raw Normal View History

2009-07-24 22:25:55 -04:00
module Fog
module Parsers
module AWS
module EC2
class GetConsoleOutput < Fog::Parsers::Base
def reset
@response = {}
end
def end_element(name)
case name
2009-08-01 04:15:44 -04:00
when 'instanceId', 'requestId'
@response[name] = @value
2009-07-24 22:25:55 -04:00
when 'output'
2009-08-01 04:15:44 -04:00
@response[name] = Base64.decode64(@value)
2009-07-24 22:25:55 -04:00
when 'timestamp'
2009-08-01 04:15:44 -04:00
@response[name] = Time.parse(@value)
2009-07-24 22:25:55 -04:00
end
end
end
end
end
end
end