aws-sdk-wafv2 1.136.0 → 1.137.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-wafv2/client.rb +1 -1
- data/lib/aws-sdk-wafv2/types.rb +11 -3
- data/lib/aws-sdk-wafv2.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 49314ff4e8c4fea857d36d09e5746ae2248318140839b69446ed987e21afa352
|
|
4
|
+
data.tar.gz: 3f758618dfa28e603c9d8eb3d9f0e6b7da8fcb5f6732b05b087333d096eba5e6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22789867600557a13338606b0657de0a5c67e2065e5d322c2eb8ed36f771b45bba7b43d0ff56b0cc5e0862a9ebd2a3cc60d9cd68c2cd4a24ee8a3c84734fb10d
|
|
7
|
+
data.tar.gz: '09ca3a2aa64d82c3e05afc9ff0144afe9aff2d81d5f9f7f963720cd747062906dc279f0473f95f116bfb69eef9f206c3c420fc082ba1557e624bb8930d504e74'
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.137.0
|
data/lib/aws-sdk-wafv2/client.rb
CHANGED
data/lib/aws-sdk-wafv2/types.rb
CHANGED
|
@@ -3171,9 +3171,17 @@ module Aws::WAFV2
|
|
|
3171
3171
|
# @return [String]
|
|
3172
3172
|
#
|
|
3173
3173
|
# @!attribute [rw] field_keys
|
|
3174
|
-
# Specifies the keys to protect for the specified field type.
|
|
3175
|
-
#
|
|
3176
|
-
#
|
|
3174
|
+
# Specifies the keys to protect for the specified field type.
|
|
3175
|
+
#
|
|
3176
|
+
# Required for `SINGLE_HEADER`, `SINGLE_COOKIE`, and
|
|
3177
|
+
# `SINGLE_QUERY_ARGUMENT`: provide a non-empty array naming the
|
|
3178
|
+
# specific headers, cookies, or query arguments to protect. There is
|
|
3179
|
+
# no option to protect all keys of these field types, so enumerate
|
|
3180
|
+
# each key you intend to protect.
|
|
3181
|
+
#
|
|
3182
|
+
# Must be omitted for `QUERY_STRING` and `BODY`: the entire component
|
|
3183
|
+
# is protected and these field types take no keys. Supplying
|
|
3184
|
+
# `FieldKeys` for them is rejected.
|
|
3177
3185
|
# @return [Array<String>]
|
|
3178
3186
|
#
|
|
3179
3187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/FieldToProtect AWS API Documentation
|
data/lib/aws-sdk-wafv2.rb
CHANGED