aws-sdk-waf 1.76.0 → 1.78.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: ee10af1ae005094f316a7349c7952fbd6c045876dbce2de7db69be5cc973683f
4
- data.tar.gz: 0b6a9358fff032a1f36f03e38bebdebdce8b2229f38855ed29d645304c004659
3
+ metadata.gz: a59c0f98c431b3f5fc857f9135182b862ece27e9431b3509aac3e595935a7d35
4
+ data.tar.gz: 2c66a8e1c42770e0bb7a0758886c0d6a51108945ff3f9c686479b84dd967936a
5
5
  SHA512:
6
- metadata.gz: 5e353c53b5d39b42b26fe28b5337911ad55500ae48ca87992c7fe4fe0e9b960c8e821172445e966b54a8eabd8198a147f051964fc8a6f39f00e95d948ae4d2e4
7
- data.tar.gz: 92a1d86eecbcd9890d4629ef5b083bd6eafcaedf389c00dc728a687b64c558c52199b70592115be695642dd15f804984a08f085d05c9bb843541aa1863a5f795
6
+ metadata.gz: bc352a5d696ff8a0f9592c2c747da838e0189108d26d5dda6c3b732f54dd0085d184dcb6e05a1c4b664b13977607e2d931ae9d6a844841a12347f63c62d06674
7
+ data.tar.gz: 2d58fffa514550785303765a01fc95d72c50cf70b31d14bef19e79b5ac0b701cfbb9cdd4e46af42217f7ef28a178ed8396e8e909b2fa6e2a32506273c11b749f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.78.0 (2025-05-12)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.77.0 (2025-05-01)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.76.0 (2025-02-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.76.0
1
+ 1.78.0
@@ -200,8 +200,7 @@ module Aws::WAF
200
200
  # accepted modes and the configuration defaults that are included.
201
201
  #
202
202
  # @option options [Boolean] :disable_host_prefix_injection (false)
203
- # Set to true to disable SDK automatically adding host prefix
204
- # to default service endpoint when available.
203
+ # When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
205
204
  #
206
205
  # @option options [Boolean] :disable_request_compression (false)
207
206
  # When set to 'true' the request body will not be compressed
@@ -6815,7 +6814,7 @@ module Aws::WAF
6815
6814
  tracer: tracer
6816
6815
  )
6817
6816
  context[:gem_name] = 'aws-sdk-waf'
6818
- context[:gem_version] = '1.76.0'
6817
+ context[:gem_version] = '1.78.0'
6819
6818
  Seahorse::Client::Request.new(handlers, context)
6820
6819
  end
6821
6820
 
@@ -22,10 +22,10 @@ module Aws::WAF
22
22
  if Aws::Endpoints::Matchers.set?(parameters.region)
23
23
  if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
24
24
  if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
25
- return Aws::Endpoints::Endpoint.new(url: "https://waf.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"waf", "signingRegion"=>"us-east-1"}]})
25
+ return Aws::Endpoints::Endpoint.new(url: "https://waf.amazonaws.com", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingName" => "waf", "signingRegion" => "us-east-1"}]})
26
26
  end
27
27
  if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
28
- return Aws::Endpoints::Endpoint.new(url: "https://waf-fips.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"waf", "signingRegion"=>"us-east-1"}]})
28
+ return Aws::Endpoints::Endpoint.new(url: "https://waf-fips.amazonaws.com", headers: {}, properties: {"authSchemes" => [{"name" => "sigv4", "signingName" => "waf", "signingRegion" => "us-east-1"}]})
29
29
  end
30
30
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
31
31
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
data/lib/aws-sdk-waf.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::WAF
54
54
  autoload :EndpointProvider, 'aws-sdk-waf/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-waf/endpoints'
56
56
 
57
- GEM_VERSION = '1.76.0'
57
+ GEM_VERSION = '1.78.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-waf
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.76.0
4
+ version: 1.78.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-02-18 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: aws-sdk-core
@@ -77,7 +76,6 @@ licenses:
77
76
  metadata:
78
77
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-waf
79
78
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-waf/CHANGELOG.md
80
- post_install_message:
81
79
  rdoc_options: []
82
80
  require_paths:
83
81
  - lib
@@ -92,8 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
90
  - !ruby/object:Gem::Version
93
91
  version: '0'
94
92
  requirements: []
95
- rubygems_version: 3.4.10
96
- signing_key:
93
+ rubygems_version: 3.6.7
97
94
  specification_version: 4
98
95
  summary: AWS SDK for Ruby - WAF
99
96
  test_files: []