aws-sdk-simpledb 1.49.0 → 1.51.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2676025ba22d88ee3cf7613e3bbb3321e6325002dac383618818f04d32768b9
4
- data.tar.gz: 1f4739db262fb6c595500fd58228a69bff2c6ff15644df82e624d23df5ab1e59
3
+ metadata.gz: d5e4c808a838c6a51683d3b45abd960564fad3dc0513ee71f54690bcfe6536b5
4
+ data.tar.gz: cbd4090e6f43e00ff9336f3b83a58db04a4c0a9beb4aebfe4d1a4c37ce885d74
5
5
  SHA512:
6
- metadata.gz: 78a80cbf13112e0d03b79ef903d936bd2735205eb01a62bd2100b7a7085d11d425d03c9f6ea4701adcbaad7aa522ebed561e2fa1eb4c660296a608568c7c820f
7
- data.tar.gz: b042fd5884eb4110751998bb458b4d1b096251d827c942fe3974aea42327b4fc538d2d0e70ab97becca05a3c5ccc7fb88fca37bf939fafcaa1520c567abd533f
6
+ metadata.gz: 6cb974de77ffd1ef4c3479f927e0eafb0a7c1e9a293216450c5f2f7b2b2b5f3621cfdc01b13661a9d9eaceb78125c813818c6d39fd38de7037a8895e0333e72f
7
+ data.tar.gz: '0691343d2fb7dceb6e6249c9867eaba683fd2f2fae0f25a9a1995e60f2ea8a1a46dd33820ae620ecdb62a718ad6857289b69a7283735bc4fee497f46e45434a4'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.51.0 (2024-07-02)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.50.0 (2024-07-01)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ * Issue - Fix query serialization with `aws-sdk-core` >= 3.192.
15
+
4
16
  1.49.0 (2024-06-25)
5
17
  ------------------
6
18
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.51.0
@@ -311,6 +311,15 @@ module Aws::SimpleDB
311
311
  #
312
312
  # @option options [String] :session_token
313
313
  #
314
+ # @option options [Array] :sigv4a_signing_region_set
315
+ # A list of regions that should be signed with SigV4a signing. When
316
+ # not passed, a default `:sigv4a_signing_region_set` is searched for
317
+ # in the following locations:
318
+ #
319
+ # * `Aws.config[:sigv4a_signing_region_set]`
320
+ # * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
321
+ # * `~/.aws/config`
322
+ #
314
323
  # @option options [Boolean] :stub_responses (false)
315
324
  # Causes the client to return stubbed responses. By default
316
325
  # fake responses are generated and returned. You can specify
@@ -930,7 +939,7 @@ module Aws::SimpleDB
930
939
  params: params,
931
940
  config: config)
932
941
  context[:gem_name] = 'aws-sdk-simpledb'
933
- context[:gem_version] = '1.49.0'
942
+ context[:gem_version] = '1.51.0'
934
943
  Seahorse::Client::Request.new(handlers, context)
935
944
  end
936
945
 
@@ -77,25 +77,25 @@ module Aws::SimpleDB
77
77
  AttributeNameList.member = Shapes::ShapeRef.new(shape: String, location_name: "AttributeName")
78
78
 
79
79
  BatchDeleteAttributesRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DomainName"))
80
- BatchDeleteAttributesRequest.add_member(:items, Shapes::ShapeRef.new(shape: DeletableItemList, required: true, location_name: "Items"))
80
+ BatchDeleteAttributesRequest.add_member(:items, Shapes::ShapeRef.new(shape: DeletableItemList, required: true, location_name: "Item"))
81
81
  BatchDeleteAttributesRequest.struct_class = Types::BatchDeleteAttributesRequest
82
82
 
83
83
  BatchPutAttributesRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DomainName"))
84
- BatchPutAttributesRequest.add_member(:items, Shapes::ShapeRef.new(shape: ReplaceableItemList, required: true, location_name: "Items"))
84
+ BatchPutAttributesRequest.add_member(:items, Shapes::ShapeRef.new(shape: ReplaceableItemList, required: true, location_name: "Item"))
85
85
  BatchPutAttributesRequest.struct_class = Types::BatchPutAttributesRequest
86
86
 
87
87
  CreateDomainRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DomainName"))
88
88
  CreateDomainRequest.struct_class = Types::CreateDomainRequest
89
89
 
90
90
  DeletableItem.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ItemName"))
91
- DeletableItem.add_member(:attributes, Shapes::ShapeRef.new(shape: AttributeList, location_name: "Attributes"))
91
+ DeletableItem.add_member(:attributes, Shapes::ShapeRef.new(shape: AttributeList, location_name: "Attribute"))
92
92
  DeletableItem.struct_class = Types::DeletableItem
93
93
 
94
94
  DeletableItemList.member = Shapes::ShapeRef.new(shape: DeletableItem, location_name: "Item")
95
95
 
96
96
  DeleteAttributesRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DomainName"))
97
97
  DeleteAttributesRequest.add_member(:item_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ItemName"))
98
- DeleteAttributesRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: AttributeList, location_name: "Attributes"))
98
+ DeleteAttributesRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: AttributeList, location_name: "Attribute"))
99
99
  DeleteAttributesRequest.add_member(:expected, Shapes::ShapeRef.new(shape: UpdateCondition, location_name: "Expected"))
100
100
  DeleteAttributesRequest.struct_class = Types::DeleteAttributesRequest
101
101
 
@@ -121,11 +121,11 @@ module Aws::SimpleDB
121
121
 
122
122
  GetAttributesRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DomainName"))
123
123
  GetAttributesRequest.add_member(:item_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ItemName"))
124
- GetAttributesRequest.add_member(:attribute_names, Shapes::ShapeRef.new(shape: AttributeNameList, location_name: "AttributeNames"))
124
+ GetAttributesRequest.add_member(:attribute_names, Shapes::ShapeRef.new(shape: AttributeNameList, location_name: "AttributeName"))
125
125
  GetAttributesRequest.add_member(:consistent_read, Shapes::ShapeRef.new(shape: Boolean, location_name: "ConsistentRead"))
126
126
  GetAttributesRequest.struct_class = Types::GetAttributesRequest
127
127
 
128
- GetAttributesResult.add_member(:attributes, Shapes::ShapeRef.new(shape: AttributeList, location_name: "Attributes"))
128
+ GetAttributesResult.add_member(:attributes, Shapes::ShapeRef.new(shape: AttributeList, location_name: "Attribute"))
129
129
  GetAttributesResult.struct_class = Types::GetAttributesResult
130
130
 
131
131
  InvalidNextToken.add_member(:box_usage, Shapes::ShapeRef.new(shape: Float, location_name: "BoxUsage"))
@@ -145,7 +145,7 @@ module Aws::SimpleDB
145
145
 
146
146
  Item.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
147
147
  Item.add_member(:alternate_name_encoding, Shapes::ShapeRef.new(shape: String, location_name: "AlternateNameEncoding"))
148
- Item.add_member(:attributes, Shapes::ShapeRef.new(shape: AttributeList, required: true, location_name: "Attributes"))
148
+ Item.add_member(:attributes, Shapes::ShapeRef.new(shape: AttributeList, required: true, location_name: "Attribute"))
149
149
  Item.struct_class = Types::Item
150
150
 
151
151
  ItemList.member = Shapes::ShapeRef.new(shape: Item, location_name: "Item")
@@ -154,7 +154,7 @@ module Aws::SimpleDB
154
154
  ListDomainsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
155
155
  ListDomainsRequest.struct_class = Types::ListDomainsRequest
156
156
 
157
- ListDomainsResult.add_member(:domain_names, Shapes::ShapeRef.new(shape: DomainNameList, location_name: "DomainNames"))
157
+ ListDomainsResult.add_member(:domain_names, Shapes::ShapeRef.new(shape: DomainNameList, location_name: "DomainName"))
158
158
  ListDomainsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
159
159
  ListDomainsResult.struct_class = Types::ListDomainsResult
160
160
 
@@ -184,7 +184,7 @@ module Aws::SimpleDB
184
184
 
185
185
  PutAttributesRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DomainName"))
186
186
  PutAttributesRequest.add_member(:item_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ItemName"))
187
- PutAttributesRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: ReplaceableAttributeList, required: true, location_name: "Attributes"))
187
+ PutAttributesRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: ReplaceableAttributeList, required: true, location_name: "Attribute"))
188
188
  PutAttributesRequest.add_member(:expected, Shapes::ShapeRef.new(shape: UpdateCondition, location_name: "Expected"))
189
189
  PutAttributesRequest.struct_class = Types::PutAttributesRequest
190
190
 
@@ -196,7 +196,7 @@ module Aws::SimpleDB
196
196
  ReplaceableAttributeList.member = Shapes::ShapeRef.new(shape: ReplaceableAttribute, location_name: "Attribute")
197
197
 
198
198
  ReplaceableItem.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ItemName"))
199
- ReplaceableItem.add_member(:attributes, Shapes::ShapeRef.new(shape: ReplaceableAttributeList, required: true, location_name: "Attributes"))
199
+ ReplaceableItem.add_member(:attributes, Shapes::ShapeRef.new(shape: ReplaceableAttributeList, required: true, location_name: "Attribute"))
200
200
  ReplaceableItem.struct_class = Types::ReplaceableItem
201
201
 
202
202
  ReplaceableItemList.member = Shapes::ShapeRef.new(shape: ReplaceableItem, location_name: "Item")
@@ -209,7 +209,7 @@ module Aws::SimpleDB
209
209
  SelectRequest.add_member(:consistent_read, Shapes::ShapeRef.new(shape: Boolean, location_name: "ConsistentRead"))
210
210
  SelectRequest.struct_class = Types::SelectRequest
211
211
 
212
- SelectResult.add_member(:items, Shapes::ShapeRef.new(shape: ItemList, location_name: "Items"))
212
+ SelectResult.add_member(:items, Shapes::ShapeRef.new(shape: ItemList, location_name: "Item"))
213
213
  SelectResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
214
214
  SelectResult.struct_class = Types::SelectResult
215
215
 
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-simpledb/customizations'
48
48
  # @!group service
49
49
  module Aws::SimpleDB
50
50
 
51
- GEM_VERSION = '1.49.0'
51
+ GEM_VERSION = '1.51.0'
52
52
 
53
53
  end
data/sig/client.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_endpoint: bool,
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.49.0
4
+ version: 1.51.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-06-25 00:00:00.000000000 Z
11
+ date: 2024-07-02 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.199.0
22
+ version: 3.201.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.199.0
32
+ version: 3.201.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv2
35
35
  requirement: !ruby/object:Gem::Requirement