aws-sdk-wafv2 1.114.0 → 1.116.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-wafv2/client.rb +32 -13
- data/lib/aws-sdk-wafv2/client_api.rb +1 -0
- data/lib/aws-sdk-wafv2/types.rb +29 -8
- data/lib/aws-sdk-wafv2.rb +1 -1
- data/sig/client.rbs +8 -0
- data/sig/types.rbs +1 -0
- 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: 05fe10436301405542408a94e207e261fd76569a3e22a80b1b95fc5a049c0a27
|
4
|
+
data.tar.gz: 3020e4fcb4c9652b75c75bdf6fad9d865b6e4f9b3567aaf712ad7cd71e8d32e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39b873c7b45af68d3e2c2f8ed762ebea59e3983cf2e449d26bfa2267bfa08209fd95ac040f32fa24cb83aec4cc87dfb30eda744541de02d79fbb95713e842fa6
|
7
|
+
data.tar.gz: '09b5527c7cfabe7096ae813e43c34df6110af6d16167bbcc8e10c6c0103a68fbd3278d23f300b80bf2db74fbff1336d6e73a6deb99df4ef851156cf632cfe03d'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.116.0 (2025-08-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - test and verified, safe to release
|
8
|
+
|
9
|
+
1.115.0 (2025-08-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.114.0 (2025-07-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.116.0
|
data/lib/aws-sdk-wafv2/client.rb
CHANGED
@@ -95,8 +95,8 @@ module Aws::WAFV2
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials used for authentication. This can be
|
99
|
-
# following classes:
|
98
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
99
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
102
102
|
# credentials.
|
@@ -124,8 +124,7 @@ module Aws::WAFV2
|
|
124
124
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
125
125
|
# from the Cognito Identity service.
|
126
126
|
#
|
127
|
-
# When `:credentials` are not configured directly, the following
|
128
|
-
# locations will be searched for credentials:
|
127
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
129
128
|
#
|
130
129
|
# * `Aws.config[:credentials]`
|
131
130
|
#
|
@@ -139,12 +138,10 @@ module Aws::WAFV2
|
|
139
138
|
#
|
140
139
|
# * `~/.aws/config`
|
141
140
|
#
|
142
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
143
|
-
#
|
144
|
-
#
|
145
|
-
#
|
146
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
-
# to `true`.
|
141
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
142
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
143
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
144
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
148
145
|
#
|
149
146
|
# @option options [required, String] :region
|
150
147
|
# The AWS region to connect to. The configured `:region` is
|
@@ -384,8 +381,8 @@ module Aws::WAFV2
|
|
384
381
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
385
382
|
#
|
386
383
|
# @option options [Aws::TokenProvider] :token_provider
|
387
|
-
# Your Bearer token used for authentication. This can be
|
388
|
-
# following classes:
|
384
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
385
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
389
386
|
#
|
390
387
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
391
388
|
# tokens.
|
@@ -8601,6 +8598,20 @@ module Aws::WAFV2
|
|
8601
8598
|
# protection in that web ACL will apply to all associated Application
|
8602
8599
|
# Load Balancers.
|
8603
8600
|
#
|
8601
|
+
# @option params [Types::ApplicationConfig] :application_config
|
8602
|
+
# Configures the ability for the WAF console to store and retrieve
|
8603
|
+
# application attributes. Application attributes help WAF give
|
8604
|
+
# recommendations for protection packs.
|
8605
|
+
#
|
8606
|
+
# When using `UpdateWebACL`, `ApplicationConfig` follows these rules:
|
8607
|
+
#
|
8608
|
+
# * If you omit `ApplicationConfig` from the request, all existing
|
8609
|
+
# entries in the web ACL are retained.
|
8610
|
+
#
|
8611
|
+
# * If you include `ApplicationConfig`, entries must match the existing
|
8612
|
+
# values exactly. Any attempt to modify existing entries will result
|
8613
|
+
# in an error.
|
8614
|
+
#
|
8604
8615
|
# @return [Types::UpdateWebACLResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8605
8616
|
#
|
8606
8617
|
# * {Types::UpdateWebACLResponse#next_lock_token #next_lock_token} => String
|
@@ -9569,6 +9580,14 @@ module Aws::WAFV2
|
|
9569
9580
|
# on_source_d_do_s_protection_config: {
|
9570
9581
|
# alb_low_reputation_mode: "ACTIVE_UNDER_DDOS", # required, accepts ACTIVE_UNDER_DDOS, ALWAYS_ON
|
9571
9582
|
# },
|
9583
|
+
# application_config: {
|
9584
|
+
# attributes: [
|
9585
|
+
# {
|
9586
|
+
# name: "AttributeName",
|
9587
|
+
# values: ["AttributeValue"],
|
9588
|
+
# },
|
9589
|
+
# ],
|
9590
|
+
# },
|
9572
9591
|
# })
|
9573
9592
|
#
|
9574
9593
|
# @example Response structure
|
@@ -9602,7 +9621,7 @@ module Aws::WAFV2
|
|
9602
9621
|
tracer: tracer
|
9603
9622
|
)
|
9604
9623
|
context[:gem_name] = 'aws-sdk-wafv2'
|
9605
|
-
context[:gem_version] = '1.
|
9624
|
+
context[:gem_version] = '1.116.0'
|
9606
9625
|
Seahorse::Client::Request.new(handlers, context)
|
9607
9626
|
end
|
9608
9627
|
|
@@ -1688,6 +1688,7 @@ module Aws::WAFV2
|
|
1688
1688
|
UpdateWebACLRequest.add_member(:token_domains, Shapes::ShapeRef.new(shape: TokenDomains, location_name: "TokenDomains"))
|
1689
1689
|
UpdateWebACLRequest.add_member(:association_config, Shapes::ShapeRef.new(shape: AssociationConfig, location_name: "AssociationConfig"))
|
1690
1690
|
UpdateWebACLRequest.add_member(:on_source_d_do_s_protection_config, Shapes::ShapeRef.new(shape: OnSourceDDoSProtectionConfig, location_name: "OnSourceDDoSProtectionConfig"))
|
1691
|
+
UpdateWebACLRequest.add_member(:application_config, Shapes::ShapeRef.new(shape: ApplicationConfig, location_name: "ApplicationConfig"))
|
1691
1692
|
UpdateWebACLRequest.struct_class = Types::UpdateWebACLRequest
|
1692
1693
|
|
1693
1694
|
UpdateWebACLResponse.add_member(:next_lock_token, Shapes::ShapeRef.new(shape: LockToken, location_name: "NextLockToken"))
|
data/lib/aws-sdk-wafv2/types.rb
CHANGED
@@ -8354,9 +8354,12 @@ module Aws::WAFV2
|
|
8354
8354
|
# inside the rule group. You specify one override for each rule whose
|
8355
8355
|
# action you want to change.
|
8356
8356
|
#
|
8357
|
-
# <note markdown="1">
|
8358
|
-
#
|
8359
|
-
#
|
8357
|
+
# <note markdown="1"> Verify the rule names in your overrides carefully. With managed rule
|
8358
|
+
# groups, WAF silently ignores any override that uses an invalid rule
|
8359
|
+
# name. With customer-owned rule groups, invalid rule names in your
|
8360
|
+
# overrides will cause web ACL updates to fail. An invalid rule name is
|
8361
|
+
# any name that doesn't exactly match the case-sensitive name of an
|
8362
|
+
# existing rule in the rule group.
|
8360
8363
|
#
|
8361
8364
|
# </note>
|
8362
8365
|
#
|
@@ -8369,10 +8372,12 @@ module Aws::WAFV2
|
|
8369
8372
|
# @!attribute [rw] name
|
8370
8373
|
# The name of the rule to override.
|
8371
8374
|
#
|
8372
|
-
# <note markdown="1">
|
8373
|
-
#
|
8374
|
-
#
|
8375
|
-
#
|
8375
|
+
# <note markdown="1"> Verify the rule names in your overrides carefully. With managed rule
|
8376
|
+
# groups, WAF silently ignores any override that uses an invalid rule
|
8377
|
+
# name. With customer-owned rule groups, invalid rule names in your
|
8378
|
+
# overrides will cause web ACL updates to fail. An invalid rule name
|
8379
|
+
# is any name that doesn't exactly match the case-sensitive name of
|
8380
|
+
# an existing rule in the rule group.
|
8376
8381
|
#
|
8377
8382
|
# </note>
|
8378
8383
|
# @return [String]
|
@@ -9925,6 +9930,21 @@ module Aws::WAFV2
|
|
9925
9930
|
# Application Load Balancers.
|
9926
9931
|
# @return [Types::OnSourceDDoSProtectionConfig]
|
9927
9932
|
#
|
9933
|
+
# @!attribute [rw] application_config
|
9934
|
+
# Configures the ability for the WAF console to store and retrieve
|
9935
|
+
# application attributes. Application attributes help WAF give
|
9936
|
+
# recommendations for protection packs.
|
9937
|
+
#
|
9938
|
+
# When using `UpdateWebACL`, `ApplicationConfig` follows these rules:
|
9939
|
+
#
|
9940
|
+
# * If you omit `ApplicationConfig` from the request, all existing
|
9941
|
+
# entries in the web ACL are retained.
|
9942
|
+
#
|
9943
|
+
# * If you include `ApplicationConfig`, entries must match the
|
9944
|
+
# existing values exactly. Any attempt to modify existing entries
|
9945
|
+
# will result in an error.
|
9946
|
+
# @return [Types::ApplicationConfig]
|
9947
|
+
#
|
9928
9948
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/UpdateWebACLRequest AWS API Documentation
|
9929
9949
|
#
|
9930
9950
|
class UpdateWebACLRequest < Struct.new(
|
@@ -9942,7 +9962,8 @@ module Aws::WAFV2
|
|
9942
9962
|
:challenge_config,
|
9943
9963
|
:token_domains,
|
9944
9964
|
:association_config,
|
9945
|
-
:on_source_d_do_s_protection_config
|
9965
|
+
:on_source_d_do_s_protection_config,
|
9966
|
+
:application_config)
|
9946
9967
|
SENSITIVE = []
|
9947
9968
|
include Aws::Structure
|
9948
9969
|
end
|
data/lib/aws-sdk-wafv2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -5422,6 +5422,14 @@ module Aws
|
|
5422
5422
|
},
|
5423
5423
|
?on_source_d_do_s_protection_config: {
|
5424
5424
|
alb_low_reputation_mode: ("ACTIVE_UNDER_DDOS" | "ALWAYS_ON")
|
5425
|
+
},
|
5426
|
+
?application_config: {
|
5427
|
+
attributes: Array[
|
5428
|
+
{
|
5429
|
+
name: ::String?,
|
5430
|
+
values: Array[::String]?
|
5431
|
+
},
|
5432
|
+
]?
|
5425
5433
|
}
|
5426
5434
|
) -> _UpdateWebACLResponseSuccess
|
5427
5435
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWebACLResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -1578,6 +1578,7 @@ module Aws::WAFV2
|
|
1578
1578
|
attr_accessor token_domains: ::Array[::String]
|
1579
1579
|
attr_accessor association_config: Types::AssociationConfig
|
1580
1580
|
attr_accessor on_source_d_do_s_protection_config: Types::OnSourceDDoSProtectionConfig
|
1581
|
+
attr_accessor application_config: Types::ApplicationConfig
|
1581
1582
|
SENSITIVE: []
|
1582
1583
|
end
|
1583
1584
|
|