aws-sdk-machinelearning 1.48.0 → 1.50.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: 77d909c293485cd20859935ce0a9a88b4692caa117f6e1f9c6f6b7f91768ce34
4
- data.tar.gz: bda0362dbe6b59b4f91e91640e479b762671b5e3afc72b6ff02885d6d2778598
3
+ metadata.gz: e992e695779cb57372a700e2f9cf474f2a54632b3dee0fff5100b240858aecbf
4
+ data.tar.gz: d737122b5cd24fb33a74415b9748474b98d7e6d2b59e2eb47a8c3b20961d13de
5
5
  SHA512:
6
- metadata.gz: e3754da1067af09c0a29c2890244dfa9fc3daf864ab3c9619d4234d24da747c85db597f6e0001fb1acc59c192b06e337b7cfd6204ad8dea519d87dab61fc2a9d
7
- data.tar.gz: d78023267bacd269bda822e613efd7640072c75bbd6ad96f7d55f7d59385418ef6136ad36d1029dc9f2292d4980d56284f43931df2a32c8b5457bb654c63b393
6
+ metadata.gz: fbf5561fc850114c16ce25c9962deac55a293d7fc021899343bfeba80fbfe7ca5f2bcddba1d1803f2a50a5204199d36b7f34cea19c7b5b1a670e7dd03fdb7dab
7
+ data.tar.gz: ab4b616fa473f5f35eb2f0746f430e79cff5727cf80ee946afdbcc651a901522629a61f3c433973b39bf6bc63c07c2180947974bb50db31b75edbb95ee7c7794
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.50.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.49.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.48.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.48.0
1
+ 1.50.0
@@ -2427,7 +2427,7 @@ module Aws::MachineLearning
2427
2427
  params: params,
2428
2428
  config: config)
2429
2429
  context[:gem_name] = 'aws-sdk-machinelearning'
2430
- context[:gem_version] = '1.48.0'
2430
+ context[:gem_version] = '1.50.0'
2431
2431
  Seahorse::Client::Request.new(handlers, context)
2432
2432
  end
2433
2433
 
@@ -14,6 +14,7 @@ module Aws::MachineLearning
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::MachineLearning::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -25,16 +26,17 @@ module Aws::MachineLearning
25
26
  # @api private
26
27
  class Handler < Seahorse::Client::Handler
27
28
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
29
  unless context[:discovered_endpoint]
30
30
  params = parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
34
34
  apply_endpoint_headers(context, endpoint.headers)
35
+
36
+ context[:endpoint_params] = params
37
+ context[:endpoint_properties] = endpoint.properties
35
38
  end
36
39
 
37
- context[:endpoint_params] = params
38
40
  context[:auth_scheme] =
39
41
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
42
 
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-machinelearning/customizations'
53
53
  # @!group service
54
54
  module Aws::MachineLearning
55
55
 
56
- GEM_VERSION = '1.48.0'
56
+ GEM_VERSION = '1.50.0'
57
57
 
58
58
  end