aws-sdk-dynamodb 1.131.0 → 1.132.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ce80883c841a0d4e63b2955d3518d72f51e4083431ad1a067e8384e161c4e4bc
4
- data.tar.gz: efb1a080430d312ae6a59deeffb3c307090c2a8f17ed8889e861207321fbbc3d
3
+ metadata.gz: 2204d1f8b6a933ab7baa59e4dafb1f9f39eda984ae74b3f68a119bc78ccdf02f
4
+ data.tar.gz: 89535cf45eb05eace5806755dd8722d9721fb7f01c38d072b53b3848e7a0d248
5
5
  SHA512:
6
- metadata.gz: ff7a0fccb7e31d25e9ac17d9ad140dd0ba854e5c26d1ba77a07c63386a6499806bcd8587121dc194fc4e9c77650ae1448cb8ed3175ebe0f230f998ae75c42645
7
- data.tar.gz: 394701f032e98e2bc219102a085d6ce818a669b026fab018ff4b5315d7e44fb4ce0fbe345a7ad4471266754e41c45dad2ca67aca93498ccbd46d752041656802
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.131.0
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.131.0'
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
@@ -56,7 +56,7 @@ module Aws::DynamoDB
56
56
  autoload :Endpoints, 'aws-sdk-dynamodb/endpoints'
57
57
  autoload :Table, 'aws-sdk-dynamodb/table'
58
58
 
59
- GEM_VERSION = '1.131.0'
59
+ GEM_VERSION = '1.132.0'
60
60
 
61
61
  end
62
62
 
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.131.0
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-03 00:00:00.000000000 Z
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