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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f1cee044d170d16f772da6098767c2d38118dc6557f8d2a500cdbc6f8d43e7a
4
- data.tar.gz: 9a22fa69b4213d9182513582f40fa38a603bcb5e1b020447861833ff7b12f39b
3
+ metadata.gz: c0ee4e62e214279aba0ce10467a3e74a178cac301f4e93cd634950a716c84349
4
+ data.tar.gz: 0ba616b70ca5bd2996d98e256b75f1cdbb8a59598f008c3650def32fd7977c63
5
5
  SHA512:
6
- metadata.gz: ee629eb716b656a3dfa38d03c9c49cf6732d828a6fa9b9a7a62e8932551d4cb23574d87ebc55fd650dfc31979aedc80333d82427881aa1f13c773b58bfa50161
7
- data.tar.gz: 5bf894d1df878e6b26ee2c13e106ab9299ef89d41f27eb4480a8f7da29e54193e6da79dc49c9b97af4afd7fd9a37cb4d56411f3dd3322a40bde5160c4c78aabc
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.86.0
1
+ 1.88.0
@@ -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.86.0'
9196
+ context[:gem_version] = '1.88.0'
9188
9197
  Seahorse::Client::Request.new(handlers, context)
9189
9198
  end
9190
9199
 
@@ -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.86.0'
55
+ GEM_VERSION = '1.88.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?simple_json: bool,
52
53
  ?stub_responses: untyped,
53
54
  ?token_provider: untyped,
data/sig/resource.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?simple_json: bool,
52
53
  ?stub_responses: untyped,
53
54
  ?token_provider: untyped,
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.86.0
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-06-28 00:00:00.000000000 Z
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.199.0
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.199.0
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.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.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: