aws-sdk-globalaccelerator 1.54.0 → 1.56.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: 4cc328066dcd73a01bde0b2cac5791cc6aae2ec048cb849869c5c68b14c876e8
4
- data.tar.gz: 2af79b296614844a77c5e662ce664581393c3501ab99b49f891d65d94c398c6b
3
+ metadata.gz: 0d01bf15bf32922350c29fdac0ff7f2f23e1b7941ea4688bf30f8f2d6f2115fa
4
+ data.tar.gz: 16b68db376da3c5d0af3de4a045edb55915d2ff4e4cfc4c9ebff6008e24e7d1a
5
5
  SHA512:
6
- metadata.gz: c8ecd8aade7b114b523f3188b9db334a1a8d82af68ec54d68d88d6c657745b5fcaf9c82923936cc8bc0c3a1e44d8f7096bb9243e773a5d87db3f6509d495062d
7
- data.tar.gz: 27e26dad7dabad7758375e35802ae8d9f106a955ade96fb530d370e336933a4542ad608747d6a34aec186de0bed93996b46b917b29516d36a41d5968e6f8417e
6
+ metadata.gz: e61424573903669104d67d0aecea5720248355dc7af2a059418060222a52bf150498e421c9b6c10e32b6bfd0423344c6413b99e6afd1e061c537086c6a7eb47d
7
+ data.tar.gz: 4b5ed1238f71d1c877f3001e07b3fa76d631d2b8322b959a1b9eaac789354c91925292ad7817372339f71d94d4137e07e98af301a42c01cb0e1978bbbdee1a16
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.56.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.55.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.54.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
1
+ 1.56.0
@@ -3531,7 +3531,7 @@ module Aws::GlobalAccelerator
3531
3531
  params: params,
3532
3532
  config: config)
3533
3533
  context[:gem_name] = 'aws-sdk-globalaccelerator'
3534
- context[:gem_version] = '1.54.0'
3534
+ context[:gem_version] = '1.56.0'
3535
3535
  Seahorse::Client::Request.new(handlers, context)
3536
3536
  end
3537
3537
 
@@ -14,6 +14,7 @@ module Aws::GlobalAccelerator
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::GlobalAccelerator::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::GlobalAccelerator
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-globalaccelerator/customizations'
52
52
  # @!group service
53
53
  module Aws::GlobalAccelerator
54
54
 
55
- GEM_VERSION = '1.54.0'
55
+ GEM_VERSION = '1.56.0'
56
56
 
57
57
  end