aws-sdk-lookoutmetrics 1.32.0 → 1.34.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: eb8c8fbd7ceb841b5fb3ea57ceeb77e715d07cb6b4a231a5d605c6a863c8337b
4
- data.tar.gz: 0bf77bad26c188ef7dc94c08e9a165a964e392d6c791022f94a4f0272678fd07
3
+ metadata.gz: f30e28c10948d22bce72f1c98171ab74a742e10b44d89341908854d5eb6a9fb2
4
+ data.tar.gz: '084bbb5e35a9f3e0ce956358af9683fcafc4048d2aa5fbec7e4da0c9ad9c71ae'
5
5
  SHA512:
6
- metadata.gz: ab61d16377c8366d9c02753d562331a5c76d4593ba7e567af4119f14f9194e376c946bdeca0908bde6d99f44d55436152d5c1e9b163b5db128578ed3d725072d
7
- data.tar.gz: 55f8b2c967d944d3a8f06ed7d6519cb9ce94f6ba4e61392bba7ab769b9b596d0d9f06e3c69cfd2a0ed9e5eba019c49eb6e9bc50cde5b0810837244ba3275e13e
6
+ metadata.gz: 52d1d380294d214f75ed1dd611b600e4649d483f50e21c5596c979c5d339771fbc93b1bfb8aad0c5c98fa1c83cd3e5d7335149c1595a31c716a82fcf118ee34b
7
+ data.tar.gz: 86c85ce68843ed596afe3efd5ce0cca44f1d5045bdd50f69ba74775823e010e6411d19638f9d2c97bad898e8d51af1e322327e8feedc326f6571557a1457784e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.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.33.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.32.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.32.0
1
+ 1.34.0
@@ -2051,7 +2051,7 @@ module Aws::LookoutMetrics
2051
2051
  params: params,
2052
2052
  config: config)
2053
2053
  context[:gem_name] = 'aws-sdk-lookoutmetrics'
2054
- context[:gem_version] = '1.32.0'
2054
+ context[:gem_version] = '1.34.0'
2055
2055
  Seahorse::Client::Request.new(handlers, context)
2056
2056
  end
2057
2057
 
@@ -14,6 +14,7 @@ module Aws::LookoutMetrics
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::LookoutMetrics::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::LookoutMetrics
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-lookoutmetrics/customizations'
52
52
  # @!group service
53
53
  module Aws::LookoutMetrics
54
54
 
55
- GEM_VERSION = '1.32.0'
55
+ GEM_VERSION = '1.34.0'
56
56
 
57
57
  end