Sha256: 01ea0c6051a0396bbcdd706005e560934042246a1ffaad3bcf730646721fb915

Contents?: true

Size: 1.97 KB

Versions: 79

Compression:

Stored size: 1.97 KB

Contents

module Fog
  module AWS
    class DynamoDB
      class Real

        # Update DynamoDB item
        #
        # ==== Parameters
        # * 'table_name'<~String> - name of table for item
        # * 'key'<~Hash>:
        #   * 'HashKeyElement'<~Hash>: info for primary key
        #     * 'AttributeName'<~String> - name of attribute
        #     * 'AttributeType'<~String> - type of attribute
        #   * 'RangeKeyElement'<~Hash>: optional, info for range key
        #     * 'AttributeName'<~String> - name of attribute
        #     * 'AttributeType'<~String> - type of attribute
        # * 'attribute_updates'<~Hash>:
        #   * '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 update_item(table_name, key, attribute_updates, options = {})
          body = {
            'AttributeUpdates'  => attribute_updates,
            'Key'               => key,
            'TableName'         => table_name
          }.merge(options)

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

      end
    end
  end
end

Version data entries

79 entries across 79 versions & 12 rubygems

Version Path
fog-maestrodev-1.18.0.20131209090811 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131205181604 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/aws/requests/dynamodb/update_item.rb
gapinc-fog-1.12.1.2.1 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/aws/requests/dynamodb/update_item.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/aws/requests/dynamodb/update_item.rb
fog-1.18.0 lib/fog/aws/requests/dynamodb/update_item.rb
fog-1.17.0 lib/fog/aws/requests/dynamodb/update_item.rb
fog-1.16.0 lib/fog/aws/requests/dynamodb/update_item.rb