aws-sdk-dynamodb 1.93.0 → 1.93.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +1 -1
- data/lib/aws-sdk-dynamodb/customizations/client.rb +5 -3
- data/lib/aws-sdk-dynamodb.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 90ddf6bfd0527577a2aae6c563ab32be779de4d4897867797e818612f2783fec
|
|
4
|
+
data.tar.gz: d4e74a96a91dbca7ff3b8c7c4e4b787f8c5819394e29d970c38a1ac74df5b5dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b3b1389edfe15488ba8c35fd49dc096880499cf8b3fc9f1c924ed5c548a3d930cd51db5617751d7e550abf8da933a34391ebc48562bd07c358b8fe91adefc6f
|
|
7
|
+
data.tar.gz: 4d0cb20280cb25f42b7fed14ab9c4e6267f7b1d9153c3706a0731a821ca9fddb53f04111e1e03cf7ac4e9dcfbeac2660530cb02c5b898c00dc67348ca637908d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.93.
|
|
1
|
+
1.93.1
|
|
@@ -7828,7 +7828,7 @@ module Aws::DynamoDB
|
|
|
7828
7828
|
params: params,
|
|
7829
7829
|
config: config)
|
|
7830
7830
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
|
7831
|
-
context[:gem_version] = '1.93.
|
|
7831
|
+
context[:gem_version] = '1.93.1'
|
|
7832
7832
|
Seahorse::Client::Request.new(handlers, context)
|
|
7833
7833
|
end
|
|
7834
7834
|
|
|
@@ -21,9 +21,11 @@ module Aws
|
|
|
21
21
|
def data_to_http_resp(operation_name, data)
|
|
22
22
|
api = config.api
|
|
23
23
|
operation = api.operation(operation_name)
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
24
|
+
if config.simple_attributes
|
|
25
|
+
translator = Plugins::SimpleAttributes::ValueTranslator
|
|
26
|
+
translator = translator.new(operation.output, :marshal)
|
|
27
|
+
data = translator.apply(data)
|
|
28
|
+
end
|
|
27
29
|
ParamValidator.validate!(operation.output, data)
|
|
28
30
|
protocol_helper.stub_data(api, operation, data)
|
|
29
31
|
end
|
data/lib/aws-sdk-dynamodb.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-dynamodb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.93.
|
|
4
|
+
version: 1.93.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-07
|
|
11
|
+
date: 2023-08-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|