aws-sdk-wafv2 1.86.0 → 1.88.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-wafv2/client.rb +10 -1
- data/lib/aws-sdk-wafv2/types.rb +13 -9
- data/lib/aws-sdk-wafv2.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0ee4e62e214279aba0ce10467a3e74a178cac301f4e93cd634950a716c84349
|
4
|
+
data.tar.gz: 0ba616b70ca5bd2996d98e256b75f1cdbb8a59598f008c3650def32fd7977c63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf4a29f30e508500c03544ea7de1b8fceef88d32c595133fbb76f6bf1f5667c0b1d46166534216ff0fc0e647773e2389b31bbbb182e5de0761c5f96acc562aeb
|
7
|
+
data.tar.gz: e29e3aa739aa7828b583e12dd8d879958a83911ca1322b25870dc4dd2eefdd73e8a2855eca0218f9ae8e8906d4a29d5b64aaff22bfe8be840cee1ec2285a5e9d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.88.0 (2024-07-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.87.0 (2024-07-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - JSON body inspection: Update documentation to clarify that JSON parsing doesn't include full validation.
|
13
|
+
|
4
14
|
1.86.0 (2024-06-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.88.0
|
data/lib/aws-sdk-wafv2/client.rb
CHANGED
@@ -312,6 +312,15 @@ module Aws::WAFV2
|
|
312
312
|
#
|
313
313
|
# @option options [String] :session_token
|
314
314
|
#
|
315
|
+
# @option options [Array] :sigv4a_signing_region_set
|
316
|
+
# A list of regions that should be signed with SigV4a signing. When
|
317
|
+
# not passed, a default `:sigv4a_signing_region_set` is searched for
|
318
|
+
# in the following locations:
|
319
|
+
#
|
320
|
+
# * `Aws.config[:sigv4a_signing_region_set]`
|
321
|
+
# * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
|
322
|
+
# * `~/.aws/config`
|
323
|
+
#
|
315
324
|
# @option options [Boolean] :simple_json (false)
|
316
325
|
# Disables request parameter conversion, validation, and formatting.
|
317
326
|
# Also disables response data type conversions. The request parameters
|
@@ -9184,7 +9193,7 @@ module Aws::WAFV2
|
|
9184
9193
|
params: params,
|
9185
9194
|
config: config)
|
9186
9195
|
context[:gem_name] = 'aws-sdk-wafv2'
|
9187
|
-
context[:gem_version] = '1.
|
9196
|
+
context[:gem_version] = '1.88.0'
|
9188
9197
|
Seahorse::Client::Request.new(handlers, context)
|
9189
9198
|
end
|
9190
9199
|
|
data/lib/aws-sdk-wafv2/types.rb
CHANGED
@@ -4084,6 +4084,13 @@ module Aws::WAFV2
|
|
4084
4084
|
# Example JSON: `"JsonBody": \{ "MatchPattern": \{ "All": \{\} \},
|
4085
4085
|
# "MatchScope": "ALL" \}`
|
4086
4086
|
#
|
4087
|
+
# For additional information about this request component option, see
|
4088
|
+
# [JSON body][1] in the *WAF Developer Guide*.
|
4089
|
+
#
|
4090
|
+
#
|
4091
|
+
#
|
4092
|
+
# [1]: https://docs.aws.amazon.com/waf/latest/developerguide/waf-rule-statement-fields-list.html#waf-rule-statement-request-component-json-body
|
4093
|
+
#
|
4087
4094
|
# @!attribute [rw] match_pattern
|
4088
4095
|
# The patterns to look for in the JSON body. WAF inspects the results
|
4089
4096
|
# of these pattern matches against the rule inspection criteria.
|
@@ -4118,19 +4125,16 @@ module Aws::WAFV2
|
|
4118
4125
|
# If you don't provide this setting, WAF parses and evaluates the
|
4119
4126
|
# content only up to the first parsing failure that it encounters.
|
4120
4127
|
#
|
4121
|
-
# WAF
|
4122
|
-
#
|
4123
|
-
#
|
4124
|
-
#
|
4128
|
+
# <note markdown="1"> WAF parsing doesn't fully validate the input JSON string, so
|
4129
|
+
# parsing can succeed even for invalid JSON. When parsing succeeds,
|
4130
|
+
# WAF doesn't apply the fallback behavior. For more information, see
|
4131
|
+
# [JSON body][1] in the *WAF Developer Guide*.
|
4125
4132
|
#
|
4126
|
-
#
|
4127
|
-
# value pairs:
|
4133
|
+
# </note>
|
4128
4134
|
#
|
4129
|
-
# * Missing comma: `\{"key1":"value1""key2":"value2"\}`
|
4130
4135
|
#
|
4131
|
-
# * Missing colon: `\{"key1":"value1","key2""value2"\}`
|
4132
4136
|
#
|
4133
|
-
#
|
4137
|
+
# [1]: https://docs.aws.amazon.com/waf/latest/developerguide/waf-rule-statement-fields-list.html#waf-rule-statement-request-component-json-body
|
4134
4138
|
# @return [String]
|
4135
4139
|
#
|
4136
4140
|
# @!attribute [rw] oversize_handling
|
data/lib/aws-sdk-wafv2.rb
CHANGED
data/sig/client.rbs
CHANGED
data/sig/resource.rbs
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-wafv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.88.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.201.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.201.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for AWS WAFV2 (WAFV2). This gem is part of the
|
48
48
|
AWS SDK for Ruby.
|
49
49
|
email:
|