@aws-sdk/client-network-firewall 3.828.0 → 3.831.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 +56 -0
- package/dist-cjs/index.js +343 -58
- package/dist-es/NetworkFirewall.js +14 -0
- package/dist-es/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.js +22 -0
- package/dist-es/commands/AssociateAvailabilityZonesCommand.js +22 -0
- package/dist-es/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.js +22 -0
- package/dist-es/commands/DescribeRuleGroupSummaryCommand.js +22 -0
- package/dist-es/commands/DisassociateAvailabilityZonesCommand.js +22 -0
- package/dist-es/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.js +22 -0
- package/dist-es/commands/UpdateAvailabilityZoneChangeProtectionCommand.js +22 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +58 -39
- package/dist-es/protocols/Aws_json1_0.js +142 -6
- package/dist-types/NetworkFirewall.d.ts +50 -0
- package/dist-types/NetworkFirewallClient.d.ts +9 -2
- package/dist-types/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.d.ts +104 -0
- package/dist-types/commands/AssociateAvailabilityZonesCommand.d.ts +124 -0
- package/dist-types/commands/CreateFirewallCommand.d.ts +20 -0
- package/dist-types/commands/CreateFirewallPolicyCommand.d.ts +1 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +11 -1
- package/dist-types/commands/DeleteFirewallCommand.d.ts +13 -0
- package/dist-types/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.d.ts +103 -0
- package/dist-types/commands/DeleteRuleGroupCommand.d.ts +5 -0
- package/dist-types/commands/DescribeFirewallCommand.d.ts +13 -0
- package/dist-types/commands/DescribeFirewallMetadataCommand.d.ts +1 -0
- package/dist-types/commands/DescribeFirewallPolicyCommand.d.ts +1 -0
- package/dist-types/commands/DescribeRuleGroupCommand.d.ts +6 -1
- package/dist-types/commands/DescribeRuleGroupSummaryCommand.d.ts +112 -0
- package/dist-types/commands/DisassociateAvailabilityZonesCommand.d.ts +123 -0
- package/dist-types/commands/ListFirewallsCommand.d.ts +1 -0
- package/dist-types/commands/ListRuleGroupsCommand.d.ts +1 -1
- package/dist-types/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.d.ts +104 -0
- package/dist-types/commands/UpdateAvailabilityZoneChangeProtectionCommand.d.ts +111 -0
- package/dist-types/commands/UpdateFirewallPolicyCommand.d.ts +1 -0
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +11 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +7 -7
- package/dist-types/models/models_0.d.ts +884 -138
- package/dist-types/protocols/Aws_json1_0.d.ts +63 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/NetworkFirewall.d.ts +144 -0
- package/dist-types/ts3.4/NetworkFirewallClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/AssociateAvailabilityZonesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeRuleGroupSummaryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateAvailabilityZonesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateAvailabilityZoneChangeProtectionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +7 -7
- package/dist-types/ts3.4/models/models_0.d.ts +170 -45
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +84 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -2
- package/package.json +2 -2
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { NetworkFirewallServiceException as __BaseException } from "./NetworkFirewallServiceException";
|
|
3
|
+
export interface AcceptNetworkFirewallTransitGatewayAttachmentRequest {
|
|
4
|
+
TransitGatewayAttachmentId: string | undefined;
|
|
5
|
+
}
|
|
6
|
+
export declare const TransitGatewayAttachmentStatus: {
|
|
7
|
+
readonly CREATING: "CREATING";
|
|
8
|
+
readonly DELETED: "DELETED";
|
|
9
|
+
readonly DELETING: "DELETING";
|
|
10
|
+
readonly ERROR: "ERROR";
|
|
11
|
+
readonly FAILED: "FAILED";
|
|
12
|
+
readonly PENDING_ACCEPTANCE: "PENDING_ACCEPTANCE";
|
|
13
|
+
readonly READY: "READY";
|
|
14
|
+
readonly REJECTED: "REJECTED";
|
|
15
|
+
readonly REJECTING: "REJECTING";
|
|
16
|
+
};
|
|
17
|
+
export type TransitGatewayAttachmentStatus =
|
|
18
|
+
(typeof TransitGatewayAttachmentStatus)[keyof typeof TransitGatewayAttachmentStatus];
|
|
19
|
+
export interface AcceptNetworkFirewallTransitGatewayAttachmentResponse {
|
|
20
|
+
TransitGatewayAttachmentId: string | undefined;
|
|
21
|
+
TransitGatewayAttachmentStatus: TransitGatewayAttachmentStatus | undefined;
|
|
22
|
+
}
|
|
23
|
+
export declare class InternalServerError extends __BaseException {
|
|
24
|
+
readonly name: "InternalServerError";
|
|
25
|
+
readonly $fault: "server";
|
|
26
|
+
Message?: string | undefined;
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<InternalServerError, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
32
|
+
readonly name: "InvalidRequestException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
Message?: string | undefined;
|
|
35
|
+
constructor(
|
|
36
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
40
|
+
readonly name: "ResourceNotFoundException";
|
|
41
|
+
readonly $fault: "client";
|
|
42
|
+
Message?: string | undefined;
|
|
43
|
+
constructor(
|
|
44
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
45
|
+
);
|
|
46
|
+
}
|
|
47
|
+
export declare class ThrottlingException extends __BaseException {
|
|
48
|
+
readonly name: "ThrottlingException";
|
|
49
|
+
readonly $fault: "client";
|
|
50
|
+
Message?: string | undefined;
|
|
51
|
+
constructor(
|
|
52
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
3
55
|
export interface Dimension {
|
|
4
56
|
Value: string | undefined;
|
|
5
57
|
}
|
|
@@ -49,24 +101,27 @@ export interface AnalysisResult {
|
|
|
49
101
|
IdentifiedType?: IdentifiedType | undefined;
|
|
50
102
|
AnalysisDetail?: string | undefined;
|
|
51
103
|
}
|
|
52
|
-
export interface
|
|
104
|
+
export interface AvailabilityZoneMapping {
|
|
105
|
+
AvailabilityZone: string | undefined;
|
|
106
|
+
}
|
|
107
|
+
export interface AssociateAvailabilityZonesRequest {
|
|
53
108
|
UpdateToken?: string | undefined;
|
|
54
109
|
FirewallArn?: string | undefined;
|
|
55
110
|
FirewallName?: string | undefined;
|
|
56
|
-
|
|
111
|
+
AvailabilityZoneMappings: AvailabilityZoneMapping[] | undefined;
|
|
57
112
|
}
|
|
58
|
-
export interface
|
|
113
|
+
export interface AssociateAvailabilityZonesResponse {
|
|
59
114
|
FirewallArn?: string | undefined;
|
|
60
115
|
FirewallName?: string | undefined;
|
|
61
|
-
|
|
116
|
+
AvailabilityZoneMappings?: AvailabilityZoneMapping[] | undefined;
|
|
62
117
|
UpdateToken?: string | undefined;
|
|
63
118
|
}
|
|
64
|
-
export declare class
|
|
65
|
-
readonly name: "
|
|
119
|
+
export declare class InsufficientCapacityException extends __BaseException {
|
|
120
|
+
readonly name: "InsufficientCapacityException";
|
|
66
121
|
readonly $fault: "server";
|
|
67
122
|
Message?: string | undefined;
|
|
68
123
|
constructor(
|
|
69
|
-
opts: __ExceptionOptionType<
|
|
124
|
+
opts: __ExceptionOptionType<InsufficientCapacityException, __BaseException>
|
|
70
125
|
);
|
|
71
126
|
}
|
|
72
127
|
export declare class InvalidOperationException extends __BaseException {
|
|
@@ -77,14 +132,6 @@ export declare class InvalidOperationException extends __BaseException {
|
|
|
77
132
|
opts: __ExceptionOptionType<InvalidOperationException, __BaseException>
|
|
78
133
|
);
|
|
79
134
|
}
|
|
80
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
81
|
-
readonly name: "InvalidRequestException";
|
|
82
|
-
readonly $fault: "client";
|
|
83
|
-
Message?: string | undefined;
|
|
84
|
-
constructor(
|
|
85
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
86
|
-
);
|
|
87
|
-
}
|
|
88
135
|
export declare class InvalidTokenException extends __BaseException {
|
|
89
136
|
readonly name: "InvalidTokenException";
|
|
90
137
|
readonly $fault: "client";
|
|
@@ -93,21 +140,17 @@ export declare class InvalidTokenException extends __BaseException {
|
|
|
93
140
|
opts: __ExceptionOptionType<InvalidTokenException, __BaseException>
|
|
94
141
|
);
|
|
95
142
|
}
|
|
96
|
-
export
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
102
|
-
);
|
|
143
|
+
export interface AssociateFirewallPolicyRequest {
|
|
144
|
+
UpdateToken?: string | undefined;
|
|
145
|
+
FirewallArn?: string | undefined;
|
|
146
|
+
FirewallName?: string | undefined;
|
|
147
|
+
FirewallPolicyArn: string | undefined;
|
|
103
148
|
}
|
|
104
|
-
export
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
110
|
-
);
|
|
149
|
+
export interface AssociateFirewallPolicyResponse {
|
|
150
|
+
FirewallArn?: string | undefined;
|
|
151
|
+
FirewallName?: string | undefined;
|
|
152
|
+
FirewallPolicyArn?: string | undefined;
|
|
153
|
+
UpdateToken?: string | undefined;
|
|
111
154
|
}
|
|
112
155
|
export declare const IPAddressType: {
|
|
113
156
|
readonly DUALSTACK: "DUALSTACK";
|
|
@@ -131,14 +174,6 @@ export interface AssociateSubnetsResponse {
|
|
|
131
174
|
SubnetMappings?: SubnetMapping[] | undefined;
|
|
132
175
|
UpdateToken?: string | undefined;
|
|
133
176
|
}
|
|
134
|
-
export declare class InsufficientCapacityException extends __BaseException {
|
|
135
|
-
readonly name: "InsufficientCapacityException";
|
|
136
|
-
readonly $fault: "server";
|
|
137
|
-
Message?: string | undefined;
|
|
138
|
-
constructor(
|
|
139
|
-
opts: __ExceptionOptionType<InsufficientCapacityException, __BaseException>
|
|
140
|
-
);
|
|
141
|
-
}
|
|
142
177
|
export declare const AttachmentStatus: {
|
|
143
178
|
readonly CREATING: "CREATING";
|
|
144
179
|
readonly DELETING: "DELETING";
|
|
@@ -222,6 +257,9 @@ export interface CreateFirewallRequest {
|
|
|
222
257
|
Tags?: Tag[] | undefined;
|
|
223
258
|
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
224
259
|
EnabledAnalysisTypes?: EnabledAnalysisType[] | undefined;
|
|
260
|
+
TransitGatewayId?: string | undefined;
|
|
261
|
+
AvailabilityZoneMappings?: AvailabilityZoneMapping[] | undefined;
|
|
262
|
+
AvailabilityZoneChangeProtection?: boolean | undefined;
|
|
225
263
|
}
|
|
226
264
|
export interface Firewall {
|
|
227
265
|
FirewallName?: string | undefined;
|
|
@@ -238,6 +276,10 @@ export interface Firewall {
|
|
|
238
276
|
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
239
277
|
NumberOfAssociations?: number | undefined;
|
|
240
278
|
EnabledAnalysisTypes?: EnabledAnalysisType[] | undefined;
|
|
279
|
+
TransitGatewayId?: string | undefined;
|
|
280
|
+
TransitGatewayOwnerAccountId?: string | undefined;
|
|
281
|
+
AvailabilityZoneMappings?: AvailabilityZoneMapping[] | undefined;
|
|
282
|
+
AvailabilityZoneChangeProtection?: boolean | undefined;
|
|
241
283
|
}
|
|
242
284
|
export declare const FirewallStatusValue: {
|
|
243
285
|
readonly DELETING: "DELETING";
|
|
@@ -261,11 +303,19 @@ export interface SyncState {
|
|
|
261
303
|
Attachment?: Attachment | undefined;
|
|
262
304
|
Config?: Record<string, PerObjectStatus> | undefined;
|
|
263
305
|
}
|
|
306
|
+
export interface TransitGatewayAttachmentSyncState {
|
|
307
|
+
AttachmentId?: string | undefined;
|
|
308
|
+
TransitGatewayAttachmentStatus?: TransitGatewayAttachmentStatus | undefined;
|
|
309
|
+
StatusMessage?: string | undefined;
|
|
310
|
+
}
|
|
264
311
|
export interface FirewallStatus {
|
|
265
312
|
Status: FirewallStatusValue | undefined;
|
|
266
313
|
ConfigurationSyncStateSummary: ConfigurationSyncState | undefined;
|
|
267
314
|
SyncStates?: Record<string, SyncState> | undefined;
|
|
268
315
|
CapacityUsageSummary?: CapacityUsageSummary | undefined;
|
|
316
|
+
TransitGatewayAttachmentSyncState?:
|
|
317
|
+
| TransitGatewayAttachmentSyncState
|
|
318
|
+
| undefined;
|
|
269
319
|
}
|
|
270
320
|
export interface CreateFirewallResponse {
|
|
271
321
|
Firewall?: Firewall | undefined;
|
|
@@ -317,6 +367,7 @@ export interface StatefulRuleGroupReference {
|
|
|
317
367
|
ResourceArn: string | undefined;
|
|
318
368
|
Priority?: number | undefined;
|
|
319
369
|
Override?: StatefulRuleGroupOverride | undefined;
|
|
370
|
+
DeepThreatInspection?: boolean | undefined;
|
|
320
371
|
}
|
|
321
372
|
export interface CustomAction {
|
|
322
373
|
ActionName: string | undefined;
|
|
@@ -412,12 +463,14 @@ export declare const StatefulRuleProtocol: {
|
|
|
412
463
|
readonly DNS: "DNS";
|
|
413
464
|
readonly FTP: "FTP";
|
|
414
465
|
readonly HTTP: "HTTP";
|
|
466
|
+
readonly HTTP2: "HTTP2";
|
|
415
467
|
readonly ICMP: "ICMP";
|
|
416
468
|
readonly IKEV2: "IKEV2";
|
|
417
469
|
readonly IMAP: "IMAP";
|
|
418
470
|
readonly KRB5: "KRB5";
|
|
419
471
|
readonly MSN: "MSN";
|
|
420
472
|
readonly NTP: "NTP";
|
|
473
|
+
readonly QUIC: "QUIC";
|
|
421
474
|
readonly SMB: "SMB";
|
|
422
475
|
readonly SMTP: "SMTP";
|
|
423
476
|
readonly SSH: "SSH";
|
|
@@ -510,6 +563,16 @@ export interface SourceMetadata {
|
|
|
510
563
|
SourceArn?: string | undefined;
|
|
511
564
|
SourceUpdateToken?: string | undefined;
|
|
512
565
|
}
|
|
566
|
+
export declare const SummaryRuleOption: {
|
|
567
|
+
readonly METADATA: "METADATA";
|
|
568
|
+
readonly MSG: "MSG";
|
|
569
|
+
readonly SID: "SID";
|
|
570
|
+
};
|
|
571
|
+
export type SummaryRuleOption =
|
|
572
|
+
(typeof SummaryRuleOption)[keyof typeof SummaryRuleOption];
|
|
573
|
+
export interface SummaryConfiguration {
|
|
574
|
+
RuleOptions?: SummaryRuleOption[] | undefined;
|
|
575
|
+
}
|
|
513
576
|
export declare const RuleGroupType: {
|
|
514
577
|
readonly STATEFUL: "STATEFUL";
|
|
515
578
|
readonly STATELESS: "STATELESS";
|
|
@@ -527,6 +590,7 @@ export interface CreateRuleGroupRequest {
|
|
|
527
590
|
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
528
591
|
SourceMetadata?: SourceMetadata | undefined;
|
|
529
592
|
AnalyzeRuleGroup?: boolean | undefined;
|
|
593
|
+
SummaryConfiguration?: SummaryConfiguration | undefined;
|
|
530
594
|
}
|
|
531
595
|
export interface RuleGroupResponse {
|
|
532
596
|
RuleGroupArn: string | undefined;
|
|
@@ -544,6 +608,7 @@ export interface RuleGroupResponse {
|
|
|
544
608
|
SnsTopic?: string | undefined;
|
|
545
609
|
LastModifiedTime?: Date | undefined;
|
|
546
610
|
AnalysisResults?: AnalysisResult[] | undefined;
|
|
611
|
+
SummaryConfiguration?: SummaryConfiguration | undefined;
|
|
547
612
|
}
|
|
548
613
|
export interface CreateRuleGroupResponse {
|
|
549
614
|
UpdateToken: string | undefined;
|
|
@@ -645,6 +710,13 @@ export interface DeleteFirewallPolicyRequest {
|
|
|
645
710
|
export interface DeleteFirewallPolicyResponse {
|
|
646
711
|
FirewallPolicyResponse: FirewallPolicyResponse | undefined;
|
|
647
712
|
}
|
|
713
|
+
export interface DeleteNetworkFirewallTransitGatewayAttachmentRequest {
|
|
714
|
+
TransitGatewayAttachmentId: string | undefined;
|
|
715
|
+
}
|
|
716
|
+
export interface DeleteNetworkFirewallTransitGatewayAttachmentResponse {
|
|
717
|
+
TransitGatewayAttachmentId: string | undefined;
|
|
718
|
+
TransitGatewayAttachmentStatus: TransitGatewayAttachmentStatus | undefined;
|
|
719
|
+
}
|
|
648
720
|
export interface DeleteResourcePolicyRequest {
|
|
649
721
|
ResourceArn: string | undefined;
|
|
650
722
|
}
|
|
@@ -701,6 +773,7 @@ export interface DescribeFirewallMetadataResponse {
|
|
|
701
773
|
SupportedAvailabilityZones?:
|
|
702
774
|
| Record<string, AvailabilityZoneMetadata>
|
|
703
775
|
| undefined;
|
|
776
|
+
TransitGatewayAttachmentId?: string | undefined;
|
|
704
777
|
}
|
|
705
778
|
export interface DescribeFirewallPolicyRequest {
|
|
706
779
|
FirewallPolicyName?: string | undefined;
|
|
@@ -816,6 +889,24 @@ export interface DescribeRuleGroupMetadataResponse {
|
|
|
816
889
|
StatefulRuleOptions?: StatefulRuleOptions | undefined;
|
|
817
890
|
LastModifiedTime?: Date | undefined;
|
|
818
891
|
}
|
|
892
|
+
export interface DescribeRuleGroupSummaryRequest {
|
|
893
|
+
RuleGroupName?: string | undefined;
|
|
894
|
+
RuleGroupArn?: string | undefined;
|
|
895
|
+
Type?: RuleGroupType | undefined;
|
|
896
|
+
}
|
|
897
|
+
export interface RuleSummary {
|
|
898
|
+
SID?: string | undefined;
|
|
899
|
+
Msg?: string | undefined;
|
|
900
|
+
Metadata?: string | undefined;
|
|
901
|
+
}
|
|
902
|
+
export interface Summary {
|
|
903
|
+
RuleSummaries?: RuleSummary[] | undefined;
|
|
904
|
+
}
|
|
905
|
+
export interface DescribeRuleGroupSummaryResponse {
|
|
906
|
+
RuleGroupName: string | undefined;
|
|
907
|
+
Description?: string | undefined;
|
|
908
|
+
Summary?: Summary | undefined;
|
|
909
|
+
}
|
|
819
910
|
export interface DescribeTLSInspectionConfigurationRequest {
|
|
820
911
|
TLSInspectionConfigurationArn?: string | undefined;
|
|
821
912
|
TLSInspectionConfigurationName?: string | undefined;
|
|
@@ -834,6 +925,18 @@ export interface DescribeVpcEndpointAssociationResponse {
|
|
|
834
925
|
VpcEndpointAssociation?: VpcEndpointAssociation | undefined;
|
|
835
926
|
VpcEndpointAssociationStatus?: VpcEndpointAssociationStatus | undefined;
|
|
836
927
|
}
|
|
928
|
+
export interface DisassociateAvailabilityZonesRequest {
|
|
929
|
+
UpdateToken?: string | undefined;
|
|
930
|
+
FirewallArn?: string | undefined;
|
|
931
|
+
FirewallName?: string | undefined;
|
|
932
|
+
AvailabilityZoneMappings: AvailabilityZoneMapping[] | undefined;
|
|
933
|
+
}
|
|
934
|
+
export interface DisassociateAvailabilityZonesResponse {
|
|
935
|
+
FirewallArn?: string | undefined;
|
|
936
|
+
FirewallName?: string | undefined;
|
|
937
|
+
AvailabilityZoneMappings?: AvailabilityZoneMapping[] | undefined;
|
|
938
|
+
UpdateToken?: string | undefined;
|
|
939
|
+
}
|
|
837
940
|
export interface DisassociateSubnetsRequest {
|
|
838
941
|
UpdateToken?: string | undefined;
|
|
839
942
|
FirewallArn?: string | undefined;
|
|
@@ -849,6 +952,7 @@ export interface DisassociateSubnetsResponse {
|
|
|
849
952
|
export interface FirewallMetadata {
|
|
850
953
|
FirewallName?: string | undefined;
|
|
851
954
|
FirewallArn?: string | undefined;
|
|
955
|
+
TransitGatewayAttachmentId?: string | undefined;
|
|
852
956
|
}
|
|
853
957
|
export interface FirewallPolicyMetadata {
|
|
854
958
|
Name?: string | undefined;
|
|
@@ -948,6 +1052,7 @@ export interface ListFlowOperationsResponse {
|
|
|
948
1052
|
NextToken?: string | undefined;
|
|
949
1053
|
}
|
|
950
1054
|
export declare const ResourceManagedType: {
|
|
1055
|
+
readonly ACTIVE_THREAT_DEFENSE: "ACTIVE_THREAT_DEFENSE";
|
|
951
1056
|
readonly AWS_MANAGED_DOMAIN_LISTS: "AWS_MANAGED_DOMAIN_LISTS";
|
|
952
1057
|
readonly AWS_MANAGED_THREAT_SIGNATURES: "AWS_MANAGED_THREAT_SIGNATURES";
|
|
953
1058
|
};
|
|
@@ -1025,6 +1130,13 @@ export interface PutResourcePolicyRequest {
|
|
|
1025
1130
|
Policy: string | undefined;
|
|
1026
1131
|
}
|
|
1027
1132
|
export interface PutResourcePolicyResponse {}
|
|
1133
|
+
export interface RejectNetworkFirewallTransitGatewayAttachmentRequest {
|
|
1134
|
+
TransitGatewayAttachmentId: string | undefined;
|
|
1135
|
+
}
|
|
1136
|
+
export interface RejectNetworkFirewallTransitGatewayAttachmentResponse {
|
|
1137
|
+
TransitGatewayAttachmentId: string | undefined;
|
|
1138
|
+
TransitGatewayAttachmentStatus: TransitGatewayAttachmentStatus | undefined;
|
|
1139
|
+
}
|
|
1028
1140
|
export interface StartAnalysisReportRequest {
|
|
1029
1141
|
FirewallName?: string | undefined;
|
|
1030
1142
|
FirewallArn?: string | undefined;
|
|
@@ -1069,6 +1181,26 @@ export interface UntagResourceRequest {
|
|
|
1069
1181
|
TagKeys: string[] | undefined;
|
|
1070
1182
|
}
|
|
1071
1183
|
export interface UntagResourceResponse {}
|
|
1184
|
+
export declare class ResourceOwnerCheckException extends __BaseException {
|
|
1185
|
+
readonly name: "ResourceOwnerCheckException";
|
|
1186
|
+
readonly $fault: "client";
|
|
1187
|
+
Message?: string | undefined;
|
|
1188
|
+
constructor(
|
|
1189
|
+
opts: __ExceptionOptionType<ResourceOwnerCheckException, __BaseException>
|
|
1190
|
+
);
|
|
1191
|
+
}
|
|
1192
|
+
export interface UpdateAvailabilityZoneChangeProtectionRequest {
|
|
1193
|
+
UpdateToken?: string | undefined;
|
|
1194
|
+
FirewallArn?: string | undefined;
|
|
1195
|
+
FirewallName?: string | undefined;
|
|
1196
|
+
AvailabilityZoneChangeProtection: boolean | undefined;
|
|
1197
|
+
}
|
|
1198
|
+
export interface UpdateAvailabilityZoneChangeProtectionResponse {
|
|
1199
|
+
UpdateToken?: string | undefined;
|
|
1200
|
+
FirewallArn?: string | undefined;
|
|
1201
|
+
FirewallName?: string | undefined;
|
|
1202
|
+
AvailabilityZoneChangeProtection?: boolean | undefined;
|
|
1203
|
+
}
|
|
1072
1204
|
export interface UpdateFirewallAnalysisSettingsRequest {
|
|
1073
1205
|
EnabledAnalysisTypes?: EnabledAnalysisType[] | undefined;
|
|
1074
1206
|
FirewallArn?: string | undefined;
|
|
@@ -1081,14 +1213,6 @@ export interface UpdateFirewallAnalysisSettingsResponse {
|
|
|
1081
1213
|
FirewallName?: string | undefined;
|
|
1082
1214
|
UpdateToken?: string | undefined;
|
|
1083
1215
|
}
|
|
1084
|
-
export declare class ResourceOwnerCheckException extends __BaseException {
|
|
1085
|
-
readonly name: "ResourceOwnerCheckException";
|
|
1086
|
-
readonly $fault: "client";
|
|
1087
|
-
Message?: string | undefined;
|
|
1088
|
-
constructor(
|
|
1089
|
-
opts: __ExceptionOptionType<ResourceOwnerCheckException, __BaseException>
|
|
1090
|
-
);
|
|
1091
|
-
}
|
|
1092
1216
|
export interface UpdateFirewallDeleteProtectionRequest {
|
|
1093
1217
|
UpdateToken?: string | undefined;
|
|
1094
1218
|
FirewallArn?: string | undefined;
|
|
@@ -1174,6 +1298,7 @@ export interface UpdateRuleGroupRequest {
|
|
|
1174
1298
|
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
1175
1299
|
SourceMetadata?: SourceMetadata | undefined;
|
|
1176
1300
|
AnalyzeRuleGroup?: boolean | undefined;
|
|
1301
|
+
SummaryConfiguration?: SummaryConfiguration | undefined;
|
|
1177
1302
|
}
|
|
1178
1303
|
export interface UpdateRuleGroupResponse {
|
|
1179
1304
|
UpdateToken: string | undefined;
|
|
@@ -3,6 +3,14 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
AcceptNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
8
|
+
AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
9
|
+
} from "../commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand";
|
|
10
|
+
import {
|
|
11
|
+
AssociateAvailabilityZonesCommandInput,
|
|
12
|
+
AssociateAvailabilityZonesCommandOutput,
|
|
13
|
+
} from "../commands/AssociateAvailabilityZonesCommand";
|
|
6
14
|
import {
|
|
7
15
|
AssociateFirewallPolicyCommandInput,
|
|
8
16
|
AssociateFirewallPolicyCommandOutput,
|
|
@@ -39,6 +47,10 @@ import {
|
|
|
39
47
|
DeleteFirewallPolicyCommandInput,
|
|
40
48
|
DeleteFirewallPolicyCommandOutput,
|
|
41
49
|
} from "../commands/DeleteFirewallPolicyCommand";
|
|
50
|
+
import {
|
|
51
|
+
DeleteNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
52
|
+
DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
53
|
+
} from "../commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand";
|
|
42
54
|
import {
|
|
43
55
|
DeleteResourcePolicyCommandInput,
|
|
44
56
|
DeleteResourcePolicyCommandOutput,
|
|
@@ -87,6 +99,10 @@ import {
|
|
|
87
99
|
DescribeRuleGroupMetadataCommandInput,
|
|
88
100
|
DescribeRuleGroupMetadataCommandOutput,
|
|
89
101
|
} from "../commands/DescribeRuleGroupMetadataCommand";
|
|
102
|
+
import {
|
|
103
|
+
DescribeRuleGroupSummaryCommandInput,
|
|
104
|
+
DescribeRuleGroupSummaryCommandOutput,
|
|
105
|
+
} from "../commands/DescribeRuleGroupSummaryCommand";
|
|
90
106
|
import {
|
|
91
107
|
DescribeTLSInspectionConfigurationCommandInput,
|
|
92
108
|
DescribeTLSInspectionConfigurationCommandOutput,
|
|
@@ -95,6 +111,10 @@ import {
|
|
|
95
111
|
DescribeVpcEndpointAssociationCommandInput,
|
|
96
112
|
DescribeVpcEndpointAssociationCommandOutput,
|
|
97
113
|
} from "../commands/DescribeVpcEndpointAssociationCommand";
|
|
114
|
+
import {
|
|
115
|
+
DisassociateAvailabilityZonesCommandInput,
|
|
116
|
+
DisassociateAvailabilityZonesCommandOutput,
|
|
117
|
+
} from "../commands/DisassociateAvailabilityZonesCommand";
|
|
98
118
|
import {
|
|
99
119
|
DisassociateSubnetsCommandInput,
|
|
100
120
|
DisassociateSubnetsCommandOutput,
|
|
@@ -143,6 +163,10 @@ import {
|
|
|
143
163
|
PutResourcePolicyCommandInput,
|
|
144
164
|
PutResourcePolicyCommandOutput,
|
|
145
165
|
} from "../commands/PutResourcePolicyCommand";
|
|
166
|
+
import {
|
|
167
|
+
RejectNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
168
|
+
RejectNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
169
|
+
} from "../commands/RejectNetworkFirewallTransitGatewayAttachmentCommand";
|
|
146
170
|
import {
|
|
147
171
|
StartAnalysisReportCommandInput,
|
|
148
172
|
StartAnalysisReportCommandOutput,
|
|
@@ -163,6 +187,10 @@ import {
|
|
|
163
187
|
UntagResourceCommandInput,
|
|
164
188
|
UntagResourceCommandOutput,
|
|
165
189
|
} from "../commands/UntagResourceCommand";
|
|
190
|
+
import {
|
|
191
|
+
UpdateAvailabilityZoneChangeProtectionCommandInput,
|
|
192
|
+
UpdateAvailabilityZoneChangeProtectionCommandOutput,
|
|
193
|
+
} from "../commands/UpdateAvailabilityZoneChangeProtectionCommand";
|
|
166
194
|
import {
|
|
167
195
|
UpdateFirewallAnalysisSettingsCommandInput,
|
|
168
196
|
UpdateFirewallAnalysisSettingsCommandOutput,
|
|
@@ -203,6 +231,14 @@ import {
|
|
|
203
231
|
UpdateTLSInspectionConfigurationCommandInput,
|
|
204
232
|
UpdateTLSInspectionConfigurationCommandOutput,
|
|
205
233
|
} from "../commands/UpdateTLSInspectionConfigurationCommand";
|
|
234
|
+
export declare const se_AcceptNetworkFirewallTransitGatewayAttachmentCommand: (
|
|
235
|
+
input: AcceptNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<__HttpRequest>;
|
|
238
|
+
export declare const se_AssociateAvailabilityZonesCommand: (
|
|
239
|
+
input: AssociateAvailabilityZonesCommandInput,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<__HttpRequest>;
|
|
206
242
|
export declare const se_AssociateFirewallPolicyCommand: (
|
|
207
243
|
input: AssociateFirewallPolicyCommandInput,
|
|
208
244
|
context: __SerdeContext
|
|
@@ -239,6 +275,10 @@ export declare const se_DeleteFirewallPolicyCommand: (
|
|
|
239
275
|
input: DeleteFirewallPolicyCommandInput,
|
|
240
276
|
context: __SerdeContext
|
|
241
277
|
) => Promise<__HttpRequest>;
|
|
278
|
+
export declare const se_DeleteNetworkFirewallTransitGatewayAttachmentCommand: (
|
|
279
|
+
input: DeleteNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<__HttpRequest>;
|
|
242
282
|
export declare const se_DeleteResourcePolicyCommand: (
|
|
243
283
|
input: DeleteResourcePolicyCommandInput,
|
|
244
284
|
context: __SerdeContext
|
|
@@ -287,6 +327,10 @@ export declare const se_DescribeRuleGroupMetadataCommand: (
|
|
|
287
327
|
input: DescribeRuleGroupMetadataCommandInput,
|
|
288
328
|
context: __SerdeContext
|
|
289
329
|
) => Promise<__HttpRequest>;
|
|
330
|
+
export declare const se_DescribeRuleGroupSummaryCommand: (
|
|
331
|
+
input: DescribeRuleGroupSummaryCommandInput,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<__HttpRequest>;
|
|
290
334
|
export declare const se_DescribeTLSInspectionConfigurationCommand: (
|
|
291
335
|
input: DescribeTLSInspectionConfigurationCommandInput,
|
|
292
336
|
context: __SerdeContext
|
|
@@ -295,6 +339,10 @@ export declare const se_DescribeVpcEndpointAssociationCommand: (
|
|
|
295
339
|
input: DescribeVpcEndpointAssociationCommandInput,
|
|
296
340
|
context: __SerdeContext
|
|
297
341
|
) => Promise<__HttpRequest>;
|
|
342
|
+
export declare const se_DisassociateAvailabilityZonesCommand: (
|
|
343
|
+
input: DisassociateAvailabilityZonesCommandInput,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<__HttpRequest>;
|
|
298
346
|
export declare const se_DisassociateSubnetsCommand: (
|
|
299
347
|
input: DisassociateSubnetsCommandInput,
|
|
300
348
|
context: __SerdeContext
|
|
@@ -343,6 +391,10 @@ export declare const se_PutResourcePolicyCommand: (
|
|
|
343
391
|
input: PutResourcePolicyCommandInput,
|
|
344
392
|
context: __SerdeContext
|
|
345
393
|
) => Promise<__HttpRequest>;
|
|
394
|
+
export declare const se_RejectNetworkFirewallTransitGatewayAttachmentCommand: (
|
|
395
|
+
input: RejectNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
396
|
+
context: __SerdeContext
|
|
397
|
+
) => Promise<__HttpRequest>;
|
|
346
398
|
export declare const se_StartAnalysisReportCommand: (
|
|
347
399
|
input: StartAnalysisReportCommandInput,
|
|
348
400
|
context: __SerdeContext
|
|
@@ -363,6 +415,10 @@ export declare const se_UntagResourceCommand: (
|
|
|
363
415
|
input: UntagResourceCommandInput,
|
|
364
416
|
context: __SerdeContext
|
|
365
417
|
) => Promise<__HttpRequest>;
|
|
418
|
+
export declare const se_UpdateAvailabilityZoneChangeProtectionCommand: (
|
|
419
|
+
input: UpdateAvailabilityZoneChangeProtectionCommandInput,
|
|
420
|
+
context: __SerdeContext
|
|
421
|
+
) => Promise<__HttpRequest>;
|
|
366
422
|
export declare const se_UpdateFirewallAnalysisSettingsCommand: (
|
|
367
423
|
input: UpdateFirewallAnalysisSettingsCommandInput,
|
|
368
424
|
context: __SerdeContext
|
|
@@ -403,6 +459,14 @@ export declare const se_UpdateTLSInspectionConfigurationCommand: (
|
|
|
403
459
|
input: UpdateTLSInspectionConfigurationCommandInput,
|
|
404
460
|
context: __SerdeContext
|
|
405
461
|
) => Promise<__HttpRequest>;
|
|
462
|
+
export declare const de_AcceptNetworkFirewallTransitGatewayAttachmentCommand: (
|
|
463
|
+
output: __HttpResponse,
|
|
464
|
+
context: __SerdeContext
|
|
465
|
+
) => Promise<AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput>;
|
|
466
|
+
export declare const de_AssociateAvailabilityZonesCommand: (
|
|
467
|
+
output: __HttpResponse,
|
|
468
|
+
context: __SerdeContext
|
|
469
|
+
) => Promise<AssociateAvailabilityZonesCommandOutput>;
|
|
406
470
|
export declare const de_AssociateFirewallPolicyCommand: (
|
|
407
471
|
output: __HttpResponse,
|
|
408
472
|
context: __SerdeContext
|
|
@@ -439,6 +503,10 @@ export declare const de_DeleteFirewallPolicyCommand: (
|
|
|
439
503
|
output: __HttpResponse,
|
|
440
504
|
context: __SerdeContext
|
|
441
505
|
) => Promise<DeleteFirewallPolicyCommandOutput>;
|
|
506
|
+
export declare const de_DeleteNetworkFirewallTransitGatewayAttachmentCommand: (
|
|
507
|
+
output: __HttpResponse,
|
|
508
|
+
context: __SerdeContext
|
|
509
|
+
) => Promise<DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput>;
|
|
442
510
|
export declare const de_DeleteResourcePolicyCommand: (
|
|
443
511
|
output: __HttpResponse,
|
|
444
512
|
context: __SerdeContext
|
|
@@ -487,6 +555,10 @@ export declare const de_DescribeRuleGroupMetadataCommand: (
|
|
|
487
555
|
output: __HttpResponse,
|
|
488
556
|
context: __SerdeContext
|
|
489
557
|
) => Promise<DescribeRuleGroupMetadataCommandOutput>;
|
|
558
|
+
export declare const de_DescribeRuleGroupSummaryCommand: (
|
|
559
|
+
output: __HttpResponse,
|
|
560
|
+
context: __SerdeContext
|
|
561
|
+
) => Promise<DescribeRuleGroupSummaryCommandOutput>;
|
|
490
562
|
export declare const de_DescribeTLSInspectionConfigurationCommand: (
|
|
491
563
|
output: __HttpResponse,
|
|
492
564
|
context: __SerdeContext
|
|
@@ -495,6 +567,10 @@ export declare const de_DescribeVpcEndpointAssociationCommand: (
|
|
|
495
567
|
output: __HttpResponse,
|
|
496
568
|
context: __SerdeContext
|
|
497
569
|
) => Promise<DescribeVpcEndpointAssociationCommandOutput>;
|
|
570
|
+
export declare const de_DisassociateAvailabilityZonesCommand: (
|
|
571
|
+
output: __HttpResponse,
|
|
572
|
+
context: __SerdeContext
|
|
573
|
+
) => Promise<DisassociateAvailabilityZonesCommandOutput>;
|
|
498
574
|
export declare const de_DisassociateSubnetsCommand: (
|
|
499
575
|
output: __HttpResponse,
|
|
500
576
|
context: __SerdeContext
|
|
@@ -543,6 +619,10 @@ export declare const de_PutResourcePolicyCommand: (
|
|
|
543
619
|
output: __HttpResponse,
|
|
544
620
|
context: __SerdeContext
|
|
545
621
|
) => Promise<PutResourcePolicyCommandOutput>;
|
|
622
|
+
export declare const de_RejectNetworkFirewallTransitGatewayAttachmentCommand: (
|
|
623
|
+
output: __HttpResponse,
|
|
624
|
+
context: __SerdeContext
|
|
625
|
+
) => Promise<RejectNetworkFirewallTransitGatewayAttachmentCommandOutput>;
|
|
546
626
|
export declare const de_StartAnalysisReportCommand: (
|
|
547
627
|
output: __HttpResponse,
|
|
548
628
|
context: __SerdeContext
|
|
@@ -563,6 +643,10 @@ export declare const de_UntagResourceCommand: (
|
|
|
563
643
|
output: __HttpResponse,
|
|
564
644
|
context: __SerdeContext
|
|
565
645
|
) => Promise<UntagResourceCommandOutput>;
|
|
646
|
+
export declare const de_UpdateAvailabilityZoneChangeProtectionCommand: (
|
|
647
|
+
output: __HttpResponse,
|
|
648
|
+
context: __SerdeContext
|
|
649
|
+
) => Promise<UpdateAvailabilityZoneChangeProtectionCommandOutput>;
|
|
566
650
|
export declare const de_UpdateFirewallAnalysisSettingsCommand: (
|
|
567
651
|
output: __HttpResponse,
|
|
568
652
|
context: __SerdeContext
|
|
@@ -24,8 +24,10 @@ export declare const getRuntimeConfig: (
|
|
|
24
24
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
25
|
sha256: import("@smithy/types").HashConstructor;
|
|
26
26
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
27
|
-
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
28
|
-
|
|
27
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
28
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
29
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
30
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
29
31
|
apiVersion: string;
|
|
30
32
|
cacheMiddleware?: boolean | undefined;
|
|
31
33
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -21,8 +21,10 @@ export declare const getRuntimeConfig: (
|
|
|
21
21
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
22
22
|
disableHostPrefix: boolean;
|
|
23
23
|
serviceId: string;
|
|
24
|
-
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
25
|
-
|
|
24
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
25
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
27
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
28
|
region: string | import("@smithy/types").Provider<any>;
|
|
27
29
|
profile?: string;
|
|
28
30
|
defaultUserAgentProvider: (
|
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.831.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",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.826.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.830.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.821.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.821.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.821.0",
|