aws-sdk-lexmodelsv2 1.45.0 → 1.47.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: a789153d5d4f334da1e06a833edd6bbbf56930062abc7ad4b05bae82e2df76e4
4
- data.tar.gz: 74983211b84de1a73002fbab7abe56d7bcf604f755e9547ce3bb46608246cc5e
3
+ metadata.gz: c8245aacf13a2e6ba3309b26205f30e16e2ae64604a5ef7ce30fb996b12276f8
4
+ data.tar.gz: 4c8dd32df23441ee704d87452af2d982b3cd7306abb81a3421aa254fdbe4c113
5
5
  SHA512:
6
- metadata.gz: f5532cf5c8551cfe3063cecc0c5a6406b8ebf11a77ca5d42361aaa5c05560014f6c1b1cb9a0989493bf6d24c77ebaab4daee6ec02e5789cd9cb5d94da0217419
7
- data.tar.gz: 28f13fc4f6391fd01596c7024387219b58a2dfee05664bff046e8a088d5cdbe36de2932619418cc39480c780b45a34cfc054f70f439ac9bbedba5651f113295d
6
+ metadata.gz: dddc377cab4caef29e41c2d9cbb33eeee10c403d0b4f00aa7cb97c78a5da589c258c7e613354918edcea56b08690526954f3693eccd21c23d7781fec1f50a766
7
+ data.tar.gz: 9f2ea541bcec0b6a48629bb4423c9a84ba45c872afb82d70b9c09ec0be02d2d48aae2f6956429b96c77464a7a4a969cd3d9ac1deb2c2674c65c53129595fde60
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.47.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.46.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.45.0 (2023-11-27)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.45.0
1
+ 1.47.0
@@ -10055,7 +10055,7 @@ module Aws::LexModelsV2
10055
10055
  params: params,
10056
10056
  config: config)
10057
10057
  context[:gem_name] = 'aws-sdk-lexmodelsv2'
10058
- context[:gem_version] = '1.45.0'
10058
+ context[:gem_version] = '1.47.0'
10059
10059
  Seahorse::Client::Request.new(handlers, context)
10060
10060
  end
10061
10061
 
@@ -14,6 +14,7 @@ module Aws::LexModelsV2
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::LexModelsV2::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::LexModelsV2
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
 
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-lexmodelsv2/customizations'
53
53
  # @!group service
54
54
  module Aws::LexModelsV2
55
55
 
56
- GEM_VERSION = '1.45.0'
56
+ GEM_VERSION = '1.47.0'
57
57
 
58
58
  end