Class: Fog::Parsers::Terremark::GetKeysList

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

Instance Method Summary collapse

Methods inherited from Base

#extract_attributes

Instance Method Details

#end_element(name) ⇒ Object



24
25
26
27
28
29
30
31
32
# File 'lib/fog/parsers/terremark/get_keys_list.rb', line 24

def end_element(name)
  case name
    when 'Id', 'Href', 'Name', 'IsDefault','FingerPrint'
      @key[name] = value
    when 'Key'
      @response['Keys'] << @key
      @key = {}
  end
end

#resetObject



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

def reset
  @response = { 'Keys' => [] }
  @key = {}
end

#start_element(name, attributes) ⇒ Object



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

def start_element(name, attributes)
  super
  case name
    when 'Id', 'Href', 'Name', 'IsDefault','FingerPrint'
      data = extract_attributes(attributes)
      @key[name] = data
    when 'Key'
      @key = extract_attributes(attributes)
    when 'Keys'
      keys_list = extract_attributes(attributes)
      @response['href'] = keys_list['href']
  end
end