aws-sdk-dynamodb 1.78.0 → 1.79.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +7 -4
- data/lib/aws-sdk-dynamodb/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-dynamodb/table.rb +2 -1
- data/lib/aws-sdk-dynamodb/types.rb +26 -10
- 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: 4d60a5d95ffeb1237be50040d9965a23f98a97d332bcf126f396f3e79840f3d4
|
4
|
+
data.tar.gz: ce3f5e07e5f38ff1ae93eaacd191038a737e7d6d3092ee609480902738c1d654
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a1f010e7405751c57081b45b41fa97e2d04e76c51724283f48e23b210029300e9ee4294462aa5aeaaa9e1ef1e98ea4f42befec48592e95309c3515ca152d334
|
7
|
+
data.tar.gz: 1894e6f51432e3c02df1ceacc46f780280bd586e17499be466f9a1fa4047666b286be76c30960c487dfc6de0f5caafe850f50288788425f7da31a192c098da11
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.79.0
|
@@ -781,8 +781,11 @@ module Aws::DynamoDB
|
|
781
781
|
# the API call. For more details on this distinction, see [Naming Rules
|
782
782
|
# and Data Types][1].
|
783
783
|
#
|
784
|
-
# <note markdown="1"> `BatchWriteItem` cannot update items.
|
785
|
-
# `
|
784
|
+
# <note markdown="1"> `BatchWriteItem` cannot update items. If you perform a
|
785
|
+
# `BatchWriteItem` operation on an existing item, that item's values
|
786
|
+
# will be overwritten by the operation and it will appear like it was
|
787
|
+
# updated. To update items, we recommend you use the `UpdateItem`
|
788
|
+
# action.
|
786
789
|
#
|
787
790
|
# </note>
|
788
791
|
#
|
@@ -4178,7 +4181,7 @@ module Aws::DynamoDB
|
|
4178
4181
|
# `ReturnValues` parameter.
|
4179
4182
|
#
|
4180
4183
|
# When you add an item, the primary key attributes are the only required
|
4181
|
-
# attributes.
|
4184
|
+
# attributes.
|
4182
4185
|
#
|
4183
4186
|
# Empty String and Binary attribute values are allowed. Attribute values
|
4184
4187
|
# of type String and Binary must have a length greater than zero if the
|
@@ -7645,7 +7648,7 @@ module Aws::DynamoDB
|
|
7645
7648
|
params: params,
|
7646
7649
|
config: config)
|
7647
7650
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
7648
|
-
context[:gem_version] = '1.
|
7651
|
+
context[:gem_version] = '1.79.0'
|
7649
7652
|
Seahorse::Client::Request.new(handlers, context)
|
7650
7653
|
end
|
7651
7654
|
|
@@ -111,8 +111,8 @@ ciJ9XX0seyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6
|
|
111
111
|
W3siY29uZGl0aW9ucyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2Ijpb
|
112
112
|
eyJyZWYiOiJSZWdpb24ifSwibG9jYWwiXX1dLCJlbmRwb2ludCI6eyJ1cmwi
|
113
113
|
OiJodHRwczovL2xvY2FsaG9zdDo4MDAwIiwicHJvcGVydGllcyI6eyJhdXRo
|
114
|
-
|
115
|
-
|
114
|
+
U2NoZW1lcyI6W3sibmFtZSI6InNpZ3Y0Iiwic2lnbmluZ1JlZ2lvbiI6InVz
|
115
|
+
LWVhc3QtMSIsInNpZ25pbmdOYW1lIjoiZHluYW1vZGIifV19LCJoZWFkZXJz
|
116
116
|
Ijp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9ucyI6W10sImVu
|
117
117
|
ZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZHluYW1vZGIue1JlZ2lvbn0ue1Bh
|
118
118
|
cnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhl
|
@@ -86,7 +86,8 @@ module Aws::DynamoDB
|
|
86
86
|
#
|
87
87
|
# * `CREATING` - The table is being created.
|
88
88
|
#
|
89
|
-
# * `UPDATING` - The table is being updated.
|
89
|
+
# * `UPDATING` - The table/index configuration is being updated. The
|
90
|
+
# table/index remains available for data operations when `UPDATING`.
|
90
91
|
#
|
91
92
|
# * `DELETING` - The table is being deleted.
|
92
93
|
#
|
@@ -1200,7 +1200,7 @@ module Aws::DynamoDB
|
|
1200
1200
|
# A map of tables and requests against those tables that were not
|
1201
1201
|
# processed. The `UnprocessedItems` value is in the same form as
|
1202
1202
|
# `RequestItems`, so you can provide this value directly to a
|
1203
|
-
# subsequent `
|
1203
|
+
# subsequent `BatchWriteItem` operation. For more information, see
|
1204
1204
|
# `RequestItems` in the Request Parameters section.
|
1205
1205
|
#
|
1206
1206
|
# Each `UnprocessedItems` entry consists of a table name and, for that
|
@@ -1279,7 +1279,18 @@ module Aws::DynamoDB
|
|
1279
1279
|
include Aws::Structure
|
1280
1280
|
end
|
1281
1281
|
|
1282
|
-
# Contains the details for the read/write capacity mode.
|
1282
|
+
# Contains the details for the read/write capacity mode. This page talks
|
1283
|
+
# about `PROVISIONED` and `PAY_PER_REQUEST` billing modes. For more
|
1284
|
+
# information about these modes, see [Read/write capacity mode][1].
|
1285
|
+
#
|
1286
|
+
# <note markdown="1"> You may need to switch to on-demand mode at least once in order to
|
1287
|
+
# return a `BillingModeSummary` response.
|
1288
|
+
#
|
1289
|
+
# </note>
|
1290
|
+
#
|
1291
|
+
#
|
1292
|
+
#
|
1293
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html
|
1283
1294
|
#
|
1284
1295
|
# @!attribute [rw] billing_mode
|
1285
1296
|
# Controls how you are charged for read and write throughput and how
|
@@ -5619,15 +5630,18 @@ module Aws::DynamoDB
|
|
5619
5630
|
# There is no limit to the number of daily on-demand backups that can be
|
5620
5631
|
# taken.
|
5621
5632
|
#
|
5622
|
-
#
|
5623
|
-
# operations include `CreateTable`, `UpdateTable`,
|
5633
|
+
# For most purposes, up to 500 simultaneous table operations are allowed
|
5634
|
+
# per account. These operations include `CreateTable`, `UpdateTable`,
|
5624
5635
|
# `DeleteTable`,`UpdateTimeToLive`, `RestoreTableFromBackup`, and
|
5625
5636
|
# `RestoreTableToPointInTime`.
|
5626
5637
|
#
|
5627
|
-
#
|
5628
|
-
#
|
5629
|
-
#
|
5630
|
-
#
|
5638
|
+
# When you are creating a table with one or more secondary indexes, you
|
5639
|
+
# can have up to 250 such requests running at a time. However, if the
|
5640
|
+
# table or index specifications are complex, then DynamoDB might
|
5641
|
+
# temporarily reduce the number of concurrent operations.
|
5642
|
+
#
|
5643
|
+
# When importing into DynamoDB, up to 50 simultaneous import table
|
5644
|
+
# operations are allowed per account.
|
5631
5645
|
#
|
5632
5646
|
# There is a soft account quota of 2,500 tables.
|
5633
5647
|
#
|
@@ -7722,7 +7736,8 @@ module Aws::DynamoDB
|
|
7722
7736
|
#
|
7723
7737
|
# * `CREATING` - The index is being created.
|
7724
7738
|
#
|
7725
|
-
# * `UPDATING` - The index is being updated.
|
7739
|
+
# * `UPDATING` - The table/index configuration is being updated. The
|
7740
|
+
# table/index remains available for data operations when `UPDATING`
|
7726
7741
|
#
|
7727
7742
|
# * `DELETING` - The index is being deleted.
|
7728
7743
|
#
|
@@ -9486,7 +9501,8 @@ module Aws::DynamoDB
|
|
9486
9501
|
#
|
9487
9502
|
# * `CREATING` - The table is being created.
|
9488
9503
|
#
|
9489
|
-
# * `UPDATING` - The table is being updated.
|
9504
|
+
# * `UPDATING` - The table/index configuration is being updated. The
|
9505
|
+
# table/index remains available for data operations when `UPDATING`.
|
9490
9506
|
#
|
9491
9507
|
# * `DELETING` - The table is being deleted.
|
9492
9508
|
#
|
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.79.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: 2022-
|
11
|
+
date: 2022-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|