@aws-sdk/client-network-firewall 3.828.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 +2 -2
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { AcceptNetworkFirewallTransitGatewayAttachmentCommandInput, AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput } from "../commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand";
|
|
4
|
+
import { AssociateAvailabilityZonesCommandInput, AssociateAvailabilityZonesCommandOutput } from "../commands/AssociateAvailabilityZonesCommand";
|
|
3
5
|
import { AssociateFirewallPolicyCommandInput, AssociateFirewallPolicyCommandOutput } from "../commands/AssociateFirewallPolicyCommand";
|
|
4
6
|
import { AssociateSubnetsCommandInput, AssociateSubnetsCommandOutput } from "../commands/AssociateSubnetsCommand";
|
|
5
7
|
import { CreateFirewallCommandInput, CreateFirewallCommandOutput } from "../commands/CreateFirewallCommand";
|
|
@@ -9,6 +11,7 @@ import { CreateTLSInspectionConfigurationCommandInput, CreateTLSInspectionConfig
|
|
|
9
11
|
import { CreateVpcEndpointAssociationCommandInput, CreateVpcEndpointAssociationCommandOutput } from "../commands/CreateVpcEndpointAssociationCommand";
|
|
10
12
|
import { DeleteFirewallCommandInput, DeleteFirewallCommandOutput } from "../commands/DeleteFirewallCommand";
|
|
11
13
|
import { DeleteFirewallPolicyCommandInput, DeleteFirewallPolicyCommandOutput } from "../commands/DeleteFirewallPolicyCommand";
|
|
14
|
+
import { DeleteNetworkFirewallTransitGatewayAttachmentCommandInput, DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput } from "../commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand";
|
|
12
15
|
import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "../commands/DeleteResourcePolicyCommand";
|
|
13
16
|
import { DeleteRuleGroupCommandInput, DeleteRuleGroupCommandOutput } from "../commands/DeleteRuleGroupCommand";
|
|
14
17
|
import { DeleteTLSInspectionConfigurationCommandInput, DeleteTLSInspectionConfigurationCommandOutput } from "../commands/DeleteTLSInspectionConfigurationCommand";
|
|
@@ -23,6 +26,7 @@ import { DescribeRuleGroupCommandInput, DescribeRuleGroupCommandOutput } from ".
|
|
|
23
26
|
import { DescribeRuleGroupMetadataCommandInput, DescribeRuleGroupMetadataCommandOutput } from "../commands/DescribeRuleGroupMetadataCommand";
|
|
24
27
|
import { DescribeTLSInspectionConfigurationCommandInput, DescribeTLSInspectionConfigurationCommandOutput } from "../commands/DescribeTLSInspectionConfigurationCommand";
|
|
25
28
|
import { DescribeVpcEndpointAssociationCommandInput, DescribeVpcEndpointAssociationCommandOutput } from "../commands/DescribeVpcEndpointAssociationCommand";
|
|
29
|
+
import { DisassociateAvailabilityZonesCommandInput, DisassociateAvailabilityZonesCommandOutput } from "../commands/DisassociateAvailabilityZonesCommand";
|
|
26
30
|
import { DisassociateSubnetsCommandInput, DisassociateSubnetsCommandOutput } from "../commands/DisassociateSubnetsCommand";
|
|
27
31
|
import { GetAnalysisReportResultsCommandInput, GetAnalysisReportResultsCommandOutput } from "../commands/GetAnalysisReportResultsCommand";
|
|
28
32
|
import { ListAnalysisReportsCommandInput, ListAnalysisReportsCommandOutput } from "../commands/ListAnalysisReportsCommand";
|
|
@@ -35,11 +39,13 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
35
39
|
import { ListTLSInspectionConfigurationsCommandInput, ListTLSInspectionConfigurationsCommandOutput } from "../commands/ListTLSInspectionConfigurationsCommand";
|
|
36
40
|
import { ListVpcEndpointAssociationsCommandInput, ListVpcEndpointAssociationsCommandOutput } from "../commands/ListVpcEndpointAssociationsCommand";
|
|
37
41
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "../commands/PutResourcePolicyCommand";
|
|
42
|
+
import { RejectNetworkFirewallTransitGatewayAttachmentCommandInput, RejectNetworkFirewallTransitGatewayAttachmentCommandOutput } from "../commands/RejectNetworkFirewallTransitGatewayAttachmentCommand";
|
|
38
43
|
import { StartAnalysisReportCommandInput, StartAnalysisReportCommandOutput } from "../commands/StartAnalysisReportCommand";
|
|
39
44
|
import { StartFlowCaptureCommandInput, StartFlowCaptureCommandOutput } from "../commands/StartFlowCaptureCommand";
|
|
40
45
|
import { StartFlowFlushCommandInput, StartFlowFlushCommandOutput } from "../commands/StartFlowFlushCommand";
|
|
41
46
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
42
47
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
48
|
+
import { UpdateAvailabilityZoneChangeProtectionCommandInput, UpdateAvailabilityZoneChangeProtectionCommandOutput } from "../commands/UpdateAvailabilityZoneChangeProtectionCommand";
|
|
43
49
|
import { UpdateFirewallAnalysisSettingsCommandInput, UpdateFirewallAnalysisSettingsCommandOutput } from "../commands/UpdateFirewallAnalysisSettingsCommand";
|
|
44
50
|
import { UpdateFirewallDeleteProtectionCommandInput, UpdateFirewallDeleteProtectionCommandOutput } from "../commands/UpdateFirewallDeleteProtectionCommand";
|
|
45
51
|
import { UpdateFirewallDescriptionCommandInput, UpdateFirewallDescriptionCommandOutput } from "../commands/UpdateFirewallDescriptionCommand";
|
|
@@ -50,6 +56,14 @@ import { UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationComma
|
|
|
50
56
|
import { UpdateRuleGroupCommandInput, UpdateRuleGroupCommandOutput } from "../commands/UpdateRuleGroupCommand";
|
|
51
57
|
import { UpdateSubnetChangeProtectionCommandInput, UpdateSubnetChangeProtectionCommandOutput } from "../commands/UpdateSubnetChangeProtectionCommand";
|
|
52
58
|
import { UpdateTLSInspectionConfigurationCommandInput, UpdateTLSInspectionConfigurationCommandOutput } from "../commands/UpdateTLSInspectionConfigurationCommand";
|
|
59
|
+
/**
|
|
60
|
+
* serializeAws_json1_0AcceptNetworkFirewallTransitGatewayAttachmentCommand
|
|
61
|
+
*/
|
|
62
|
+
export declare const se_AcceptNetworkFirewallTransitGatewayAttachmentCommand: (input: AcceptNetworkFirewallTransitGatewayAttachmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
+
/**
|
|
64
|
+
* serializeAws_json1_0AssociateAvailabilityZonesCommand
|
|
65
|
+
*/
|
|
66
|
+
export declare const se_AssociateAvailabilityZonesCommand: (input: AssociateAvailabilityZonesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
67
|
/**
|
|
54
68
|
* serializeAws_json1_0AssociateFirewallPolicyCommand
|
|
55
69
|
*/
|
|
@@ -86,6 +100,10 @@ export declare const se_DeleteFirewallCommand: (input: DeleteFirewallCommandInpu
|
|
|
86
100
|
* serializeAws_json1_0DeleteFirewallPolicyCommand
|
|
87
101
|
*/
|
|
88
102
|
export declare const se_DeleteFirewallPolicyCommand: (input: DeleteFirewallPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
|
+
/**
|
|
104
|
+
* serializeAws_json1_0DeleteNetworkFirewallTransitGatewayAttachmentCommand
|
|
105
|
+
*/
|
|
106
|
+
export declare const se_DeleteNetworkFirewallTransitGatewayAttachmentCommand: (input: DeleteNetworkFirewallTransitGatewayAttachmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
107
|
/**
|
|
90
108
|
* serializeAws_json1_0DeleteResourcePolicyCommand
|
|
91
109
|
*/
|
|
@@ -142,6 +160,10 @@ export declare const se_DescribeTLSInspectionConfigurationCommand: (input: Descr
|
|
|
142
160
|
* serializeAws_json1_0DescribeVpcEndpointAssociationCommand
|
|
143
161
|
*/
|
|
144
162
|
export declare const se_DescribeVpcEndpointAssociationCommand: (input: DescribeVpcEndpointAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
163
|
+
/**
|
|
164
|
+
* serializeAws_json1_0DisassociateAvailabilityZonesCommand
|
|
165
|
+
*/
|
|
166
|
+
export declare const se_DisassociateAvailabilityZonesCommand: (input: DisassociateAvailabilityZonesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
145
167
|
/**
|
|
146
168
|
* serializeAws_json1_0DisassociateSubnetsCommand
|
|
147
169
|
*/
|
|
@@ -190,6 +212,10 @@ export declare const se_ListVpcEndpointAssociationsCommand: (input: ListVpcEndpo
|
|
|
190
212
|
* serializeAws_json1_0PutResourcePolicyCommand
|
|
191
213
|
*/
|
|
192
214
|
export declare const se_PutResourcePolicyCommand: (input: PutResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
215
|
+
/**
|
|
216
|
+
* serializeAws_json1_0RejectNetworkFirewallTransitGatewayAttachmentCommand
|
|
217
|
+
*/
|
|
218
|
+
export declare const se_RejectNetworkFirewallTransitGatewayAttachmentCommand: (input: RejectNetworkFirewallTransitGatewayAttachmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
193
219
|
/**
|
|
194
220
|
* serializeAws_json1_0StartAnalysisReportCommand
|
|
195
221
|
*/
|
|
@@ -210,6 +236,10 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
|
|
|
210
236
|
* serializeAws_json1_0UntagResourceCommand
|
|
211
237
|
*/
|
|
212
238
|
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
239
|
+
/**
|
|
240
|
+
* serializeAws_json1_0UpdateAvailabilityZoneChangeProtectionCommand
|
|
241
|
+
*/
|
|
242
|
+
export declare const se_UpdateAvailabilityZoneChangeProtectionCommand: (input: UpdateAvailabilityZoneChangeProtectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
213
243
|
/**
|
|
214
244
|
* serializeAws_json1_0UpdateFirewallAnalysisSettingsCommand
|
|
215
245
|
*/
|
|
@@ -250,6 +280,14 @@ export declare const se_UpdateSubnetChangeProtectionCommand: (input: UpdateSubne
|
|
|
250
280
|
* serializeAws_json1_0UpdateTLSInspectionConfigurationCommand
|
|
251
281
|
*/
|
|
252
282
|
export declare const se_UpdateTLSInspectionConfigurationCommand: (input: UpdateTLSInspectionConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
283
|
+
/**
|
|
284
|
+
* deserializeAws_json1_0AcceptNetworkFirewallTransitGatewayAttachmentCommand
|
|
285
|
+
*/
|
|
286
|
+
export declare const de_AcceptNetworkFirewallTransitGatewayAttachmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput>;
|
|
287
|
+
/**
|
|
288
|
+
* deserializeAws_json1_0AssociateAvailabilityZonesCommand
|
|
289
|
+
*/
|
|
290
|
+
export declare const de_AssociateAvailabilityZonesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateAvailabilityZonesCommandOutput>;
|
|
253
291
|
/**
|
|
254
292
|
* deserializeAws_json1_0AssociateFirewallPolicyCommand
|
|
255
293
|
*/
|
|
@@ -286,6 +324,10 @@ export declare const de_DeleteFirewallCommand: (output: __HttpResponse, context:
|
|
|
286
324
|
* deserializeAws_json1_0DeleteFirewallPolicyCommand
|
|
287
325
|
*/
|
|
288
326
|
export declare const de_DeleteFirewallPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFirewallPolicyCommandOutput>;
|
|
327
|
+
/**
|
|
328
|
+
* deserializeAws_json1_0DeleteNetworkFirewallTransitGatewayAttachmentCommand
|
|
329
|
+
*/
|
|
330
|
+
export declare const de_DeleteNetworkFirewallTransitGatewayAttachmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput>;
|
|
289
331
|
/**
|
|
290
332
|
* deserializeAws_json1_0DeleteResourcePolicyCommand
|
|
291
333
|
*/
|
|
@@ -342,6 +384,10 @@ export declare const de_DescribeTLSInspectionConfigurationCommand: (output: __Ht
|
|
|
342
384
|
* deserializeAws_json1_0DescribeVpcEndpointAssociationCommand
|
|
343
385
|
*/
|
|
344
386
|
export declare const de_DescribeVpcEndpointAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeVpcEndpointAssociationCommandOutput>;
|
|
387
|
+
/**
|
|
388
|
+
* deserializeAws_json1_0DisassociateAvailabilityZonesCommand
|
|
389
|
+
*/
|
|
390
|
+
export declare const de_DisassociateAvailabilityZonesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateAvailabilityZonesCommandOutput>;
|
|
345
391
|
/**
|
|
346
392
|
* deserializeAws_json1_0DisassociateSubnetsCommand
|
|
347
393
|
*/
|
|
@@ -390,6 +436,10 @@ export declare const de_ListVpcEndpointAssociationsCommand: (output: __HttpRespo
|
|
|
390
436
|
* deserializeAws_json1_0PutResourcePolicyCommand
|
|
391
437
|
*/
|
|
392
438
|
export declare const de_PutResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourcePolicyCommandOutput>;
|
|
439
|
+
/**
|
|
440
|
+
* deserializeAws_json1_0RejectNetworkFirewallTransitGatewayAttachmentCommand
|
|
441
|
+
*/
|
|
442
|
+
export declare const de_RejectNetworkFirewallTransitGatewayAttachmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RejectNetworkFirewallTransitGatewayAttachmentCommandOutput>;
|
|
393
443
|
/**
|
|
394
444
|
* deserializeAws_json1_0StartAnalysisReportCommand
|
|
395
445
|
*/
|
|
@@ -410,6 +460,10 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
|
|
|
410
460
|
* deserializeAws_json1_0UntagResourceCommand
|
|
411
461
|
*/
|
|
412
462
|
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
463
|
+
/**
|
|
464
|
+
* deserializeAws_json1_0UpdateAvailabilityZoneChangeProtectionCommand
|
|
465
|
+
*/
|
|
466
|
+
export declare const de_UpdateAvailabilityZoneChangeProtectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAvailabilityZoneChangeProtectionCommandOutput>;
|
|
413
467
|
/**
|
|
414
468
|
* deserializeAws_json1_0UpdateFirewallAnalysisSettingsCommand
|
|
415
469
|
*/
|
|
@@ -15,8 +15,8 @@ export declare const getRuntimeConfig: (config: NetworkFirewallClientConfig) =>
|
|
|
15
15
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
16
|
sha256: import("@smithy/types").HashConstructor;
|
|
17
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
-
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
19
|
-
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
18
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
cacheMiddleware?: boolean | undefined;
|
|
22
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -17,8 +17,8 @@ export declare const getRuntimeConfig: (config: NetworkFirewallClientConfig) =>
|
|
|
17
17
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
18
18
|
disableHostPrefix: boolean;
|
|
19
19
|
serviceId: string;
|
|
20
|
-
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
21
|
-
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean
|
|
20
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
21
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
AcceptNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
4
|
+
AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
5
|
+
} from "./commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand";
|
|
6
|
+
import {
|
|
7
|
+
AssociateAvailabilityZonesCommandInput,
|
|
8
|
+
AssociateAvailabilityZonesCommandOutput,
|
|
9
|
+
} from "./commands/AssociateAvailabilityZonesCommand";
|
|
2
10
|
import {
|
|
3
11
|
AssociateFirewallPolicyCommandInput,
|
|
4
12
|
AssociateFirewallPolicyCommandOutput,
|
|
@@ -35,6 +43,10 @@ import {
|
|
|
35
43
|
DeleteFirewallPolicyCommandInput,
|
|
36
44
|
DeleteFirewallPolicyCommandOutput,
|
|
37
45
|
} from "./commands/DeleteFirewallPolicyCommand";
|
|
46
|
+
import {
|
|
47
|
+
DeleteNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
48
|
+
DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
49
|
+
} from "./commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand";
|
|
38
50
|
import {
|
|
39
51
|
DeleteResourcePolicyCommandInput,
|
|
40
52
|
DeleteResourcePolicyCommandOutput,
|
|
@@ -91,6 +103,10 @@ import {
|
|
|
91
103
|
DescribeVpcEndpointAssociationCommandInput,
|
|
92
104
|
DescribeVpcEndpointAssociationCommandOutput,
|
|
93
105
|
} from "./commands/DescribeVpcEndpointAssociationCommand";
|
|
106
|
+
import {
|
|
107
|
+
DisassociateAvailabilityZonesCommandInput,
|
|
108
|
+
DisassociateAvailabilityZonesCommandOutput,
|
|
109
|
+
} from "./commands/DisassociateAvailabilityZonesCommand";
|
|
94
110
|
import {
|
|
95
111
|
DisassociateSubnetsCommandInput,
|
|
96
112
|
DisassociateSubnetsCommandOutput,
|
|
@@ -139,6 +155,10 @@ import {
|
|
|
139
155
|
PutResourcePolicyCommandInput,
|
|
140
156
|
PutResourcePolicyCommandOutput,
|
|
141
157
|
} from "./commands/PutResourcePolicyCommand";
|
|
158
|
+
import {
|
|
159
|
+
RejectNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
160
|
+
RejectNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
161
|
+
} from "./commands/RejectNetworkFirewallTransitGatewayAttachmentCommand";
|
|
142
162
|
import {
|
|
143
163
|
StartAnalysisReportCommandInput,
|
|
144
164
|
StartAnalysisReportCommandOutput,
|
|
@@ -159,6 +179,10 @@ import {
|
|
|
159
179
|
UntagResourceCommandInput,
|
|
160
180
|
UntagResourceCommandOutput,
|
|
161
181
|
} from "./commands/UntagResourceCommand";
|
|
182
|
+
import {
|
|
183
|
+
UpdateAvailabilityZoneChangeProtectionCommandInput,
|
|
184
|
+
UpdateAvailabilityZoneChangeProtectionCommandOutput,
|
|
185
|
+
} from "./commands/UpdateAvailabilityZoneChangeProtectionCommand";
|
|
162
186
|
import {
|
|
163
187
|
UpdateFirewallAnalysisSettingsCommandInput,
|
|
164
188
|
UpdateFirewallAnalysisSettingsCommandOutput,
|
|
@@ -201,6 +225,38 @@ import {
|
|
|
201
225
|
} from "./commands/UpdateTLSInspectionConfigurationCommand";
|
|
202
226
|
import { NetworkFirewallClient } from "./NetworkFirewallClient";
|
|
203
227
|
export interface NetworkFirewall {
|
|
228
|
+
acceptNetworkFirewallTransitGatewayAttachment(
|
|
229
|
+
args: AcceptNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
230
|
+
options?: __HttpHandlerOptions
|
|
231
|
+
): Promise<AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput>;
|
|
232
|
+
acceptNetworkFirewallTransitGatewayAttachment(
|
|
233
|
+
args: AcceptNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
234
|
+
cb: (
|
|
235
|
+
err: any,
|
|
236
|
+
data?: AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput
|
|
237
|
+
) => void
|
|
238
|
+
): void;
|
|
239
|
+
acceptNetworkFirewallTransitGatewayAttachment(
|
|
240
|
+
args: AcceptNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
241
|
+
options: __HttpHandlerOptions,
|
|
242
|
+
cb: (
|
|
243
|
+
err: any,
|
|
244
|
+
data?: AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput
|
|
245
|
+
) => void
|
|
246
|
+
): void;
|
|
247
|
+
associateAvailabilityZones(
|
|
248
|
+
args: AssociateAvailabilityZonesCommandInput,
|
|
249
|
+
options?: __HttpHandlerOptions
|
|
250
|
+
): Promise<AssociateAvailabilityZonesCommandOutput>;
|
|
251
|
+
associateAvailabilityZones(
|
|
252
|
+
args: AssociateAvailabilityZonesCommandInput,
|
|
253
|
+
cb: (err: any, data?: AssociateAvailabilityZonesCommandOutput) => void
|
|
254
|
+
): void;
|
|
255
|
+
associateAvailabilityZones(
|
|
256
|
+
args: AssociateAvailabilityZonesCommandInput,
|
|
257
|
+
options: __HttpHandlerOptions,
|
|
258
|
+
cb: (err: any, data?: AssociateAvailabilityZonesCommandOutput) => void
|
|
259
|
+
): void;
|
|
204
260
|
associateFirewallPolicy(
|
|
205
261
|
args: AssociateFirewallPolicyCommandInput,
|
|
206
262
|
options?: __HttpHandlerOptions
|
|
@@ -320,6 +376,25 @@ export interface NetworkFirewall {
|
|
|
320
376
|
options: __HttpHandlerOptions,
|
|
321
377
|
cb: (err: any, data?: DeleteFirewallPolicyCommandOutput) => void
|
|
322
378
|
): void;
|
|
379
|
+
deleteNetworkFirewallTransitGatewayAttachment(
|
|
380
|
+
args: DeleteNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
381
|
+
options?: __HttpHandlerOptions
|
|
382
|
+
): Promise<DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput>;
|
|
383
|
+
deleteNetworkFirewallTransitGatewayAttachment(
|
|
384
|
+
args: DeleteNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
385
|
+
cb: (
|
|
386
|
+
err: any,
|
|
387
|
+
data?: DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput
|
|
388
|
+
) => void
|
|
389
|
+
): void;
|
|
390
|
+
deleteNetworkFirewallTransitGatewayAttachment(
|
|
391
|
+
args: DeleteNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
392
|
+
options: __HttpHandlerOptions,
|
|
393
|
+
cb: (
|
|
394
|
+
err: any,
|
|
395
|
+
data?: DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput
|
|
396
|
+
) => void
|
|
397
|
+
): void;
|
|
323
398
|
deleteResourcePolicy(
|
|
324
399
|
args: DeleteResourcePolicyCommandInput,
|
|
325
400
|
options?: __HttpHandlerOptions
|
|
@@ -517,6 +592,19 @@ export interface NetworkFirewall {
|
|
|
517
592
|
options: __HttpHandlerOptions,
|
|
518
593
|
cb: (err: any, data?: DescribeVpcEndpointAssociationCommandOutput) => void
|
|
519
594
|
): void;
|
|
595
|
+
disassociateAvailabilityZones(
|
|
596
|
+
args: DisassociateAvailabilityZonesCommandInput,
|
|
597
|
+
options?: __HttpHandlerOptions
|
|
598
|
+
): Promise<DisassociateAvailabilityZonesCommandOutput>;
|
|
599
|
+
disassociateAvailabilityZones(
|
|
600
|
+
args: DisassociateAvailabilityZonesCommandInput,
|
|
601
|
+
cb: (err: any, data?: DisassociateAvailabilityZonesCommandOutput) => void
|
|
602
|
+
): void;
|
|
603
|
+
disassociateAvailabilityZones(
|
|
604
|
+
args: DisassociateAvailabilityZonesCommandInput,
|
|
605
|
+
options: __HttpHandlerOptions,
|
|
606
|
+
cb: (err: any, data?: DisassociateAvailabilityZonesCommandOutput) => void
|
|
607
|
+
): void;
|
|
520
608
|
disassociateSubnets(
|
|
521
609
|
args: DisassociateSubnetsCommandInput,
|
|
522
610
|
options?: __HttpHandlerOptions
|
|
@@ -679,6 +767,25 @@ export interface NetworkFirewall {
|
|
|
679
767
|
options: __HttpHandlerOptions,
|
|
680
768
|
cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
|
|
681
769
|
): void;
|
|
770
|
+
rejectNetworkFirewallTransitGatewayAttachment(
|
|
771
|
+
args: RejectNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
772
|
+
options?: __HttpHandlerOptions
|
|
773
|
+
): Promise<RejectNetworkFirewallTransitGatewayAttachmentCommandOutput>;
|
|
774
|
+
rejectNetworkFirewallTransitGatewayAttachment(
|
|
775
|
+
args: RejectNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
776
|
+
cb: (
|
|
777
|
+
err: any,
|
|
778
|
+
data?: RejectNetworkFirewallTransitGatewayAttachmentCommandOutput
|
|
779
|
+
) => void
|
|
780
|
+
): void;
|
|
781
|
+
rejectNetworkFirewallTransitGatewayAttachment(
|
|
782
|
+
args: RejectNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
783
|
+
options: __HttpHandlerOptions,
|
|
784
|
+
cb: (
|
|
785
|
+
err: any,
|
|
786
|
+
data?: RejectNetworkFirewallTransitGatewayAttachmentCommandOutput
|
|
787
|
+
) => void
|
|
788
|
+
): void;
|
|
682
789
|
startAnalysisReport(
|
|
683
790
|
args: StartAnalysisReportCommandInput,
|
|
684
791
|
options?: __HttpHandlerOptions
|
|
@@ -744,6 +851,25 @@ export interface NetworkFirewall {
|
|
|
744
851
|
options: __HttpHandlerOptions,
|
|
745
852
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
746
853
|
): void;
|
|
854
|
+
updateAvailabilityZoneChangeProtection(
|
|
855
|
+
args: UpdateAvailabilityZoneChangeProtectionCommandInput,
|
|
856
|
+
options?: __HttpHandlerOptions
|
|
857
|
+
): Promise<UpdateAvailabilityZoneChangeProtectionCommandOutput>;
|
|
858
|
+
updateAvailabilityZoneChangeProtection(
|
|
859
|
+
args: UpdateAvailabilityZoneChangeProtectionCommandInput,
|
|
860
|
+
cb: (
|
|
861
|
+
err: any,
|
|
862
|
+
data?: UpdateAvailabilityZoneChangeProtectionCommandOutput
|
|
863
|
+
) => void
|
|
864
|
+
): void;
|
|
865
|
+
updateAvailabilityZoneChangeProtection(
|
|
866
|
+
args: UpdateAvailabilityZoneChangeProtectionCommandInput,
|
|
867
|
+
options: __HttpHandlerOptions,
|
|
868
|
+
cb: (
|
|
869
|
+
err: any,
|
|
870
|
+
data?: UpdateAvailabilityZoneChangeProtectionCommandOutput
|
|
871
|
+
) => void
|
|
872
|
+
): void;
|
|
747
873
|
updateFirewallAnalysisSettings(): Promise<UpdateFirewallAnalysisSettingsCommandOutput>;
|
|
748
874
|
updateFirewallAnalysisSettings(
|
|
749
875
|
args: UpdateFirewallAnalysisSettingsCommandInput,
|
|
@@ -45,6 +45,14 @@ import {
|
|
|
45
45
|
HttpAuthSchemeInputConfig,
|
|
46
46
|
HttpAuthSchemeResolvedConfig,
|
|
47
47
|
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
AcceptNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
50
|
+
AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
51
|
+
} from "./commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand";
|
|
52
|
+
import {
|
|
53
|
+
AssociateAvailabilityZonesCommandInput,
|
|
54
|
+
AssociateAvailabilityZonesCommandOutput,
|
|
55
|
+
} from "./commands/AssociateAvailabilityZonesCommand";
|
|
48
56
|
import {
|
|
49
57
|
AssociateFirewallPolicyCommandInput,
|
|
50
58
|
AssociateFirewallPolicyCommandOutput,
|
|
@@ -81,6 +89,10 @@ import {
|
|
|
81
89
|
DeleteFirewallPolicyCommandInput,
|
|
82
90
|
DeleteFirewallPolicyCommandOutput,
|
|
83
91
|
} from "./commands/DeleteFirewallPolicyCommand";
|
|
92
|
+
import {
|
|
93
|
+
DeleteNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
94
|
+
DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
95
|
+
} from "./commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand";
|
|
84
96
|
import {
|
|
85
97
|
DeleteResourcePolicyCommandInput,
|
|
86
98
|
DeleteResourcePolicyCommandOutput,
|
|
@@ -137,6 +149,10 @@ import {
|
|
|
137
149
|
DescribeVpcEndpointAssociationCommandInput,
|
|
138
150
|
DescribeVpcEndpointAssociationCommandOutput,
|
|
139
151
|
} from "./commands/DescribeVpcEndpointAssociationCommand";
|
|
152
|
+
import {
|
|
153
|
+
DisassociateAvailabilityZonesCommandInput,
|
|
154
|
+
DisassociateAvailabilityZonesCommandOutput,
|
|
155
|
+
} from "./commands/DisassociateAvailabilityZonesCommand";
|
|
140
156
|
import {
|
|
141
157
|
DisassociateSubnetsCommandInput,
|
|
142
158
|
DisassociateSubnetsCommandOutput,
|
|
@@ -185,6 +201,10 @@ import {
|
|
|
185
201
|
PutResourcePolicyCommandInput,
|
|
186
202
|
PutResourcePolicyCommandOutput,
|
|
187
203
|
} from "./commands/PutResourcePolicyCommand";
|
|
204
|
+
import {
|
|
205
|
+
RejectNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
206
|
+
RejectNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
207
|
+
} from "./commands/RejectNetworkFirewallTransitGatewayAttachmentCommand";
|
|
188
208
|
import {
|
|
189
209
|
StartAnalysisReportCommandInput,
|
|
190
210
|
StartAnalysisReportCommandOutput,
|
|
@@ -205,6 +225,10 @@ import {
|
|
|
205
225
|
UntagResourceCommandInput,
|
|
206
226
|
UntagResourceCommandOutput,
|
|
207
227
|
} from "./commands/UntagResourceCommand";
|
|
228
|
+
import {
|
|
229
|
+
UpdateAvailabilityZoneChangeProtectionCommandInput,
|
|
230
|
+
UpdateAvailabilityZoneChangeProtectionCommandOutput,
|
|
231
|
+
} from "./commands/UpdateAvailabilityZoneChangeProtectionCommand";
|
|
208
232
|
import {
|
|
209
233
|
UpdateFirewallAnalysisSettingsCommandInput,
|
|
210
234
|
UpdateFirewallAnalysisSettingsCommandOutput,
|
|
@@ -253,6 +277,8 @@ import {
|
|
|
253
277
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
254
278
|
export { __Client };
|
|
255
279
|
export type ServiceInputTypes =
|
|
280
|
+
| AcceptNetworkFirewallTransitGatewayAttachmentCommandInput
|
|
281
|
+
| AssociateAvailabilityZonesCommandInput
|
|
256
282
|
| AssociateFirewallPolicyCommandInput
|
|
257
283
|
| AssociateSubnetsCommandInput
|
|
258
284
|
| CreateFirewallCommandInput
|
|
@@ -262,6 +288,7 @@ export type ServiceInputTypes =
|
|
|
262
288
|
| CreateVpcEndpointAssociationCommandInput
|
|
263
289
|
| DeleteFirewallCommandInput
|
|
264
290
|
| DeleteFirewallPolicyCommandInput
|
|
291
|
+
| DeleteNetworkFirewallTransitGatewayAttachmentCommandInput
|
|
265
292
|
| DeleteResourcePolicyCommandInput
|
|
266
293
|
| DeleteRuleGroupCommandInput
|
|
267
294
|
| DeleteTLSInspectionConfigurationCommandInput
|
|
@@ -276,6 +303,7 @@ export type ServiceInputTypes =
|
|
|
276
303
|
| DescribeRuleGroupMetadataCommandInput
|
|
277
304
|
| DescribeTLSInspectionConfigurationCommandInput
|
|
278
305
|
| DescribeVpcEndpointAssociationCommandInput
|
|
306
|
+
| DisassociateAvailabilityZonesCommandInput
|
|
279
307
|
| DisassociateSubnetsCommandInput
|
|
280
308
|
| GetAnalysisReportResultsCommandInput
|
|
281
309
|
| ListAnalysisReportsCommandInput
|
|
@@ -288,11 +316,13 @@ export type ServiceInputTypes =
|
|
|
288
316
|
| ListTagsForResourceCommandInput
|
|
289
317
|
| ListVpcEndpointAssociationsCommandInput
|
|
290
318
|
| PutResourcePolicyCommandInput
|
|
319
|
+
| RejectNetworkFirewallTransitGatewayAttachmentCommandInput
|
|
291
320
|
| StartAnalysisReportCommandInput
|
|
292
321
|
| StartFlowCaptureCommandInput
|
|
293
322
|
| StartFlowFlushCommandInput
|
|
294
323
|
| TagResourceCommandInput
|
|
295
324
|
| UntagResourceCommandInput
|
|
325
|
+
| UpdateAvailabilityZoneChangeProtectionCommandInput
|
|
296
326
|
| UpdateFirewallAnalysisSettingsCommandInput
|
|
297
327
|
| UpdateFirewallDeleteProtectionCommandInput
|
|
298
328
|
| UpdateFirewallDescriptionCommandInput
|
|
@@ -304,6 +334,8 @@ export type ServiceInputTypes =
|
|
|
304
334
|
| UpdateSubnetChangeProtectionCommandInput
|
|
305
335
|
| UpdateTLSInspectionConfigurationCommandInput;
|
|
306
336
|
export type ServiceOutputTypes =
|
|
337
|
+
| AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput
|
|
338
|
+
| AssociateAvailabilityZonesCommandOutput
|
|
307
339
|
| AssociateFirewallPolicyCommandOutput
|
|
308
340
|
| AssociateSubnetsCommandOutput
|
|
309
341
|
| CreateFirewallCommandOutput
|
|
@@ -313,6 +345,7 @@ export type ServiceOutputTypes =
|
|
|
313
345
|
| CreateVpcEndpointAssociationCommandOutput
|
|
314
346
|
| DeleteFirewallCommandOutput
|
|
315
347
|
| DeleteFirewallPolicyCommandOutput
|
|
348
|
+
| DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput
|
|
316
349
|
| DeleteResourcePolicyCommandOutput
|
|
317
350
|
| DeleteRuleGroupCommandOutput
|
|
318
351
|
| DeleteTLSInspectionConfigurationCommandOutput
|
|
@@ -327,6 +360,7 @@ export type ServiceOutputTypes =
|
|
|
327
360
|
| DescribeRuleGroupMetadataCommandOutput
|
|
328
361
|
| DescribeTLSInspectionConfigurationCommandOutput
|
|
329
362
|
| DescribeVpcEndpointAssociationCommandOutput
|
|
363
|
+
| DisassociateAvailabilityZonesCommandOutput
|
|
330
364
|
| DisassociateSubnetsCommandOutput
|
|
331
365
|
| GetAnalysisReportResultsCommandOutput
|
|
332
366
|
| ListAnalysisReportsCommandOutput
|
|
@@ -339,11 +373,13 @@ export type ServiceOutputTypes =
|
|
|
339
373
|
| ListTagsForResourceCommandOutput
|
|
340
374
|
| ListVpcEndpointAssociationsCommandOutput
|
|
341
375
|
| PutResourcePolicyCommandOutput
|
|
376
|
+
| RejectNetworkFirewallTransitGatewayAttachmentCommandOutput
|
|
342
377
|
| StartAnalysisReportCommandOutput
|
|
343
378
|
| StartFlowCaptureCommandOutput
|
|
344
379
|
| StartFlowFlushCommandOutput
|
|
345
380
|
| TagResourceCommandOutput
|
|
346
381
|
| UntagResourceCommandOutput
|
|
382
|
+
| UpdateAvailabilityZoneChangeProtectionCommandOutput
|
|
347
383
|
| UpdateFirewallAnalysisSettingsCommandOutput
|
|
348
384
|
| UpdateFirewallDeleteProtectionCommandOutput
|
|
349
385
|
| UpdateFirewallDescriptionCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AcceptNetworkFirewallTransitGatewayAttachmentRequest,
|
|
5
|
+
AcceptNetworkFirewallTransitGatewayAttachmentResponse,
|
|
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 AcceptNetworkFirewallTransitGatewayAttachmentCommandInput
|
|
15
|
+
extends AcceptNetworkFirewallTransitGatewayAttachmentRequest {}
|
|
16
|
+
export interface AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput
|
|
17
|
+
extends AcceptNetworkFirewallTransitGatewayAttachmentResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AcceptNetworkFirewallTransitGatewayAttachmentCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AcceptNetworkFirewallTransitGatewayAttachmentCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
AcceptNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
24
|
+
AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: AcceptNetworkFirewallTransitGatewayAttachmentCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
AcceptNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
33
|
+
AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class AcceptNetworkFirewallTransitGatewayAttachmentCommand extends AcceptNetworkFirewallTransitGatewayAttachmentCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: AcceptNetworkFirewallTransitGatewayAttachmentRequest;
|
|
44
|
+
output: AcceptNetworkFirewallTransitGatewayAttachmentResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: AcceptNetworkFirewallTransitGatewayAttachmentCommandInput;
|
|
48
|
+
output: AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput;
|
|
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
|
+
AssociateAvailabilityZonesRequest,
|
|
5
|
+
AssociateAvailabilityZonesResponse,
|
|
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 AssociateAvailabilityZonesCommandInput
|
|
15
|
+
extends AssociateAvailabilityZonesRequest {}
|
|
16
|
+
export interface AssociateAvailabilityZonesCommandOutput
|
|
17
|
+
extends AssociateAvailabilityZonesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AssociateAvailabilityZonesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AssociateAvailabilityZonesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
AssociateAvailabilityZonesCommandInput,
|
|
24
|
+
AssociateAvailabilityZonesCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: AssociateAvailabilityZonesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
AssociateAvailabilityZonesCommandInput,
|
|
33
|
+
AssociateAvailabilityZonesCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class AssociateAvailabilityZonesCommand extends AssociateAvailabilityZonesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: AssociateAvailabilityZonesRequest;
|
|
44
|
+
output: AssociateAvailabilityZonesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: AssociateAvailabilityZonesCommandInput;
|
|
48
|
+
output: AssociateAvailabilityZonesCommandOutput;
|
|
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
|
+
DeleteNetworkFirewallTransitGatewayAttachmentRequest,
|
|
5
|
+
DeleteNetworkFirewallTransitGatewayAttachmentResponse,
|
|
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 DeleteNetworkFirewallTransitGatewayAttachmentCommandInput
|
|
15
|
+
extends DeleteNetworkFirewallTransitGatewayAttachmentRequest {}
|
|
16
|
+
export interface DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput
|
|
17
|
+
extends DeleteNetworkFirewallTransitGatewayAttachmentResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteNetworkFirewallTransitGatewayAttachmentCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteNetworkFirewallTransitGatewayAttachmentCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
24
|
+
DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteNetworkFirewallTransitGatewayAttachmentCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
33
|
+
DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteNetworkFirewallTransitGatewayAttachmentCommand extends DeleteNetworkFirewallTransitGatewayAttachmentCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteNetworkFirewallTransitGatewayAttachmentRequest;
|
|
44
|
+
output: DeleteNetworkFirewallTransitGatewayAttachmentResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteNetworkFirewallTransitGatewayAttachmentCommandInput;
|
|
48
|
+
output: DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|