aws-sdk-migrationhuborchestrator 1.10.0 → 1.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab8e949c2e1d8b039ecd97f6460f1fb79a6fa2e3cd93141d7a9d374f162ccf9e
4
- data.tar.gz: 79ac48be4fed09089d0a0a4669d063c1dbc4d8802c86c996d21f57f7bd51c795
3
+ metadata.gz: 89a216012a0bdde23a11653168732dfd2653ff0e289b5bc3afd986ba0fbb91dd
4
+ data.tar.gz: cd5fa36f1018981d4deab4b645b2af73c605abe73f3a95ea5d6dd3ab778d0fa0
5
5
  SHA512:
6
- metadata.gz: c0b88f13283eeb73a458dfe225bbc658da757c6bfdd2ad3a7535eea1924d2571c4c428898727828a79ecaac546090659f805b171aa13dba91d4875879d54c6e8
7
- data.tar.gz: 14517a30584f623e7fafe3b90991b831647d40b3ac86ebf307f5d27871b80dfff4bc164825bc6b6bdd2a96587e30d641fe777eade834bd3ab51df40a2b42973f
6
+ metadata.gz: e86dae7a7130bc75a4e656ec721b8346a14aa080ab210e726dfe00a536af21f080cba4710b50e54ea3b6f1dfe2d8f3a3fc6c86f0c90e0ba2316461accf160290
7
+ data.tar.gz: ab037a17af52e7b3c50a88ebe9a5f14a1d65b9c23a1eb22f1cf39879c1f5a483f98ceb76247592433ad5ba70ff872fb44acecd1bc95ff9b1e89783700c993bf0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.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.11.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.10.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.12.0
@@ -1941,7 +1941,7 @@ module Aws::MigrationHubOrchestrator
1941
1941
  params: params,
1942
1942
  config: config)
1943
1943
  context[:gem_name] = 'aws-sdk-migrationhuborchestrator'
1944
- context[:gem_version] = '1.10.0'
1944
+ context[:gem_version] = '1.12.0'
1945
1945
  Seahorse::Client::Request.new(handlers, context)
1946
1946
  end
1947
1947
 
@@ -14,6 +14,7 @@ module Aws::MigrationHubOrchestrator
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::MigrationHubOrchestrator::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::MigrationHubOrchestrator
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-migrationhuborchestrator/customizations'
53
53
  # @!group service
54
54
  module Aws::MigrationHubOrchestrator
55
55
 
56
- GEM_VERSION = '1.10.0'
56
+ GEM_VERSION = '1.12.0'
57
57
 
58
58
  end