Sha256: bffa844d6b29ead15f7157480a29a1955383c86ae547a4703a3fc3f393851b54

Contents?: true

Size: 1.12 KB

Versions: 36

Compression:

Stored size: 1.12 KB

Contents

module Fog
  module Parsers
    module AWS
      module Compute
        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

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
fog-aws-3.10.0 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.9.0 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.8.0 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.7.0 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.6.7 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.6.6 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.6.5 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.6.4 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.6.3 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.6.2 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.5.2 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.5.1 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.5.0 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.4.0 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.3.0 lib/fog/aws/parsers/compute/describe_account_attributes.rb
fog-aws-3.2.0 lib/fog/aws/parsers/compute/describe_account_attributes.rb