Sha256: e060235d39b1dd6e355d77d446c14b52b02703f62ccf60bd2d8f312416a5c792

Contents?: true

Size: 775 Bytes

Versions: 57

Compression:

Stored size: 775 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module SimpleDB

        class GetAttributes < Fog::Parsers::AWS::SimpleDB::Basic

          def reset
            @attribute = nil
            @response = { 'Attributes' => {} }
          end

          def end_element(name)
            case name
            when 'Attribute'
              @attribute = nil
            when 'BoxUsage'
              response[name] = @value.to_f
            when 'Name'
              @attribute = @value
              response['Attributes'][@attribute] = []
            when 'RequestId'
              response[name] = @value
            when 'Value'
              response['Attributes'][@attribute] << sdb_decode(@value)
            end
          end

        end

      end
    end
  end
end

Version data entries

57 entries across 57 versions & 2 rubygems

Version Path
fog-0.0.19 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.18 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.17 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.16 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.15 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.14 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.13 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.12 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.11 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.10 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.9 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.8 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.7 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.6 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.5 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.4 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.3 lib/fog/aws/parsers/simpledb/get_attributes.rb