mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
30 lines
No EOL
624 B
Ruby
30 lines
No EOL
624 B
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module EC2
|
|
|
|
class GetConsoleOutput < Fog::Parsers::Base
|
|
|
|
def reset
|
|
@response = {}
|
|
end
|
|
|
|
def end_element(name)
|
|
case name
|
|
when 'instanceId'
|
|
@response[:instance_id] = @value
|
|
when 'output'
|
|
@response[:output] = Base64.decode64(@value)
|
|
when 'requestId'
|
|
@response[:request_id] = @value
|
|
when 'timestamp'
|
|
@response[:timestamp] = Time.parse(@value)
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end |