Sha256: 7d2aa35e60af822865ea79b6c1b635d381df1349dbbd71d362f15969a04b228d

Contents?: true

Size: 1.48 KB

Versions: 24

Compression:

Stored size: 1.48 KB

Contents

unless Fog.mocking?

  module Fog
    module AWS
      class SimpleDB

        # Put item attributes into a SimpleDB domain
        #
        # ==== Parameters
        # * domain_name<~String> - Name of domain. Must be between 3 and 255 of the
        # following characters: a-z, A-Z, 0-9, '_', '-' and '.'.
        # * item_name<~String> - Name of the item.  May use any UTF-8 characters valid
        #   in xml.  Control characters and sequences not allowed in xml are not
        #   valid.  Can be up to 1024 bytes long.
        # * attributes<~Hash> - Name/value pairs to add to the item.  Attribute names
        #   and values may use any UTF-8 characters valid in xml. Control characters
        #   and sequences not allowed in xml are not valid.  Each name and value can
        #   be up to 1024 bytes long.
        #
        # ==== Returns
        # * response<~Fog::AWS::Response>:
        #   * body<~Hash>:
        #     * 'BoxUsage'
        #     * 'RequestId'
        def put_attributes(domain_name, item_name, attributes, replace_attributes = [])
          batch_put_attributes(domain_name, { item_name => attributes }, { item_name => replace_attributes })
        end

      end
    end
  end

else

  module Fog
    module AWS
      class SimpleDb

        def put_attributes(domain_name, item_name, attributes, replace_attributes = [])
          batch_put_attributes(domain_name, { item_name => attributes }, { item_name => replace_attributes })
        end

      end
    end
  end

end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
fog-0.0.29 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.28 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.27 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.26 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.25 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.24 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.23 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.22 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.21 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.20 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.19 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.18 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.17 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.16 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.15 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.14 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.13 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.12 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.11 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.10 lib/fog/aws/requests/simpledb/put_attributes.rb