aws-sdk-dynamodb 1.96.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 +182 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +1054 -319
- data/lib/aws-sdk-dynamodb/client_api.rb +218 -34
- data/lib/aws-sdk-dynamodb/endpoint_parameters.rb +27 -6
- data/lib/aws-sdk-dynamodb/endpoint_provider.rb +42 -10
- data/lib/aws-sdk-dynamodb/endpoints.rb +2 -740
- data/lib/aws-sdk-dynamodb/errors.rb +32 -0
- data/lib/aws-sdk-dynamodb/plugins/endpoints.rb +48 -120
- data/lib/aws-sdk-dynamodb/plugins/simple_attributes.rb +26 -0
- data/lib/aws-sdk-dynamodb/resource.rb +66 -27
- data/lib/aws-sdk-dynamodb/table.rb +147 -49
- data/lib/aws-sdk-dynamodb/types.rb +880 -182
- data/lib/aws-sdk-dynamodb.rb +17 -13
- data/sig/client.rbs +1531 -0
- data/sig/errors.rbs +117 -0
- data/sig/resource.rbs +217 -0
- data/sig/table.rbs +378 -0
- data/sig/types.rbs +1847 -0
- data/sig/waiters.rbs +33 -0
- metadata +17 -11
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,188 @@
|
|
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
|
+
|
11
|
+
1.131.0 (2024-12-03)
|
12
|
+
------------------
|
13
|
+
|
14
|
+
* Feature - This change adds support for global tables with multi-Region strong consistency (in preview). The UpdateTable API now supports a new attribute MultiRegionConsistency to set consistency when creating global tables. The DescribeTable output now optionally includes the MultiRegionConsistency attribute.
|
15
|
+
|
16
|
+
1.130.0 (2024-11-18)
|
17
|
+
------------------
|
18
|
+
|
19
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
20
|
+
|
21
|
+
1.129.0 (2024-11-13)
|
22
|
+
------------------
|
23
|
+
|
24
|
+
* Feature - This release includes supports the new WarmThroughput feature for DynamoDB. You can now provide an optional WarmThroughput attribute for CreateTable or UpdateTable APIs to pre-warm your table or global secondary index. You can also use DescribeTable to see the latest WarmThroughput value.
|
25
|
+
|
26
|
+
1.128.0 (2024-11-06)
|
27
|
+
------------------
|
28
|
+
|
29
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
30
|
+
|
31
|
+
1.127.0 (2024-11-01)
|
32
|
+
------------------
|
33
|
+
|
34
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
35
|
+
|
36
|
+
1.126.0 (2024-10-18)
|
37
|
+
------------------
|
38
|
+
|
39
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
40
|
+
|
41
|
+
1.125.0 (2024-09-24)
|
42
|
+
------------------
|
43
|
+
|
44
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
45
|
+
|
46
|
+
1.124.0 (2024-09-23)
|
47
|
+
------------------
|
48
|
+
|
49
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
50
|
+
|
51
|
+
1.123.0 (2024-09-20)
|
52
|
+
------------------
|
53
|
+
|
54
|
+
* Feature - Generate and use AWS-account-based endpoints for DynamoDB requests when the account ID is available. The new endpoint URL pattern will be https://<account-id>.ddb.<region>.amazonaws.com. See the documentation for details: https://docs.aws.amazon.com/sdkref/latest/guide/feature-account-endpoints.html
|
55
|
+
|
56
|
+
1.122.0 (2024-09-11)
|
57
|
+
------------------
|
58
|
+
|
59
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
60
|
+
|
61
|
+
1.121.0 (2024-09-10)
|
62
|
+
------------------
|
63
|
+
|
64
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
65
|
+
|
66
|
+
1.120.0 (2024-09-09)
|
67
|
+
------------------
|
68
|
+
|
69
|
+
* Feature - Doc-only update for DynamoDB. Added information about async behavior for TagResource and UntagResource APIs and updated the description of ResourceInUseException.
|
70
|
+
|
71
|
+
1.119.0 (2024-09-03)
|
72
|
+
------------------
|
73
|
+
|
74
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
75
|
+
|
76
|
+
1.118.0 (2024-07-24)
|
77
|
+
------------------
|
78
|
+
|
79
|
+
* Feature - DynamoDB doc only update for July
|
80
|
+
|
81
|
+
1.117.0 (2024-07-12)
|
82
|
+
------------------
|
83
|
+
|
84
|
+
* Feature - Add v2 smoke tests and smithy smokeTests trait for SDK testing.
|
85
|
+
|
86
|
+
1.116.0 (2024-07-02)
|
87
|
+
------------------
|
88
|
+
|
89
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
90
|
+
|
91
|
+
1.115.0 (2024-06-25)
|
92
|
+
------------------
|
93
|
+
|
94
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
95
|
+
|
96
|
+
1.114.0 (2024-06-24)
|
97
|
+
------------------
|
98
|
+
|
99
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
100
|
+
|
101
|
+
1.113.0 (2024-06-20)
|
102
|
+
------------------
|
103
|
+
|
104
|
+
* Feature - Doc-only update for DynamoDB. Fixed Important note in 6 Global table APIs - CreateGlobalTable, DescribeGlobalTable, DescribeGlobalTableSettings, ListGlobalTables, UpdateGlobalTable, and UpdateGlobalTableSettings.
|
105
|
+
|
106
|
+
1.112.0 (2024-06-05)
|
107
|
+
------------------
|
108
|
+
|
109
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
110
|
+
|
111
|
+
1.111.0 (2024-05-28)
|
112
|
+
------------------
|
113
|
+
|
114
|
+
* Feature - Doc-only update for DynamoDB. Specified the IAM actions needed to authorize a user to create a table with a resource-based policy.
|
115
|
+
|
116
|
+
1.110.0 (2024-05-24)
|
117
|
+
------------------
|
118
|
+
|
119
|
+
* Feature - Documentation only updates for DynamoDB.
|
120
|
+
|
121
|
+
1.109.0 (2024-05-13)
|
122
|
+
------------------
|
123
|
+
|
124
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
125
|
+
|
126
|
+
1.108.0 (2024-05-02)
|
127
|
+
------------------
|
128
|
+
|
129
|
+
* Feature - This release adds support to specify an optional, maximum OnDemandThroughput for DynamoDB tables and global secondary indexes in the CreateTable or UpdateTable APIs. You can also override the OnDemandThroughput settings by calling the ImportTable, RestoreFromPointInTime, or RestoreFromBackup APIs.
|
130
|
+
|
131
|
+
1.107.0 (2024-04-25)
|
132
|
+
------------------
|
133
|
+
|
134
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
135
|
+
|
136
|
+
1.106.0 (2024-03-20)
|
137
|
+
------------------
|
138
|
+
|
139
|
+
* Feature - This release introduces 3 new APIs ('GetResourcePolicy', 'PutResourcePolicy' and 'DeleteResourcePolicy') and modifies the existing 'CreateTable' API for the resource-based policy support. It also modifies several APIs to accept a 'TableArn' for the 'TableName' parameter.
|
140
|
+
|
141
|
+
1.105.0 (2024-03-06)
|
142
|
+
------------------
|
143
|
+
|
144
|
+
* Feature - Doc only updates for DynamoDB documentation
|
145
|
+
|
146
|
+
1.104.0 (2024-02-20)
|
147
|
+
------------------
|
148
|
+
|
149
|
+
* Feature - Publishing quick fix for doc only update.
|
150
|
+
|
151
|
+
1.103.0 (2024-02-14)
|
152
|
+
------------------
|
153
|
+
|
154
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
155
|
+
|
156
|
+
1.102.0 (2024-02-02)
|
157
|
+
------------------
|
158
|
+
|
159
|
+
* Feature - Any number of users can execute up to 50 concurrent restores (any type of restore) in a given account.
|
160
|
+
|
161
|
+
1.101.0 (2024-01-26)
|
162
|
+
------------------
|
163
|
+
|
164
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
165
|
+
|
166
|
+
1.100.0 (2024-01-19)
|
167
|
+
------------------
|
168
|
+
|
169
|
+
* Feature - This release adds support for including ApproximateCreationDateTimePrecision configurations in EnableKinesisStreamingDestination API, adds the same as an optional field in the response of DescribeKinesisStreamingDestination, and adds support for a new UpdateKinesisStreamingDestination API.
|
170
|
+
|
171
|
+
1.99.0 (2024-01-17)
|
172
|
+
------------------
|
173
|
+
|
174
|
+
* Feature - Updating note for enabling streams for UpdateTable.
|
175
|
+
|
176
|
+
1.98.0 (2023-11-28)
|
177
|
+
------------------
|
178
|
+
|
179
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
180
|
+
|
181
|
+
1.97.0 (2023-11-22)
|
182
|
+
------------------
|
183
|
+
|
184
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
185
|
+
|
4
186
|
1.96.0 (2023-10-18)
|
5
187
|
------------------
|
6
188
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.132.0
|