aws-sdk-simpledb 1.57.0 → 1.59.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-simpledb/client.rb +19 -19
- data/lib/aws-sdk-simpledb.rb +1 -1
- 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: f6c14d2abe3e3a4d333629ec247f83c4f8fac20d9a08700f34a37efa5a3357d2
|
4
|
+
data.tar.gz: abe8fa80d1c460b29415a12b81556d718c5d107327ac6ebe660875521c51e173
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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"
|
504
|
-
#
|
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
|
511
|
-
#
|
512
|
-
#
|
513
|
-
#
|
514
|
-
#
|
515
|
-
#
|
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"
|
824
|
-
#
|
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
|
831
|
-
#
|
832
|
-
#
|
833
|
-
#
|
834
|
-
#
|
835
|
-
#
|
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.
|
967
|
+
context[:gem_version] = '1.59.0'
|
968
968
|
Seahorse::Client::Request.new(handlers, context)
|
969
969
|
end
|
970
970
|
|
data/lib/aws-sdk-simpledb.rb
CHANGED
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.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-
|
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.
|
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.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv2
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|