aws-sdk-waf 1.57.0 → 1.59.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: 2c51d161e91fdfe5aeec33f1fab0405a7fad773997f2b9dc7bc8443a919c0585
4
- data.tar.gz: b6e2bdb626797665efc590123c286c107e460a9639a34b460135fdf7d1cd9e60
3
+ metadata.gz: b29d29091b6d09aab12df126bb4f3047da2a4106edd0a1973a4caa36bf77ba52
4
+ data.tar.gz: a0f61c4a2171b553f039e430460c2d3a2e1645fc073be29e7fac44b9ed97f91f
5
5
  SHA512:
6
- metadata.gz: 790350ad9ce94dbd186aa457b43e320795b78511c3d9899c61d49c2d32c5a9beec19333ad8ca940de341a9b4df0de5aa38504377bf76fa7b55c38800c24cbcc1
7
- data.tar.gz: 590efba140f8a2a4423e9bb369cd6c8c2a52abea24f9e9df32e6d2291acab14be3da8953976847d7bb9c49ec67635acdd7bc11bfad1d712af30771a415ab2445
6
+ metadata.gz: 4d4461d614ccf46bce2d102a1105c16230fd98882a85b3a1d09591adabb4c5ca6f6c214776e3c96648d1b44c4e78213f21bef0254b2c84271f44dcc9dc287882
7
+ data.tar.gz: b8a8312ef77e044b5d1460b35dce8cb7e633e1e20ba1ddae065b4ba0f6351f816935892578e66a70d0fa9387dd99ca16df74150d140246832b03ed303f483d75
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.59.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.58.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.57.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.59.0
@@ -6731,7 +6731,7 @@ module Aws::WAF
6731
6731
  params: params,
6732
6732
  config: config)
6733
6733
  context[:gem_name] = 'aws-sdk-waf'
6734
- context[:gem_version] = '1.57.0'
6734
+ context[:gem_version] = '1.59.0'
6735
6735
  Seahorse::Client::Request.new(handlers, context)
6736
6736
  end
6737
6737
 
@@ -14,6 +14,7 @@ module Aws::WAF
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::WAF::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::WAF
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
 
data/lib/aws-sdk-waf.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-waf/customizations'
52
52
  # @!group service
53
53
  module Aws::WAF
54
54
 
55
- GEM_VERSION = '1.57.0'
55
+ GEM_VERSION = '1.59.0'
56
56
 
57
57
  end