# File lib/fog/parsers/terremark/get_keys_list.rb, line 10 def start_element(name, attributes) super case name when "Id", "Href", "Name", "IsDefault", "FingerPrint" data = extract_attributes(attributes) @key[name] = data when "Key" @key = extract_attributes(attributes) when "Keys" keys_list = extract_attributes(attributes) @response["href"] = keys_list["href"] end end