aws-sdk-core 3.222.2 → 3.222.3

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: f3ac3e91203df90508403c590586d006a456980b925d1f3b45ac39f5ab807ad3
4
- data.tar.gz: 5ac691c82cc34033495e1acb648e5fb98362b9f8b814c05ceb154e9533313a4b
3
+ metadata.gz: 543f2491a007a364595da80e74d9398c60e102f7f10ce2a7c273ef387ed404e4
4
+ data.tar.gz: b15da4be99f2e14d46a3a209d1a591b7bf3e5d798c65414bf610126a2602c615
5
5
  SHA512:
6
- metadata.gz: a3cf479d00b658644362745e1534b022e8bcc572c672addea625af06c8e30222dfc8c22def2cf506920386592bc96c323ede30f6daba28c04635021dd54fe304
7
- data.tar.gz: cf05a4850b23d5a8b713f3cd20a17b1c984f6f094bb6cabcb2006721f8718fe8c3260074e06760b63e1e21f4a1124ee74fd921add8d19acaa5c558abb84dd955
6
+ metadata.gz: 2e41199107772d46d290fdf8c4495dae9967bbb1e2849ddb024d4c4e2eaa649ff2a513a9e72ecc1ac134124e9c15a4540a954c1c87649ddc9de653569cab7da6
7
+ data.tar.gz: 6fe94fede561d4fcfedd36f40300378bdb5af6e2eb182db8355546c313074d4b5535840a25cd54ccd90981208fc97e073e49a30be5e19fb7d7fb850d2e49d787
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.222.3 (2025-04-28)
5
+ ------------------
6
+
7
+ * Issue - Do not dynamically create operation methods from the API. (#3234)
8
+
4
9
  3.222.2 (2025-04-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.222.2
1
+ 3.222.3
@@ -692,7 +692,7 @@ module Aws::SSO
692
692
  tracer: tracer
693
693
  )
694
694
  context[:gem_name] = 'aws-sdk-core'
695
- context[:gem_version] = '3.222.2'
695
+ context[:gem_version] = '3.222.3'
696
696
  Seahorse::Client::Request.new(handlers, context)
697
697
  end
698
698
 
data/lib/aws-sdk-sso.rb CHANGED
@@ -56,7 +56,7 @@ module Aws::SSO
56
56
  autoload :EndpointProvider, 'aws-sdk-sso/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-sso/endpoints'
58
58
 
59
- GEM_VERSION = '3.222.2'
59
+ GEM_VERSION = '3.222.3'
60
60
 
61
61
  end
62
62
 
@@ -1062,7 +1062,7 @@ module Aws::SSOOIDC
1062
1062
  tracer: tracer
1063
1063
  )
1064
1064
  context[:gem_name] = 'aws-sdk-core'
1065
- context[:gem_version] = '3.222.2'
1065
+ context[:gem_version] = '3.222.3'
1066
1066
  Seahorse::Client::Request.new(handlers, context)
1067
1067
  end
1068
1068
 
@@ -56,7 +56,7 @@ module Aws::SSOOIDC
56
56
  autoload :EndpointProvider, 'aws-sdk-ssooidc/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-ssooidc/endpoints'
58
58
 
59
- GEM_VERSION = '3.222.2'
59
+ GEM_VERSION = '3.222.3'
60
60
 
61
61
  end
62
62
 
@@ -2595,7 +2595,7 @@ module Aws::STS
2595
2595
  tracer: tracer
2596
2596
  )
2597
2597
  context[:gem_name] = 'aws-sdk-core'
2598
- context[:gem_version] = '3.222.2'
2598
+ context[:gem_version] = '3.222.3'
2599
2599
  Seahorse::Client::Request.new(handlers, context)
2600
2600
  end
2601
2601
 
data/lib/aws-sdk-sts.rb CHANGED
@@ -56,7 +56,7 @@ module Aws::STS
56
56
  autoload :EndpointProvider, 'aws-sdk-sts/endpoint_provider'
57
57
  autoload :Endpoints, 'aws-sdk-sts/endpoints'
58
58
 
59
- GEM_VERSION = '3.222.2'
59
+ GEM_VERSION = '3.222.3'
60
60
 
61
61
  end
62
62
 
@@ -176,8 +176,6 @@ module Seahorse
176
176
  # @return [Model::Api]
177
177
  def set_api(api)
178
178
  @api = api
179
- define_operation_methods
180
- @api
181
179
  end
182
180
 
183
181
  # @option options [Model::Api, Hash] :api ({})
@@ -196,18 +194,6 @@ module Seahorse
196
194
 
197
195
  private
198
196
 
199
- def define_operation_methods
200
- operations_module = Module.new
201
- @api.operation_names.each do |method_name|
202
- operations_module.send(:define_method, method_name) do |*args, &block|
203
- params = args[0] || {}
204
- options = args[1] || {}
205
- build_request(method_name, params).send_request(options, &block)
206
- end
207
- end
208
- include(operations_module)
209
- end
210
-
211
197
  def build_plugins(plugins)
212
198
  plugins.map { |plugin| plugin.is_a?(Class) ? plugin.new : plugin }
213
199
  end
@@ -0,0 +1,21 @@
1
+ module Aws
2
+ module AsyncClientStubs
3
+ include ClientStubs
4
+
5
+ def send_events: () -> untyped
6
+
7
+ class StubsStream
8
+ def initialize: () -> void
9
+
10
+ attr_accessor send_events: untyped
11
+
12
+ attr_reader state: Symbol
13
+
14
+ def data: (untyped bytes, ?::Hash[untyped, untyped] options) -> untyped
15
+
16
+ def closed?: () -> bool
17
+
18
+ def close: () -> void
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,18 @@
1
+ module Seahorse
2
+ module Client
3
+ class AsyncBase < Base
4
+
5
+ def self.new: (?untyped options) -> instance
6
+
7
+ attr_reader connection: untyped
8
+
9
+ def operation_names: () -> Array[Symbol]
10
+
11
+ def close_connection: () -> Symbol
12
+
13
+ def new_connection: () -> untyped
14
+
15
+ def connection_errors: () -> Array[untyped]
16
+ end
17
+ end
18
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.222.2
4
+ version: 3.222.3
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: 2025-04-16 00:00:00.000000000 Z
11
+ date: 2025-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-eventstream
@@ -397,6 +397,7 @@ files:
397
397
  - lib/seahorse/util.rb
398
398
  - lib/seahorse/version.rb
399
399
  - sig/aws-sdk-core.rbs
400
+ - sig/aws-sdk-core/async_client_stubs.rbs
400
401
  - sig/aws-sdk-core/client_stubs.rbs
401
402
  - sig/aws-sdk-core/errors.rbs
402
403
  - sig/aws-sdk-core/resources/collection.rbs
@@ -406,6 +407,7 @@ files:
406
407
  - sig/aws-sdk-core/telemetry/span_kind.rbs
407
408
  - sig/aws-sdk-core/telemetry/span_status.rbs
408
409
  - sig/aws-sdk-core/waiters/errors.rbs
410
+ - sig/seahorse/client/async_base.rbs
409
411
  - sig/seahorse/client/base.rbs
410
412
  - sig/seahorse/client/handler_builder.rbs
411
413
  - sig/seahorse/client/response.rbs