aws-sdk-dynamodb 1.119.0 → 1.120.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +25 -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: 69d6dd9c30e4d1660a80a10ed80d6dc8a49f647d073dfb6cf68ccecc59793596
|
4
|
+
data.tar.gz: d6827fdf5938c661d8e20379134dfbb15382745c95b87eef9e4b1c33f077dc04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02ea7c35c8013d4a5f4308b6d78ada9427bd040ae6dbd95125cd8ee7694b410bdf4406b93a7209397191ba1d5e60e0b08a4fd745ea4c10e1730cbd2ceb67b898
|
7
|
+
data.tar.gz: 0640c413e37cc9bf43d70b5be01e8f1fb017c69d5f6f60f24d1b8122874954641b12dbc6fd46743bbc651ced3fe9a2628d847dd06b36021fbe000648143131a9
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.120.0 (2024-09-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Doc-only update for DynamoDB. Added information about async behavior for TagResource and UntagResource APIs and updated the description of ResourceInUseException.
|
8
|
+
|
4
9
|
1.119.0 (2024-09-03)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.120.0
|
@@ -6502,6 +6502,18 @@ module Aws::DynamoDB
|
|
6502
6502
|
# and Cost Management console for cost allocation tracking. You can call
|
6503
6503
|
# TagResource up to five times per second, per account.
|
6504
6504
|
#
|
6505
|
+
# * `TagResource` is an asynchronous operation. If you issue a
|
6506
|
+
# ListTagsOfResource request immediately after a `TagResource`
|
6507
|
+
# request, DynamoDB might return your previous tag set, if there was
|
6508
|
+
# one, or an empty tag set. This is because `ListTagsOfResource` uses
|
6509
|
+
# an eventually consistent query, and the metadata for your tags or
|
6510
|
+
# table might not be available at that moment. Wait for a few seconds,
|
6511
|
+
# and then try the `ListTagsOfResource` request again.
|
6512
|
+
#
|
6513
|
+
# * The application or removal of tags using `TagResource` and
|
6514
|
+
# `UntagResource` APIs is eventually consistent. `ListTagsOfResource`
|
6515
|
+
# API will only reflect the changes after a few seconds.
|
6516
|
+
#
|
6505
6517
|
# For an overview on tagging DynamoDB resources, see [Tagging for
|
6506
6518
|
# DynamoDB][1] in the *Amazon DynamoDB Developer Guide*.
|
6507
6519
|
#
|
@@ -6851,6 +6863,18 @@ module Aws::DynamoDB
|
|
6851
6863
|
# Removes the association of tags from an Amazon DynamoDB resource. You
|
6852
6864
|
# can call `UntagResource` up to five times per second, per account.
|
6853
6865
|
#
|
6866
|
+
# * `UntagResource` is an asynchronous operation. If you issue a
|
6867
|
+
# ListTagsOfResource request immediately after an `UntagResource`
|
6868
|
+
# request, DynamoDB might return your previous tag set, if there was
|
6869
|
+
# one, or an empty tag set. This is because `ListTagsOfResource` uses
|
6870
|
+
# an eventually consistent query, and the metadata for your tags or
|
6871
|
+
# table might not be available at that moment. Wait for a few seconds,
|
6872
|
+
# and then try the `ListTagsOfResource` request again.
|
6873
|
+
#
|
6874
|
+
# * The application or removal of tags using `TagResource` and
|
6875
|
+
# `UntagResource` APIs is eventually consistent. `ListTagsOfResource`
|
6876
|
+
# API will only reflect the changes after a few seconds.
|
6877
|
+
#
|
6854
6878
|
# For an overview on tagging DynamoDB resources, see [Tagging for
|
6855
6879
|
# DynamoDB][1] in the *Amazon DynamoDB Developer Guide*.
|
6856
6880
|
#
|
@@ -8393,7 +8417,7 @@ module Aws::DynamoDB
|
|
8393
8417
|
tracer: tracer
|
8394
8418
|
)
|
8395
8419
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
8396
|
-
context[:gem_version] = '1.
|
8420
|
+
context[:gem_version] = '1.120.0'
|
8397
8421
|
Seahorse::Client::Request.new(handlers, context)
|
8398
8422
|
end
|
8399
8423
|
|
@@ -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.120.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-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|