aws-sdk-wafv2 1.85.0 → 1.87.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: cbfd900d84c042d088e08d26c13703b67c9e8606507719eeffa6eb78cb1004a5
4
- data.tar.gz: bee14f260bc19da79015a95bed204271a90f6c79e82b6f11c358b6a9cfeae3f8
3
+ metadata.gz: a9000e962a0054a547b3b098de60752e1f40d08dcee02f3959dc6d4823492506
4
+ data.tar.gz: 1e37bd0c1c01bf157487beb5d27a2debf82efb5d99d4dd7ec9178c61401200ee
5
5
  SHA512:
6
- metadata.gz: f673ab3db0a11900f0d5ac79b4cc5a11b117769ec3f7d0c6cf2c195db9c6821421b0db96b17458c5dfef3fd97c79d7758003ff46ab59f360c0a3bd0fdb02e82d
7
- data.tar.gz: dd4bd9be68d174f7a9f93881c84998338a0fa49a21f3157970c8e380dd9355c45ecc14bb8876050f9bcd8cc4f8de8f477e6153353eabc24f8124a315e796a9ec
6
+ metadata.gz: c50dd71e9d58922307950f2c003230bb7cd60f17e414e098e3cca30cf9edb75862233e73f5c7e0e41335189914bbdb989b54e642b083569b3fc9c762527d6d54
7
+ data.tar.gz: aaa46988041f1b43b4cfbdcbba1c31fe65c65859d70eec19688493f3d111e5b27def69fa8920614b6921bebd8bfbbd5f4a805376d43426c1b127a005b4f75938
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.87.0 (2024-07-01)
5
+ ------------------
6
+
7
+ * Feature - JSON body inspection: Update documentation to clarify that JSON parsing doesn't include full validation.
8
+
9
+ 1.86.0 (2024-06-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.85.0 (2024-06-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.85.0
1
+ 1.87.0
@@ -9184,7 +9184,7 @@ module Aws::WAFV2
9184
9184
  params: params,
9185
9185
  config: config)
9186
9186
  context[:gem_name] = 'aws-sdk-wafv2'
9187
- context[:gem_version] = '1.85.0'
9187
+ context[:gem_version] = '1.87.0'
9188
9188
  Seahorse::Client::Request.new(handlers, context)
9189
9189
  end
9190
9190
 
@@ -1708,6 +1708,7 @@ module Aws::WAFV2
1708
1708
 
1709
1709
  api.metadata = {
1710
1710
  "apiVersion" => "2019-07-29",
1711
+ "auth" => ["aws.auth#sigv4"],
1711
1712
  "endpointPrefix" => "wafv2",
1712
1713
  "jsonVersion" => "1.1",
1713
1714
  "protocol" => "json",
@@ -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 does its best to parse the entire JSON body, but might be forced
4122
- # to stop for reasons such as invalid characters, duplicate keys,
4123
- # truncation, and any content whose root node isn't an object or an
4124
- # array.
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
- # WAF parses the JSON in the following examples as two valid key,
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
- # * Extra colons: `\{"key1"::"value1","key2""value2"\}`
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-wafv2/customizations'
52
52
  # @!group service
53
53
  module Aws::WAFV2
54
54
 
55
- GEM_VERSION = '1.85.0'
55
+ GEM_VERSION = '1.87.0'
56
56
 
57
57
  end
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.85.0
4
+ version: 1.87.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-06-25 00:00:00.000000000 Z
11
+ date: 2024-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core