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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-directconnect/client.rb +1 -1
- data/lib/aws-sdk-directconnect/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-directconnect.rb +1 -1
- data/sig/client.rbs +1374 -0
- data/sig/errors.rbs +26 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +986 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81fddcaf3ae5a9fe59279225ba1ddb96446423e7a7e927a9bd7aec1e1b2e0263
|
4
|
+
data.tar.gz: c7c9e1b565bc4acefeebe71853388578786dbf9d28e7af581327ca032df76e8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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
|
|