aws-sdk-directconnect 1.67.0 → 1.69.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: f95562818dda498b94d2e8783c73489b7a94aed8b7c47288c8f1c302bb65e616
4
- data.tar.gz: ed0f4262be86917c9e93d175a134ce7fdc677ab4f02bc4c30edfc32c2ee11ba1
3
+ metadata.gz: 81fddcaf3ae5a9fe59279225ba1ddb96446423e7a7e927a9bd7aec1e1b2e0263
4
+ data.tar.gz: c7c9e1b565bc4acefeebe71853388578786dbf9d28e7af581327ca032df76e8b
5
5
  SHA512:
6
- metadata.gz: e1cac2790569c994b38f9ea5f003d049eb8fa24e255455cee2291f97d773c13447df7eece5f987795e4fffed2d86339ce2aacee7416db5b3060e54a70758a06e
7
- data.tar.gz: 29bb0326de550f126e5ff1f754b4eed71d96701c51e9ec966d4acef6277fb20ef4f0a6f8735ce4948525e695d030e6a6d74c42a4ec14e53c090b098227414038
6
+ metadata.gz: 456296e066ccf70f9a78671c4c27d6d9decebc4766b06212b7fcde745403812275e769395f93e22f1e4cbd58d7ad9bea529976545b85717644dc06c985902c37
7
+ data.tar.gz: f3439fb449465c591e3a95decd2395d073a0cc3bef6887cf58d962c9c862ebfc1a34d905174456dff9fb7a929bb13304ace9aadc61dbcf7d4cf557bc1ba53fb3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.69.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.68.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.67.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.69.0
@@ -4927,7 +4927,7 @@ module Aws::DirectConnect
4927
4927
  params: params,
4928
4928
  config: config)
4929
4929
  context[:gem_name] = 'aws-sdk-directconnect'
4930
- context[:gem_version] = '1.67.0'
4930
+ context[:gem_version] = '1.69.0'
4931
4931
  Seahorse::Client::Request.new(handlers, context)
4932
4932
  end
4933
4933
 
@@ -14,6 +14,7 @@ module Aws::DirectConnect
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::DirectConnect::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::DirectConnect
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-directconnect/customizations'
52
52
  # @!group service
53
53
  module Aws::DirectConnect
54
54
 
55
- GEM_VERSION = '1.67.0'
55
+ GEM_VERSION = '1.69.0'
56
56
 
57
57
  end