@aws-sdk/client-network-firewall 3.826.0 → 3.830.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 +48 -0
- package/dist-cjs/index.js +295 -58
- package/dist-es/NetworkFirewall.js +12 -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/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 +6 -0
- package/dist-es/models/models_0.js +52 -39
- package/dist-es/protocols/Aws_json1_0.js +120 -6
- package/dist-types/NetworkFirewall.d.ts +42 -0
- package/dist-types/NetworkFirewallClient.d.ts +8 -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/CreateRuleGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFirewallCommand.d.ts +13 -0
- package/dist-types/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.d.ts +103 -0
- package/dist-types/commands/DescribeFirewallCommand.d.ts +13 -0
- package/dist-types/commands/DescribeFirewallMetadataCommand.d.ts +1 -0
- package/dist-types/commands/DescribeRuleGroupCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateAvailabilityZonesCommand.d.ts +123 -0
- package/dist-types/commands/ListFirewallsCommand.d.ts +1 -0
- package/dist-types/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.d.ts +104 -0
- package/dist-types/commands/UpdateAvailabilityZoneChangeProtectionCommand.d.ts +111 -0
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +7 -7
- package/dist-types/models/models_0.d.ts +651 -95
- package/dist-types/protocols/Aws_json1_0.d.ts +54 -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 +126 -0
- package/dist-types/ts3.4/NetworkFirewallClient.d.ts +36 -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/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 +6 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +7 -7
- package/dist-types/ts3.4/models/models_0.d.ts +137 -45
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +72 -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 +5 -5
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DisassociateAvailabilityZonesRequest,
|
|
5
|
+
DisassociateAvailabilityZonesResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkFirewallClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkFirewallClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DisassociateAvailabilityZonesCommandInput
|
|
15
|
+
extends DisassociateAvailabilityZonesRequest {}
|
|
16
|
+
export interface DisassociateAvailabilityZonesCommandOutput
|
|
17
|
+
extends DisassociateAvailabilityZonesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DisassociateAvailabilityZonesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DisassociateAvailabilityZonesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DisassociateAvailabilityZonesCommandInput,
|
|
24
|
+
DisassociateAvailabilityZonesCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DisassociateAvailabilityZonesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DisassociateAvailabilityZonesCommandInput,
|
|
33
|
+
DisassociateAvailabilityZonesCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DisassociateAvailabilityZonesCommand extends DisassociateAvailabilityZonesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DisassociateAvailabilityZonesRequest;
|
|
44
|
+
output: DisassociateAvailabilityZonesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DisassociateAvailabilityZonesCommandInput;
|
|
48
|
+
output: DisassociateAvailabilityZonesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
RejectNetworkFirewallTransitGatewayAttachmentRequest,
|
|
5
|
+
RejectNetworkFirewallTransitGatewayAttachmentResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkFirewallClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkFirewallClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface RejectNetworkFirewallTransitGatewayAttachmentCommandInput
|
|
15
|
+
extends RejectNetworkFirewallTransitGatewayAttachmentRequest {}
|
|
16
|
+
export interface RejectNetworkFirewallTransitGatewayAttachmentCommandOutput
|
|
17
|
+
extends RejectNetworkFirewallTransitGatewayAttachmentResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const RejectNetworkFirewallTransitGatewayAttachmentCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: RejectNetworkFirewallTransitGatewayAttachmentCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
RejectNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
24
|
+
RejectNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: RejectNetworkFirewallTransitGatewayAttachmentCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
RejectNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
33
|
+
RejectNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class RejectNetworkFirewallTransitGatewayAttachmentCommand extends RejectNetworkFirewallTransitGatewayAttachmentCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: RejectNetworkFirewallTransitGatewayAttachmentRequest;
|
|
44
|
+
output: RejectNetworkFirewallTransitGatewayAttachmentResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: RejectNetworkFirewallTransitGatewayAttachmentCommandInput;
|
|
48
|
+
output: RejectNetworkFirewallTransitGatewayAttachmentCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateAvailabilityZoneChangeProtectionRequest,
|
|
5
|
+
UpdateAvailabilityZoneChangeProtectionResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NetworkFirewallClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NetworkFirewallClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateAvailabilityZoneChangeProtectionCommandInput
|
|
15
|
+
extends UpdateAvailabilityZoneChangeProtectionRequest {}
|
|
16
|
+
export interface UpdateAvailabilityZoneChangeProtectionCommandOutput
|
|
17
|
+
extends UpdateAvailabilityZoneChangeProtectionResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateAvailabilityZoneChangeProtectionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateAvailabilityZoneChangeProtectionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateAvailabilityZoneChangeProtectionCommandInput,
|
|
24
|
+
UpdateAvailabilityZoneChangeProtectionCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateAvailabilityZoneChangeProtectionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateAvailabilityZoneChangeProtectionCommandInput,
|
|
33
|
+
UpdateAvailabilityZoneChangeProtectionCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateAvailabilityZoneChangeProtectionCommand extends UpdateAvailabilityZoneChangeProtectionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateAvailabilityZoneChangeProtectionRequest;
|
|
44
|
+
output: UpdateAvailabilityZoneChangeProtectionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateAvailabilityZoneChangeProtectionCommandInput;
|
|
48
|
+
output: UpdateAvailabilityZoneChangeProtectionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export * from "./AcceptNetworkFirewallTransitGatewayAttachmentCommand";
|
|
2
|
+
export * from "./AssociateAvailabilityZonesCommand";
|
|
1
3
|
export * from "./AssociateFirewallPolicyCommand";
|
|
2
4
|
export * from "./AssociateSubnetsCommand";
|
|
3
5
|
export * from "./CreateFirewallCommand";
|
|
@@ -7,6 +9,7 @@ export * from "./CreateTLSInspectionConfigurationCommand";
|
|
|
7
9
|
export * from "./CreateVpcEndpointAssociationCommand";
|
|
8
10
|
export * from "./DeleteFirewallCommand";
|
|
9
11
|
export * from "./DeleteFirewallPolicyCommand";
|
|
12
|
+
export * from "./DeleteNetworkFirewallTransitGatewayAttachmentCommand";
|
|
10
13
|
export * from "./DeleteResourcePolicyCommand";
|
|
11
14
|
export * from "./DeleteRuleGroupCommand";
|
|
12
15
|
export * from "./DeleteTLSInspectionConfigurationCommand";
|
|
@@ -21,6 +24,7 @@ export * from "./DescribeRuleGroupCommand";
|
|
|
21
24
|
export * from "./DescribeRuleGroupMetadataCommand";
|
|
22
25
|
export * from "./DescribeTLSInspectionConfigurationCommand";
|
|
23
26
|
export * from "./DescribeVpcEndpointAssociationCommand";
|
|
27
|
+
export * from "./DisassociateAvailabilityZonesCommand";
|
|
24
28
|
export * from "./DisassociateSubnetsCommand";
|
|
25
29
|
export * from "./GetAnalysisReportResultsCommand";
|
|
26
30
|
export * from "./ListAnalysisReportsCommand";
|
|
@@ -33,11 +37,13 @@ export * from "./ListTLSInspectionConfigurationsCommand";
|
|
|
33
37
|
export * from "./ListTagsForResourceCommand";
|
|
34
38
|
export * from "./ListVpcEndpointAssociationsCommand";
|
|
35
39
|
export * from "./PutResourcePolicyCommand";
|
|
40
|
+
export * from "./RejectNetworkFirewallTransitGatewayAttachmentCommand";
|
|
36
41
|
export * from "./StartAnalysisReportCommand";
|
|
37
42
|
export * from "./StartFlowCaptureCommand";
|
|
38
43
|
export * from "./StartFlowFlushCommand";
|
|
39
44
|
export * from "./TagResourceCommand";
|
|
40
45
|
export * from "./UntagResourceCommand";
|
|
46
|
+
export * from "./UpdateAvailabilityZoneChangeProtectionCommand";
|
|
41
47
|
export * from "./UpdateFirewallAnalysisSettingsCommand";
|
|
42
48
|
export * from "./UpdateFirewallDeleteProtectionCommand";
|
|
43
49
|
export * from "./UpdateFirewallDescriptionCommand";
|
|
@@ -5,9 +5,9 @@ import {
|
|
|
5
5
|
Provider,
|
|
6
6
|
} from "@smithy/types";
|
|
7
7
|
export interface ClientInputEndpointParameters {
|
|
8
|
-
region?: string | Provider<string>;
|
|
9
|
-
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
-
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
8
|
+
region?: string | undefined | Provider<string | undefined>;
|
|
9
|
+
useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
10
|
+
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
11
11
|
endpoint?:
|
|
12
12
|
| string
|
|
13
13
|
| Provider<string>
|
|
@@ -41,8 +41,8 @@ export declare const commonParams: {
|
|
|
41
41
|
};
|
|
42
42
|
};
|
|
43
43
|
export interface EndpointParameters extends __EndpointParameters {
|
|
44
|
-
Region?: string;
|
|
45
|
-
UseDualStack?: boolean;
|
|
46
|
-
UseFIPS?: boolean;
|
|
47
|
-
Endpoint?: string;
|
|
44
|
+
Region?: string | undefined;
|
|
45
|
+
UseDualStack?: boolean | undefined;
|
|
46
|
+
UseFIPS?: boolean | undefined;
|
|
47
|
+
Endpoint?: string | undefined;
|
|
48
48
|
}
|
|
@@ -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;
|
|
@@ -412,12 +462,14 @@ export declare const StatefulRuleProtocol: {
|
|
|
412
462
|
readonly DNS: "DNS";
|
|
413
463
|
readonly FTP: "FTP";
|
|
414
464
|
readonly HTTP: "HTTP";
|
|
465
|
+
readonly HTTP2: "HTTP2";
|
|
415
466
|
readonly ICMP: "ICMP";
|
|
416
467
|
readonly IKEV2: "IKEV2";
|
|
417
468
|
readonly IMAP: "IMAP";
|
|
418
469
|
readonly KRB5: "KRB5";
|
|
419
470
|
readonly MSN: "MSN";
|
|
420
471
|
readonly NTP: "NTP";
|
|
472
|
+
readonly QUIC: "QUIC";
|
|
421
473
|
readonly SMB: "SMB";
|
|
422
474
|
readonly SMTP: "SMTP";
|
|
423
475
|
readonly SSH: "SSH";
|
|
@@ -645,6 +697,13 @@ export interface DeleteFirewallPolicyRequest {
|
|
|
645
697
|
export interface DeleteFirewallPolicyResponse {
|
|
646
698
|
FirewallPolicyResponse: FirewallPolicyResponse | undefined;
|
|
647
699
|
}
|
|
700
|
+
export interface DeleteNetworkFirewallTransitGatewayAttachmentRequest {
|
|
701
|
+
TransitGatewayAttachmentId: string | undefined;
|
|
702
|
+
}
|
|
703
|
+
export interface DeleteNetworkFirewallTransitGatewayAttachmentResponse {
|
|
704
|
+
TransitGatewayAttachmentId: string | undefined;
|
|
705
|
+
TransitGatewayAttachmentStatus: TransitGatewayAttachmentStatus | undefined;
|
|
706
|
+
}
|
|
648
707
|
export interface DeleteResourcePolicyRequest {
|
|
649
708
|
ResourceArn: string | undefined;
|
|
650
709
|
}
|
|
@@ -701,6 +760,7 @@ export interface DescribeFirewallMetadataResponse {
|
|
|
701
760
|
SupportedAvailabilityZones?:
|
|
702
761
|
| Record<string, AvailabilityZoneMetadata>
|
|
703
762
|
| undefined;
|
|
763
|
+
TransitGatewayAttachmentId?: string | undefined;
|
|
704
764
|
}
|
|
705
765
|
export interface DescribeFirewallPolicyRequest {
|
|
706
766
|
FirewallPolicyName?: string | undefined;
|
|
@@ -834,6 +894,18 @@ export interface DescribeVpcEndpointAssociationResponse {
|
|
|
834
894
|
VpcEndpointAssociation?: VpcEndpointAssociation | undefined;
|
|
835
895
|
VpcEndpointAssociationStatus?: VpcEndpointAssociationStatus | undefined;
|
|
836
896
|
}
|
|
897
|
+
export interface DisassociateAvailabilityZonesRequest {
|
|
898
|
+
UpdateToken?: string | undefined;
|
|
899
|
+
FirewallArn?: string | undefined;
|
|
900
|
+
FirewallName?: string | undefined;
|
|
901
|
+
AvailabilityZoneMappings: AvailabilityZoneMapping[] | undefined;
|
|
902
|
+
}
|
|
903
|
+
export interface DisassociateAvailabilityZonesResponse {
|
|
904
|
+
FirewallArn?: string | undefined;
|
|
905
|
+
FirewallName?: string | undefined;
|
|
906
|
+
AvailabilityZoneMappings?: AvailabilityZoneMapping[] | undefined;
|
|
907
|
+
UpdateToken?: string | undefined;
|
|
908
|
+
}
|
|
837
909
|
export interface DisassociateSubnetsRequest {
|
|
838
910
|
UpdateToken?: string | undefined;
|
|
839
911
|
FirewallArn?: string | undefined;
|
|
@@ -849,6 +921,7 @@ export interface DisassociateSubnetsResponse {
|
|
|
849
921
|
export interface FirewallMetadata {
|
|
850
922
|
FirewallName?: string | undefined;
|
|
851
923
|
FirewallArn?: string | undefined;
|
|
924
|
+
TransitGatewayAttachmentId?: string | undefined;
|
|
852
925
|
}
|
|
853
926
|
export interface FirewallPolicyMetadata {
|
|
854
927
|
Name?: string | undefined;
|
|
@@ -1025,6 +1098,13 @@ export interface PutResourcePolicyRequest {
|
|
|
1025
1098
|
Policy: string | undefined;
|
|
1026
1099
|
}
|
|
1027
1100
|
export interface PutResourcePolicyResponse {}
|
|
1101
|
+
export interface RejectNetworkFirewallTransitGatewayAttachmentRequest {
|
|
1102
|
+
TransitGatewayAttachmentId: string | undefined;
|
|
1103
|
+
}
|
|
1104
|
+
export interface RejectNetworkFirewallTransitGatewayAttachmentResponse {
|
|
1105
|
+
TransitGatewayAttachmentId: string | undefined;
|
|
1106
|
+
TransitGatewayAttachmentStatus: TransitGatewayAttachmentStatus | undefined;
|
|
1107
|
+
}
|
|
1028
1108
|
export interface StartAnalysisReportRequest {
|
|
1029
1109
|
FirewallName?: string | undefined;
|
|
1030
1110
|
FirewallArn?: string | undefined;
|
|
@@ -1069,6 +1149,26 @@ export interface UntagResourceRequest {
|
|
|
1069
1149
|
TagKeys: string[] | undefined;
|
|
1070
1150
|
}
|
|
1071
1151
|
export interface UntagResourceResponse {}
|
|
1152
|
+
export declare class ResourceOwnerCheckException extends __BaseException {
|
|
1153
|
+
readonly name: "ResourceOwnerCheckException";
|
|
1154
|
+
readonly $fault: "client";
|
|
1155
|
+
Message?: string | undefined;
|
|
1156
|
+
constructor(
|
|
1157
|
+
opts: __ExceptionOptionType<ResourceOwnerCheckException, __BaseException>
|
|
1158
|
+
);
|
|
1159
|
+
}
|
|
1160
|
+
export interface UpdateAvailabilityZoneChangeProtectionRequest {
|
|
1161
|
+
UpdateToken?: string | undefined;
|
|
1162
|
+
FirewallArn?: string | undefined;
|
|
1163
|
+
FirewallName?: string | undefined;
|
|
1164
|
+
AvailabilityZoneChangeProtection: boolean | undefined;
|
|
1165
|
+
}
|
|
1166
|
+
export interface UpdateAvailabilityZoneChangeProtectionResponse {
|
|
1167
|
+
UpdateToken?: string | undefined;
|
|
1168
|
+
FirewallArn?: string | undefined;
|
|
1169
|
+
FirewallName?: string | undefined;
|
|
1170
|
+
AvailabilityZoneChangeProtection?: boolean | undefined;
|
|
1171
|
+
}
|
|
1072
1172
|
export interface UpdateFirewallAnalysisSettingsRequest {
|
|
1073
1173
|
EnabledAnalysisTypes?: EnabledAnalysisType[] | undefined;
|
|
1074
1174
|
FirewallArn?: string | undefined;
|
|
@@ -1081,14 +1181,6 @@ export interface UpdateFirewallAnalysisSettingsResponse {
|
|
|
1081
1181
|
FirewallName?: string | undefined;
|
|
1082
1182
|
UpdateToken?: string | undefined;
|
|
1083
1183
|
}
|
|
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
1184
|
export interface UpdateFirewallDeleteProtectionRequest {
|
|
1093
1185
|
UpdateToken?: string | undefined;
|
|
1094
1186
|
FirewallArn?: string | undefined;
|