aws-sdk-networkmanager 1.39.0 → 1.41.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: db229bd0524481faf927e685adf89b068e530f460593b433780959983e459248
4
- data.tar.gz: 9a7d70d9ee30e5e1f7e13f9ea590aa13f99ca09d7aa58f88677657138b247ea7
3
+ metadata.gz: 4a39fb5d0e676b93f6874ecc32ca3e16f546b0088c337c50f17a0e4508c9394b
4
+ data.tar.gz: 355c9f7f5d007d932b330866e8c65cce0b43df06acfbc062b40b78484fe1ac11
5
5
  SHA512:
6
- metadata.gz: 0b5838b9c7feb297259e04e2ad6d31632342741004699599b2fba497814fa7f9aecb86c79ff93daabc185731f42788b4910ab80674d3296899a12bac38be681e
7
- data.tar.gz: b9fb65502a0afe494fafa64a5bbf59c3c7a8de5f95b3a584faa562b11ee296695e30aba67b6fd4c940476915b139c7488dcb20e8599133152ce699fe81a3e6ff
6
+ metadata.gz: 27b272faac3b1ed1e1ae66b6867eccd63e275ae69ed56131856ec4da131d80faf53a45e8e477d36c401dc053fab3d3167f5f6bc92372c5c2bd8dc4f7ca881eaa
7
+ data.tar.gz: 5065a386ba08fe856aa2574a5a7b9c66a02993ee6ff6269da463c9ee8b0aa60a0c47cfda1bc3f54a594d16f6db335d5bfcbe01b2539512c5ec21ad7cea1652f7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.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.40.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.39.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.41.0
@@ -5183,7 +5183,7 @@ module Aws::NetworkManager
5183
5183
  params: params,
5184
5184
  config: config)
5185
5185
  context[:gem_name] = 'aws-sdk-networkmanager'
5186
- context[:gem_version] = '1.39.0'
5186
+ context[:gem_version] = '1.41.0'
5187
5187
  Seahorse::Client::Request.new(handlers, context)
5188
5188
  end
5189
5189
 
@@ -14,6 +14,7 @@ module Aws::NetworkManager
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::NetworkManager::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::NetworkManager
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-networkmanager/customizations'
52
52
  # @!group service
53
53
  module Aws::NetworkManager
54
54
 
55
- GEM_VERSION = '1.39.0'
55
+ GEM_VERSION = '1.41.0'
56
56
 
57
57
  end