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.3.3 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.3.2 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.3.1 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.3.0 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.37 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.36 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.35 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.34 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.33 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.32 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.31 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.30 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.29 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.28 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.27 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.26 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.25 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.24 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.23 lib/aws-sdk-core/dynamodb.rb
aws-sdk-core-2.2.22 lib/aws-sdk-core/dynamodb.rb