Class: VcloudDirectorParser

Inherits:
Fog::Parsers::Base
  • Object
show all
Defined in:
lib/fog/vcloud_director/compute.rb

Instance Method Summary collapse

Instance Method Details

#extract_attributes(attributes_xml) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/fog/vcloud_director/compute.rb', line 5

def extract_attributes(attributes_xml)
  attributes = {}
  until attributes_xml.empty?
    if attributes_xml.first.is_a?(Array)
      until attributes_xml.first.empty?
        attribute = attributes_xml.first.shift
        attributes[attribute.localname.to_sym] = attribute.value
      end
    else
      attribute = attributes_xml.shift
      attributes[attribute.localname.to_sym] = attribute.value
    end
  end
  attributes
end