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
geemus-fog-0.0.0 lib/fog/aws/parsers/simpledb/get_attributes.rb
geemus-fog-0.0.1 lib/fog/aws/parsers/simpledb/get_attributes.rb
geemus-fog-0.0.3 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.56 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.55 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.54 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.53 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.52 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.51 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.50 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.49 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.48 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.47 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.46 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.45 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.44 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.43 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.42 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.41 lib/fog/aws/parsers/simpledb/get_attributes.rb
fog-0.0.40 lib/fog/aws/parsers/simpledb/get_attributes.rb