1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/parsers/compute/describe_account_attributes.rb

42 lines
1.1 KiB
Ruby
Raw Normal View History

module Fog
module Parsers
module Compute
module AWS
class DescribeAccountAttributes < Fog::Parsers::Base
def reset
@attribute = { 'values' => []}
@account_attributes = []
@response = { 'accountAttributeSet' => [] }
end
def start_element(name, attrs = [])
super
case name
when 'attributeValueSet'
@in_attribute_value_set = true
end
end
def end_element(name)
case name
when 'attributeName'
@attribute[name] = value
when 'attributeValue'
@attribute['values'] << value
when['requestId']
@response[name] = value
when 'item'
@response['accountAttributeSet'] << @attribute
@attribute = { 'values' => []} unless @in_attribute_value_set
when 'attributeValueSet'
@in_attribute_value_set = false
else
end
@response['accountAttributeSet'].uniq!
end
end
end
end
end
end