aws-sdk-dynamodb 1.131.0 → 1.132.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +3 -1
- data/lib/aws-sdk-dynamodb/plugins/simple_attributes.rb +26 -0
- 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: 2204d1f8b6a933ab7baa59e4dafb1f9f39eda984ae74b3f68a119bc78ccdf02f
|
4
|
+
data.tar.gz: 89535cf45eb05eace5806755dd8722d9721fb7f01c38d072b53b3848e7a0d248
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c6716d222579072f7c661ddd0fd95fd67e8f6b762f1c8266cd4f9b86629f1c24c41f5339befac9a4c4cc1fbb858c81e2d6e7901aea345f71a879389e5e6311f
|
7
|
+
data.tar.gz: 70e983178017f516df1ef248094299826f9bb8b7a753ff8b66e12a43a19a5f453d0d442587865e2b1fd4be67b940a4d4501f09eda19dfbcfa87d815958724b9e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.132.0 (2024-12-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
* Issue - Improve `SimpleAttributes` documentation.
|
10
|
+
|
4
11
|
1.131.0 (2024-12-03)
|
5
12
|
------------------
|
6
13
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.132.0
|
@@ -344,6 +344,8 @@ module Aws::DynamoDB
|
|
344
344
|
# their types specified, e.g. `{ s: 'abc' }` instead of simply
|
345
345
|
# `'abc'`.
|
346
346
|
#
|
347
|
+
# See {Aws::DynamoDB::Plugins::SimpleAttributes} for more information.
|
348
|
+
#
|
347
349
|
# @option options [Boolean] :simple_json (false)
|
348
350
|
# Disables request parameter conversion, validation, and formatting.
|
349
351
|
# Also disables response data type conversions. The request parameters
|
@@ -8594,7 +8596,7 @@ module Aws::DynamoDB
|
|
8594
8596
|
tracer: tracer
|
8595
8597
|
)
|
8596
8598
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
8597
|
-
context[:gem_version] = '1.
|
8599
|
+
context[:gem_version] = '1.132.0'
|
8598
8600
|
Seahorse::Client::Request.new(handlers, context)
|
8599
8601
|
end
|
8600
8602
|
|
@@ -13,6 +13,30 @@ module Aws
|
|
13
13
|
#
|
14
14
|
# ddb = Aws::DynamoDB::Client.new(simple_attributes: false)
|
15
15
|
#
|
16
|
+
# Members are marshalled using the following objects:
|
17
|
+
#
|
18
|
+
# * `Hash` or `#to_h` => `:m`
|
19
|
+
# * `Array` => `:l`
|
20
|
+
# * `String` or `Symbol` or `#to_str` => `:s`
|
21
|
+
# * `Numeric` => `:n`
|
22
|
+
# * `StringIO` or `IO` => `:b`
|
23
|
+
# * `Set<Object>` => `:ss` or `:ns` or `:bs`
|
24
|
+
# * `true` or `false` => `:bool`
|
25
|
+
# * `nil` => `:null`
|
26
|
+
#
|
27
|
+
# Members are unmarshalled into the following objects:
|
28
|
+
#
|
29
|
+
# * `:m` => `Hash`
|
30
|
+
# * `:l` => `Array`
|
31
|
+
# * `:s` => `String`
|
32
|
+
# * `:n` => `BigDecimal`
|
33
|
+
# * `:b` => `StringIO`
|
34
|
+
# * `:null` => `nil`
|
35
|
+
# * `:bool` => `true` or `false`
|
36
|
+
# * `:ss` => `Set<String>`
|
37
|
+
# * `:ns` => `Set<BigDecimal>`
|
38
|
+
# * `:bs` => `Set<StringIO>`
|
39
|
+
#
|
16
40
|
# ## Input Examples
|
17
41
|
#
|
18
42
|
# With this plugin **enabled**, `simple_attributes: true`:
|
@@ -101,6 +125,8 @@ hashes, arrays, sets, integers, floats, booleans, and nil.
|
|
101
125
|
Disabling this option requires that all attribute values have
|
102
126
|
their types specified, e.g. `{ s: 'abc' }` instead of simply
|
103
127
|
`'abc'`.
|
128
|
+
|
129
|
+
See {Aws::DynamoDB::Plugins::SimpleAttributes} for more information.
|
104
130
|
DOCS
|
105
131
|
) do |config|
|
106
132
|
!config.simple_json
|
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.
|
4
|
+
version: 1.132.0
|
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: 2024-12-
|
11
|
+
date: 2024-12-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|