aws-sdk-licensemanager 1.52.0 → 1.54.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: d1c009d418a94f5983e5e34b7aef7ca03c74636962697180c3ec890ded25aaae
4
- data.tar.gz: 5a238609a4411726ac836db22264abebe4bdcf1faed90766b5ef99ddefbf97cb
3
+ metadata.gz: 982cfdacd3d85759149f9c639fcb2fe026ed42ddf14a354f38302b7d54933f7d
4
+ data.tar.gz: 75ca5b3432924f24e692a8da96ded7a493ce09b4dceb69fb59f9265660ea6c1e
5
5
  SHA512:
6
- metadata.gz: bf1384520bc58a1c70767119f5a2907cf0c5c1bc4b83771a6201b9f2b30db1fee430bbe05b43d0c9c741bfdc0aee34871a62db1f175676aab8a9821ad822a7cc
7
- data.tar.gz: f2a922a39d4b6765a3a5d85c9c9bac8bf85b22f2c3e07453d99d4f9f7bb9d43f34ff6f45a3117e0642b2839d1a886a6b2e49cdeef7f6f5cdf9c4965cf1ec9cca
6
+ metadata.gz: af37eeb2cb16b43571ca3d744dcb906f19c81f011aac4d15e01c50eda8f7ead98198516e6f33e36253e05b38c6b2b8e9e5fc9017cf6e3cca7a6a6f33a1cc22d3
7
+ data.tar.gz: a1cc3b723b232e09d05adc9514f7fc0ac7573512517ad46978c896a51a7ac0eaaaaf06aee1f98f1a2e1097ce355f4a08c55ec37465da9cba62df5e75153e909d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.54.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.53.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.52.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.54.0
@@ -3217,7 +3217,7 @@ module Aws::LicenseManager
3217
3217
  params: params,
3218
3218
  config: config)
3219
3219
  context[:gem_name] = 'aws-sdk-licensemanager'
3220
- context[:gem_version] = '1.52.0'
3220
+ context[:gem_version] = '1.54.0'
3221
3221
  Seahorse::Client::Request.new(handlers, context)
3222
3222
  end
3223
3223
 
@@ -14,6 +14,7 @@ module Aws::LicenseManager
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::LicenseManager::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::LicenseManager
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-licensemanager/customizations'
52
52
  # @!group service
53
53
  module Aws::LicenseManager
54
54
 
55
- GEM_VERSION = '1.52.0'
55
+ GEM_VERSION = '1.54.0'
56
56
 
57
57
  end