@aws-sdk/client-network-firewall 3.934.0 → 3.935.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 +188 -168
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +171 -0
- package/dist-es/models/errors.js +169 -0
- package/dist-es/models/models_0.js +1 -333
- package/dist-es/schemas/schemas_0.js +16 -5
- package/dist-types/commands/CreateFirewallCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFirewallCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFirewallCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRuleGroupMetadataCommand.d.ts +3 -0
- package/dist-types/commands/ListRuleGroupsCommand.d.ts +3 -1
- package/dist-types/commands/UpdateFirewallAnalysisSettingsCommand.d.ts +3 -0
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +403 -0
- package/dist-types/models/errors.d.ts +174 -0
- package/dist-types/models/models_0.d.ts +26 -562
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +223 -0
- package/dist-types/ts3.4/models/errors.d.ts +101 -0
- package/dist-types/ts3.4/models/models_0.d.ts +36 -315
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,57 +1,41 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
AttachmentStatus,
|
|
3
|
+
ConfigurationSyncState,
|
|
4
|
+
EnabledAnalysisType,
|
|
5
|
+
EncryptionType,
|
|
6
|
+
FirewallStatusValue,
|
|
7
|
+
FlowOperationStatus,
|
|
8
|
+
FlowOperationType,
|
|
9
|
+
GeneratedRulesType,
|
|
10
|
+
IdentifiedType,
|
|
11
|
+
IPAddressType,
|
|
12
|
+
LogDestinationType,
|
|
13
|
+
LogType,
|
|
14
|
+
OverrideAction,
|
|
15
|
+
PerObjectSyncStatus,
|
|
16
|
+
ResourceManagedStatus,
|
|
17
|
+
ResourceManagedType,
|
|
18
|
+
ResourceStatus,
|
|
19
|
+
RevocationCheckAction,
|
|
20
|
+
RuleGroupType,
|
|
21
|
+
RuleOrder,
|
|
22
|
+
StatefulAction,
|
|
23
|
+
StatefulRuleDirection,
|
|
24
|
+
StatefulRuleProtocol,
|
|
25
|
+
StreamExceptionPolicy,
|
|
26
|
+
SubscriptionStatus,
|
|
27
|
+
SummaryRuleOption,
|
|
28
|
+
TargetType,
|
|
29
|
+
TCPFlag,
|
|
30
|
+
TransitGatewayAttachmentStatus,
|
|
31
|
+
} from "./enums";
|
|
3
32
|
export interface AcceptNetworkFirewallTransitGatewayAttachmentRequest {
|
|
4
33
|
TransitGatewayAttachmentId: string | undefined;
|
|
5
34
|
}
|
|
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
35
|
export interface AcceptNetworkFirewallTransitGatewayAttachmentResponse {
|
|
20
36
|
TransitGatewayAttachmentId: string | undefined;
|
|
21
37
|
TransitGatewayAttachmentStatus: TransitGatewayAttachmentStatus | undefined;
|
|
22
38
|
}
|
|
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
|
-
}
|
|
55
39
|
export interface Dimension {
|
|
56
40
|
Value: string | undefined;
|
|
57
41
|
}
|
|
@@ -64,12 +48,6 @@ export interface ActionDefinition {
|
|
|
64
48
|
export interface Address {
|
|
65
49
|
AddressDefinition: string | undefined;
|
|
66
50
|
}
|
|
67
|
-
export declare const EnabledAnalysisType: {
|
|
68
|
-
readonly HTTP_HOST: "HTTP_HOST";
|
|
69
|
-
readonly TLS_SNI: "TLS_SNI";
|
|
70
|
-
};
|
|
71
|
-
export type EnabledAnalysisType =
|
|
72
|
-
(typeof EnabledAnalysisType)[keyof typeof EnabledAnalysisType];
|
|
73
51
|
export interface AnalysisReport {
|
|
74
52
|
AnalysisReportId?: string | undefined;
|
|
75
53
|
AnalysisType?: EnabledAnalysisType | undefined;
|
|
@@ -90,12 +68,6 @@ export interface AnalysisTypeReportResult {
|
|
|
90
68
|
Hits?: Hits | undefined;
|
|
91
69
|
UniqueSources?: UniqueSources | undefined;
|
|
92
70
|
}
|
|
93
|
-
export declare const IdentifiedType: {
|
|
94
|
-
readonly STATELESS_RULE_CONTAINS_TCP_FLAGS: "STATELESS_RULE_CONTAINS_TCP_FLAGS";
|
|
95
|
-
readonly STATELESS_RULE_FORWARDING_ASYMMETRICALLY: "STATELESS_RULE_FORWARDING_ASYMMETRICALLY";
|
|
96
|
-
};
|
|
97
|
-
export type IdentifiedType =
|
|
98
|
-
(typeof IdentifiedType)[keyof typeof IdentifiedType];
|
|
99
71
|
export interface AnalysisResult {
|
|
100
72
|
IdentifiedRuleIds?: string[] | undefined;
|
|
101
73
|
IdentifiedType?: IdentifiedType | undefined;
|
|
@@ -116,30 +88,6 @@ export interface AssociateAvailabilityZonesResponse {
|
|
|
116
88
|
AvailabilityZoneMappings?: AvailabilityZoneMapping[] | undefined;
|
|
117
89
|
UpdateToken?: string | undefined;
|
|
118
90
|
}
|
|
119
|
-
export declare class InsufficientCapacityException extends __BaseException {
|
|
120
|
-
readonly name: "InsufficientCapacityException";
|
|
121
|
-
readonly $fault: "server";
|
|
122
|
-
Message?: string | undefined;
|
|
123
|
-
constructor(
|
|
124
|
-
opts: __ExceptionOptionType<InsufficientCapacityException, __BaseException>
|
|
125
|
-
);
|
|
126
|
-
}
|
|
127
|
-
export declare class InvalidOperationException extends __BaseException {
|
|
128
|
-
readonly name: "InvalidOperationException";
|
|
129
|
-
readonly $fault: "client";
|
|
130
|
-
Message?: string | undefined;
|
|
131
|
-
constructor(
|
|
132
|
-
opts: __ExceptionOptionType<InvalidOperationException, __BaseException>
|
|
133
|
-
);
|
|
134
|
-
}
|
|
135
|
-
export declare class InvalidTokenException extends __BaseException {
|
|
136
|
-
readonly name: "InvalidTokenException";
|
|
137
|
-
readonly $fault: "client";
|
|
138
|
-
Message?: string | undefined;
|
|
139
|
-
constructor(
|
|
140
|
-
opts: __ExceptionOptionType<InvalidTokenException, __BaseException>
|
|
141
|
-
);
|
|
142
|
-
}
|
|
143
91
|
export interface AssociateFirewallPolicyRequest {
|
|
144
92
|
UpdateToken?: string | undefined;
|
|
145
93
|
FirewallArn?: string | undefined;
|
|
@@ -152,12 +100,6 @@ export interface AssociateFirewallPolicyResponse {
|
|
|
152
100
|
FirewallPolicyArn?: string | undefined;
|
|
153
101
|
UpdateToken?: string | undefined;
|
|
154
102
|
}
|
|
155
|
-
export declare const IPAddressType: {
|
|
156
|
-
readonly DUALSTACK: "DUALSTACK";
|
|
157
|
-
readonly IPV4: "IPV4";
|
|
158
|
-
readonly IPV6: "IPV6";
|
|
159
|
-
};
|
|
160
|
-
export type IPAddressType = (typeof IPAddressType)[keyof typeof IPAddressType];
|
|
161
103
|
export interface SubnetMapping {
|
|
162
104
|
SubnetId: string | undefined;
|
|
163
105
|
IPAddressType?: IPAddressType | undefined;
|
|
@@ -174,16 +116,6 @@ export interface AssociateSubnetsResponse {
|
|
|
174
116
|
SubnetMappings?: SubnetMapping[] | undefined;
|
|
175
117
|
UpdateToken?: string | undefined;
|
|
176
118
|
}
|
|
177
|
-
export declare const AttachmentStatus: {
|
|
178
|
-
readonly CREATING: "CREATING";
|
|
179
|
-
readonly DELETING: "DELETING";
|
|
180
|
-
readonly ERROR: "ERROR";
|
|
181
|
-
readonly FAILED: "FAILED";
|
|
182
|
-
readonly READY: "READY";
|
|
183
|
-
readonly SCALING: "SCALING";
|
|
184
|
-
};
|
|
185
|
-
export type AttachmentStatus =
|
|
186
|
-
(typeof AttachmentStatus)[keyof typeof AttachmentStatus];
|
|
187
119
|
export interface Attachment {
|
|
188
120
|
SubnetId?: string | undefined;
|
|
189
121
|
EndpointId?: string | undefined;
|
|
@@ -213,30 +145,10 @@ export interface TlsCertificateData {
|
|
|
213
145
|
Status?: string | undefined;
|
|
214
146
|
StatusMessage?: string | undefined;
|
|
215
147
|
}
|
|
216
|
-
export declare const RevocationCheckAction: {
|
|
217
|
-
readonly DROP: "DROP";
|
|
218
|
-
readonly PASS: "PASS";
|
|
219
|
-
readonly REJECT: "REJECT";
|
|
220
|
-
};
|
|
221
|
-
export type RevocationCheckAction =
|
|
222
|
-
(typeof RevocationCheckAction)[keyof typeof RevocationCheckAction];
|
|
223
148
|
export interface CheckCertificateRevocationStatusActions {
|
|
224
149
|
RevokedStatusAction?: RevocationCheckAction | undefined;
|
|
225
150
|
UnknownStatusAction?: RevocationCheckAction | undefined;
|
|
226
151
|
}
|
|
227
|
-
export declare const ConfigurationSyncState: {
|
|
228
|
-
readonly CAPACITY_CONSTRAINED: "CAPACITY_CONSTRAINED";
|
|
229
|
-
readonly IN_SYNC: "IN_SYNC";
|
|
230
|
-
readonly PENDING: "PENDING";
|
|
231
|
-
};
|
|
232
|
-
export type ConfigurationSyncState =
|
|
233
|
-
(typeof ConfigurationSyncState)[keyof typeof ConfigurationSyncState];
|
|
234
|
-
export declare const EncryptionType: {
|
|
235
|
-
readonly AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY";
|
|
236
|
-
readonly CUSTOMER_KMS: "CUSTOMER_KMS";
|
|
237
|
-
};
|
|
238
|
-
export type EncryptionType =
|
|
239
|
-
(typeof EncryptionType)[keyof typeof EncryptionType];
|
|
240
152
|
export interface EncryptionConfiguration {
|
|
241
153
|
KeyId?: string | undefined;
|
|
242
154
|
Type: EncryptionType | undefined;
|
|
@@ -281,20 +193,6 @@ export interface Firewall {
|
|
|
281
193
|
AvailabilityZoneMappings?: AvailabilityZoneMapping[] | undefined;
|
|
282
194
|
AvailabilityZoneChangeProtection?: boolean | undefined;
|
|
283
195
|
}
|
|
284
|
-
export declare const FirewallStatusValue: {
|
|
285
|
-
readonly DELETING: "DELETING";
|
|
286
|
-
readonly PROVISIONING: "PROVISIONING";
|
|
287
|
-
readonly READY: "READY";
|
|
288
|
-
};
|
|
289
|
-
export type FirewallStatusValue =
|
|
290
|
-
(typeof FirewallStatusValue)[keyof typeof FirewallStatusValue];
|
|
291
|
-
export declare const PerObjectSyncStatus: {
|
|
292
|
-
readonly CAPACITY_CONSTRAINED: "CAPACITY_CONSTRAINED";
|
|
293
|
-
readonly IN_SYNC: "IN_SYNC";
|
|
294
|
-
readonly PENDING: "PENDING";
|
|
295
|
-
};
|
|
296
|
-
export type PerObjectSyncStatus =
|
|
297
|
-
(typeof PerObjectSyncStatus)[keyof typeof PerObjectSyncStatus];
|
|
298
196
|
export interface PerObjectStatus {
|
|
299
197
|
SyncStatus?: PerObjectSyncStatus | undefined;
|
|
300
198
|
UpdateToken?: string | undefined;
|
|
@@ -321,14 +219,6 @@ export interface CreateFirewallResponse {
|
|
|
321
219
|
Firewall?: Firewall | undefined;
|
|
322
220
|
FirewallStatus?: FirewallStatus | undefined;
|
|
323
221
|
}
|
|
324
|
-
export declare class LimitExceededException extends __BaseException {
|
|
325
|
-
readonly name: "LimitExceededException";
|
|
326
|
-
readonly $fault: "client";
|
|
327
|
-
Message?: string | undefined;
|
|
328
|
-
constructor(
|
|
329
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
330
|
-
);
|
|
331
|
-
}
|
|
332
222
|
export interface IPSet {
|
|
333
223
|
Definition: string[] | undefined;
|
|
334
224
|
}
|
|
@@ -338,28 +228,11 @@ export interface PolicyVariables {
|
|
|
338
228
|
export interface FlowTimeouts {
|
|
339
229
|
TcpIdleTimeoutSeconds?: number | undefined;
|
|
340
230
|
}
|
|
341
|
-
export declare const RuleOrder: {
|
|
342
|
-
readonly DEFAULT_ACTION_ORDER: "DEFAULT_ACTION_ORDER";
|
|
343
|
-
readonly STRICT_ORDER: "STRICT_ORDER";
|
|
344
|
-
};
|
|
345
|
-
export type RuleOrder = (typeof RuleOrder)[keyof typeof RuleOrder];
|
|
346
|
-
export declare const StreamExceptionPolicy: {
|
|
347
|
-
readonly CONTINUE: "CONTINUE";
|
|
348
|
-
readonly DROP: "DROP";
|
|
349
|
-
readonly REJECT: "REJECT";
|
|
350
|
-
};
|
|
351
|
-
export type StreamExceptionPolicy =
|
|
352
|
-
(typeof StreamExceptionPolicy)[keyof typeof StreamExceptionPolicy];
|
|
353
231
|
export interface StatefulEngineOptions {
|
|
354
232
|
RuleOrder?: RuleOrder | undefined;
|
|
355
233
|
StreamExceptionPolicy?: StreamExceptionPolicy | undefined;
|
|
356
234
|
FlowTimeouts?: FlowTimeouts | undefined;
|
|
357
235
|
}
|
|
358
|
-
export declare const OverrideAction: {
|
|
359
|
-
readonly DROP_TO_ALERT: "DROP_TO_ALERT";
|
|
360
|
-
};
|
|
361
|
-
export type OverrideAction =
|
|
362
|
-
(typeof OverrideAction)[keyof typeof OverrideAction];
|
|
363
236
|
export interface StatefulRuleGroupOverride {
|
|
364
237
|
Action?: OverrideAction | undefined;
|
|
365
238
|
}
|
|
@@ -397,13 +270,6 @@ export interface CreateFirewallPolicyRequest {
|
|
|
397
270
|
DryRun?: boolean | undefined;
|
|
398
271
|
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
399
272
|
}
|
|
400
|
-
export declare const ResourceStatus: {
|
|
401
|
-
readonly ACTIVE: "ACTIVE";
|
|
402
|
-
readonly DELETING: "DELETING";
|
|
403
|
-
readonly ERROR: "ERROR";
|
|
404
|
-
};
|
|
405
|
-
export type ResourceStatus =
|
|
406
|
-
(typeof ResourceStatus)[keyof typeof ResourceStatus];
|
|
407
273
|
export interface FirewallPolicyResponse {
|
|
408
274
|
FirewallPolicyName: string | undefined;
|
|
409
275
|
FirewallPolicyArn: string | undefined;
|
|
@@ -427,63 +293,11 @@ export interface IPSetReference {
|
|
|
427
293
|
export interface ReferenceSets {
|
|
428
294
|
IPSetReferences?: Record<string, IPSetReference> | undefined;
|
|
429
295
|
}
|
|
430
|
-
export declare const GeneratedRulesType: {
|
|
431
|
-
readonly ALERTLIST: "ALERTLIST";
|
|
432
|
-
readonly ALLOWLIST: "ALLOWLIST";
|
|
433
|
-
readonly DENYLIST: "DENYLIST";
|
|
434
|
-
readonly REJECTLIST: "REJECTLIST";
|
|
435
|
-
};
|
|
436
|
-
export type GeneratedRulesType =
|
|
437
|
-
(typeof GeneratedRulesType)[keyof typeof GeneratedRulesType];
|
|
438
|
-
export declare const TargetType: {
|
|
439
|
-
readonly HTTP_HOST: "HTTP_HOST";
|
|
440
|
-
readonly TLS_SNI: "TLS_SNI";
|
|
441
|
-
};
|
|
442
|
-
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
443
296
|
export interface RulesSourceList {
|
|
444
297
|
Targets: string[] | undefined;
|
|
445
298
|
TargetTypes: TargetType[] | undefined;
|
|
446
299
|
GeneratedRulesType: GeneratedRulesType | undefined;
|
|
447
300
|
}
|
|
448
|
-
export declare const StatefulAction: {
|
|
449
|
-
readonly ALERT: "ALERT";
|
|
450
|
-
readonly DROP: "DROP";
|
|
451
|
-
readonly PASS: "PASS";
|
|
452
|
-
readonly REJECT: "REJECT";
|
|
453
|
-
};
|
|
454
|
-
export type StatefulAction =
|
|
455
|
-
(typeof StatefulAction)[keyof typeof StatefulAction];
|
|
456
|
-
export declare const StatefulRuleDirection: {
|
|
457
|
-
readonly ANY: "ANY";
|
|
458
|
-
readonly FORWARD: "FORWARD";
|
|
459
|
-
};
|
|
460
|
-
export type StatefulRuleDirection =
|
|
461
|
-
(typeof StatefulRuleDirection)[keyof typeof StatefulRuleDirection];
|
|
462
|
-
export declare const StatefulRuleProtocol: {
|
|
463
|
-
readonly ANY: "IP";
|
|
464
|
-
readonly DCERPC: "DCERPC";
|
|
465
|
-
readonly DHCP: "DHCP";
|
|
466
|
-
readonly DNS: "DNS";
|
|
467
|
-
readonly FTP: "FTP";
|
|
468
|
-
readonly HTTP: "HTTP";
|
|
469
|
-
readonly HTTP2: "HTTP2";
|
|
470
|
-
readonly ICMP: "ICMP";
|
|
471
|
-
readonly IKEV2: "IKEV2";
|
|
472
|
-
readonly IMAP: "IMAP";
|
|
473
|
-
readonly KRB5: "KRB5";
|
|
474
|
-
readonly MSN: "MSN";
|
|
475
|
-
readonly NTP: "NTP";
|
|
476
|
-
readonly QUIC: "QUIC";
|
|
477
|
-
readonly SMB: "SMB";
|
|
478
|
-
readonly SMTP: "SMTP";
|
|
479
|
-
readonly SSH: "SSH";
|
|
480
|
-
readonly TCP: "TCP";
|
|
481
|
-
readonly TFTP: "TFTP";
|
|
482
|
-
readonly TLS: "TLS";
|
|
483
|
-
readonly UDP: "UDP";
|
|
484
|
-
};
|
|
485
|
-
export type StatefulRuleProtocol =
|
|
486
|
-
(typeof StatefulRuleProtocol)[keyof typeof StatefulRuleProtocol];
|
|
487
301
|
export interface Header {
|
|
488
302
|
Protocol: StatefulRuleProtocol | undefined;
|
|
489
303
|
Source: string | undefined;
|
|
@@ -505,17 +319,6 @@ export interface PortRange {
|
|
|
505
319
|
FromPort: number | undefined;
|
|
506
320
|
ToPort: number | undefined;
|
|
507
321
|
}
|
|
508
|
-
export declare const TCPFlag: {
|
|
509
|
-
readonly ACK: "ACK";
|
|
510
|
-
readonly CWR: "CWR";
|
|
511
|
-
readonly ECE: "ECE";
|
|
512
|
-
readonly FIN: "FIN";
|
|
513
|
-
readonly PSH: "PSH";
|
|
514
|
-
readonly RST: "RST";
|
|
515
|
-
readonly SYN: "SYN";
|
|
516
|
-
readonly URG: "URG";
|
|
517
|
-
};
|
|
518
|
-
export type TCPFlag = (typeof TCPFlag)[keyof typeof TCPFlag];
|
|
519
322
|
export interface TCPFlagField {
|
|
520
323
|
Flags: TCPFlag[] | undefined;
|
|
521
324
|
Masks?: TCPFlag[] | undefined;
|
|
@@ -566,21 +369,9 @@ export interface SourceMetadata {
|
|
|
566
369
|
SourceArn?: string | undefined;
|
|
567
370
|
SourceUpdateToken?: string | undefined;
|
|
568
371
|
}
|
|
569
|
-
export declare const SummaryRuleOption: {
|
|
570
|
-
readonly METADATA: "METADATA";
|
|
571
|
-
readonly MSG: "MSG";
|
|
572
|
-
readonly SID: "SID";
|
|
573
|
-
};
|
|
574
|
-
export type SummaryRuleOption =
|
|
575
|
-
(typeof SummaryRuleOption)[keyof typeof SummaryRuleOption];
|
|
576
372
|
export interface SummaryConfiguration {
|
|
577
373
|
RuleOptions?: SummaryRuleOption[] | undefined;
|
|
578
374
|
}
|
|
579
|
-
export declare const RuleGroupType: {
|
|
580
|
-
readonly STATEFUL: "STATEFUL";
|
|
581
|
-
readonly STATELESS: "STATELESS";
|
|
582
|
-
};
|
|
583
|
-
export type RuleGroupType = (typeof RuleGroupType)[keyof typeof RuleGroupType];
|
|
584
375
|
export interface CreateRuleGroupRequest {
|
|
585
376
|
RuleGroupName: string | undefined;
|
|
586
377
|
RuleGroup?: RuleGroup | undefined;
|
|
@@ -698,14 +489,6 @@ export interface DeleteFirewallResponse {
|
|
|
698
489
|
Firewall?: Firewall | undefined;
|
|
699
490
|
FirewallStatus?: FirewallStatus | undefined;
|
|
700
491
|
}
|
|
701
|
-
export declare class UnsupportedOperationException extends __BaseException {
|
|
702
|
-
readonly name: "UnsupportedOperationException";
|
|
703
|
-
readonly $fault: "client";
|
|
704
|
-
Message?: string | undefined;
|
|
705
|
-
constructor(
|
|
706
|
-
opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
|
|
707
|
-
);
|
|
708
|
-
}
|
|
709
492
|
export interface DeleteFirewallPolicyRequest {
|
|
710
493
|
FirewallPolicyName?: string | undefined;
|
|
711
494
|
FirewallPolicyArn?: string | undefined;
|
|
@@ -724,14 +507,6 @@ export interface DeleteResourcePolicyRequest {
|
|
|
724
507
|
ResourceArn: string | undefined;
|
|
725
508
|
}
|
|
726
509
|
export interface DeleteResourcePolicyResponse {}
|
|
727
|
-
export declare class InvalidResourcePolicyException extends __BaseException {
|
|
728
|
-
readonly name: "InvalidResourcePolicyException";
|
|
729
|
-
readonly $fault: "client";
|
|
730
|
-
Message?: string | undefined;
|
|
731
|
-
constructor(
|
|
732
|
-
opts: __ExceptionOptionType<InvalidResourcePolicyException, __BaseException>
|
|
733
|
-
);
|
|
734
|
-
}
|
|
735
510
|
export interface DeleteRuleGroupRequest {
|
|
736
511
|
RuleGroupName?: string | undefined;
|
|
737
512
|
RuleGroupArn?: string | undefined;
|
|
@@ -805,20 +580,6 @@ export interface FlowOperation {
|
|
|
805
580
|
MinimumFlowAgeInSeconds?: number | undefined;
|
|
806
581
|
FlowFilters?: FlowFilter[] | undefined;
|
|
807
582
|
}
|
|
808
|
-
export declare const FlowOperationStatus: {
|
|
809
|
-
readonly COMPLETED: "COMPLETED";
|
|
810
|
-
readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
|
|
811
|
-
readonly FAILED: "FAILED";
|
|
812
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
813
|
-
};
|
|
814
|
-
export type FlowOperationStatus =
|
|
815
|
-
(typeof FlowOperationStatus)[keyof typeof FlowOperationStatus];
|
|
816
|
-
export declare const FlowOperationType: {
|
|
817
|
-
readonly FLOW_CAPTURE: "FLOW_CAPTURE";
|
|
818
|
-
readonly FLOW_FLUSH: "FLOW_FLUSH";
|
|
819
|
-
};
|
|
820
|
-
export type FlowOperationType =
|
|
821
|
-
(typeof FlowOperationType)[keyof typeof FlowOperationType];
|
|
822
583
|
export interface DescribeFlowOperationResponse {
|
|
823
584
|
FirewallArn?: string | undefined;
|
|
824
585
|
AvailabilityZone?: string | undefined;
|
|
@@ -835,19 +596,6 @@ export interface DescribeLoggingConfigurationRequest {
|
|
|
835
596
|
FirewallArn?: string | undefined;
|
|
836
597
|
FirewallName?: string | undefined;
|
|
837
598
|
}
|
|
838
|
-
export declare const LogDestinationType: {
|
|
839
|
-
readonly CLOUDWATCH_LOGS: "CloudWatchLogs";
|
|
840
|
-
readonly KINESIS_DATA_FIREHOSE: "KinesisDataFirehose";
|
|
841
|
-
readonly S3: "S3";
|
|
842
|
-
};
|
|
843
|
-
export type LogDestinationType =
|
|
844
|
-
(typeof LogDestinationType)[keyof typeof LogDestinationType];
|
|
845
|
-
export declare const LogType: {
|
|
846
|
-
readonly ALERT: "ALERT";
|
|
847
|
-
readonly FLOW: "FLOW";
|
|
848
|
-
readonly TLS: "TLS";
|
|
849
|
-
};
|
|
850
|
-
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
851
599
|
export interface LogDestinationConfig {
|
|
852
600
|
LogType: LogType | undefined;
|
|
853
601
|
LogDestinationType: LogDestinationType | undefined;
|
|
@@ -891,6 +639,9 @@ export interface DescribeRuleGroupMetadataResponse {
|
|
|
891
639
|
Capacity?: number | undefined;
|
|
892
640
|
StatefulRuleOptions?: StatefulRuleOptions | undefined;
|
|
893
641
|
LastModifiedTime?: Date | undefined;
|
|
642
|
+
VendorName?: string | undefined;
|
|
643
|
+
ProductId?: string | undefined;
|
|
644
|
+
ListingName?: string | undefined;
|
|
894
645
|
}
|
|
895
646
|
export interface DescribeRuleGroupSummaryRequest {
|
|
896
647
|
RuleGroupName?: string | undefined;
|
|
@@ -1054,29 +805,18 @@ export interface ListFlowOperationsResponse {
|
|
|
1054
805
|
FlowOperations?: FlowOperationMetadata[] | undefined;
|
|
1055
806
|
NextToken?: string | undefined;
|
|
1056
807
|
}
|
|
1057
|
-
export declare const ResourceManagedType: {
|
|
1058
|
-
readonly ACTIVE_THREAT_DEFENSE: "ACTIVE_THREAT_DEFENSE";
|
|
1059
|
-
readonly AWS_MANAGED_DOMAIN_LISTS: "AWS_MANAGED_DOMAIN_LISTS";
|
|
1060
|
-
readonly AWS_MANAGED_THREAT_SIGNATURES: "AWS_MANAGED_THREAT_SIGNATURES";
|
|
1061
|
-
};
|
|
1062
|
-
export type ResourceManagedType =
|
|
1063
|
-
(typeof ResourceManagedType)[keyof typeof ResourceManagedType];
|
|
1064
|
-
export declare const ResourceManagedStatus: {
|
|
1065
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
1066
|
-
readonly MANAGED: "MANAGED";
|
|
1067
|
-
};
|
|
1068
|
-
export type ResourceManagedStatus =
|
|
1069
|
-
(typeof ResourceManagedStatus)[keyof typeof ResourceManagedStatus];
|
|
1070
808
|
export interface ListRuleGroupsRequest {
|
|
1071
809
|
NextToken?: string | undefined;
|
|
1072
810
|
MaxResults?: number | undefined;
|
|
1073
811
|
Scope?: ResourceManagedStatus | undefined;
|
|
1074
812
|
ManagedType?: ResourceManagedType | undefined;
|
|
813
|
+
SubscriptionStatus?: SubscriptionStatus | undefined;
|
|
1075
814
|
Type?: RuleGroupType | undefined;
|
|
1076
815
|
}
|
|
1077
816
|
export interface RuleGroupMetadata {
|
|
1078
817
|
Name?: string | undefined;
|
|
1079
818
|
Arn?: string | undefined;
|
|
819
|
+
VendorName?: string | undefined;
|
|
1080
820
|
}
|
|
1081
821
|
export interface ListRuleGroupsResponse {
|
|
1082
822
|
NextToken?: string | undefined;
|
|
@@ -1117,17 +857,6 @@ export interface ListVpcEndpointAssociationsResponse {
|
|
|
1117
857
|
NextToken?: string | undefined;
|
|
1118
858
|
VpcEndpointAssociations?: VpcEndpointAssociationMetadata[] | undefined;
|
|
1119
859
|
}
|
|
1120
|
-
export declare class LogDestinationPermissionException extends __BaseException {
|
|
1121
|
-
readonly name: "LogDestinationPermissionException";
|
|
1122
|
-
readonly $fault: "client";
|
|
1123
|
-
Message?: string | undefined;
|
|
1124
|
-
constructor(
|
|
1125
|
-
opts: __ExceptionOptionType<
|
|
1126
|
-
LogDestinationPermissionException,
|
|
1127
|
-
__BaseException
|
|
1128
|
-
>
|
|
1129
|
-
);
|
|
1130
|
-
}
|
|
1131
860
|
export interface PutResourcePolicyRequest {
|
|
1132
861
|
ResourceArn: string | undefined;
|
|
1133
862
|
Policy: string | undefined;
|
|
@@ -1184,14 +913,6 @@ export interface UntagResourceRequest {
|
|
|
1184
913
|
TagKeys: string[] | undefined;
|
|
1185
914
|
}
|
|
1186
915
|
export interface UntagResourceResponse {}
|
|
1187
|
-
export declare class ResourceOwnerCheckException extends __BaseException {
|
|
1188
|
-
readonly name: "ResourceOwnerCheckException";
|
|
1189
|
-
readonly $fault: "client";
|
|
1190
|
-
Message?: string | undefined;
|
|
1191
|
-
constructor(
|
|
1192
|
-
opts: __ExceptionOptionType<ResourceOwnerCheckException, __BaseException>
|
|
1193
|
-
);
|
|
1194
|
-
}
|
|
1195
916
|
export interface UpdateAvailabilityZoneChangeProtectionRequest {
|
|
1196
917
|
UpdateToken?: string | undefined;
|
|
1197
918
|
FirewallArn?: string | undefined;
|
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.935.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.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|