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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b155c2c0d248ae3e4855846a372867b52d87aecbca0d8227b88cb81f125e8ee0
4
- data.tar.gz: d2c3719fd3b9d3000b4db34f43027554cc95aa722d67603a50ebd7b560905701
3
+ metadata.gz: 7d209e91769880969c63f1eb89f3a578649bdfee641b0eb6aca4dbd8d35d7a77
4
+ data.tar.gz: dbc7e65c415c7611f009ec074187427d41c7ccfea6b313beb4d7eb09c1f035c2
5
5
  SHA512:
6
- metadata.gz: 066e6e7a177426c0f252c3c2d41815c63544d71da2d62fd2194603246141ccd43f9fad9b4027860f261883a5f002ad56c523f5f1f7816d661c58d77f1c41eeca
7
- data.tar.gz: a26d99294359f63acc62529aeab88e632d9912691b7c8616d41e0548b26d6631ef599178b7fcb75533749ca6ef97b8fa8d6ccc99707b8947f2fff6995dc366ba
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.58.0
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" \}` and `\{ "first_name", "second_value"
504
- # \}`. However, it cannot have two attribute instances where both the
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 `\{ 'a', '1' \}, \{ 'b',
511
- # '2'\}` and `\{ 'b', '3' \}` and the requester does a
512
- # BatchPutAttributes of `\{'I', 'b', '4' \}` with the Replace parameter
513
- # set to true, the final attributes of the item will be `\{ 'a', '1' \}`
514
- # and `\{ 'b', '4' \}`, replacing the previous values of the 'b'
515
- # attribute with the new value.
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" \}` and `\{ "first_name", second_value"
824
- # \}`. However, it cannot have two attribute instances where both the
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 `\{ 'a', '1' \}`, `\{ 'b',
831
- # '2'\}` and `\{ 'b', '3' \}` and the requestor calls `PutAttributes`
832
- # using the attributes `\{ 'b', '4' \}` with the `Replace` parameter set
833
- # to true, the final attributes of the item are changed to `\{ 'a', '1'
834
- # \}` and `\{ 'b', '4' \}`, which replaces the previous values of the
835
- # 'b' attribute with the new value.
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.58.0'
990
+ context[:gem_version] = '1.60.0'
968
991
  Seahorse::Client::Request.new(handlers, context)
969
992
  end
970
993
 
@@ -48,7 +48,7 @@ module Aws::SimpleDB
48
48
  autoload :Errors, 'aws-sdk-simpledb/errors'
49
49
  autoload :Resource, 'aws-sdk-simpledb/resource'
50
50
 
51
- GEM_VERSION = '1.58.0'
51
+ GEM_VERSION = '1.60.0'
52
52
 
53
53
  end
54
54
 
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.58.0
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: 2024-10-18 00:00:00.000000000 Z
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.210.0
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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv2
35
35
  requirement: !ruby/object:Gem::Requirement