aws-sdk-wafv2 1.69.0 → 1.71.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-wafv2/client.rb +1 -1
- data/lib/aws-sdk-wafv2/types.rb +54 -9
- data/lib/aws-sdk-wafv2.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e00844559f62d3387cf55af655844eb473e4b8d134a25f3fcbdee6d9b072d86
|
4
|
+
data.tar.gz: d7c3714c5b20ade977f2c47fa619ef9bea79546a3da83ef62ed859b19f24e627
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73d56cd51cc562735ce5c627059b683f1dd121fd3de2d45b321ebc40447ba192dceca247ec83b100f5a380e9fdafa691935f09a98297a6de3116fbc7a4eff81b
|
7
|
+
data.tar.gz: d8824365f71c77f8245c903abcad4f13ad000d67b52ea5e73bd7d217ee574a88db024a11094040036bf194185b27bcd3a162332d524027b68ff2ba5bdb989ec6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.71.0 (2023-09-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Correct and improve the documentation for the FieldToMatch option JA3 fingerprint.
|
8
|
+
|
9
|
+
1.70.0 (2023-09-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.69.0 (2023-09-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.71.0
|
data/lib/aws-sdk-wafv2/client.rb
CHANGED
@@ -8922,7 +8922,7 @@ module Aws::WAFV2
|
|
8922
8922
|
params: params,
|
8923
8923
|
config: config)
|
8924
8924
|
context[:gem_name] = 'aws-sdk-wafv2'
|
8925
|
-
context[:gem_version] = '1.
|
8925
|
+
context[:gem_version] = '1.71.0'
|
8926
8926
|
Seahorse::Client::Request.new(handlers, context)
|
8927
8927
|
end
|
8928
8928
|
|
data/lib/aws-sdk-wafv2/types.rb
CHANGED
@@ -542,9 +542,17 @@ module Aws::WAFV2
|
|
542
542
|
# * `UriPath`: The value that you want WAF to search for in the URI
|
543
543
|
# path, for example, `/images/daily-ad.jpg`.
|
544
544
|
#
|
545
|
-
# * `JA3Fingerprint`:
|
546
|
-
# JA3 fingerprint
|
547
|
-
#
|
545
|
+
# * `JA3Fingerprint`: Match against the request's JA3 fingerprint.
|
546
|
+
# The JA3 fingerprint is a 32-character hash derived from the TLS
|
547
|
+
# Client Hello of an incoming request. This fingerprint serves as a
|
548
|
+
# unique identifier for the client's TLS configuration. You can use
|
549
|
+
# this choice only with a string match `ByteMatchStatement` with the
|
550
|
+
# `PositionalConstraint` set to `EXACTLY`.
|
551
|
+
#
|
552
|
+
# You can obtain the JA3 fingerprint for client requests from the
|
553
|
+
# web ACL logs. If WAF is able to calculate the fingerprint, it
|
554
|
+
# includes it in the logs. For information about the logging fields,
|
555
|
+
# see [Log fields][1] in the *WAF Developer Guide*.
|
548
556
|
#
|
549
557
|
# * `HeaderOrder`: The comma-separated list of header names to match
|
550
558
|
# for. WAF creates a string that contains the ordered list of header
|
@@ -569,6 +577,10 @@ module Aws::WAFV2
|
|
569
577
|
#
|
570
578
|
# The value that you want WAF to search for. The SDK automatically
|
571
579
|
# base64 encodes the value.
|
580
|
+
#
|
581
|
+
#
|
582
|
+
#
|
583
|
+
# [1]: https://docs.aws.amazon.com/waf/latest/developerguide/logging-fields.html
|
572
584
|
# @return [String]
|
573
585
|
#
|
574
586
|
# @!attribute [rw] field_to_match
|
@@ -2397,15 +2409,32 @@ module Aws::WAFV2
|
|
2397
2409
|
# @return [Types::HeaderOrder]
|
2398
2410
|
#
|
2399
2411
|
# @!attribute [rw] ja3_fingerprint
|
2400
|
-
# Match against the request's JA3 fingerprint
|
2401
|
-
#
|
2402
|
-
# request.
|
2412
|
+
# Match against the request's JA3 fingerprint. The JA3 fingerprint is
|
2413
|
+
# a 32-character hash derived from the TLS Client Hello of an incoming
|
2414
|
+
# request. This fingerprint serves as a unique identifier for the
|
2415
|
+
# client's TLS configuration. WAF calculates and logs this
|
2416
|
+
# fingerprint for each request that has enough TLS Client Hello
|
2417
|
+
# information for the calculation. Almost all web requests include
|
2418
|
+
# this information.
|
2403
2419
|
#
|
2404
2420
|
# <note markdown="1"> You can use this choice only with a string match
|
2405
2421
|
# `ByteMatchStatement` with the `PositionalConstraint` set to
|
2406
2422
|
# `EXACTLY`.
|
2407
2423
|
#
|
2408
2424
|
# </note>
|
2425
|
+
#
|
2426
|
+
# You can obtain the JA3 fingerprint for client requests from the web
|
2427
|
+
# ACL logs. If WAF is able to calculate the fingerprint, it includes
|
2428
|
+
# it in the logs. For information about the logging fields, see [Log
|
2429
|
+
# fields][1] in the *WAF Developer Guide*.
|
2430
|
+
#
|
2431
|
+
# Provide the JA3 fingerprint string from the logs in your string
|
2432
|
+
# match statement specification, to match with any future requests
|
2433
|
+
# that have the same TLS configuration.
|
2434
|
+
#
|
2435
|
+
#
|
2436
|
+
#
|
2437
|
+
# [1]: https://docs.aws.amazon.com/waf/latest/developerguide/logging-fields.html
|
2409
2438
|
# @return [Types::JA3Fingerprint]
|
2410
2439
|
#
|
2411
2440
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/FieldToMatch AWS API Documentation
|
@@ -3832,15 +3861,31 @@ module Aws::WAFV2
|
|
3832
3861
|
include Aws::Structure
|
3833
3862
|
end
|
3834
3863
|
|
3835
|
-
# Match against the request's JA3 fingerprint
|
3836
|
-
#
|
3837
|
-
# request.
|
3864
|
+
# Match against the request's JA3 fingerprint. The JA3 fingerprint is a
|
3865
|
+
# 32-character hash derived from the TLS Client Hello of an incoming
|
3866
|
+
# request. This fingerprint serves as a unique identifier for the
|
3867
|
+
# client's TLS configuration. WAF calculates and logs this fingerprint
|
3868
|
+
# for each request that has enough TLS Client Hello information for the
|
3869
|
+
# calculation. Almost all web requests include this information.
|
3838
3870
|
#
|
3839
3871
|
# <note markdown="1"> You can use this choice only with a string match `ByteMatchStatement`
|
3840
3872
|
# with the `PositionalConstraint` set to `EXACTLY`.
|
3841
3873
|
#
|
3842
3874
|
# </note>
|
3843
3875
|
#
|
3876
|
+
# You can obtain the JA3 fingerprint for client requests from the web
|
3877
|
+
# ACL logs. If WAF is able to calculate the fingerprint, it includes it
|
3878
|
+
# in the logs. For information about the logging fields, see [Log
|
3879
|
+
# fields][1] in the *WAF Developer Guide*.
|
3880
|
+
#
|
3881
|
+
# Provide the JA3 fingerprint string from the logs in your string match
|
3882
|
+
# statement specification, to match with any future requests that have
|
3883
|
+
# the same TLS configuration.
|
3884
|
+
#
|
3885
|
+
#
|
3886
|
+
#
|
3887
|
+
# [1]: https://docs.aws.amazon.com/waf/latest/developerguide/logging-fields.html
|
3888
|
+
#
|
3844
3889
|
# @!attribute [rw] fallback_behavior
|
3845
3890
|
# The match status to assign to the web request if the request
|
3846
3891
|
# doesn't have a JA3 fingerprint.
|
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.71.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-09-
|
11
|
+
date: 2023-09-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.184.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.184.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|