Sha256: c8af76cbd09fc865ce9cbaefcc33ba37eacdabf0fb4ee8fd0c0f407cf5ae8db5
Contents?: true
Size: 923 Bytes
Versions: 4
Compression:
Stored size: 923 Bytes
Contents
module Fog module Parsers module Terremark class Network < Base def reset @response = { "links" => [] } end 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 def end_element(name) case name when "Gateway", "Netmask", "FenceMode" @response[name.downcase] = value end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems