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/terremark/parsers/shared/get_vapp_template.rb

35 lines
767 B
Ruby

module Fog
module Parsers
module Terremark
module Shared
class GetVappTemplate < TerremarkParser
def reset
@response = { 'Links' => [] }
end
def start_element(name, attributes)
super
case name
when 'Link'
link = extract_attributes(attributes)
@response['Links'] << link
when 'VAppTemplate'
vapp_template = extract_attributes(attributes)
@response['name'] = vapp_template['name']
end
end
def end_element(name)
if name == 'Description'
@response['Description'] = value
end
end
end
end
end
end
end