aws-sdk-wellarchitected 1.31.0 → 1.33.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: aa9bbd80c8983e6971f70ae54ffe71089f0f6b83271934abfb098470d0a10090
4
- data.tar.gz: 7300c7e012cc30bc33ad4cc6a6fde44050653c0c89ea07933a8d6dd82bc3b8c4
3
+ metadata.gz: a960802c970a01d19858bfb5e431d2efe40aa9404c2ad9ebb3eab7b56782627f
4
+ data.tar.gz: af609ad0f1146cd0aa04871bdf5c1c9edd2ee956c37a4df7d6e6df37ab58f6f7
5
5
  SHA512:
6
- metadata.gz: 231ff31c2487ad8f1133569b6340fcd29771e71700f9354ae3b39fca60d0cfb1d0df371e062e726c6d5470c079871639b76f3977e2c88f3fd28ef21a3c47cac2
7
- data.tar.gz: cecae5e003e5081a0d638fbe841692da4c3324ad15c7a6b9ab9c0b3dfbf02e30f7941f7bec1bdd8a1d1446eb7c2eaffbc640e6c4ec3a434bfccc73bc3cbc1cf6
6
+ metadata.gz: 4a5f629fd743f3fd2ae3e7a9a26b3d7aee98c283afce3a813c0cc1de71239b5bace6ef38c6c021ff6191641f269f657974d3eed37d4a8bab4c722268be79e77e
7
+ data.tar.gz: 9fa5ae878dd72292f46bae664958427e145ccd005d65290da728c623340ca0a1c2453620d9d5370b2a505baab4547b1f5038e7035e8a017cd9c4617088c802ac
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.33.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.32.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.31.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.31.0
1
+ 1.33.0
@@ -5020,7 +5020,7 @@ module Aws::WellArchitected
5020
5020
  params: params,
5021
5021
  config: config)
5022
5022
  context[:gem_name] = 'aws-sdk-wellarchitected'
5023
- context[:gem_version] = '1.31.0'
5023
+ context[:gem_version] = '1.33.0'
5024
5024
  Seahorse::Client::Request.new(handlers, context)
5025
5025
  end
5026
5026
 
@@ -14,6 +14,7 @@ module Aws::WellArchitected
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::WellArchitected::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::WellArchitected
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-wellarchitected/customizations'
52
52
  # @!group service
53
53
  module Aws::WellArchitected
54
54
 
55
- GEM_VERSION = '1.31.0'
55
+ GEM_VERSION = '1.33.0'
56
56
 
57
57
  end