aws-sdk-mainframemodernization 1.13.0 → 1.15.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: f6be37390940ce344a27e1e73478b6f225b03ffb63e1eda17557a490dcacb1cc
4
- data.tar.gz: e4c1dd35436b9d72c687016eb6c9d6618e28a1ecdfc18cb8ff1fa80dd71acaa1
3
+ metadata.gz: 8e5af48d99982702168d107d23738290773045ef42b41713e857e82a7b7f673c
4
+ data.tar.gz: eb52d5ce596ca9e950fc6152e0e5a7436f9ef3915b5709841efe4f75591ae930
5
5
  SHA512:
6
- metadata.gz: 8bf325134c3111790c969dcde7308bf41d20befbf74a65aad59c75d042aa9fa134ed258c52595e390be39854fcdd9784da667cd525c2516e3c4f5517da16664c
7
- data.tar.gz: ef5460ef5a71b10fc6450d6ee5a563f2d11e9f832697c5d876cd86fc478a82b40e46c8a717abcea1a5c16aa8e5465f2b02ff5502fa6fb8cd15dd76f456dcb825
6
+ metadata.gz: fcc5c52934e018458b70c731d0bcfe2244b1f48c9a6b3e1c04a98eb67d27c3bfaab0669c7865624006ec0fbc1586859ae3b8feb94256173af869ddfbefcd439f
7
+ data.tar.gz: 556f39b1eb6e8635312e4f19c09e5b10766bd86e98815852338c55182e070fa01368ff35129bafcb0de42a7de88f40f10f62d310637476c61f872645f5f83356
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.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.14.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.13.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.13.0
1
+ 1.15.0
@@ -2098,7 +2098,7 @@ module Aws::MainframeModernization
2098
2098
  params: params,
2099
2099
  config: config)
2100
2100
  context[:gem_name] = 'aws-sdk-mainframemodernization'
2101
- context[:gem_version] = '1.13.0'
2101
+ context[:gem_version] = '1.15.0'
2102
2102
  Seahorse::Client::Request.new(handlers, context)
2103
2103
  end
2104
2104
 
@@ -14,6 +14,7 @@ module Aws::MainframeModernization
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::MainframeModernization::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::MainframeModernization
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
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mainframemodernization/customizations'
52
52
  # @!group service
53
53
  module Aws::MainframeModernization
54
54
 
55
- GEM_VERSION = '1.13.0'
55
+ GEM_VERSION = '1.15.0'
56
56
 
57
57
  end