aws-sdk-cloudwatchevidently 1.20.0 → 1.22.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudwatchevidently/client.rb +1 -1
- data/lib/aws-sdk-cloudwatchevidently/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-cloudwatchevidently.rb +1 -1
- data/sig/client.rbs +719 -0
- data/sig/errors.rbs +52 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +943 -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: 33b147da92b383844df2dcdc761f02eb88cec2a8638047f37bddf09ccbad17eb
|
4
|
+
data.tar.gz: 8bf9742704a5e300e358cd2a4d10e8afd663dab904be327687c7d439c2e4c6ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3c2633aae4394963d4c97ad017a71b2fdec3e684afea2acd2be641d5ce36c8ad4bab46a71b38d213d1687e8c9d5f514b1a93ca55782669d19c06ed5b5d9caa0
|
7
|
+
data.tar.gz: b9098fda94d97fac60fe53473a858e80d4d36a751a15d00bbf2f2db6ee13384162c426ee7a956205b2e716fa8e436aa52ee906c887e72138345cc8a82181ce8a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.22.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.21.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.20.0 (2023-11-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.22.0
|
@@ -3139,7 +3139,7 @@ module Aws::CloudWatchEvidently
|
|
3139
3139
|
params: params,
|
3140
3140
|
config: config)
|
3141
3141
|
context[:gem_name] = 'aws-sdk-cloudwatchevidently'
|
3142
|
-
context[:gem_version] = '1.
|
3142
|
+
context[:gem_version] = '1.22.0'
|
3143
3143
|
Seahorse::Client::Request.new(handlers, context)
|
3144
3144
|
end
|
3145
3145
|
|
@@ -14,6 +14,7 @@ module Aws::CloudWatchEvidently
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::CloudWatchEvidently::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::CloudWatchEvidently
|
|
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
|
|