aws-sdk-simpledb 1.58.0 → 1.60.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-simpledb/client.rb +42 -19
- data/lib/aws-sdk-simpledb.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d209e91769880969c63f1eb89f3a578649bdfee641b0eb6aca4dbd8d35d7a77
|
4
|
+
data.tar.gz: dbc7e65c415c7611f009ec074187427d41c7ccfea6b313beb4d7eb09c1f035c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00cf0259f39c0d96882aae6a8eb34efbd728df45a3176a2b9493f18d79f217da5e0ca65c744847dc0d6c84d217f1476820bb5a61b2b1ec5505a034c22feb69ba
|
7
|
+
data.tar.gz: 3160d1cda3368378dc504d16767367882fa0fda4587eae57ca3dc61532cf7aff1e4c69f88ab6596a082847d4853f309cea0adef7bf8565be00784a7c8ea1a8d6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.60.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.59.0 (2024-11-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.58.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.60.0
|
@@ -256,11 +256,34 @@ module Aws::SimpleDB
|
|
256
256
|
# Used when loading credentials from the shared credentials file
|
257
257
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
258
258
|
#
|
259
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
261
|
+
#
|
262
|
+
# * `when_supported` - (default) When set, a checksum will be
|
263
|
+
# calculated for all request payloads of operations modeled with the
|
264
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
265
|
+
# `requestAlgorithmMember` is modeled.
|
266
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
267
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
268
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
269
|
+
# is modeled and supplied.
|
270
|
+
#
|
259
271
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
260
272
|
# The minimum size in bytes that triggers compression for request
|
261
273
|
# bodies. The value must be non-negative integer value between 0
|
262
274
|
# and 10485780 bytes inclusive.
|
263
275
|
#
|
276
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
277
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
278
|
+
#
|
279
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
280
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
281
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
282
|
+
# are supported.
|
283
|
+
# * `when_required` - When set, checksum validation is not performed on
|
284
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
285
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
286
|
+
#
|
264
287
|
# @option options [Proc] :retry_backoff
|
265
288
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
266
289
|
# This option is only used in the `legacy` retry mode.
|
@@ -499,20 +522,20 @@ module Aws::SimpleDB
|
|
499
522
|
# `Item.0.Attribute.1.Value`, and so on.
|
500
523
|
#
|
501
524
|
# Attributes are uniquely identified within an item by their name/value
|
502
|
-
# combination. For example, a single item can have the attributes
|
503
|
-
# "first_name", "first_value"
|
504
|
-
#
|
525
|
+
# combination. For example, a single item can have the attributes `{
|
526
|
+
# "first_name", "first_value" }` and `{ "first_name", "second_value" }`.
|
527
|
+
# However, it cannot have two attribute instances where both the
|
505
528
|
# `Item.X.Attribute.Y.Name` and `Item.X.Attribute.Y.Value` are the same.
|
506
529
|
#
|
507
530
|
# Optionally, the requester can supply the `Replace` parameter for each
|
508
531
|
# individual value. Setting this value to `true` will cause the new
|
509
532
|
# attribute values to replace the existing attribute values. For
|
510
|
-
# example, if an item `I` has the attributes
|
511
|
-
#
|
512
|
-
#
|
513
|
-
#
|
514
|
-
#
|
515
|
-
#
|
533
|
+
# example, if an item `I` has the attributes `{ 'a', '1' }, { 'b', '2'}`
|
534
|
+
# and `{ 'b', '3' }` and the requester does a BatchPutAttributes of
|
535
|
+
# `{'I', 'b', '4' }` with the Replace parameter set to true, the final
|
536
|
+
# attributes of the item will be `{ 'a', '1' }` and `{ 'b', '4' }`,
|
537
|
+
# replacing the previous values of the 'b' attribute with the new
|
538
|
+
# value.
|
516
539
|
#
|
517
540
|
# This operation is vulnerable to exceeding the maximum URL size when
|
518
541
|
# making a REST request using the HTTP GET method. This operation does
|
@@ -819,20 +842,20 @@ module Aws::SimpleDB
|
|
819
842
|
# `Attribute.1.Name` and `Attribute.1.Value`, and so on.
|
820
843
|
#
|
821
844
|
# Attributes are uniquely identified in an item by their name/value
|
822
|
-
# combination. For example, a single item can have the attributes
|
823
|
-
# "first_name", "first_value"
|
824
|
-
#
|
845
|
+
# combination. For example, a single item can have the attributes `{
|
846
|
+
# "first_name", "first_value" }` and `{ "first_name", second_value" }`.
|
847
|
+
# However, it cannot have two attribute instances where both the
|
825
848
|
# `Attribute.X.Name` and `Attribute.X.Value` are the same.
|
826
849
|
#
|
827
850
|
# Optionally, the requestor can supply the `Replace` parameter for each
|
828
851
|
# individual attribute. Setting this value to `true` causes the new
|
829
852
|
# attribute value to replace the existing attribute value(s). For
|
830
|
-
# example, if an item has the attributes
|
831
|
-
#
|
832
|
-
#
|
833
|
-
#
|
834
|
-
#
|
835
|
-
#
|
853
|
+
# example, if an item has the attributes `{ 'a', '1' }`, `{ 'b', '2'}`
|
854
|
+
# and `{ 'b', '3' }` and the requestor calls `PutAttributes` using the
|
855
|
+
# attributes `{ 'b', '4' }` with the `Replace` parameter set to true,
|
856
|
+
# the final attributes of the item are changed to `{ 'a', '1' }` and `{
|
857
|
+
# 'b', '4' }`, which replaces the previous values of the 'b' attribute
|
858
|
+
# with the new value.
|
836
859
|
#
|
837
860
|
# You cannot specify an empty string as an attribute name.
|
838
861
|
#
|
@@ -964,7 +987,7 @@ module Aws::SimpleDB
|
|
964
987
|
tracer: tracer
|
965
988
|
)
|
966
989
|
context[:gem_name] = 'aws-sdk-simpledb'
|
967
|
-
context[:gem_version] = '1.
|
990
|
+
context[:gem_version] = '1.60.0'
|
968
991
|
Seahorse::Client::Request.new(handlers, context)
|
969
992
|
end
|
970
993
|
|
data/lib/aws-sdk-simpledb.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-simpledb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.60.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:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv2
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|