Sha256: 0eb4b35570d152bdb72edf0a4106d3e810ab326d408f0a70010d50497751894d

Contents?: true

Size: 1.51 KB

Versions: 56

Compression:

Stored size: 1.51 KB

Contents

module Fog
  module AWS
    module SimpleDB
      class Real

        # 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<~Excon::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

      class Mock

        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

56 entries across 56 versions & 1 rubygems

Version Path
fog-0.2.0 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.1.10 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.1.9 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.1.8 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.1.7 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.1.6 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.1.5 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.1.4 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.1.3 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.1.2 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.1.1 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.1.0 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.100 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.99 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.98 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.97 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.96 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.95 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.94 lib/fog/aws/requests/simpledb/put_attributes.rb
fog-0.0.93 lib/fog/aws/requests/simpledb/put_attributes.rb