Class: Fog::Parsers::Terremark::GetNetworkIps

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/parsers/terremark/get_network_ips.rb

Instance Method Summary collapse

Methods inherited from Base

#extract_attributes

Instance Method Details

#end_element(name) ⇒ Object



10
11
12
13
14
15
16
17
18
# File 'lib/fog/parsers/terremark/get_network_ips.rb', line 10

def end_element(name)
  case name
    when 'Name', 'Status', 'Server'
      @ip_address[name.downcase] = value
    when 'IpAddress'
      @response['IpAddresses'] << @ip_address
      @ip_address = {}
  end
end

#resetObject



5
6
7
8
# File 'lib/fog/parsers/terremark/get_network_ips.rb', line 5

def reset
  @ip_address = {}
  @response = { 'IpAddresses' => [] }
end