aws-sdk-mgn 1.28.0 → 1.30.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: bf266129ba06d89b4946cf0797befa04a17e8302d1d966921de90e591dcaad5e
4
- data.tar.gz: c56c17ab1021b8c93b40ba877703e5682b1a37a8fd46aaf01badb7146a0eeafc
3
+ metadata.gz: 2099456eff1299ff3b1ba00e8de2683c46b2038593e903e254de49e605036bd7
4
+ data.tar.gz: 5cf7ada6e8eca3ed2c2921051c0fe99e9e6dc29622986cca3da632d6dd4b442c
5
5
  SHA512:
6
- metadata.gz: 2b954d165481076bc9c3bff190b9f560deafb34e30748454356af7e9e19bd1565ed93330932ff95092f3cea3e7637e7dbd74b74f26369703936846d21efbab78
7
- data.tar.gz: ea1254551d1e85ef9e4b1c5fb6f175784c8f112e838d58fa8ad3fdb55d9ebcb2eec973f2a4b8021bc2f37d3d5d4ba1cdd76975f968528bff054bfbe42c007e73
6
+ metadata.gz: 780467d0fe970d46cdc620b229585f954fa967ed4db38c25e61f0f6a96ead5a3a419a2b5b862d9558fc282b939f7677347ea1ff7588a8e5b8eb4ac113dc5a1d0
7
+ data.tar.gz: 8e50e4e4ab3bdbe765a2c280ade66c7ef98addc5cb91d1ddb86ce611de1ab074b996952bde7c76bbae148ec94d37815447dbaacf0113365475968b9c4f133073
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.30.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.29.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.28.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.28.0
1
+ 1.30.0
@@ -5238,7 +5238,7 @@ module Aws::Mgn
5238
5238
  params: params,
5239
5239
  config: config)
5240
5240
  context[:gem_name] = 'aws-sdk-mgn'
5241
- context[:gem_version] = '1.28.0'
5241
+ context[:gem_version] = '1.30.0'
5242
5242
  Seahorse::Client::Request.new(handlers, context)
5243
5243
  end
5244
5244
 
@@ -14,6 +14,7 @@ module Aws::Mgn
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Mgn::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::Mgn
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
 
data/lib/aws-sdk-mgn.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mgn/customizations'
52
52
  # @!group service
53
53
  module Aws::Mgn
54
54
 
55
- GEM_VERSION = '1.28.0'
55
+ GEM_VERSION = '1.30.0'
56
56
 
57
57
  end