Sha256: 14418f004c6aee99cde51ec76a02a74f30014c87ce3b9d70ac0ad625a4debc83

Contents?: true

Size: 1.37 KB

Versions: 940

Compression:

Stored size: 1.37 KB

Contents

Aws.add_service(:DynamoDB, {
  api: "#{Aws::API_DIR}/dynamodb/2012-08-10/api-2.json",
  docs: "#{Aws::API_DIR}/dynamodb/2012-08-10/docs-2.json",
  examples: "#{Aws::API_DIR}/dynamodb/2012-08-10/examples-1.json",
  paginators: "#{Aws::API_DIR}/dynamodb/2012-08-10/paginators-1.json",
  resources: "#{Aws::API_DIR}/dynamodb/2012-08-10/resources-1.json",
  waiters: "#{Aws::API_DIR}/dynamodb/2012-08-10/waiters-2.json",
})

module Aws
  module DynamoDB
    autoload :AttributeValue, 'aws-sdk-core/dynamodb/attribute_value'

    class Client

      def data_to_http_resp(operation_name, data)
        api = config.api
        operation = api.operation(operation_name)
        translator = Plugins::DynamoDBSimpleAttributes::ValueTranslator
        translator = translator.new(operation.output, :marshal)
        data = translator.apply(data)
        ParamValidator.validate!(operation.output, data)
        protocol_helper.stub_data(api, operation, data)
      end

      def stub_data(operation_name, data = {})
        if config.simple_attributes
          rules = config.api.operation(operation_name).output
          translator = Plugins::DynamoDBSimpleAttributes::ValueTranslator
          data = translator.apply(rules, :marshal, data)
          data = super(operation_name, data)
          translator.apply(rules, :unmarshal, data)
        else
          super
        end
      end

    end
  end
end

Version data entries

940 entries across 940 versions & 2 rubygems

Version Path
aws-sdk-core-2.11.632 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.631 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.630 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.629 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.628 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.627 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.626 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.625 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.624 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.623 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.622 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.621 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.620 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.619 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.618 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.617 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.616 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.615 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.614 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.11.613 lib/aws-sdk-core/dynamodb.rb