aws-sdk-simpledb 1.57.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: c1be6650a9a60989c895059aded0c2cd025db01cfd10a9545869dd4afc22d6c7
4
- data.tar.gz: a6ef5183a1db63ba73b186bfd2c5e0fad361f58b71963c17ade6c3a4e877a365
3
+ metadata.gz: f6c14d2abe3e3a4d333629ec247f83c4f8fac20d9a08700f34a37efa5a3357d2
4
+ data.tar.gz: abe8fa80d1c460b29415a12b81556d718c5d107327ac6ebe660875521c51e173
5
5
  SHA512:
6
- metadata.gz: b90380ff253d8d7baad6bacbee7fdef4c53c2c04d23db3ddc9dfb3db6983b6f2cec14507fe75fe7dfef0db6be2987d99c8679b03186b06f43e549ba530b7567c
7
- data.tar.gz: a36230bb429848fd990d24c0515c555af83c054eeb92e24a4652efcce7a53b63101a45472db17a740303c70b345dfa771adaa815b2f9c3485c1773f808c4ac88
6
+ metadata.gz: 60734082e6a2e2505a7414d388450a69cc733939e7fc11f85bff1c599d013bd0c5fbe10086c709f32a1d58db703979e2d166e0560bd79afb15e5ffdb95f2c5f8
7
+ data.tar.gz: 0344e67d5a5375427bd4b8fe21b85ba7898e9e6ce072aae1bd7ec1f778810e0cec80dd69096a04a25cec4dd3953dc37ebc882d96ca0b4bdbb4f7d0fdea1206ee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.58.0 (2024-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.57.0 (2024-09-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.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.57.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.57.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.57.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-09-24 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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.207.0
22
+ version: 3.210.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.207.0
32
+ version: 3.210.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv2
35
35
  requirement: !ruby/object:Gem::Requirement