@aws-sdk/client-wafv2 3.418.0 → 3.421.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.
- package/README.md +7 -7
- package/dist-cjs/models/models_0.js +5 -5
- package/dist-es/models/models_0.js +4 -4
- package/dist-types/commands/CheckCapacityCommand.d.ts +15 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +15 -0
- package/dist-types/commands/CreateWebACLCommand.d.ts +16 -1
- package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/GetRuleGroupCommand.d.ts +15 -0
- package/dist-types/commands/GetWebACLCommand.d.ts +15 -0
- package/dist-types/commands/GetWebACLForResourceCommand.d.ts +15 -0
- package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +3 -0
- package/dist-types/commands/PutLoggingConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +15 -0
- package/dist-types/commands/UpdateWebACLCommand.d.ts +16 -1
- package/dist-types/models/models_0.d.ts +117 -215
- package/dist-types/ts3.4/models/models_0.d.ts +10 -6
- package/package.json +3 -3
|
@@ -66,6 +66,15 @@ export interface Headers {
|
|
|
66
66
|
MatchScope: MapMatchScope | string | undefined;
|
|
67
67
|
OversizeHandling: OversizeHandling | string | undefined;
|
|
68
68
|
}
|
|
69
|
+
export declare const FallbackBehavior: {
|
|
70
|
+
readonly MATCH: "MATCH";
|
|
71
|
+
readonly NO_MATCH: "NO_MATCH";
|
|
72
|
+
};
|
|
73
|
+
export type FallbackBehavior =
|
|
74
|
+
(typeof FallbackBehavior)[keyof typeof FallbackBehavior];
|
|
75
|
+
export interface JA3Fingerprint {
|
|
76
|
+
FallbackBehavior: FallbackBehavior | string | undefined;
|
|
77
|
+
}
|
|
69
78
|
export declare const BodyParsingFallbackBehavior: {
|
|
70
79
|
readonly EVALUATE_AS_STRING: "EVALUATE_AS_STRING";
|
|
71
80
|
readonly MATCH: "MATCH";
|
|
@@ -111,6 +120,7 @@ export interface FieldToMatch {
|
|
|
111
120
|
Headers?: Headers;
|
|
112
121
|
Cookies?: Cookies;
|
|
113
122
|
HeaderOrder?: HeaderOrder;
|
|
123
|
+
JA3Fingerprint?: JA3Fingerprint;
|
|
114
124
|
}
|
|
115
125
|
export declare const PositionalConstraint: {
|
|
116
126
|
readonly CONTAINS: "CONTAINS";
|
|
@@ -409,12 +419,6 @@ export declare const CountryCode: {
|
|
|
409
419
|
readonly ZW: "ZW";
|
|
410
420
|
};
|
|
411
421
|
export type CountryCode = (typeof CountryCode)[keyof typeof CountryCode];
|
|
412
|
-
export declare const FallbackBehavior: {
|
|
413
|
-
readonly MATCH: "MATCH";
|
|
414
|
-
readonly NO_MATCH: "NO_MATCH";
|
|
415
|
-
};
|
|
416
|
-
export type FallbackBehavior =
|
|
417
|
-
(typeof FallbackBehavior)[keyof typeof FallbackBehavior];
|
|
418
422
|
export interface ForwardedIPConfig {
|
|
419
423
|
HeaderName: string | undefined;
|
|
420
424
|
FallbackBehavior: FallbackBehavior | string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-wafv2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Wafv2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.421.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.421.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.421.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.418.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.418.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.418.0",
|