aws-sdk-wafv2 1.71.0 → 1.72.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 +175 -71
- data/lib/aws-sdk-wafv2/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-wafv2/types.rb +27 -7
- data/lib/aws-sdk-wafv2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 667eb0c7becd2a1a7a54f79947025353b7e9bce0491d8363a7ececbf87643bda
|
|
4
|
+
data.tar.gz: 40af3093da425f3127efa326e50994b8bcb6e6b02467a4165bc60252a91eb5a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d1639fd9b0f249643a2f484f02eb0f1724c531a25327d1f84c8c5cb527e07017b89aaebf3b72c5de847c55424f1013c0f6870b9c2ed98eec3c97f88f7d00376
|
|
7
|
+
data.tar.gz: e085a883e262bae5d4e47b9f11b1648cba050194679d68a024d8b4e55e1eac5a46dbeddec169adcc4173177997e77ee1b424250c3bc56c5be6e252a17f3d335e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.72.0 (2023-10-27)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Updates the descriptions for the calls that manage web ACL associations, to provide information for customer-managed IAM policies.
|
|
8
|
+
|
|
4
9
|
1.71.0 (2023-09-28)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.72.0
|
data/lib/aws-sdk-wafv2/client.rb
CHANGED
|
@@ -410,23 +410,41 @@ module Aws::WAFV2
|
|
|
410
410
|
# Resource Name (ARN) of the web ACL. For information, see
|
|
411
411
|
# [UpdateDistribution][1] in the *Amazon CloudFront Developer Guide*.
|
|
412
412
|
#
|
|
413
|
-
#
|
|
414
|
-
#
|
|
415
|
-
#
|
|
416
|
-
#
|
|
417
|
-
#
|
|
418
|
-
#
|
|
419
|
-
#
|
|
420
|
-
#
|
|
421
|
-
#
|
|
422
|
-
#
|
|
423
|
-
#
|
|
424
|
-
#
|
|
425
|
-
#
|
|
413
|
+
# **Required permissions for customer-managed IAM policies**
|
|
414
|
+
#
|
|
415
|
+
# This call requires permissions that are specific to the protected
|
|
416
|
+
# resource type. For details, see [Permissions for AssociateWebACL][2]
|
|
417
|
+
# in the *WAF Developer Guide*.
|
|
418
|
+
#
|
|
419
|
+
# **Temporary inconsistencies during updates**
|
|
420
|
+
#
|
|
421
|
+
# When you create or change a web ACL or other WAF resources, the
|
|
422
|
+
# changes take a small amount of time to propagate to all areas where
|
|
423
|
+
# the resources are stored. The propagation time can be from a few
|
|
424
|
+
# seconds to a number of minutes.
|
|
425
|
+
#
|
|
426
|
+
# The following are examples of the temporary inconsistencies that you
|
|
427
|
+
# might notice during change propagation:
|
|
428
|
+
#
|
|
429
|
+
# * After you create a web ACL, if you try to associate it with a
|
|
430
|
+
# resource, you might get an exception indicating that the web ACL is
|
|
431
|
+
# unavailable.
|
|
432
|
+
#
|
|
433
|
+
# * After you add a rule group to a web ACL, the new rule group rules
|
|
434
|
+
# might be in effect in one area where the web ACL is used and not in
|
|
435
|
+
# another.
|
|
436
|
+
#
|
|
437
|
+
# * After you change a rule action setting, you might see the old action
|
|
438
|
+
# in some places and the new action in others.
|
|
439
|
+
#
|
|
440
|
+
# * After you add an IP address to an IP set that is in use in a
|
|
441
|
+
# blocking rule, the new address might be blocked in one area while
|
|
442
|
+
# still allowed in another.
|
|
426
443
|
#
|
|
427
444
|
#
|
|
428
445
|
#
|
|
429
446
|
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_UpdateDistribution.html
|
|
447
|
+
# [2]: https://docs.aws.amazon.com/waf/latest/developerguide/security_iam_service-with-iam.html#security_iam_action-AssociateWebACL
|
|
430
448
|
#
|
|
431
449
|
# @option params [required, String] :web_acl_arn
|
|
432
450
|
# The Amazon Resource Name (ARN) of the web ACL that you want to
|
|
@@ -4138,9 +4156,16 @@ module Aws::WAFV2
|
|
|
4138
4156
|
# `UpdateDistribution`. For information, see [UpdateDistribution][1] in
|
|
4139
4157
|
# the *Amazon CloudFront API Reference*.
|
|
4140
4158
|
#
|
|
4159
|
+
# **Required permissions for customer-managed IAM policies**
|
|
4160
|
+
#
|
|
4161
|
+
# This call requires permissions that are specific to the protected
|
|
4162
|
+
# resource type. For details, see [Permissions for
|
|
4163
|
+
# DisassociateWebACL][2] in the *WAF Developer Guide*.
|
|
4164
|
+
#
|
|
4141
4165
|
#
|
|
4142
4166
|
#
|
|
4143
4167
|
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_UpdateDistribution.html
|
|
4168
|
+
# [2]: https://docs.aws.amazon.com/waf/latest/developerguide/security_iam_service-with-iam.html#security_iam_action-DisassociateWebACL
|
|
4144
4169
|
#
|
|
4145
4170
|
# @option params [required, String] :resource_arn
|
|
4146
4171
|
# The Amazon Resource Name (ARN) of the resource to disassociate from
|
|
@@ -5285,6 +5310,27 @@ module Aws::WAFV2
|
|
|
5285
5310
|
|
|
5286
5311
|
# Retrieves the WebACL for the specified resource.
|
|
5287
5312
|
#
|
|
5313
|
+
# This call uses `GetWebACL`, to verify that your account has permission
|
|
5314
|
+
# to access the retrieved web ACL. If you get an error that indicates
|
|
5315
|
+
# that your account isn't authorized to perform `wafv2:GetWebACL` on
|
|
5316
|
+
# the resource, that error won't be included in your CloudTrail event
|
|
5317
|
+
# history.
|
|
5318
|
+
#
|
|
5319
|
+
# For Amazon CloudFront, don't use this call. Instead, call the
|
|
5320
|
+
# CloudFront action `GetDistributionConfig`. For information, see
|
|
5321
|
+
# [GetDistributionConfig][1] in the *Amazon CloudFront API Reference*.
|
|
5322
|
+
#
|
|
5323
|
+
# **Required permissions for customer-managed IAM policies**
|
|
5324
|
+
#
|
|
5325
|
+
# This call requires permissions that are specific to the protected
|
|
5326
|
+
# resource type. For details, see [Permissions for
|
|
5327
|
+
# GetWebACLForResource][2] in the *WAF Developer Guide*.
|
|
5328
|
+
#
|
|
5329
|
+
#
|
|
5330
|
+
#
|
|
5331
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_GetDistributionConfig.html
|
|
5332
|
+
# [2]: https://docs.aws.amazon.com/waf/latest/developerguide/security_iam_service-with-iam.html#security_iam_action-GetWebACLForResource
|
|
5333
|
+
#
|
|
5288
5334
|
# @option params [required, String] :resource_arn
|
|
5289
5335
|
# The Amazon Resource Name (ARN) of the resource whose web ACL you want
|
|
5290
5336
|
# to retrieve.
|
|
@@ -5894,9 +5940,23 @@ module Aws::WAFV2
|
|
|
5894
5940
|
end
|
|
5895
5941
|
|
|
5896
5942
|
# Retrieves an array of the Amazon Resource Names (ARNs) for the
|
|
5897
|
-
# regional resources that are associated with the specified web ACL.
|
|
5898
|
-
#
|
|
5899
|
-
# call
|
|
5943
|
+
# regional resources that are associated with the specified web ACL.
|
|
5944
|
+
#
|
|
5945
|
+
# For Amazon CloudFront, don't use this call. Instead, use the
|
|
5946
|
+
# CloudFront call `ListDistributionsByWebACLId`. For information, see
|
|
5947
|
+
# [ListDistributionsByWebACLId][1] in the *Amazon CloudFront API
|
|
5948
|
+
# Reference*.
|
|
5949
|
+
#
|
|
5950
|
+
# **Required permissions for customer-managed IAM policies**
|
|
5951
|
+
#
|
|
5952
|
+
# This call requires permissions that are specific to the protected
|
|
5953
|
+
# resource type. For details, see [Permissions for
|
|
5954
|
+
# ListResourcesForWebACL][2] in the *WAF Developer Guide*.
|
|
5955
|
+
#
|
|
5956
|
+
#
|
|
5957
|
+
#
|
|
5958
|
+
# [1]: https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ListDistributionsByWebACLId.html
|
|
5959
|
+
# [2]: https://docs.aws.amazon.com/waf/latest/developerguide/security_iam_service-with-iam.html#security_iam_action-ListResourcesForWebACL
|
|
5900
5960
|
#
|
|
5901
5961
|
# @option params [required, String] :web_acl_arn
|
|
5902
5962
|
# The Amazon Resource Name (ARN) of the web ACL.
|
|
@@ -6570,19 +6630,30 @@ module Aws::WAFV2
|
|
|
6570
6630
|
#
|
|
6571
6631
|
# </note>
|
|
6572
6632
|
#
|
|
6573
|
-
#
|
|
6574
|
-
#
|
|
6575
|
-
#
|
|
6576
|
-
#
|
|
6577
|
-
#
|
|
6578
|
-
#
|
|
6579
|
-
#
|
|
6580
|
-
#
|
|
6581
|
-
#
|
|
6582
|
-
#
|
|
6583
|
-
#
|
|
6584
|
-
#
|
|
6585
|
-
#
|
|
6633
|
+
# **Temporary inconsistencies during updates**
|
|
6634
|
+
#
|
|
6635
|
+
# When you create or change a web ACL or other WAF resources, the
|
|
6636
|
+
# changes take a small amount of time to propagate to all areas where
|
|
6637
|
+
# the resources are stored. The propagation time can be from a few
|
|
6638
|
+
# seconds to a number of minutes.
|
|
6639
|
+
#
|
|
6640
|
+
# The following are examples of the temporary inconsistencies that you
|
|
6641
|
+
# might notice during change propagation:
|
|
6642
|
+
#
|
|
6643
|
+
# * After you create a web ACL, if you try to associate it with a
|
|
6644
|
+
# resource, you might get an exception indicating that the web ACL is
|
|
6645
|
+
# unavailable.
|
|
6646
|
+
#
|
|
6647
|
+
# * After you add a rule group to a web ACL, the new rule group rules
|
|
6648
|
+
# might be in effect in one area where the web ACL is used and not in
|
|
6649
|
+
# another.
|
|
6650
|
+
#
|
|
6651
|
+
# * After you change a rule action setting, you might see the old action
|
|
6652
|
+
# in some places and the new action in others.
|
|
6653
|
+
#
|
|
6654
|
+
# * After you add an IP address to an IP set that is in use in a
|
|
6655
|
+
# blocking rule, the new address might be blocked in one area while
|
|
6656
|
+
# still allowed in another.
|
|
6586
6657
|
#
|
|
6587
6658
|
# @option params [required, String] :name
|
|
6588
6659
|
# The name of the IP set. You cannot change the name of an `IPSet` after
|
|
@@ -6803,19 +6874,30 @@ module Aws::WAFV2
|
|
|
6803
6874
|
#
|
|
6804
6875
|
# </note>
|
|
6805
6876
|
#
|
|
6806
|
-
#
|
|
6807
|
-
#
|
|
6808
|
-
#
|
|
6809
|
-
#
|
|
6810
|
-
#
|
|
6811
|
-
#
|
|
6812
|
-
#
|
|
6813
|
-
#
|
|
6814
|
-
#
|
|
6815
|
-
#
|
|
6816
|
-
#
|
|
6817
|
-
#
|
|
6818
|
-
#
|
|
6877
|
+
# **Temporary inconsistencies during updates**
|
|
6878
|
+
#
|
|
6879
|
+
# When you create or change a web ACL or other WAF resources, the
|
|
6880
|
+
# changes take a small amount of time to propagate to all areas where
|
|
6881
|
+
# the resources are stored. The propagation time can be from a few
|
|
6882
|
+
# seconds to a number of minutes.
|
|
6883
|
+
#
|
|
6884
|
+
# The following are examples of the temporary inconsistencies that you
|
|
6885
|
+
# might notice during change propagation:
|
|
6886
|
+
#
|
|
6887
|
+
# * After you create a web ACL, if you try to associate it with a
|
|
6888
|
+
# resource, you might get an exception indicating that the web ACL is
|
|
6889
|
+
# unavailable.
|
|
6890
|
+
#
|
|
6891
|
+
# * After you add a rule group to a web ACL, the new rule group rules
|
|
6892
|
+
# might be in effect in one area where the web ACL is used and not in
|
|
6893
|
+
# another.
|
|
6894
|
+
#
|
|
6895
|
+
# * After you change a rule action setting, you might see the old action
|
|
6896
|
+
# in some places and the new action in others.
|
|
6897
|
+
#
|
|
6898
|
+
# * After you add an IP address to an IP set that is in use in a
|
|
6899
|
+
# blocking rule, the new address might be blocked in one area while
|
|
6900
|
+
# still allowed in another.
|
|
6819
6901
|
#
|
|
6820
6902
|
# @option params [required, String] :name
|
|
6821
6903
|
# The name of the set. You cannot change the name after you create the
|
|
@@ -6904,26 +6986,37 @@ module Aws::WAFV2
|
|
|
6904
6986
|
#
|
|
6905
6987
|
# </note>
|
|
6906
6988
|
#
|
|
6907
|
-
# When you make changes to web ACLs or web ACL components, like rules
|
|
6908
|
-
# and rule groups, WAF propagates the changes everywhere that the web
|
|
6909
|
-
# ACL and its components are stored and used. Your changes are applied
|
|
6910
|
-
# within seconds, but there might be a brief period of inconsistency
|
|
6911
|
-
# when the changes have arrived in some places and not in others. So,
|
|
6912
|
-
# for example, if you change a rule action setting, the action might be
|
|
6913
|
-
# the old action in one area and the new action in another area. Or if
|
|
6914
|
-
# you add an IP address to an IP set used in a blocking rule, the new
|
|
6915
|
-
# address might briefly be blocked in one area while still allowed in
|
|
6916
|
-
# another. This temporary inconsistency can occur when you first
|
|
6917
|
-
# associate a web ACL with an Amazon Web Services resource and when you
|
|
6918
|
-
# change a web ACL that is already associated with a resource.
|
|
6919
|
-
# Generally, any inconsistencies of this type last only a few seconds.
|
|
6920
|
-
#
|
|
6921
6989
|
# A rule group defines a collection of rules to inspect and control web
|
|
6922
6990
|
# requests that you can use in a WebACL. When you create a rule group,
|
|
6923
6991
|
# you define an immutable capacity limit. If you update a rule group,
|
|
6924
6992
|
# you must stay within the capacity. This allows others to reuse the
|
|
6925
6993
|
# rule group with confidence in its capacity requirements.
|
|
6926
6994
|
#
|
|
6995
|
+
# **Temporary inconsistencies during updates**
|
|
6996
|
+
#
|
|
6997
|
+
# When you create or change a web ACL or other WAF resources, the
|
|
6998
|
+
# changes take a small amount of time to propagate to all areas where
|
|
6999
|
+
# the resources are stored. The propagation time can be from a few
|
|
7000
|
+
# seconds to a number of minutes.
|
|
7001
|
+
#
|
|
7002
|
+
# The following are examples of the temporary inconsistencies that you
|
|
7003
|
+
# might notice during change propagation:
|
|
7004
|
+
#
|
|
7005
|
+
# * After you create a web ACL, if you try to associate it with a
|
|
7006
|
+
# resource, you might get an exception indicating that the web ACL is
|
|
7007
|
+
# unavailable.
|
|
7008
|
+
#
|
|
7009
|
+
# * After you add a rule group to a web ACL, the new rule group rules
|
|
7010
|
+
# might be in effect in one area where the web ACL is used and not in
|
|
7011
|
+
# another.
|
|
7012
|
+
#
|
|
7013
|
+
# * After you change a rule action setting, you might see the old action
|
|
7014
|
+
# in some places and the new action in others.
|
|
7015
|
+
#
|
|
7016
|
+
# * After you add an IP address to an IP set that is in use in a
|
|
7017
|
+
# blocking rule, the new address might be blocked in one area while
|
|
7018
|
+
# still allowed in another.
|
|
7019
|
+
#
|
|
6927
7020
|
# @option params [required, String] :name
|
|
6928
7021
|
# The name of the rule group. You cannot change the name of a rule group
|
|
6929
7022
|
# after you create it.
|
|
@@ -7867,20 +7960,6 @@ module Aws::WAFV2
|
|
|
7867
7960
|
#
|
|
7868
7961
|
# </note>
|
|
7869
7962
|
#
|
|
7870
|
-
# When you make changes to web ACLs or web ACL components, like rules
|
|
7871
|
-
# and rule groups, WAF propagates the changes everywhere that the web
|
|
7872
|
-
# ACL and its components are stored and used. Your changes are applied
|
|
7873
|
-
# within seconds, but there might be a brief period of inconsistency
|
|
7874
|
-
# when the changes have arrived in some places and not in others. So,
|
|
7875
|
-
# for example, if you change a rule action setting, the action might be
|
|
7876
|
-
# the old action in one area and the new action in another area. Or if
|
|
7877
|
-
# you add an IP address to an IP set used in a blocking rule, the new
|
|
7878
|
-
# address might briefly be blocked in one area while still allowed in
|
|
7879
|
-
# another. This temporary inconsistency can occur when you first
|
|
7880
|
-
# associate a web ACL with an Amazon Web Services resource and when you
|
|
7881
|
-
# change a web ACL that is already associated with a resource.
|
|
7882
|
-
# Generally, any inconsistencies of this type last only a few seconds.
|
|
7883
|
-
#
|
|
7884
7963
|
# A web ACL defines a collection of rules to use to inspect and control
|
|
7885
7964
|
# web requests. Each rule has a statement that defines what to look for
|
|
7886
7965
|
# in web requests and an action that WAF applies to requests that match
|
|
@@ -7894,6 +7973,31 @@ module Aws::WAFV2
|
|
|
7894
7973
|
# Cognito user pool, an App Runner service, or an Amazon Web Services
|
|
7895
7974
|
# Verified Access instance.
|
|
7896
7975
|
#
|
|
7976
|
+
# **Temporary inconsistencies during updates**
|
|
7977
|
+
#
|
|
7978
|
+
# When you create or change a web ACL or other WAF resources, the
|
|
7979
|
+
# changes take a small amount of time to propagate to all areas where
|
|
7980
|
+
# the resources are stored. The propagation time can be from a few
|
|
7981
|
+
# seconds to a number of minutes.
|
|
7982
|
+
#
|
|
7983
|
+
# The following are examples of the temporary inconsistencies that you
|
|
7984
|
+
# might notice during change propagation:
|
|
7985
|
+
#
|
|
7986
|
+
# * After you create a web ACL, if you try to associate it with a
|
|
7987
|
+
# resource, you might get an exception indicating that the web ACL is
|
|
7988
|
+
# unavailable.
|
|
7989
|
+
#
|
|
7990
|
+
# * After you add a rule group to a web ACL, the new rule group rules
|
|
7991
|
+
# might be in effect in one area where the web ACL is used and not in
|
|
7992
|
+
# another.
|
|
7993
|
+
#
|
|
7994
|
+
# * After you change a rule action setting, you might see the old action
|
|
7995
|
+
# in some places and the new action in others.
|
|
7996
|
+
#
|
|
7997
|
+
# * After you add an IP address to an IP set that is in use in a
|
|
7998
|
+
# blocking rule, the new address might be blocked in one area while
|
|
7999
|
+
# still allowed in another.
|
|
8000
|
+
#
|
|
7897
8001
|
# @option params [required, String] :name
|
|
7898
8002
|
# The name of the web ACL. You cannot change the name of a web ACL after
|
|
7899
8003
|
# you create it.
|
|
@@ -8922,7 +9026,7 @@ module Aws::WAFV2
|
|
|
8922
9026
|
params: params,
|
|
8923
9027
|
config: config)
|
|
8924
9028
|
context[:gem_name] = 'aws-sdk-wafv2'
|
|
8925
|
-
context[:gem_version] = '1.
|
|
9029
|
+
context[:gem_version] = '1.72.0'
|
|
8926
9030
|
Seahorse::Client::Request.new(handlers, context)
|
|
8927
9031
|
end
|
|
8928
9032
|
|
|
@@ -32,7 +32,7 @@ module Aws::WAFV2
|
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
33
33
|
end
|
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://wafv2-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
37
37
|
end
|
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
data/lib/aws-sdk-wafv2/types.rb
CHANGED
|
@@ -554,10 +554,9 @@ module Aws::WAFV2
|
|
|
554
554
|
# includes it in the logs. For information about the logging fields,
|
|
555
555
|
# see [Log fields][1] in the *WAF Developer Guide*.
|
|
556
556
|
#
|
|
557
|
-
# * `HeaderOrder`: The
|
|
558
|
-
#
|
|
559
|
-
#
|
|
560
|
-
# against that string.
|
|
557
|
+
# * `HeaderOrder`: The list of header names to match for. WAF creates
|
|
558
|
+
# a string that contains the ordered list of header names, from the
|
|
559
|
+
# headers in the web request, and then matches against that string.
|
|
561
560
|
#
|
|
562
561
|
# If `SearchString` includes alphabetic characters A-Z and a-z, note
|
|
563
562
|
# that the value is case sensitive.
|
|
@@ -978,7 +977,14 @@ module Aws::WAFV2
|
|
|
978
977
|
#
|
|
979
978
|
# @!attribute [rw] match_scope
|
|
980
979
|
# The parts of the cookies to inspect with the rule inspection
|
|
981
|
-
# criteria. If you specify `
|
|
980
|
+
# criteria. If you specify `ALL`, WAF inspects both keys and values.
|
|
981
|
+
#
|
|
982
|
+
# `All` does not require a match to be found in the keys and a match
|
|
983
|
+
# to be found in the values. It requires a match to be found in the
|
|
984
|
+
# keys or the values or both. To require a match in the keys and in
|
|
985
|
+
# the values, use a logical `AND` statement to combine two match
|
|
986
|
+
# rules, one that inspects the keys and another that inspects the
|
|
987
|
+
# values.
|
|
982
988
|
# @return [String]
|
|
983
989
|
#
|
|
984
990
|
# @!attribute [rw] oversize_handling
|
|
@@ -3561,7 +3567,14 @@ module Aws::WAFV2
|
|
|
3561
3567
|
#
|
|
3562
3568
|
# @!attribute [rw] match_scope
|
|
3563
3569
|
# The parts of the headers to match with the rule inspection criteria.
|
|
3564
|
-
# If you specify `
|
|
3570
|
+
# If you specify `ALL`, WAF inspects both keys and values.
|
|
3571
|
+
#
|
|
3572
|
+
# `All` does not require a match to be found in the keys and a match
|
|
3573
|
+
# to be found in the values. It requires a match to be found in the
|
|
3574
|
+
# keys or the values or both. To require a match in the keys and in
|
|
3575
|
+
# the values, use a logical `AND` statement to combine two match
|
|
3576
|
+
# rules, one that inspects the keys and another that inspects the
|
|
3577
|
+
# values.
|
|
3565
3578
|
# @return [String]
|
|
3566
3579
|
#
|
|
3567
3580
|
# @!attribute [rw] oversize_handling
|
|
@@ -3928,7 +3941,14 @@ module Aws::WAFV2
|
|
|
3928
3941
|
#
|
|
3929
3942
|
# @!attribute [rw] match_scope
|
|
3930
3943
|
# The parts of the JSON to match against using the `MatchPattern`. If
|
|
3931
|
-
# you specify `
|
|
3944
|
+
# you specify `ALL`, WAF matches against keys and values.
|
|
3945
|
+
#
|
|
3946
|
+
# `All` does not require a match to be found in the keys and a match
|
|
3947
|
+
# to be found in the values. It requires a match to be found in the
|
|
3948
|
+
# keys or the values or both. To require a match in the keys and in
|
|
3949
|
+
# the values, use a logical `AND` statement to combine two match
|
|
3950
|
+
# rules, one that inspects the keys and another that inspects the
|
|
3951
|
+
# values.
|
|
3932
3952
|
# @return [String]
|
|
3933
3953
|
#
|
|
3934
3954
|
# @!attribute [rw] invalid_fallback_behavior
|
data/lib/aws-sdk-wafv2.rb
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.72.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: 2023-
|
|
11
|
+
date: 2023-10-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|