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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 44d4404c9d6925e77b68adeb078ac1c23bb38df3dd9af656951660eec739ff60
4
- data.tar.gz: b7126d00ca6cb65759cc06234e54196ca478b07e381e529c01cc2e650dad6a54
3
+ metadata.gz: 33b147da92b383844df2dcdc761f02eb88cec2a8638047f37bddf09ccbad17eb
4
+ data.tar.gz: 8bf9742704a5e300e358cd2a4d10e8afd663dab904be327687c7d439c2e4c6ed
5
5
  SHA512:
6
- metadata.gz: 3dd96cd7f9cdd1d1df8c3e00ab6160e3c282eb6f4eb97b9581b956153f7a342639226b1dedca65fba58e77f53d4c345806cc818f9ae1b1290d81bb9611faa7d9
7
- data.tar.gz: 1be1faad51f19962868ffcb6f5a2f96b4bee8042ff25a3c709a60774de1c1c7a2a0a535a670865b8ea20dfcc12a81f7f0a4a186fa63bf31f5c88f7dddde3711c
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.20.0
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.20.0'
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
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-cloudwatchevidently/customizations'
52
52
  # @!group service
53
53
  module Aws::CloudWatchEvidently
54
54
 
55
- GEM_VERSION = '1.20.0'
55
+ GEM_VERSION = '1.22.0'
56
56
 
57
57
  end