aws-sdk-simpledb 1.58.0 → 1.59.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: f6c14d2abe3e3a4d333629ec247f83c4f8fac20d9a08700f34a37efa5a3357d2
4
+ data.tar.gz: abe8fa80d1c460b29415a12b81556d718c5d107327ac6ebe660875521c51e173
5
5
  SHA512:
6
- metadata.gz: 066e6e7a177426c0f252c3c2d41815c63544d71da2d62fd2194603246141ccd43f9fad9b4027860f261883a5f002ad56c523f5f1f7816d661c58d77f1c41eeca
7
- data.tar.gz: a26d99294359f63acc62529aeab88e632d9912691b7c8616d41e0548b26d6631ef599178b7fcb75533749ca6ef97b8fa8d6ccc99707b8947f2fff6995dc366ba
6
+ metadata.gz: 60734082e6a2e2505a7414d388450a69cc733939e7fc11f85bff1c599d013bd0c5fbe10086c709f32a1d58db703979e2d166e0560bd79afb15e5ffdb95f2c5f8
7
+ data.tar.gz: 0344e67d5a5375427bd4b8fe21b85ba7898e9e6ce072aae1bd7ec1f778810e0cec80dd69096a04a25cec4dd3953dc37ebc882d96ca0b4bdbb4f7d0fdea1206ee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.59.0 (2024-11-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.58.0 (2024-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.58.0
1
+ 1.59.0
@@ -499,20 +499,20 @@ module Aws::SimpleDB
499
499
  # `Item.0.Attribute.1.Value`, and so on.
500
500
  #
501
501
  # 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
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
505
505
  # `Item.X.Attribute.Y.Name` and `Item.X.Attribute.Y.Value` are the same.
506
506
  #
507
507
  # Optionally, the requester can supply the `Replace` parameter for each
508
508
  # individual value. Setting this value to `true` will cause the new
509
509
  # 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.
510
+ # example, if an item `I` has the attributes `{ 'a', '1' }, { 'b', '2'}`
511
+ # and `{ 'b', '3' }` and the requester does a BatchPutAttributes of
512
+ # `{'I', 'b', '4' }` with the Replace parameter set to true, the final
513
+ # attributes of the item will be `{ 'a', '1' }` and `{ 'b', '4' }`,
514
+ # replacing the previous values of the 'b' attribute with the new
515
+ # value.
516
516
  #
517
517
  # This operation is vulnerable to exceeding the maximum URL size when
518
518
  # making a REST request using the HTTP GET method. This operation does
@@ -819,20 +819,20 @@ module Aws::SimpleDB
819
819
  # `Attribute.1.Name` and `Attribute.1.Value`, and so on.
820
820
  #
821
821
  # 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
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
825
825
  # `Attribute.X.Name` and `Attribute.X.Value` are the same.
826
826
  #
827
827
  # Optionally, the requestor can supply the `Replace` parameter for each
828
828
  # individual attribute. Setting this value to `true` causes the new
829
829
  # 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.
830
+ # example, if an item has the attributes `{ 'a', '1' }`, `{ 'b', '2'}`
831
+ # and `{ 'b', '3' }` and the requestor calls `PutAttributes` using the
832
+ # attributes `{ 'b', '4' }` with the `Replace` parameter set to true,
833
+ # the final attributes of the item are changed to `{ 'a', '1' }` and `{
834
+ # 'b', '4' }`, which replaces the previous values of the 'b' attribute
835
+ # with the new value.
836
836
  #
837
837
  # You cannot specify an empty string as an attribute name.
838
838
  #
@@ -964,7 +964,7 @@ module Aws::SimpleDB
964
964
  tracer: tracer
965
965
  )
966
966
  context[:gem_name] = 'aws-sdk-simpledb'
967
- context[:gem_version] = '1.58.0'
967
+ context[:gem_version] = '1.59.0'
968
968
  Seahorse::Client::Request.new(handlers, context)
969
969
  end
970
970
 
@@ -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.59.0'
52
52
 
53
53
  end
54
54
 
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.59.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: 2024-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core