mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
28 lines
No EOL
545 B
Ruby
28 lines
No EOL
545 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', 'requestId'
|
|
@response[name] = @value
|
|
when 'output'
|
|
@response[name] = Base64.decode64(@value)
|
|
when 'timestamp'
|
|
@response[name] = Time.parse(@value)
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end |