Class: Fog::Parsers::Terremark::InternetService

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

Instance Method Summary collapse

Methods inherited from Base

#extract_attributes

Instance Method Details

#end_element(name) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/fog/parsers/terremark/internet_service.rb', line 25

def end_element(name)
  case name
    when 'Description', 'Protocol'
      @response[name] = value
    when 'Enabled'
      if value == 'false'
        @response[name] = false
      else
        @response[name] = true
      end
    when 'Id'
      if @in_public_ip_address
        @response['PublicIpAddress'][name] = value.to_i
      else
        @response[name] = value.to_i
      end
    when 'Name'
      if @in_public_ip_address
        @response['PublicIpAddress'][name] = value
      else
        @response[name] = value
      end
    when 'Port', 'Timeout'
      @response[name] = value.to_i
    when 'PublicIpAddress'
      @in_public_ip_address = false
  end
end

#resetObject



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

def reset
  @in_public_ip_address = false
  @response = { 'PublicIpAddress' => {} }
end

#start_element(name, attributes) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/fog/parsers/terremark/internet_service.rb', line 10

def start_element(name, attributes)
  super
  case name
    when 'Href'
      data = extract_attributes(attributes)
      if @in_public_ip_address
        @response['PublicIpAddress'][name] = data
      else
        @response[name] = data
      end
    when 'PublicIpAddress'
      @in_public_ip_address = true
  end
end