aws-sdk-simpledb 1.54.0 → 1.56.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: 0c84ac3a679f93672b6a5961b5146876bd05bd3ae13587043c9ddacf4773522f
4
- data.tar.gz: 9239bdfa1594d9cc1eabdf393dd5dd26e0f4a5aadda971956bd13290edb3f2b9
3
+ metadata.gz: 5e093bb2c1d6dfb71039f58c4913ce48eaf23db87e15aa9ff41ea2d8d28d1914
4
+ data.tar.gz: 604edfd757dd235263eed995d7e1bb116cf36c51a2e21de97a41d92f64dfe97b
5
5
  SHA512:
6
- metadata.gz: c50741a95c279737cdc2c85b68f1b6cca8ac578a861c4fc59356db6e2558d172730ed65957fdaf4eb722844d2fbf31f25c6bb08bf98100911d8514073a9f0995
7
- data.tar.gz: 17c675ff59dc5f01cca5bba123b8cd5eed9b520771c30cdaaa288a78fa97a39764b1220c7dc13e94d31024b7c0b1a18419e1c658ed4d84551f4f543d6dcf10f7
6
+ metadata.gz: 471b48ab5dbd278c264989b19ce8d464327af566e557991aad3206913d3b7e3c434d2d5bcbbf4ff341d752a0ec184326126cf642231a9025b80983efcfb5e44a
7
+ data.tar.gz: 0d31ae874dfb860f057bf795cfe6b934d2ea8985a1b90ce2d27300570d6457cddb5b84a5b78507466c53e9eb25d9ad446fff7a487a8b21bbfd9dd98c6eeae634
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.56.0 (2024-09-23)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.55.0 (2024-09-20)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.54.0 (2024-09-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
1
+ 1.56.0
@@ -129,13 +129,15 @@ module Aws::SimpleDB
129
129
  # locations will be searched for credentials:
130
130
  #
131
131
  # * `Aws.config[:credentials]`
132
- # * The `:access_key_id`, `:secret_access_key`, and `:session_token` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
132
+ # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
133
+ # `:account_id` options.
134
+ # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
135
+ # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
136
  # * `~/.aws/credentials`
135
137
  # * `~/.aws/config`
136
138
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
137
139
  # are very aggressive. Construct and pass an instance of
138
- # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
140
+ # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
139
141
  # enable retries and extended timeouts. Instance profile credential
140
142
  # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
141
143
  # to true.
@@ -154,6 +156,8 @@ module Aws::SimpleDB
154
156
  #
155
157
  # @option options [String] :access_key_id
156
158
  #
159
+ # @option options [String] :account_id
160
+ #
157
161
  # @option options [Boolean] :active_endpoint_cache (false)
158
162
  # When set to `true`, a thread polling for endpoints will be running in
159
163
  # the background every 60 secs (default). Defaults to `false`.
@@ -962,7 +966,7 @@ module Aws::SimpleDB
962
966
  tracer: tracer
963
967
  )
964
968
  context[:gem_name] = 'aws-sdk-simpledb'
965
- context[:gem_version] = '1.54.0'
969
+ context[:gem_version] = '1.56.0'
966
970
  Seahorse::Client::Request.new(handlers, context)
967
971
  end
968
972
 
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  module Aws::SimpleDB
11
12
  # @api private
12
13
  module ClientApi
@@ -587,3 +587,4 @@ module Aws::SimpleDB
587
587
 
588
588
  end
589
589
  end
590
+
@@ -11,13 +11,6 @@
11
11
  require 'aws-sdk-core'
12
12
  require 'aws-sigv2'
13
13
 
14
- require_relative 'aws-sdk-simpledb/types'
15
- require_relative 'aws-sdk-simpledb/client_api'
16
- require_relative 'aws-sdk-simpledb/client'
17
- require_relative 'aws-sdk-simpledb/errors'
18
- require_relative 'aws-sdk-simpledb/resource'
19
- require_relative 'aws-sdk-simpledb/customizations'
20
-
21
14
  # This module provides support for Amazon SimpleDB. This module is available in the
22
15
  # `aws-sdk-simpledb` gem.
23
16
  #
@@ -47,7 +40,14 @@ require_relative 'aws-sdk-simpledb/customizations'
47
40
  #
48
41
  # @!group service
49
42
  module Aws::SimpleDB
43
+ autoload :Types, 'aws-sdk-simpledb/types'
44
+ autoload :ClientApi, 'aws-sdk-simpledb/client_api'
45
+ autoload :Client, 'aws-sdk-simpledb/client'
46
+ autoload :Errors, 'aws-sdk-simpledb/errors'
47
+ autoload :Resource, 'aws-sdk-simpledb/resource'
50
48
 
51
- GEM_VERSION = '1.54.0'
49
+ GEM_VERSION = '1.56.0'
52
50
 
53
51
  end
52
+
53
+ require_relative 'aws-sdk-simpledb/customizations'
data/sig/client.rbs CHANGED
@@ -15,6 +15,7 @@ module Aws
15
15
  ?credentials: untyped,
16
16
  ?region: String,
17
17
  ?access_key_id: String,
18
+ ?account_id: String,
18
19
  ?active_endpoint_cache: bool,
19
20
  ?adaptive_retry_wait_to_fill: bool,
20
21
  ?client_side_monitoring: bool,
data/sig/resource.rbs CHANGED
@@ -15,6 +15,7 @@ module Aws
15
15
  ?credentials: untyped,
16
16
  ?region: String,
17
17
  ?access_key_id: String,
18
+ ?account_id: String,
18
19
  ?active_endpoint_cache: bool,
19
20
  ?adaptive_retry_wait_to_fill: bool,
20
21
  ?client_side_monitoring: 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.54.0
4
+ version: 1.56.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-11 00:00:00.000000000 Z
11
+ date: 2024-09-23 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.205.0
22
+ version: 3.207.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.205.0
32
+ version: 3.207.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv2
35
35
  requirement: !ruby/object:Gem::Requirement