aws-sdk-dynamodb 1.60.0 → 1.74.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 +4 -4
- data/CHANGELOG.md +70 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +310 -80
- data/lib/aws-sdk-dynamodb/client_api.rb +22 -0
- data/lib/aws-sdk-dynamodb/resource.rb +8 -4
- data/lib/aws-sdk-dynamodb/table.rb +33 -19
- data/lib/aws-sdk-dynamodb/types.rb +297 -114
- data/lib/aws-sdk-dynamodb.rb +1 -1
- metadata +8 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3fb6f3407dca16c38d88d28416d0fdf52f28f64a7d63fd7296a49758167dab79
|
4
|
+
data.tar.gz: d5fd2b88a65301e3cfa5866d290f1706f9f3c763a1f88b91d01a9f9d8a03e683
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7b472f033d8b3f6e443c6777fbf6fb45ad39b19d35e796c20998aa197fbb2417db9a2830385f8c8a6034f374e31557bbe6f7eac654cde6a22dcd4fa642353865
|
7
|
+
data.tar.gz: 4ffe9f17116d8badd945895a8ae8a2215cabfa69818ee306bab547b68f81bae1be4953ed1b0f39ad4b6ac1d485022bfded7272d973997a537a99b5759ba069ee
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,76 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.74.0 (2022-02-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.73.0 (2022-02-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - DynamoDB ExecuteStatement API now supports Limit as a request parameter to specify the maximum number of items to evaluate. If specified, the service will process up to the Limit and the results will include a LastEvaluatedKey value to continue the read in a subsequent operation.
|
13
|
+
|
14
|
+
1.72.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.71.0 (2022-02-02)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Documentation update for DynamoDB Java SDK.
|
23
|
+
|
24
|
+
1.70.0 (2021-12-21)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
28
|
+
|
29
|
+
1.69.0 (2021-12-01)
|
30
|
+
------------------
|
31
|
+
|
32
|
+
* Feature - Add support for Table Classes and introduce the Standard Infrequent Access table class.
|
33
|
+
|
34
|
+
1.68.0 (2021-11-30)
|
35
|
+
------------------
|
36
|
+
|
37
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
38
|
+
|
39
|
+
1.67.0 (2021-11-23)
|
40
|
+
------------------
|
41
|
+
|
42
|
+
* Feature - DynamoDB PartiQL now supports ReturnConsumedCapacity, which returns capacity units consumed by PartiQL APIs if the request specified returnConsumedCapacity parameter. PartiQL APIs include ExecuteStatement, BatchExecuteStatement, and ExecuteTransaction.
|
43
|
+
|
44
|
+
1.66.0 (2021-11-11)
|
45
|
+
------------------
|
46
|
+
|
47
|
+
* Feature - Updated Help section for "dynamodb update-contributor-insights" API
|
48
|
+
|
49
|
+
1.65.0 (2021-11-04)
|
50
|
+
------------------
|
51
|
+
|
52
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
53
|
+
|
54
|
+
1.64.0 (2021-10-18)
|
55
|
+
------------------
|
56
|
+
|
57
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
58
|
+
|
59
|
+
1.63.0 (2021-09-01)
|
60
|
+
------------------
|
61
|
+
|
62
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
63
|
+
|
64
|
+
1.62.0 (2021-07-30)
|
65
|
+
------------------
|
66
|
+
|
67
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
68
|
+
|
69
|
+
1.61.0 (2021-07-28)
|
70
|
+
------------------
|
71
|
+
|
72
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
73
|
+
|
4
74
|
1.60.0 (2021-03-10)
|
5
75
|
------------------
|
6
76
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.74.0
|