aws-sdk-proton 1.32.0 → 1.34.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: 690200c2bf1924f98af2183bacededd690f8cec49a6a0d2dde0fbc552bc688f1
4
- data.tar.gz: 9a26a49d61ebd324e7a7073194677e47afe7f1f1980737ca15c3551b6d0aef1c
3
+ metadata.gz: d6e9d68e7f2b42aa4e060910cda4a24d582507768ce96558f696045d932ecb08
4
+ data.tar.gz: 4ec879945077ff1e8cf46251ca9db4b83a27c7632f7b65afed3b70817d4b7a35
5
5
  SHA512:
6
- metadata.gz: 783f190ac329b9aa611802f7b348addfeef3af48f6fbceb05a568f0ca09b9c32bae070d670075ecb2df2ef8e77fd894f41cf7205260d682ec5e73b5a056a241a
7
- data.tar.gz: e62087825e001a40be38fc13092b1a8ebaf5bee5dee28a341989290b340aa7b7ef8738bb6da1e2eee8a5c2ccfb4e63b481b385bf46f83d152e62021131eaf032
6
+ metadata.gz: 21426a737a808709d1c8f95d7a3ce14e682b2e921faa62bcab7b1a140651e8f944a583e305e500b88bc2211b5314fd3056667412e0b16d387dbfcb40013940c7
7
+ data.tar.gz: 897558a4e5069d3cee31ee534a5a10edcbbbeddeb1f3cf5749393032d8a6fcb1733ad3290b3d734a731395179f9fce71e3c17f5aa2915d3230146df12271b161
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.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.33.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.32.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.0
1
+ 1.34.0
@@ -6096,7 +6096,7 @@ module Aws::Proton
6096
6096
  params: params,
6097
6097
  config: config)
6098
6098
  context[:gem_name] = 'aws-sdk-proton'
6099
- context[:gem_version] = '1.32.0'
6099
+ context[:gem_version] = '1.34.0'
6100
6100
  Seahorse::Client::Request.new(handlers, context)
6101
6101
  end
6102
6102
 
@@ -14,6 +14,7 @@ module Aws::Proton
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Proton::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::Proton
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-proton/customizations'
53
53
  # @!group service
54
54
  module Aws::Proton
55
55
 
56
- GEM_VERSION = '1.32.0'
56
+ GEM_VERSION = '1.34.0'
57
57
 
58
58
  end