aws-sdk-dynamodb 1.74.0 → 1.81.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 +38 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +360 -63
- data/lib/aws-sdk-dynamodb/client_api.rb +153 -0
- data/lib/aws-sdk-dynamodb/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-dynamodb/endpoint_provider.rb +57 -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/table.rb +30 -19
- data/lib/aws-sdk-dynamodb/types.rb +543 -1922
- data/lib/aws-sdk-dynamodb.rb +5 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6cd7fd0494ab2f1fc9ecf5ae9f710878776f5bca2da717f4337d94cc4cf2945d
|
4
|
+
data.tar.gz: 5aa9b171740370a8fdc1b413be5b31d6a3ca41d802a106b5c84ef65ff98801b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8675be1a64038f174cb51a16e0e45a0d25dcc09bdee0a09ea35bdfefa1c3f4771c4745d8ec0d7070048d9a7bf6c2f27e229b308d438ea470651f5c90695fc550
|
7
|
+
data.tar.gz: '099f941b83b515de7ce13b96c40be03a26fc7eb3df03e5ffb275d25df1c7befaf623d2c1665293bda5718da0f6e86bed8c57c60c0d3e67641fafb6c8d41e4156'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,43 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.81.0 (2023-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
10
|
+
|
11
|
+
1.80.0 (2022-12-06)
|
12
|
+
------------------
|
13
|
+
|
14
|
+
* Feature - Endpoint Ruleset update: Use http instead of https for the "local" region.
|
15
|
+
|
16
|
+
1.79.0 (2022-11-18)
|
17
|
+
------------------
|
18
|
+
|
19
|
+
* Feature - Updated minor fixes for DynamoDB documentation.
|
20
|
+
|
21
|
+
1.78.0 (2022-10-25)
|
22
|
+
------------------
|
23
|
+
|
24
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
25
|
+
|
26
|
+
1.77.0 (2022-09-15)
|
27
|
+
------------------
|
28
|
+
|
29
|
+
* Feature - Increased DynamoDB transaction limit from 25 to 100.
|
30
|
+
|
31
|
+
1.76.0 (2022-08-18)
|
32
|
+
------------------
|
33
|
+
|
34
|
+
* Feature - This release adds support for importing data from S3 into a new DynamoDB table
|
35
|
+
|
36
|
+
1.75.0 (2022-06-17)
|
37
|
+
------------------
|
38
|
+
|
39
|
+
* Feature - Doc only update for DynamoDB service
|
40
|
+
|
4
41
|
1.74.0 (2022-02-24)
|
5
42
|
------------------
|
6
43
|
|
@@ -464,4 +501,4 @@ Unreleased Changes
|
|
464
501
|
1.0.0.rc1 (2016-12-05)
|
465
502
|
------------------
|
466
503
|
|
467
|
-
* Feature - Initial preview release of the `aws-sdk-dynamodb` gem.
|
504
|
+
* Feature - Initial preview release of the `aws-sdk-dynamodb` gem.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.81.0
|