Sha256: 835b43fea6fe227f552b55a625257256fa0858376be7d1a984f8da6807537d32

Contents?: true

Size: 1.52 KB

Versions: 13

Compression:

Stored size: 1.52 KB

Contents

module Fog
  module AWS
    class DynamoDB
      class Real
        # Update DynamoDB item
        #
        # ==== Parameters
        # * 'table_name'<~String> - name of table for item
        # * 'item'<~Hash>: data to update, must include primary key
        #   * 'AttributeName'<~String> - Attribute to update
        #     * 'Value'<~Hash> - formated as {type => value}
        #     * 'Action'<~String> - action to take if expects matches, in %w{ADD DELETE PUT}, defaults to PUT
        # * 'options'<~Hash>:
        #   * 'Expected'<~Hash>: data to check against
        #     * 'AttributeName'<~String> - name of attribute
        #     * 'Value'<~Hash> - a value to check for the value of
        #     or
        #     * 'Exists'<~Boolean> - set as false to only allow update if attribute doesn't exist
        #   * 'ReturnValues'<~String> - data to return in %w{ALL_NEW ALL_OLD NONE UPDATED_NEW UPDATED_OLD}, defaults to NONE
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     varies based on ReturnValues param, see: http://docs.amazonwebservices.com/amazondynamodb/latest/developerguide/API_UpdateItem.html
        def put_item(table_name, item, options = {})
          body = {
            'Item'      => item,
            'TableName' => table_name
          }.merge(options)

          request(
            :body       => Fog::JSON.encode(body),
            :headers    => {'x-amz-target' => 'DynamoDB_20111205.PutItem'}
          )
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 3 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/aws/requests/dynamodb/put_item.rb
fog-1.24.0 lib/fog/aws/requests/dynamodb/put_item.rb
ns-fog-1.22.11 lib/fog/aws/requests/dynamodb/put_item.rb
ns-fog-1.22.10 lib/fog/aws/requests/dynamodb/put_item.rb
ns-fog-1.22.9 lib/fog/aws/requests/dynamodb/put_item.rb
ns-fog-1.22.8 lib/fog/aws/requests/dynamodb/put_item.rb
ns-fog-1.22.7 lib/fog/aws/requests/dynamodb/put_item.rb
ns-fog-1.22.6 lib/fog/aws/requests/dynamodb/put_item.rb
fog-1.23.0 lib/fog/aws/requests/dynamodb/put_item.rb
ns-fog-1.22.4 lib/fog/aws/requests/dynamodb/put_item.rb
ns-fog-1.22.3 lib/fog/aws/requests/dynamodb/put_item.rb
ns-fog-1.22.2 lib/fog/aws/requests/dynamodb/put_item.rb
fog-1.22.1 lib/fog/aws/requests/dynamodb/put_item.rb