class Fog::Parsers::AWS::Compute::DescribeAccountAttributes

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/compute/describe_account_attributes.rb, line 20
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
reset() click to toggle source
# File lib/fog/aws/parsers/compute/describe_account_attributes.rb, line 6
def reset
  @attribute = { 'values' => []}
  @account_attributes = []
  @response = { 'accountAttributeSet' => [] }
end
start_element(name, attrs = []) click to toggle source
Calls superclass method
# File lib/fog/aws/parsers/compute/describe_account_attributes.rb, line 12
def start_element(name, attrs = [])
  super
  case name
  when 'attributeValueSet'
    @in_attribute_value_set = true
  end
end