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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0436147414eb3deb9945cd5e3b36f926a2ff14b20e4b595dda404b76ffd63c63
4
- data.tar.gz: b4fa864a6ad2d5fd16a5eb44e20ab68bbb0d33101e26b057ef4b8c629e5009bf
3
+ metadata.gz: 055ebbbdafbd3910a0057443ee5fe424d21db8df430f2bcdf90c014362bcee2f
4
+ data.tar.gz: 9036086231dfca9ba374fc5cd044777cabf24c1b1fc472773b02cceee9ba2b8f
5
5
  SHA512:
6
- metadata.gz: 38db8fa0245ee0bd00c2187ffacd06c654ea138fa5aa1ffbde03a364c8012d07b19dfda8c2f826212a2c07c1233f698d326937cf169a841647aa4fc4893307ce
7
- data.tar.gz: 43f77575d462757e77c876dda8ed41f567c2209a5df331590b3b78f99434f2839a4348f45d856ae3ee0db0260832b28462b0068b814666a97c7cd27e0b202fc8
6
+ metadata.gz: 3e7ed091bc6691520094f1a9fb99aaccf6b7b4b42b4732d1d14e13ba34eb528f4a2d2a48d0448ab88fedb787481f70d97e34831b60551690a94feaeab7e46e21
7
+ data.tar.gz: 01cc2a5fac9688467c6dc18a00ac8a9e2a87f285993120d071f71108d55070fbd29618018317cab07ff0252cc3353d74563b69453e2e665c05ad7d612159ac03
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2022-09-23)
5
+ ------------------
6
+
7
+ * Feature - Add the default specification for ResourceType in ListResourcesForWebACL.
8
+
4
9
  1.41.0 (2022-08-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.42.0
@@ -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 in Classless Inter-Domain Routing (CIDR)
1032
- # notation. WAF supports all IPv4 and IPv6 CIDR ranges except for /0.
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&lt;String&gt;
@@ -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 in Classless Inter-Domain Routing (CIDR)
6281
- # notation. WAF supports all IPv4 and IPv6 CIDR ranges except for /0.
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.41.0'
7905
+ context[:gem_version] = '1.42.0'
7897
7906
  Seahorse::Client::Request.new(handlers, context)
7898
7907
  end
7899
7908
 
@@ -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 in Classless Inter-Domain
1777
- # Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges
1778
- # except for /0.
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, so you can't use count.
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 in Classless Inter-Domain
5428
- # Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges
5429
- # except for /0.
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 allow it.
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 in Classless Inter-Domain
14436
- # Routing (CIDR) notation. WAF supports all IPv4 and IPv6 CIDR ranges
14437
- # except for /0.
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 doesnt
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. Verify the resources that you are specifying in your
16481
- # request parameters and then retry the operation.
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
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-wafv2/customizations'
48
48
  # @!group service
49
49
  module Aws::WAFV2
50
50
 
51
- GEM_VERSION = '1.41.0'
51
+ GEM_VERSION = '1.42.0'
52
52
 
53
53
  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.41.0
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-08-03 00:00:00.000000000 Z
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