aws-sdk-dynamodb 1.119.0 → 1.121.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +31 -1
- data/lib/aws-sdk-dynamodb/types.rb +10 -2
- data/lib/aws-sdk-dynamodb.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee63978568a2bf8538e43b8dc1e2e82aa2c308e2f9babd336189fb4929d54f33
|
4
|
+
data.tar.gz: 7bf723bb6d483c4f9c1bf94655973d471bccd2232aac74d3614d346717adc2ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f36d48f9b005a164b0efe974d56c0d7d428427bc7c0c47adbdbcebc7a6ba18faaf5902aa0f62f0e254c71a121aee78d90c7911ee63a5ecfde0b1c0653fb2b44
|
7
|
+
data.tar.gz: 99ede556725e31bc0bc88be2cf85539ecbb3fdeeceb75bc0dbfd9050c0a028412fdb6712d17dbe64a936bb51dfea213f6ba4590be0904125a0e967ce397984f6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.121.0 (2024-09-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.120.0 (2024-09-09)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Doc-only update for DynamoDB. Added information about async behavior for TagResource and UntagResource APIs and updated the description of ResourceInUseException.
|
13
|
+
|
4
14
|
1.119.0 (2024-09-03)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.121.0
|
@@ -451,6 +451,12 @@ module Aws::DynamoDB
|
|
451
451
|
# @option options [String] :ssl_ca_store
|
452
452
|
# Sets the X509::Store to verify peer certificate.
|
453
453
|
#
|
454
|
+
# @option options [OpenSSL::X509::Certificate] :ssl_cert
|
455
|
+
# Sets a client certificate when creating http connections.
|
456
|
+
#
|
457
|
+
# @option options [OpenSSL::PKey] :ssl_key
|
458
|
+
# Sets a client key when creating http connections.
|
459
|
+
#
|
454
460
|
# @option options [Float] :ssl_timeout
|
455
461
|
# Sets the SSL timeout in seconds
|
456
462
|
#
|
@@ -6502,6 +6508,18 @@ module Aws::DynamoDB
|
|
6502
6508
|
# and Cost Management console for cost allocation tracking. You can call
|
6503
6509
|
# TagResource up to five times per second, per account.
|
6504
6510
|
#
|
6511
|
+
# * `TagResource` is an asynchronous operation. If you issue a
|
6512
|
+
# ListTagsOfResource request immediately after a `TagResource`
|
6513
|
+
# request, DynamoDB might return your previous tag set, if there was
|
6514
|
+
# one, or an empty tag set. This is because `ListTagsOfResource` uses
|
6515
|
+
# an eventually consistent query, and the metadata for your tags or
|
6516
|
+
# table might not be available at that moment. Wait for a few seconds,
|
6517
|
+
# and then try the `ListTagsOfResource` request again.
|
6518
|
+
#
|
6519
|
+
# * The application or removal of tags using `TagResource` and
|
6520
|
+
# `UntagResource` APIs is eventually consistent. `ListTagsOfResource`
|
6521
|
+
# API will only reflect the changes after a few seconds.
|
6522
|
+
#
|
6505
6523
|
# For an overview on tagging DynamoDB resources, see [Tagging for
|
6506
6524
|
# DynamoDB][1] in the *Amazon DynamoDB Developer Guide*.
|
6507
6525
|
#
|
@@ -6851,6 +6869,18 @@ module Aws::DynamoDB
|
|
6851
6869
|
# Removes the association of tags from an Amazon DynamoDB resource. You
|
6852
6870
|
# can call `UntagResource` up to five times per second, per account.
|
6853
6871
|
#
|
6872
|
+
# * `UntagResource` is an asynchronous operation. If you issue a
|
6873
|
+
# ListTagsOfResource request immediately after an `UntagResource`
|
6874
|
+
# request, DynamoDB might return your previous tag set, if there was
|
6875
|
+
# one, or an empty tag set. This is because `ListTagsOfResource` uses
|
6876
|
+
# an eventually consistent query, and the metadata for your tags or
|
6877
|
+
# table might not be available at that moment. Wait for a few seconds,
|
6878
|
+
# and then try the `ListTagsOfResource` request again.
|
6879
|
+
#
|
6880
|
+
# * The application or removal of tags using `TagResource` and
|
6881
|
+
# `UntagResource` APIs is eventually consistent. `ListTagsOfResource`
|
6882
|
+
# API will only reflect the changes after a few seconds.
|
6883
|
+
#
|
6854
6884
|
# For an overview on tagging DynamoDB resources, see [Tagging for
|
6855
6885
|
# DynamoDB][1] in the *Amazon DynamoDB Developer Guide*.
|
6856
6886
|
#
|
@@ -8393,7 +8423,7 @@ module Aws::DynamoDB
|
|
8393
8423
|
tracer: tracer
|
8394
8424
|
)
|
8395
8425
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
8396
|
-
context[:gem_version] = '1.
|
8426
|
+
context[:gem_version] = '1.121.0'
|
8397
8427
|
Seahorse::Client::Request.new(handlers, context)
|
8398
8428
|
end
|
8399
8429
|
|
@@ -7596,8 +7596,16 @@ module Aws::DynamoDB
|
|
7596
7596
|
end
|
7597
7597
|
|
7598
7598
|
# The operation conflicts with the resource's availability. For
|
7599
|
-
# example
|
7600
|
-
#
|
7599
|
+
# example:
|
7600
|
+
#
|
7601
|
+
# * You attempted to recreate an existing table.
|
7602
|
+
#
|
7603
|
+
# * You tried to delete a table currently in the `CREATING` state.
|
7604
|
+
#
|
7605
|
+
# * You tried to update a resource that was already being updated.
|
7606
|
+
#
|
7607
|
+
# When appropriate, wait for the ongoing update to complete and attempt
|
7608
|
+
# the request again.
|
7601
7609
|
#
|
7602
7610
|
# @!attribute [rw] message
|
7603
7611
|
# The resource which is being attempted to be changed is in use.
|
data/lib/aws-sdk-dynamodb.rb
CHANGED
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.
|
4
|
+
version: 1.121.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-09-
|
11
|
+
date: 2024-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|