Sha256: 7e0077f5f8f89eac2832d9409ed539d24f064165936bf39c21de2f04ae30fddc
Contents?: true
Size: 1006 Bytes
Versions: 61
Compression:
Stored size: 1006 Bytes
Contents
module Fog module Parsers module Terremark module Shared class Network < TerremarkParser def reset @response = { "links" => [] } end def start_element(name,attributes=[]) super case name when "Network" @response = extract_attributes(attributes) if @response.has_key?("name") @response["subnet"] = @response["name"] end if @response.has_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 end
Version data entries
61 entries across 61 versions & 6 rubygems