aws-sdk-dynamodb 1.141.0 → 1.142.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 +1 -1
- data/lib/aws-sdk-dynamodb/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-dynamodb/types.rb +5 -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: 90a541899ae7ae29cc4c7520318191a32848affa823a396ee1b83ddb0922689b
|
4
|
+
data.tar.gz: 79feab033056e98f44fa170233b8ea5f768d2a0062862f8a94c79e719e10fdca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05772121ccad5e19ff99e229526247f9eb48eeb8d8fbae203d7c05c047ac41175b390e989782f7f487c46110165a4dd91af7a8a24b47d21f6a2480d3cd4084c1
|
7
|
+
data.tar.gz: 58bdd19378bbb12e05afd9c949f6adb16fa56bf3b59a6f7772b48ec96f821c247c43be7fa37fa6a0fd2378a6bf5afaff68072ac5ae8900d60c73cde868b06d0a
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.142.0
|
@@ -28,7 +28,7 @@ module Aws::DynamoDB
|
|
28
28
|
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
29
29
|
raise ArgumentError, "Invalid Configuration: Dualstack and local endpoint are not supported"
|
30
30
|
end
|
31
|
-
return Aws::Endpoints::Endpoint.new(url: "http://localhost:8000", headers: {}, properties: {"authSchemes"=>[{"signingRegion"=>"us-east-1", "
|
31
|
+
return Aws::Endpoints::Endpoint.new(url: "http://localhost:8000", headers: {}, properties: {"authSchemes"=>[{"signingRegion"=>"us-east-1", "name"=>"sigv4", "signingName"=>"dynamodb"}]}, metadata: { account_id_endpoint: false })
|
32
32
|
end
|
33
33
|
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true) && Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"), true)
|
@@ -4121,7 +4121,8 @@ module Aws::DynamoDB
|
|
4121
4121
|
#
|
4122
4122
|
# @!attribute [rw] provisioned_throughput
|
4123
4123
|
# Represents the provisioned throughput settings for the specified
|
4124
|
-
# global secondary index.
|
4124
|
+
# global secondary index. You must use either `OnDemandThroughput` or
|
4125
|
+
# `ProvisionedThroughput` based on your table's capacity mode.
|
4125
4126
|
#
|
4126
4127
|
# For current minimum and maximum provisioned throughput values, see
|
4127
4128
|
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
@@ -4135,7 +4136,9 @@ module Aws::DynamoDB
|
|
4135
4136
|
# @!attribute [rw] on_demand_throughput
|
4136
4137
|
# The maximum number of read and write units for the specified global
|
4137
4138
|
# secondary index. If you use this parameter, you must specify
|
4138
|
-
# `MaxReadRequestUnits`, `MaxWriteRequestUnits`, or both.
|
4139
|
+
# `MaxReadRequestUnits`, `MaxWriteRequestUnits`, or both. You must use
|
4140
|
+
# either `OnDemandThroughput` or `ProvisionedThroughput` based on your
|
4141
|
+
# table's capacity mode.
|
4139
4142
|
# @return [Types::OnDemandThroughput]
|
4140
4143
|
#
|
4141
4144
|
# @!attribute [rw] warm_throughput
|
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.142.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: 2025-04-
|
11
|
+
date: 2025-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|