aws-sdk-dynamodb 1.60.0 → 1.80.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 +100 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +659 -132
- data/lib/aws-sdk-dynamodb/client_api.rb +175 -0
- data/lib/aws-sdk-dynamodb/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-dynamodb/endpoint_provider.rb +122 -0
- data/lib/aws-sdk-dynamodb/endpoints.rb +757 -0
- data/lib/aws-sdk-dynamodb/errors.rb +32 -0
- data/lib/aws-sdk-dynamodb/plugins/endpoints.rb +174 -0
- data/lib/aws-sdk-dynamodb/resource.rb +8 -4
- data/lib/aws-sdk-dynamodb/table.rb +63 -38
- data/lib/aws-sdk-dynamodb/types.rb +858 -2054
- data/lib/aws-sdk-dynamodb.rb +5 -1
- metadata +12 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b78cfc954b5c7a3bbfdfd7d76e91faf470b05f0a7726af33aa38123f02db795
|
4
|
+
data.tar.gz: 6bb26fd1a69313ce095640af38f9524b1e7ab7fc51e91d40b5319b3cf2a91beb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9e83110759855cf503797a0f0f455b6d9bc55e806346c25a21ad2d11b6265febe58d58ef0939cd5b6a1b768c9b05a346f93833563347ff239f1004ba44c31a2
|
7
|
+
data.tar.gz: 53bef726285c35a58ca60114d490e783f0675b1ace50832006833e4d21c6e19e8752e7731d3fbe4ea45381a4b95d9682c7bc0e353cccb77bd22083bd43e823e8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,106 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.80.0 (2022-12-06)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Endpoint Ruleset update: Use http instead of https for the "local" region.
|
8
|
+
|
9
|
+
1.79.0 (2022-11-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updated minor fixes for DynamoDB documentation.
|
13
|
+
|
14
|
+
1.78.0 (2022-10-25)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.77.0 (2022-09-15)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Increased DynamoDB transaction limit from 25 to 100.
|
23
|
+
|
24
|
+
1.76.0 (2022-08-18)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - This release adds support for importing data from S3 into a new DynamoDB table
|
28
|
+
|
29
|
+
1.75.0 (2022-06-17)
|
30
|
+
------------------
|
31
|
+
|
32
|
+
* Feature - Doc only update for DynamoDB service
|
33
|
+
|
34
|
+
1.74.0 (2022-02-24)
|
35
|
+
------------------
|
36
|
+
|
37
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
38
|
+
|
39
|
+
1.73.0 (2022-02-21)
|
40
|
+
------------------
|
41
|
+
|
42
|
+
* 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.
|
43
|
+
|
44
|
+
1.72.0 (2022-02-03)
|
45
|
+
------------------
|
46
|
+
|
47
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
48
|
+
|
49
|
+
1.71.0 (2022-02-02)
|
50
|
+
------------------
|
51
|
+
|
52
|
+
* Feature - Documentation update for DynamoDB Java SDK.
|
53
|
+
|
54
|
+
1.70.0 (2021-12-21)
|
55
|
+
------------------
|
56
|
+
|
57
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
58
|
+
|
59
|
+
1.69.0 (2021-12-01)
|
60
|
+
------------------
|
61
|
+
|
62
|
+
* Feature - Add support for Table Classes and introduce the Standard Infrequent Access table class.
|
63
|
+
|
64
|
+
1.68.0 (2021-11-30)
|
65
|
+
------------------
|
66
|
+
|
67
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
68
|
+
|
69
|
+
1.67.0 (2021-11-23)
|
70
|
+
------------------
|
71
|
+
|
72
|
+
* 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.
|
73
|
+
|
74
|
+
1.66.0 (2021-11-11)
|
75
|
+
------------------
|
76
|
+
|
77
|
+
* Feature - Updated Help section for "dynamodb update-contributor-insights" API
|
78
|
+
|
79
|
+
1.65.0 (2021-11-04)
|
80
|
+
------------------
|
81
|
+
|
82
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
83
|
+
|
84
|
+
1.64.0 (2021-10-18)
|
85
|
+
------------------
|
86
|
+
|
87
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
88
|
+
|
89
|
+
1.63.0 (2021-09-01)
|
90
|
+
------------------
|
91
|
+
|
92
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
93
|
+
|
94
|
+
1.62.0 (2021-07-30)
|
95
|
+
------------------
|
96
|
+
|
97
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
98
|
+
|
99
|
+
1.61.0 (2021-07-28)
|
100
|
+
------------------
|
101
|
+
|
102
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
103
|
+
|
4
104
|
1.60.0 (2021-03-10)
|
5
105
|
------------------
|
6
106
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.80.0
|