@aws-sdk/client-network-firewall 3.895.0 → 3.897.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/dist-cjs/index.js +3 -1
- package/dist-es/models/models_0.js +2 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRuleGroupCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +7 -1
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +11 -11
package/dist-cjs/index.js
CHANGED
|
@@ -539,8 +539,10 @@ var ResourceStatus = {
|
|
|
539
539
|
ERROR: "ERROR"
|
|
540
540
|
};
|
|
541
541
|
var GeneratedRulesType = {
|
|
542
|
+
ALERTLIST: "ALERTLIST",
|
|
542
543
|
ALLOWLIST: "ALLOWLIST",
|
|
543
|
-
DENYLIST: "DENYLIST"
|
|
544
|
+
DENYLIST: "DENYLIST",
|
|
545
|
+
REJECTLIST: "REJECTLIST"
|
|
544
546
|
};
|
|
545
547
|
var TargetType = {
|
|
546
548
|
HTTP_HOST: "HTTP_HOST",
|
|
@@ -185,8 +185,10 @@ export const ResourceStatus = {
|
|
|
185
185
|
ERROR: "ERROR",
|
|
186
186
|
};
|
|
187
187
|
export const GeneratedRulesType = {
|
|
188
|
+
ALERTLIST: "ALERTLIST",
|
|
188
189
|
ALLOWLIST: "ALLOWLIST",
|
|
189
190
|
DENYLIST: "DENYLIST",
|
|
191
|
+
REJECTLIST: "REJECTLIST",
|
|
190
192
|
};
|
|
191
193
|
export const TargetType = {
|
|
192
194
|
HTTP_HOST: "HTTP_HOST",
|
|
@@ -74,7 +74,7 @@ declare const CreateRuleGroupCommand_base: {
|
|
|
74
74
|
* TargetTypes: [ // TargetTypes // required
|
|
75
75
|
* "TLS_SNI" || "HTTP_HOST",
|
|
76
76
|
* ],
|
|
77
|
-
* GeneratedRulesType: "ALLOWLIST" || "DENYLIST", // required
|
|
77
|
+
* GeneratedRulesType: "ALLOWLIST" || "DENYLIST" || "REJECTLIST" || "ALERTLIST", // required
|
|
78
78
|
* },
|
|
79
79
|
* StatefulRules: [ // StatefulRules
|
|
80
80
|
* { // StatefulRule
|
|
@@ -79,7 +79,7 @@ declare const DescribeRuleGroupCommand_base: {
|
|
|
79
79
|
* // TargetTypes: [ // TargetTypes // required
|
|
80
80
|
* // "TLS_SNI" || "HTTP_HOST",
|
|
81
81
|
* // ],
|
|
82
|
-
* // GeneratedRulesType: "ALLOWLIST" || "DENYLIST", // required
|
|
82
|
+
* // GeneratedRulesType: "ALLOWLIST" || "DENYLIST" || "REJECTLIST" || "ALERTLIST", // required
|
|
83
83
|
* // },
|
|
84
84
|
* // StatefulRules: [ // StatefulRules
|
|
85
85
|
* // { // StatefulRule
|
|
@@ -78,7 +78,7 @@ declare const UpdateRuleGroupCommand_base: {
|
|
|
78
78
|
* TargetTypes: [ // TargetTypes // required
|
|
79
79
|
* "TLS_SNI" || "HTTP_HOST",
|
|
80
80
|
* ],
|
|
81
|
-
* GeneratedRulesType: "ALLOWLIST" || "DENYLIST", // required
|
|
81
|
+
* GeneratedRulesType: "ALLOWLIST" || "DENYLIST" || "REJECTLIST" || "ALERTLIST", // required
|
|
82
82
|
* },
|
|
83
83
|
* StatefulRules: [ // StatefulRules
|
|
84
84
|
* { // StatefulRule
|
|
@@ -1871,8 +1871,10 @@ export interface ReferenceSets {
|
|
|
1871
1871
|
* @enum
|
|
1872
1872
|
*/
|
|
1873
1873
|
export declare const GeneratedRulesType: {
|
|
1874
|
+
readonly ALERTLIST: "ALERTLIST";
|
|
1874
1875
|
readonly ALLOWLIST: "ALLOWLIST";
|
|
1875
1876
|
readonly DENYLIST: "DENYLIST";
|
|
1877
|
+
readonly REJECTLIST: "REJECTLIST";
|
|
1876
1878
|
};
|
|
1877
1879
|
/**
|
|
1878
1880
|
* @public
|
|
@@ -1917,7 +1919,11 @@ export interface RulesSourceList {
|
|
|
1917
1919
|
*/
|
|
1918
1920
|
TargetTypes: TargetType[] | undefined;
|
|
1919
1921
|
/**
|
|
1920
|
-
* <p>Whether you want to allow or
|
|
1922
|
+
* <p>Whether you want to apply allow, reject, alert, or drop behavior to the domains in your target list.</p>
|
|
1923
|
+
* <note>
|
|
1924
|
+
* <p>When logging is enabled and you choose Alert, traffic that matches the domain specifications
|
|
1925
|
+
* generates an alert in the firewall's logs. Then, traffic either passes, is rejected, or drops based on other rules in the firewall policy.</p>
|
|
1926
|
+
* </note>
|
|
1921
1927
|
* @public
|
|
1922
1928
|
*/
|
|
1923
1929
|
GeneratedRulesType: GeneratedRulesType | undefined;
|
|
@@ -428,8 +428,10 @@ export interface ReferenceSets {
|
|
|
428
428
|
IPSetReferences?: Record<string, IPSetReference> | undefined;
|
|
429
429
|
}
|
|
430
430
|
export declare const GeneratedRulesType: {
|
|
431
|
+
readonly ALERTLIST: "ALERTLIST";
|
|
431
432
|
readonly ALLOWLIST: "ALLOWLIST";
|
|
432
433
|
readonly DENYLIST: "DENYLIST";
|
|
434
|
+
readonly REJECTLIST: "REJECTLIST";
|
|
433
435
|
};
|
|
434
436
|
export type GeneratedRulesType =
|
|
435
437
|
(typeof GeneratedRulesType)[keyof typeof GeneratedRulesType];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-network-firewall",
|
|
3
3
|
"description": "AWS SDK for JavaScript Network Firewall Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.897.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-network-firewall",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.896.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.896.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.893.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.896.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
30
30
|
"@aws-sdk/types": "3.893.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.895.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.896.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.2.2",
|
|
35
|
-
"@smithy/core": "^3.
|
|
35
|
+
"@smithy/core": "^3.12.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
37
37
|
"@smithy/hash-node": "^4.1.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
41
|
-
"@smithy/middleware-retry": "^4.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.2.4",
|
|
41
|
+
"@smithy/middleware-retry": "^4.3.0",
|
|
42
42
|
"@smithy/middleware-serde": "^4.1.1",
|
|
43
43
|
"@smithy/middleware-stack": "^4.1.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.2.2",
|
|
45
45
|
"@smithy/node-http-handler": "^4.2.1",
|
|
46
46
|
"@smithy/protocol-http": "^5.2.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.6.
|
|
47
|
+
"@smithy/smithy-client": "^4.6.4",
|
|
48
48
|
"@smithy/types": "^4.5.0",
|
|
49
49
|
"@smithy/url-parser": "^4.1.1",
|
|
50
50
|
"@smithy/util-base64": "^4.1.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.1.4",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.1.4",
|
|
55
55
|
"@smithy/util-endpoints": "^3.1.2",
|
|
56
56
|
"@smithy/util-middleware": "^4.1.1",
|
|
57
57
|
"@smithy/util-retry": "^4.1.2",
|