Class: Fog::Parsers::Terremark::Shared::Network
- Inherits:
-
TerremarkParser
- Object
- Base
- TerremarkParser
- Fog::Parsers::Terremark::Shared::Network
- Defined in:
- lib/fog/terremark/parsers/shared/network.rb
Instance Method Summary collapse
Methods inherited from TerremarkParser
Instance Method Details
#end_element(name) ⇒ Object
29 30 31 32 33 34 |
# File 'lib/fog/terremark/parsers/shared/network.rb', line 29 def end_element(name) case name when "Gateway", "Netmask", "FenceMode" @response[name.downcase] = value end end |
#reset ⇒ Object
6 7 8 9 10 |
# File 'lib/fog/terremark/parsers/shared/network.rb', line 6 def reset @response = { "links" => [] } end |
#start_element(name, attributes = []) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/fog/terremark/parsers/shared/network.rb', line 12 def start_element(name,attributes=[]) super case name when "Network" @response = extract_attributes(attributes) if @response.key?("name") @response["subnet"] = @response["name"] end if @response.key?("href") @response["id"] = @response["href"].split("/").last end when "Link" link = extract_attributes(attributes) @response["links"] << link end end |