aws-sdk-wafv2 1.41.0 → 1.42.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 +14 -5
- data/lib/aws-sdk-wafv2/types.rb +64 -15
- 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: 055ebbbdafbd3910a0057443ee5fe424d21db8df430f2bcdf90c014362bcee2f
|
|
4
|
+
data.tar.gz: 9036086231dfca9ba374fc5cd044777cabf24c1b1fc472773b02cceee9ba2b8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e7ed091bc6691520094f1a9fb99aaccf6b7b4b42b4732d1d14e13ba34eb528f4a2d2a48d0448ab88fedb787481f70d97e34831b60551690a94feaeab7e46e21
|
|
7
|
+
data.tar.gz: 01cc2a5fac9688467c6dc18a00ac8a9e2a87f285993120d071f71108d55070fbd29618018317cab07ff0252cc3353d74563b69453e2e665c05ad7d612159ac03
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.42.0
|
data/lib/aws-sdk-wafv2/client.rb
CHANGED
|
@@ -1028,8 +1028,9 @@ module Aws::WAFV2
|
|
|
1028
1028
|
#
|
|
1029
1029
|
# @option params [required, Array<String>] :addresses
|
|
1030
1030
|
# Contains an array of strings that specifies zero or more IP addresses
|
|
1031
|
-
# or blocks of IP addresses
|
|
1032
|
-
# notation. WAF supports all IPv4
|
|
1031
|
+
# or blocks of IP addresses. All addresses must be specified using
|
|
1032
|
+
# Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4
|
|
1033
|
+
# and IPv6 CIDR ranges except for `/0`.
|
|
1033
1034
|
#
|
|
1034
1035
|
# Example address strings:
|
|
1035
1036
|
#
|
|
@@ -5607,6 +5608,13 @@ module Aws::WAFV2
|
|
|
5607
5608
|
# Amazon API Gateway REST API, an AppSync GraphQL API, or an Amazon
|
|
5608
5609
|
# Cognito user pool.
|
|
5609
5610
|
#
|
|
5611
|
+
# <note markdown="1"> If you don't provide a resource type, the call uses the resource type
|
|
5612
|
+
# `APPLICATION_LOAD_BALANCER`.
|
|
5613
|
+
#
|
|
5614
|
+
# </note>
|
|
5615
|
+
#
|
|
5616
|
+
# Default: `APPLICATION_LOAD_BALANCER`
|
|
5617
|
+
#
|
|
5610
5618
|
# @return [Types::ListResourcesForWebACLResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5611
5619
|
#
|
|
5612
5620
|
# * {Types::ListResourcesForWebACLResponse#resource_arns #resource_arns} => Array<String>
|
|
@@ -6277,8 +6285,9 @@ module Aws::WAFV2
|
|
|
6277
6285
|
#
|
|
6278
6286
|
# @option params [required, Array<String>] :addresses
|
|
6279
6287
|
# Contains an array of strings that specifies zero or more IP addresses
|
|
6280
|
-
# or blocks of IP addresses
|
|
6281
|
-
# notation. WAF supports all IPv4
|
|
6288
|
+
# or blocks of IP addresses. All addresses must be specified using
|
|
6289
|
+
# Classless Inter-Domain Routing (CIDR) notation. WAF supports all IPv4
|
|
6290
|
+
# and IPv6 CIDR ranges except for `/0`.
|
|
6282
6291
|
#
|
|
6283
6292
|
# Example address strings:
|
|
6284
6293
|
#
|
|
@@ -7893,7 +7902,7 @@ module Aws::WAFV2
|
|
|
7893
7902
|
params: params,
|
|
7894
7903
|
config: config)
|
|
7895
7904
|
context[:gem_name] = 'aws-sdk-wafv2'
|
|
7896
|
-
context[:gem_version] = '1.
|
|
7905
|
+
context[:gem_version] = '1.42.0'
|
|
7897
7906
|
Seahorse::Client::Request.new(handlers, context)
|
|
7898
7907
|
end
|
|
7899
7908
|
|
data/lib/aws-sdk-wafv2/types.rb
CHANGED
|
@@ -1773,9 +1773,9 @@ module Aws::WAFV2
|
|
|
1773
1773
|
#
|
|
1774
1774
|
# @!attribute [rw] addresses
|
|
1775
1775
|
# Contains an array of strings that specifies zero or more IP
|
|
1776
|
-
# addresses or blocks of IP addresses
|
|
1777
|
-
# Routing (CIDR) notation. WAF supports
|
|
1778
|
-
# except for
|
|
1776
|
+
# addresses or blocks of IP addresses. All addresses must be specified
|
|
1777
|
+
# using Classless Inter-Domain Routing (CIDR) notation. WAF supports
|
|
1778
|
+
# all IPv4 and IPv6 CIDR ranges except for `/0`.
|
|
1779
1779
|
#
|
|
1780
1780
|
# Example address strings:
|
|
1781
1781
|
#
|
|
@@ -3447,7 +3447,7 @@ module Aws::WAFV2
|
|
|
3447
3447
|
|
|
3448
3448
|
# In a WebACL, this is the action that you want WAF to perform when a
|
|
3449
3449
|
# web request doesn't match any of the rules in the `WebACL`. The
|
|
3450
|
-
# default action must be a terminating action
|
|
3450
|
+
# default action must be a terminating action.
|
|
3451
3451
|
#
|
|
3452
3452
|
# @note When making an API call, you may pass DefaultAction
|
|
3453
3453
|
# data as a hash:
|
|
@@ -4326,6 +4326,18 @@ module Aws::WAFV2
|
|
|
4326
4326
|
# You cannot nest a `ManagedRuleGroupStatement`, for example for use
|
|
4327
4327
|
# inside a `NotStatement` or `OrStatement`. It can only be referenced
|
|
4328
4328
|
# as a top-level statement within a rule.
|
|
4329
|
+
#
|
|
4330
|
+
# <note markdown="1"> You are charged additional fees when you use the WAF Bot Control
|
|
4331
|
+
# managed rule group `AWSManagedRulesBotControlRuleSet` or the WAF
|
|
4332
|
+
# Fraud Control account takeover prevention (ATP) managed rule group
|
|
4333
|
+
# `AWSManagedRulesATPRuleSet`. For more information, see [WAF
|
|
4334
|
+
# Pricing][1].
|
|
4335
|
+
#
|
|
4336
|
+
# </note>
|
|
4337
|
+
#
|
|
4338
|
+
#
|
|
4339
|
+
#
|
|
4340
|
+
# [1]: http://aws.amazon.com/waf/pricing/
|
|
4329
4341
|
# @return [Types::ManagedRuleGroupStatement]
|
|
4330
4342
|
#
|
|
4331
4343
|
# @!attribute [rw] rule_group_reference_statement
|
|
@@ -5424,9 +5436,9 @@ module Aws::WAFV2
|
|
|
5424
5436
|
#
|
|
5425
5437
|
# @!attribute [rw] addresses
|
|
5426
5438
|
# Contains an array of strings that specifies zero or more IP
|
|
5427
|
-
# addresses or blocks of IP addresses
|
|
5428
|
-
# Routing (CIDR) notation. WAF supports
|
|
5429
|
-
# except for
|
|
5439
|
+
# addresses or blocks of IP addresses. All addresses must be specified
|
|
5440
|
+
# using Classless Inter-Domain Routing (CIDR) notation. WAF supports
|
|
5441
|
+
# all IPv4 and IPv6 CIDR ranges except for `/0`.
|
|
5430
5442
|
#
|
|
5431
5443
|
# Example address strings:
|
|
5432
5444
|
#
|
|
@@ -6476,6 +6488,13 @@ module Aws::WAFV2
|
|
|
6476
6488
|
# regional application can be an Application Load Balancer (ALB), an
|
|
6477
6489
|
# Amazon API Gateway REST API, an AppSync GraphQL API, or an Amazon
|
|
6478
6490
|
# Cognito user pool.
|
|
6491
|
+
#
|
|
6492
|
+
# <note markdown="1"> If you don't provide a resource type, the call uses the resource
|
|
6493
|
+
# type `APPLICATION_LOAD_BALANCER`.
|
|
6494
|
+
#
|
|
6495
|
+
# </note>
|
|
6496
|
+
#
|
|
6497
|
+
# Default: `APPLICATION_LOAD_BALANCER`
|
|
6479
6498
|
# @return [String]
|
|
6480
6499
|
#
|
|
6481
6500
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ListResourcesForWebACLRequest AWS API Documentation
|
|
@@ -6979,6 +6998,18 @@ module Aws::WAFV2
|
|
|
6979
6998
|
# inside a `NotStatement` or `OrStatement`. It can only be referenced as
|
|
6980
6999
|
# a top-level statement within a rule.
|
|
6981
7000
|
#
|
|
7001
|
+
# <note markdown="1"> You are charged additional fees when you use the WAF Bot Control
|
|
7002
|
+
# managed rule group `AWSManagedRulesBotControlRuleSet` or the WAF Fraud
|
|
7003
|
+
# Control account takeover prevention (ATP) managed rule group
|
|
7004
|
+
# `AWSManagedRulesATPRuleSet`. For more information, see [WAF
|
|
7005
|
+
# Pricing][1].
|
|
7006
|
+
#
|
|
7007
|
+
# </note>
|
|
7008
|
+
#
|
|
7009
|
+
#
|
|
7010
|
+
#
|
|
7011
|
+
# [1]: http://aws.amazon.com/waf/pricing/
|
|
7012
|
+
#
|
|
6982
7013
|
# @note When making an API call, you may pass ManagedRuleGroupStatement
|
|
6983
7014
|
# data as a hash:
|
|
6984
7015
|
#
|
|
@@ -10691,7 +10722,8 @@ module Aws::WAFV2
|
|
|
10691
10722
|
# @return [Types::AllowAction]
|
|
10692
10723
|
#
|
|
10693
10724
|
# @!attribute [rw] count
|
|
10694
|
-
# Instructs WAF to count the web request and
|
|
10725
|
+
# Instructs WAF to count the web request and then continue evaluating
|
|
10726
|
+
# the request using the remaining rules in the web ACL.
|
|
10695
10727
|
# @return [Types::CountAction]
|
|
10696
10728
|
#
|
|
10697
10729
|
# @!attribute [rw] captcha
|
|
@@ -14002,6 +14034,18 @@ module Aws::WAFV2
|
|
|
14002
14034
|
# You cannot nest a `ManagedRuleGroupStatement`, for example for use
|
|
14003
14035
|
# inside a `NotStatement` or `OrStatement`. It can only be referenced
|
|
14004
14036
|
# as a top-level statement within a rule.
|
|
14037
|
+
#
|
|
14038
|
+
# <note markdown="1"> You are charged additional fees when you use the WAF Bot Control
|
|
14039
|
+
# managed rule group `AWSManagedRulesBotControlRuleSet` or the WAF
|
|
14040
|
+
# Fraud Control account takeover prevention (ATP) managed rule group
|
|
14041
|
+
# `AWSManagedRulesATPRuleSet`. For more information, see [WAF
|
|
14042
|
+
# Pricing][1].
|
|
14043
|
+
#
|
|
14044
|
+
# </note>
|
|
14045
|
+
#
|
|
14046
|
+
#
|
|
14047
|
+
#
|
|
14048
|
+
# [1]: http://aws.amazon.com/waf/pricing/
|
|
14005
14049
|
# @return [Types::ManagedRuleGroupStatement]
|
|
14006
14050
|
#
|
|
14007
14051
|
# @!attribute [rw] label_match_statement
|
|
@@ -14432,9 +14476,9 @@ module Aws::WAFV2
|
|
|
14432
14476
|
#
|
|
14433
14477
|
# @!attribute [rw] addresses
|
|
14434
14478
|
# Contains an array of strings that specifies zero or more IP
|
|
14435
|
-
# addresses or blocks of IP addresses
|
|
14436
|
-
# Routing (CIDR) notation. WAF supports
|
|
14437
|
-
# except for
|
|
14479
|
+
# addresses or blocks of IP addresses. All addresses must be specified
|
|
14480
|
+
# using Classless Inter-Domain Routing (CIDR) notation. WAF supports
|
|
14481
|
+
# all IPv4 and IPv6 CIDR ranges except for `/0`.
|
|
14438
14482
|
#
|
|
14439
14483
|
# Example address strings:
|
|
14440
14484
|
#
|
|
@@ -16384,8 +16428,10 @@ module Aws::WAFV2
|
|
|
16384
16428
|
include Aws::Structure
|
|
16385
16429
|
end
|
|
16386
16430
|
|
|
16387
|
-
# WAF couldn’t perform the operation because your resource doesn
|
|
16388
|
-
# exist.
|
|
16431
|
+
# WAF couldn’t perform the operation because your resource doesn't
|
|
16432
|
+
# exist. If you've just created a resource that you're using in this
|
|
16433
|
+
# operation, you might just need to wait a few minutes. It can take from
|
|
16434
|
+
# a few seconds to a number of minutes for changes to propagate.
|
|
16389
16435
|
#
|
|
16390
16436
|
# @!attribute [rw] message
|
|
16391
16437
|
# @return [String]
|
|
@@ -16477,8 +16523,11 @@ module Aws::WAFV2
|
|
|
16477
16523
|
end
|
|
16478
16524
|
|
|
16479
16525
|
# WAF couldn’t retrieve a resource that you specified for this
|
|
16480
|
-
# operation.
|
|
16481
|
-
#
|
|
16526
|
+
# operation. If you've just created a resource that you're using in
|
|
16527
|
+
# this operation, you might just need to wait a few minutes. It can take
|
|
16528
|
+
# from a few seconds to a number of minutes for changes to propagate.
|
|
16529
|
+
# Verify the resources that you are specifying in your request
|
|
16530
|
+
# parameters and then retry the operation.
|
|
16482
16531
|
#
|
|
16483
16532
|
# @!attribute [rw] message
|
|
16484
16533
|
# @return [String]
|
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.42.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: 2022-
|
|
11
|
+
date: 2022-09-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|