aws-sdk-vpclattice 1.9.0 → 1.11.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: 55447f20c06b4c8fb9ccf431e9233cfa5d8932b3dd50daa6c42f6c3411566a0c
4
- data.tar.gz: fedc2b40925a3e7f2c4cf60eea234442bbe386ab153aae14a79dfd36f8d77bc4
3
+ metadata.gz: 419b177bca49bf82ce71ec681dd1e4076f80650c70f38536ad0137366661ad0c
4
+ data.tar.gz: b5dda94052d4d015884df555a57d131646288676a8d423d562bc492c7beddd44
5
5
  SHA512:
6
- metadata.gz: 897c11f33527960c1674c78eb5cda10ed23718ccb1087ef1ac265fc293e3ece2176668d5c126cbb738abe582b328be6d394798a6c9955cf8fb9140721216a05b
7
- data.tar.gz: 1994a52d73cdc192191b1c7ba5a9b12a7c13af37ecb931653b0d4e95d0e10b36d28bf50cf09914e7dab1c12bc726868cb044c7d8d726fc28709b4f6e4ef69672
6
+ metadata.gz: 6f77558141a52c4827bb5f1de39770defde76df0b944e5545771c6a3dfccb27f48fe868c1b86a485cc07ac4c91161da7b12a6a6aa076d67dfc2fb8375928dc5f
7
+ data.tar.gz: 23ed70495c709212a869095ac1f8255178ae0f292268b9c3a4c71a12b9cb35d2921c4b3450762189f515e6aa8dc2ad642b739d85f2ae116bc8bea71a11244ac1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.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.10.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.9.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.11.0
@@ -3206,7 +3206,7 @@ module Aws::VPCLattice
3206
3206
  params: params,
3207
3207
  config: config)
3208
3208
  context[:gem_name] = 'aws-sdk-vpclattice'
3209
- context[:gem_version] = '1.9.0'
3209
+ context[:gem_version] = '1.11.0'
3210
3210
  Seahorse::Client::Request.new(handlers, context)
3211
3211
  end
3212
3212
 
@@ -14,6 +14,7 @@ module Aws::VPCLattice
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::VPCLattice::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::VPCLattice
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-vpclattice/customizations'
52
52
  # @!group service
53
53
  module Aws::VPCLattice
54
54
 
55
- GEM_VERSION = '1.9.0'
55
+ GEM_VERSION = '1.11.0'
56
56
 
57
57
  end