@aws-sdk/client-network-firewall 3.301.0 → 3.306.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 +40 -0
- package/dist-cjs/NetworkFirewall.js +75 -0
- package/dist-cjs/commands/CreateTLSInspectionConfigurationCommand.js +45 -0
- package/dist-cjs/commands/DeleteTLSInspectionConfigurationCommand.js +45 -0
- package/dist-cjs/commands/DescribeTLSInspectionConfigurationCommand.js +45 -0
- package/dist-cjs/commands/ListTLSInspectionConfigurationsCommand.js +45 -0
- package/dist-cjs/commands/UpdateTLSInspectionConfigurationCommand.js +45 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +114 -135
- package/dist-cjs/pagination/ListTLSInspectionConfigurationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_0.js +540 -2
- package/dist-es/NetworkFirewall.js +75 -0
- package/dist-es/commands/CreateTLSInspectionConfigurationCommand.js +41 -0
- package/dist-es/commands/DeleteTLSInspectionConfigurationCommand.js +41 -0
- package/dist-es/commands/DescribeTLSInspectionConfigurationCommand.js +41 -0
- package/dist-es/commands/ListTLSInspectionConfigurationsCommand.js +41 -0
- package/dist-es/commands/UpdateTLSInspectionConfigurationCommand.js +41 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +114 -135
- package/dist-es/pagination/ListTLSInspectionConfigurationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +528 -0
- package/dist-types/NetworkFirewall.d.ts +53 -0
- package/dist-types/NetworkFirewallClient.d.ts +7 -2
- package/dist-types/commands/CreateFirewallPolicyCommand.d.ts +1 -0
- package/dist-types/commands/CreateTLSInspectionConfigurationCommand.d.ts +145 -0
- package/dist-types/commands/DeleteTLSInspectionConfigurationCommand.d.ts +94 -0
- package/dist-types/commands/DescribeTLSInspectionConfigurationCommand.d.ts +90 -0
- package/dist-types/commands/ListTLSInspectionConfigurationsCommand.d.ts +87 -0
- package/dist-types/commands/UpdateFirewallPolicyCommand.d.ts +1 -0
- package/dist-types/commands/UpdateTLSInspectionConfigurationCommand.d.ts +144 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +558 -115
- package/dist-types/pagination/ListTLSInspectionConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +15 -0
- package/dist-types/ts3.4/NetworkFirewall.d.ts +91 -0
- package/dist-types/ts3.4/NetworkFirewallClient.d.ts +32 -2
- package/dist-types/ts3.4/commands/CreateTLSInspectionConfigurationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteTLSInspectionConfigurationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DescribeTLSInspectionConfigurationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListTLSInspectionConfigurationsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateTLSInspectionConfigurationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +244 -113
- package/dist-types/ts3.4/pagination/ListTLSInspectionConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +60 -0
- package/package.json +34 -34
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListTLSInspectionConfigurationsCommandInput, ListTLSInspectionConfigurationsCommandOutput } from "../commands/ListTLSInspectionConfigurationsCommand";
|
|
3
|
+
import { NetworkFirewallPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListTLSInspectionConfigurations(config: NetworkFirewallPaginationConfiguration, input: ListTLSInspectionConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListTLSInspectionConfigurationsCommandOutput>;
|
|
@@ -2,4 +2,5 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListFirewallPoliciesPaginator";
|
|
3
3
|
export * from "./ListFirewallsPaginator";
|
|
4
4
|
export * from "./ListRuleGroupsPaginator";
|
|
5
|
+
export * from "./ListTLSInspectionConfigurationsPaginator";
|
|
5
6
|
export * from "./ListTagsForResourcePaginator";
|
|
@@ -5,21 +5,25 @@ import { AssociateSubnetsCommandInput, AssociateSubnetsCommandOutput } from "../
|
|
|
5
5
|
import { CreateFirewallCommandInput, CreateFirewallCommandOutput } from "../commands/CreateFirewallCommand";
|
|
6
6
|
import { CreateFirewallPolicyCommandInput, CreateFirewallPolicyCommandOutput } from "../commands/CreateFirewallPolicyCommand";
|
|
7
7
|
import { CreateRuleGroupCommandInput, CreateRuleGroupCommandOutput } from "../commands/CreateRuleGroupCommand";
|
|
8
|
+
import { CreateTLSInspectionConfigurationCommandInput, CreateTLSInspectionConfigurationCommandOutput } from "../commands/CreateTLSInspectionConfigurationCommand";
|
|
8
9
|
import { DeleteFirewallCommandInput, DeleteFirewallCommandOutput } from "../commands/DeleteFirewallCommand";
|
|
9
10
|
import { DeleteFirewallPolicyCommandInput, DeleteFirewallPolicyCommandOutput } from "../commands/DeleteFirewallPolicyCommand";
|
|
10
11
|
import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "../commands/DeleteResourcePolicyCommand";
|
|
11
12
|
import { DeleteRuleGroupCommandInput, DeleteRuleGroupCommandOutput } from "../commands/DeleteRuleGroupCommand";
|
|
13
|
+
import { DeleteTLSInspectionConfigurationCommandInput, DeleteTLSInspectionConfigurationCommandOutput } from "../commands/DeleteTLSInspectionConfigurationCommand";
|
|
12
14
|
import { DescribeFirewallCommandInput, DescribeFirewallCommandOutput } from "../commands/DescribeFirewallCommand";
|
|
13
15
|
import { DescribeFirewallPolicyCommandInput, DescribeFirewallPolicyCommandOutput } from "../commands/DescribeFirewallPolicyCommand";
|
|
14
16
|
import { DescribeLoggingConfigurationCommandInput, DescribeLoggingConfigurationCommandOutput } from "../commands/DescribeLoggingConfigurationCommand";
|
|
15
17
|
import { DescribeResourcePolicyCommandInput, DescribeResourcePolicyCommandOutput } from "../commands/DescribeResourcePolicyCommand";
|
|
16
18
|
import { DescribeRuleGroupCommandInput, DescribeRuleGroupCommandOutput } from "../commands/DescribeRuleGroupCommand";
|
|
17
19
|
import { DescribeRuleGroupMetadataCommandInput, DescribeRuleGroupMetadataCommandOutput } from "../commands/DescribeRuleGroupMetadataCommand";
|
|
20
|
+
import { DescribeTLSInspectionConfigurationCommandInput, DescribeTLSInspectionConfigurationCommandOutput } from "../commands/DescribeTLSInspectionConfigurationCommand";
|
|
18
21
|
import { DisassociateSubnetsCommandInput, DisassociateSubnetsCommandOutput } from "../commands/DisassociateSubnetsCommand";
|
|
19
22
|
import { ListFirewallPoliciesCommandInput, ListFirewallPoliciesCommandOutput } from "../commands/ListFirewallPoliciesCommand";
|
|
20
23
|
import { ListFirewallsCommandInput, ListFirewallsCommandOutput } from "../commands/ListFirewallsCommand";
|
|
21
24
|
import { ListRuleGroupsCommandInput, ListRuleGroupsCommandOutput } from "../commands/ListRuleGroupsCommand";
|
|
22
25
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
26
|
+
import { ListTLSInspectionConfigurationsCommandInput, ListTLSInspectionConfigurationsCommandOutput } from "../commands/ListTLSInspectionConfigurationsCommand";
|
|
23
27
|
import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "../commands/PutResourcePolicyCommand";
|
|
24
28
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
25
29
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
@@ -31,26 +35,31 @@ import { UpdateFirewallPolicyCommandInput, UpdateFirewallPolicyCommandOutput } f
|
|
|
31
35
|
import { UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationCommandOutput } from "../commands/UpdateLoggingConfigurationCommand";
|
|
32
36
|
import { UpdateRuleGroupCommandInput, UpdateRuleGroupCommandOutput } from "../commands/UpdateRuleGroupCommand";
|
|
33
37
|
import { UpdateSubnetChangeProtectionCommandInput, UpdateSubnetChangeProtectionCommandOutput } from "../commands/UpdateSubnetChangeProtectionCommand";
|
|
38
|
+
import { UpdateTLSInspectionConfigurationCommandInput, UpdateTLSInspectionConfigurationCommandOutput } from "../commands/UpdateTLSInspectionConfigurationCommand";
|
|
34
39
|
export declare const serializeAws_json1_0AssociateFirewallPolicyCommand: (input: AssociateFirewallPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
40
|
export declare const serializeAws_json1_0AssociateSubnetsCommand: (input: AssociateSubnetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
41
|
export declare const serializeAws_json1_0CreateFirewallCommand: (input: CreateFirewallCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
42
|
export declare const serializeAws_json1_0CreateFirewallPolicyCommand: (input: CreateFirewallPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
43
|
export declare const serializeAws_json1_0CreateRuleGroupCommand: (input: CreateRuleGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
+
export declare const serializeAws_json1_0CreateTLSInspectionConfigurationCommand: (input: CreateTLSInspectionConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
45
|
export declare const serializeAws_json1_0DeleteFirewallCommand: (input: DeleteFirewallCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
46
|
export declare const serializeAws_json1_0DeleteFirewallPolicyCommand: (input: DeleteFirewallPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
47
|
export declare const serializeAws_json1_0DeleteResourcePolicyCommand: (input: DeleteResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
48
|
export declare const serializeAws_json1_0DeleteRuleGroupCommand: (input: DeleteRuleGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
+
export declare const serializeAws_json1_0DeleteTLSInspectionConfigurationCommand: (input: DeleteTLSInspectionConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
50
|
export declare const serializeAws_json1_0DescribeFirewallCommand: (input: DescribeFirewallCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
51
|
export declare const serializeAws_json1_0DescribeFirewallPolicyCommand: (input: DescribeFirewallPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
52
|
export declare const serializeAws_json1_0DescribeLoggingConfigurationCommand: (input: DescribeLoggingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
53
|
export declare const serializeAws_json1_0DescribeResourcePolicyCommand: (input: DescribeResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
54
|
export declare const serializeAws_json1_0DescribeRuleGroupCommand: (input: DescribeRuleGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
55
|
export declare const serializeAws_json1_0DescribeRuleGroupMetadataCommand: (input: DescribeRuleGroupMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
+
export declare const serializeAws_json1_0DescribeTLSInspectionConfigurationCommand: (input: DescribeTLSInspectionConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
57
|
export declare const serializeAws_json1_0DisassociateSubnetsCommand: (input: DisassociateSubnetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
58
|
export declare const serializeAws_json1_0ListFirewallPoliciesCommand: (input: ListFirewallPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
59
|
export declare const serializeAws_json1_0ListFirewallsCommand: (input: ListFirewallsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
60
|
export declare const serializeAws_json1_0ListRuleGroupsCommand: (input: ListRuleGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
61
|
export declare const serializeAws_json1_0ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
+
export declare const serializeAws_json1_0ListTLSInspectionConfigurationsCommand: (input: ListTLSInspectionConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
63
|
export declare const serializeAws_json1_0PutResourcePolicyCommand: (input: PutResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
64
|
export declare const serializeAws_json1_0TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
65
|
export declare const serializeAws_json1_0UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -62,26 +71,31 @@ export declare const serializeAws_json1_0UpdateFirewallPolicyChangeProtectionCom
|
|
|
62
71
|
export declare const serializeAws_json1_0UpdateLoggingConfigurationCommand: (input: UpdateLoggingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
72
|
export declare const serializeAws_json1_0UpdateRuleGroupCommand: (input: UpdateRuleGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
73
|
export declare const serializeAws_json1_0UpdateSubnetChangeProtectionCommand: (input: UpdateSubnetChangeProtectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_json1_0UpdateTLSInspectionConfigurationCommand: (input: UpdateTLSInspectionConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
75
|
export declare const deserializeAws_json1_0AssociateFirewallPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateFirewallPolicyCommandOutput>;
|
|
66
76
|
export declare const deserializeAws_json1_0AssociateSubnetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateSubnetsCommandOutput>;
|
|
67
77
|
export declare const deserializeAws_json1_0CreateFirewallCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFirewallCommandOutput>;
|
|
68
78
|
export declare const deserializeAws_json1_0CreateFirewallPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFirewallPolicyCommandOutput>;
|
|
69
79
|
export declare const deserializeAws_json1_0CreateRuleGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRuleGroupCommandOutput>;
|
|
80
|
+
export declare const deserializeAws_json1_0CreateTLSInspectionConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTLSInspectionConfigurationCommandOutput>;
|
|
70
81
|
export declare const deserializeAws_json1_0DeleteFirewallCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFirewallCommandOutput>;
|
|
71
82
|
export declare const deserializeAws_json1_0DeleteFirewallPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFirewallPolicyCommandOutput>;
|
|
72
83
|
export declare const deserializeAws_json1_0DeleteResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResourcePolicyCommandOutput>;
|
|
73
84
|
export declare const deserializeAws_json1_0DeleteRuleGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRuleGroupCommandOutput>;
|
|
85
|
+
export declare const deserializeAws_json1_0DeleteTLSInspectionConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTLSInspectionConfigurationCommandOutput>;
|
|
74
86
|
export declare const deserializeAws_json1_0DescribeFirewallCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFirewallCommandOutput>;
|
|
75
87
|
export declare const deserializeAws_json1_0DescribeFirewallPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFirewallPolicyCommandOutput>;
|
|
76
88
|
export declare const deserializeAws_json1_0DescribeLoggingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLoggingConfigurationCommandOutput>;
|
|
77
89
|
export declare const deserializeAws_json1_0DescribeResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeResourcePolicyCommandOutput>;
|
|
78
90
|
export declare const deserializeAws_json1_0DescribeRuleGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRuleGroupCommandOutput>;
|
|
79
91
|
export declare const deserializeAws_json1_0DescribeRuleGroupMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRuleGroupMetadataCommandOutput>;
|
|
92
|
+
export declare const deserializeAws_json1_0DescribeTLSInspectionConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTLSInspectionConfigurationCommandOutput>;
|
|
80
93
|
export declare const deserializeAws_json1_0DisassociateSubnetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateSubnetsCommandOutput>;
|
|
81
94
|
export declare const deserializeAws_json1_0ListFirewallPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFirewallPoliciesCommandOutput>;
|
|
82
95
|
export declare const deserializeAws_json1_0ListFirewallsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFirewallsCommandOutput>;
|
|
83
96
|
export declare const deserializeAws_json1_0ListRuleGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRuleGroupsCommandOutput>;
|
|
84
97
|
export declare const deserializeAws_json1_0ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
98
|
+
export declare const deserializeAws_json1_0ListTLSInspectionConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTLSInspectionConfigurationsCommandOutput>;
|
|
85
99
|
export declare const deserializeAws_json1_0PutResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourcePolicyCommandOutput>;
|
|
86
100
|
export declare const deserializeAws_json1_0TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
87
101
|
export declare const deserializeAws_json1_0UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
@@ -93,3 +107,4 @@ export declare const deserializeAws_json1_0UpdateFirewallPolicyChangeProtectionC
|
|
|
93
107
|
export declare const deserializeAws_json1_0UpdateLoggingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLoggingConfigurationCommandOutput>;
|
|
94
108
|
export declare const deserializeAws_json1_0UpdateRuleGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRuleGroupCommandOutput>;
|
|
95
109
|
export declare const deserializeAws_json1_0UpdateSubnetChangeProtectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSubnetChangeProtectionCommandOutput>;
|
|
110
|
+
export declare const deserializeAws_json1_0UpdateTLSInspectionConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTLSInspectionConfigurationCommandOutput>;
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
CreateRuleGroupCommandInput,
|
|
20
20
|
CreateRuleGroupCommandOutput,
|
|
21
21
|
} from "./commands/CreateRuleGroupCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateTLSInspectionConfigurationCommandInput,
|
|
24
|
+
CreateTLSInspectionConfigurationCommandOutput,
|
|
25
|
+
} from "./commands/CreateTLSInspectionConfigurationCommand";
|
|
22
26
|
import {
|
|
23
27
|
DeleteFirewallCommandInput,
|
|
24
28
|
DeleteFirewallCommandOutput,
|
|
@@ -35,6 +39,10 @@ import {
|
|
|
35
39
|
DeleteRuleGroupCommandInput,
|
|
36
40
|
DeleteRuleGroupCommandOutput,
|
|
37
41
|
} from "./commands/DeleteRuleGroupCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteTLSInspectionConfigurationCommandInput,
|
|
44
|
+
DeleteTLSInspectionConfigurationCommandOutput,
|
|
45
|
+
} from "./commands/DeleteTLSInspectionConfigurationCommand";
|
|
38
46
|
import {
|
|
39
47
|
DescribeFirewallCommandInput,
|
|
40
48
|
DescribeFirewallCommandOutput,
|
|
@@ -59,6 +67,10 @@ import {
|
|
|
59
67
|
DescribeRuleGroupMetadataCommandInput,
|
|
60
68
|
DescribeRuleGroupMetadataCommandOutput,
|
|
61
69
|
} from "./commands/DescribeRuleGroupMetadataCommand";
|
|
70
|
+
import {
|
|
71
|
+
DescribeTLSInspectionConfigurationCommandInput,
|
|
72
|
+
DescribeTLSInspectionConfigurationCommandOutput,
|
|
73
|
+
} from "./commands/DescribeTLSInspectionConfigurationCommand";
|
|
62
74
|
import {
|
|
63
75
|
DisassociateSubnetsCommandInput,
|
|
64
76
|
DisassociateSubnetsCommandOutput,
|
|
@@ -79,6 +91,10 @@ import {
|
|
|
79
91
|
ListTagsForResourceCommandInput,
|
|
80
92
|
ListTagsForResourceCommandOutput,
|
|
81
93
|
} from "./commands/ListTagsForResourceCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListTLSInspectionConfigurationsCommandInput,
|
|
96
|
+
ListTLSInspectionConfigurationsCommandOutput,
|
|
97
|
+
} from "./commands/ListTLSInspectionConfigurationsCommand";
|
|
82
98
|
import {
|
|
83
99
|
PutResourcePolicyCommandInput,
|
|
84
100
|
PutResourcePolicyCommandOutput,
|
|
@@ -123,6 +139,10 @@ import {
|
|
|
123
139
|
UpdateSubnetChangeProtectionCommandInput,
|
|
124
140
|
UpdateSubnetChangeProtectionCommandOutput,
|
|
125
141
|
} from "./commands/UpdateSubnetChangeProtectionCommand";
|
|
142
|
+
import {
|
|
143
|
+
UpdateTLSInspectionConfigurationCommandInput,
|
|
144
|
+
UpdateTLSInspectionConfigurationCommandOutput,
|
|
145
|
+
} from "./commands/UpdateTLSInspectionConfigurationCommand";
|
|
126
146
|
import { NetworkFirewallClient } from "./NetworkFirewallClient";
|
|
127
147
|
export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
128
148
|
associateFirewallPolicy(
|
|
@@ -190,6 +210,19 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
190
210
|
options: __HttpHandlerOptions,
|
|
191
211
|
cb: (err: any, data?: CreateRuleGroupCommandOutput) => void
|
|
192
212
|
): void;
|
|
213
|
+
createTLSInspectionConfiguration(
|
|
214
|
+
args: CreateTLSInspectionConfigurationCommandInput,
|
|
215
|
+
options?: __HttpHandlerOptions
|
|
216
|
+
): Promise<CreateTLSInspectionConfigurationCommandOutput>;
|
|
217
|
+
createTLSInspectionConfiguration(
|
|
218
|
+
args: CreateTLSInspectionConfigurationCommandInput,
|
|
219
|
+
cb: (err: any, data?: CreateTLSInspectionConfigurationCommandOutput) => void
|
|
220
|
+
): void;
|
|
221
|
+
createTLSInspectionConfiguration(
|
|
222
|
+
args: CreateTLSInspectionConfigurationCommandInput,
|
|
223
|
+
options: __HttpHandlerOptions,
|
|
224
|
+
cb: (err: any, data?: CreateTLSInspectionConfigurationCommandOutput) => void
|
|
225
|
+
): void;
|
|
193
226
|
deleteFirewall(
|
|
194
227
|
args: DeleteFirewallCommandInput,
|
|
195
228
|
options?: __HttpHandlerOptions
|
|
@@ -242,6 +275,19 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
242
275
|
options: __HttpHandlerOptions,
|
|
243
276
|
cb: (err: any, data?: DeleteRuleGroupCommandOutput) => void
|
|
244
277
|
): void;
|
|
278
|
+
deleteTLSInspectionConfiguration(
|
|
279
|
+
args: DeleteTLSInspectionConfigurationCommandInput,
|
|
280
|
+
options?: __HttpHandlerOptions
|
|
281
|
+
): Promise<DeleteTLSInspectionConfigurationCommandOutput>;
|
|
282
|
+
deleteTLSInspectionConfiguration(
|
|
283
|
+
args: DeleteTLSInspectionConfigurationCommandInput,
|
|
284
|
+
cb: (err: any, data?: DeleteTLSInspectionConfigurationCommandOutput) => void
|
|
285
|
+
): void;
|
|
286
|
+
deleteTLSInspectionConfiguration(
|
|
287
|
+
args: DeleteTLSInspectionConfigurationCommandInput,
|
|
288
|
+
options: __HttpHandlerOptions,
|
|
289
|
+
cb: (err: any, data?: DeleteTLSInspectionConfigurationCommandOutput) => void
|
|
290
|
+
): void;
|
|
245
291
|
describeFirewall(
|
|
246
292
|
args: DescribeFirewallCommandInput,
|
|
247
293
|
options?: __HttpHandlerOptions
|
|
@@ -320,6 +366,25 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
320
366
|
options: __HttpHandlerOptions,
|
|
321
367
|
cb: (err: any, data?: DescribeRuleGroupMetadataCommandOutput) => void
|
|
322
368
|
): void;
|
|
369
|
+
describeTLSInspectionConfiguration(
|
|
370
|
+
args: DescribeTLSInspectionConfigurationCommandInput,
|
|
371
|
+
options?: __HttpHandlerOptions
|
|
372
|
+
): Promise<DescribeTLSInspectionConfigurationCommandOutput>;
|
|
373
|
+
describeTLSInspectionConfiguration(
|
|
374
|
+
args: DescribeTLSInspectionConfigurationCommandInput,
|
|
375
|
+
cb: (
|
|
376
|
+
err: any,
|
|
377
|
+
data?: DescribeTLSInspectionConfigurationCommandOutput
|
|
378
|
+
) => void
|
|
379
|
+
): void;
|
|
380
|
+
describeTLSInspectionConfiguration(
|
|
381
|
+
args: DescribeTLSInspectionConfigurationCommandInput,
|
|
382
|
+
options: __HttpHandlerOptions,
|
|
383
|
+
cb: (
|
|
384
|
+
err: any,
|
|
385
|
+
data?: DescribeTLSInspectionConfigurationCommandOutput
|
|
386
|
+
) => void
|
|
387
|
+
): void;
|
|
323
388
|
disassociateSubnets(
|
|
324
389
|
args: DisassociateSubnetsCommandInput,
|
|
325
390
|
options?: __HttpHandlerOptions
|
|
@@ -385,6 +450,19 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
385
450
|
options: __HttpHandlerOptions,
|
|
386
451
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
387
452
|
): void;
|
|
453
|
+
listTLSInspectionConfigurations(
|
|
454
|
+
args: ListTLSInspectionConfigurationsCommandInput,
|
|
455
|
+
options?: __HttpHandlerOptions
|
|
456
|
+
): Promise<ListTLSInspectionConfigurationsCommandOutput>;
|
|
457
|
+
listTLSInspectionConfigurations(
|
|
458
|
+
args: ListTLSInspectionConfigurationsCommandInput,
|
|
459
|
+
cb: (err: any, data?: ListTLSInspectionConfigurationsCommandOutput) => void
|
|
460
|
+
): void;
|
|
461
|
+
listTLSInspectionConfigurations(
|
|
462
|
+
args: ListTLSInspectionConfigurationsCommandInput,
|
|
463
|
+
options: __HttpHandlerOptions,
|
|
464
|
+
cb: (err: any, data?: ListTLSInspectionConfigurationsCommandOutput) => void
|
|
465
|
+
): void;
|
|
388
466
|
putResourcePolicy(
|
|
389
467
|
args: PutResourcePolicyCommandInput,
|
|
390
468
|
options?: __HttpHandlerOptions
|
|
@@ -540,4 +618,17 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
540
618
|
options: __HttpHandlerOptions,
|
|
541
619
|
cb: (err: any, data?: UpdateSubnetChangeProtectionCommandOutput) => void
|
|
542
620
|
): void;
|
|
621
|
+
updateTLSInspectionConfiguration(
|
|
622
|
+
args: UpdateTLSInspectionConfigurationCommandInput,
|
|
623
|
+
options?: __HttpHandlerOptions
|
|
624
|
+
): Promise<UpdateTLSInspectionConfigurationCommandOutput>;
|
|
625
|
+
updateTLSInspectionConfiguration(
|
|
626
|
+
args: UpdateTLSInspectionConfigurationCommandInput,
|
|
627
|
+
cb: (err: any, data?: UpdateTLSInspectionConfigurationCommandOutput) => void
|
|
628
|
+
): void;
|
|
629
|
+
updateTLSInspectionConfiguration(
|
|
630
|
+
args: UpdateTLSInspectionConfigurationCommandInput,
|
|
631
|
+
options: __HttpHandlerOptions,
|
|
632
|
+
cb: (err: any, data?: UpdateTLSInspectionConfigurationCommandOutput) => void
|
|
633
|
+
): void;
|
|
543
634
|
}
|
|
@@ -64,6 +64,10 @@ import {
|
|
|
64
64
|
CreateRuleGroupCommandInput,
|
|
65
65
|
CreateRuleGroupCommandOutput,
|
|
66
66
|
} from "./commands/CreateRuleGroupCommand";
|
|
67
|
+
import {
|
|
68
|
+
CreateTLSInspectionConfigurationCommandInput,
|
|
69
|
+
CreateTLSInspectionConfigurationCommandOutput,
|
|
70
|
+
} from "./commands/CreateTLSInspectionConfigurationCommand";
|
|
67
71
|
import {
|
|
68
72
|
DeleteFirewallCommandInput,
|
|
69
73
|
DeleteFirewallCommandOutput,
|
|
@@ -80,6 +84,10 @@ import {
|
|
|
80
84
|
DeleteRuleGroupCommandInput,
|
|
81
85
|
DeleteRuleGroupCommandOutput,
|
|
82
86
|
} from "./commands/DeleteRuleGroupCommand";
|
|
87
|
+
import {
|
|
88
|
+
DeleteTLSInspectionConfigurationCommandInput,
|
|
89
|
+
DeleteTLSInspectionConfigurationCommandOutput,
|
|
90
|
+
} from "./commands/DeleteTLSInspectionConfigurationCommand";
|
|
83
91
|
import {
|
|
84
92
|
DescribeFirewallCommandInput,
|
|
85
93
|
DescribeFirewallCommandOutput,
|
|
@@ -104,6 +112,10 @@ import {
|
|
|
104
112
|
DescribeRuleGroupMetadataCommandInput,
|
|
105
113
|
DescribeRuleGroupMetadataCommandOutput,
|
|
106
114
|
} from "./commands/DescribeRuleGroupMetadataCommand";
|
|
115
|
+
import {
|
|
116
|
+
DescribeTLSInspectionConfigurationCommandInput,
|
|
117
|
+
DescribeTLSInspectionConfigurationCommandOutput,
|
|
118
|
+
} from "./commands/DescribeTLSInspectionConfigurationCommand";
|
|
107
119
|
import {
|
|
108
120
|
DisassociateSubnetsCommandInput,
|
|
109
121
|
DisassociateSubnetsCommandOutput,
|
|
@@ -124,6 +136,10 @@ import {
|
|
|
124
136
|
ListTagsForResourceCommandInput,
|
|
125
137
|
ListTagsForResourceCommandOutput,
|
|
126
138
|
} from "./commands/ListTagsForResourceCommand";
|
|
139
|
+
import {
|
|
140
|
+
ListTLSInspectionConfigurationsCommandInput,
|
|
141
|
+
ListTLSInspectionConfigurationsCommandOutput,
|
|
142
|
+
} from "./commands/ListTLSInspectionConfigurationsCommand";
|
|
127
143
|
import {
|
|
128
144
|
PutResourcePolicyCommandInput,
|
|
129
145
|
PutResourcePolicyCommandOutput,
|
|
@@ -168,6 +184,10 @@ import {
|
|
|
168
184
|
UpdateSubnetChangeProtectionCommandInput,
|
|
169
185
|
UpdateSubnetChangeProtectionCommandOutput,
|
|
170
186
|
} from "./commands/UpdateSubnetChangeProtectionCommand";
|
|
187
|
+
import {
|
|
188
|
+
UpdateTLSInspectionConfigurationCommandInput,
|
|
189
|
+
UpdateTLSInspectionConfigurationCommandOutput,
|
|
190
|
+
} from "./commands/UpdateTLSInspectionConfigurationCommand";
|
|
171
191
|
import {
|
|
172
192
|
ClientInputEndpointParameters,
|
|
173
193
|
ClientResolvedEndpointParameters,
|
|
@@ -179,20 +199,24 @@ export type ServiceInputTypes =
|
|
|
179
199
|
| CreateFirewallCommandInput
|
|
180
200
|
| CreateFirewallPolicyCommandInput
|
|
181
201
|
| CreateRuleGroupCommandInput
|
|
202
|
+
| CreateTLSInspectionConfigurationCommandInput
|
|
182
203
|
| DeleteFirewallCommandInput
|
|
183
204
|
| DeleteFirewallPolicyCommandInput
|
|
184
205
|
| DeleteResourcePolicyCommandInput
|
|
185
206
|
| DeleteRuleGroupCommandInput
|
|
207
|
+
| DeleteTLSInspectionConfigurationCommandInput
|
|
186
208
|
| DescribeFirewallCommandInput
|
|
187
209
|
| DescribeFirewallPolicyCommandInput
|
|
188
210
|
| DescribeLoggingConfigurationCommandInput
|
|
189
211
|
| DescribeResourcePolicyCommandInput
|
|
190
212
|
| DescribeRuleGroupCommandInput
|
|
191
213
|
| DescribeRuleGroupMetadataCommandInput
|
|
214
|
+
| DescribeTLSInspectionConfigurationCommandInput
|
|
192
215
|
| DisassociateSubnetsCommandInput
|
|
193
216
|
| ListFirewallPoliciesCommandInput
|
|
194
217
|
| ListFirewallsCommandInput
|
|
195
218
|
| ListRuleGroupsCommandInput
|
|
219
|
+
| ListTLSInspectionConfigurationsCommandInput
|
|
196
220
|
| ListTagsForResourceCommandInput
|
|
197
221
|
| PutResourcePolicyCommandInput
|
|
198
222
|
| TagResourceCommandInput
|
|
@@ -204,27 +228,32 @@ export type ServiceInputTypes =
|
|
|
204
228
|
| UpdateFirewallPolicyCommandInput
|
|
205
229
|
| UpdateLoggingConfigurationCommandInput
|
|
206
230
|
| UpdateRuleGroupCommandInput
|
|
207
|
-
| UpdateSubnetChangeProtectionCommandInput
|
|
231
|
+
| UpdateSubnetChangeProtectionCommandInput
|
|
232
|
+
| UpdateTLSInspectionConfigurationCommandInput;
|
|
208
233
|
export type ServiceOutputTypes =
|
|
209
234
|
| AssociateFirewallPolicyCommandOutput
|
|
210
235
|
| AssociateSubnetsCommandOutput
|
|
211
236
|
| CreateFirewallCommandOutput
|
|
212
237
|
| CreateFirewallPolicyCommandOutput
|
|
213
238
|
| CreateRuleGroupCommandOutput
|
|
239
|
+
| CreateTLSInspectionConfigurationCommandOutput
|
|
214
240
|
| DeleteFirewallCommandOutput
|
|
215
241
|
| DeleteFirewallPolicyCommandOutput
|
|
216
242
|
| DeleteResourcePolicyCommandOutput
|
|
217
243
|
| DeleteRuleGroupCommandOutput
|
|
244
|
+
| DeleteTLSInspectionConfigurationCommandOutput
|
|
218
245
|
| DescribeFirewallCommandOutput
|
|
219
246
|
| DescribeFirewallPolicyCommandOutput
|
|
220
247
|
| DescribeLoggingConfigurationCommandOutput
|
|
221
248
|
| DescribeResourcePolicyCommandOutput
|
|
222
249
|
| DescribeRuleGroupCommandOutput
|
|
223
250
|
| DescribeRuleGroupMetadataCommandOutput
|
|
251
|
+
| DescribeTLSInspectionConfigurationCommandOutput
|
|
224
252
|
| DisassociateSubnetsCommandOutput
|
|
225
253
|
| ListFirewallPoliciesCommandOutput
|
|
226
254
|
| ListFirewallsCommandOutput
|
|
227
255
|
| ListRuleGroupsCommandOutput
|
|
256
|
+
| ListTLSInspectionConfigurationsCommandOutput
|
|
228
257
|
| ListTagsForResourceCommandOutput
|
|
229
258
|
| PutResourcePolicyCommandOutput
|
|
230
259
|
| TagResourceCommandOutput
|
|
@@ -236,7 +265,8 @@ export type ServiceOutputTypes =
|
|
|
236
265
|
| UpdateFirewallPolicyCommandOutput
|
|
237
266
|
| UpdateLoggingConfigurationCommandOutput
|
|
238
267
|
| UpdateRuleGroupCommandOutput
|
|
239
|
-
| UpdateSubnetChangeProtectionCommandOutput
|
|
268
|
+
| UpdateSubnetChangeProtectionCommandOutput
|
|
269
|
+
| UpdateTLSInspectionConfigurationCommandOutput;
|
|
240
270
|
export interface ClientDefaults
|
|
241
271
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
242
272
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateTLSInspectionConfigurationRequest,
|
|
11
|
+
CreateTLSInspectionConfigurationResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NetworkFirewallClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NetworkFirewallClient";
|
|
18
|
+
export interface CreateTLSInspectionConfigurationCommandInput
|
|
19
|
+
extends CreateTLSInspectionConfigurationRequest {}
|
|
20
|
+
export interface CreateTLSInspectionConfigurationCommandOutput
|
|
21
|
+
extends CreateTLSInspectionConfigurationResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateTLSInspectionConfigurationCommand extends $Command<
|
|
24
|
+
CreateTLSInspectionConfigurationCommandInput,
|
|
25
|
+
CreateTLSInspectionConfigurationCommandOutput,
|
|
26
|
+
NetworkFirewallClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateTLSInspectionConfigurationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateTLSInspectionConfigurationCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateTLSInspectionConfigurationCommandInput,
|
|
37
|
+
CreateTLSInspectionConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DeleteTLSInspectionConfigurationRequest,
|
|
11
|
+
DeleteTLSInspectionConfigurationResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NetworkFirewallClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NetworkFirewallClient";
|
|
18
|
+
export interface DeleteTLSInspectionConfigurationCommandInput
|
|
19
|
+
extends DeleteTLSInspectionConfigurationRequest {}
|
|
20
|
+
export interface DeleteTLSInspectionConfigurationCommandOutput
|
|
21
|
+
extends DeleteTLSInspectionConfigurationResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteTLSInspectionConfigurationCommand extends $Command<
|
|
24
|
+
DeleteTLSInspectionConfigurationCommandInput,
|
|
25
|
+
DeleteTLSInspectionConfigurationCommandOutput,
|
|
26
|
+
NetworkFirewallClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteTLSInspectionConfigurationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteTLSInspectionConfigurationCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteTLSInspectionConfigurationCommandInput,
|
|
37
|
+
DeleteTLSInspectionConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DescribeTLSInspectionConfigurationRequest,
|
|
11
|
+
DescribeTLSInspectionConfigurationResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NetworkFirewallClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NetworkFirewallClient";
|
|
18
|
+
export interface DescribeTLSInspectionConfigurationCommandInput
|
|
19
|
+
extends DescribeTLSInspectionConfigurationRequest {}
|
|
20
|
+
export interface DescribeTLSInspectionConfigurationCommandOutput
|
|
21
|
+
extends DescribeTLSInspectionConfigurationResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DescribeTLSInspectionConfigurationCommand extends $Command<
|
|
24
|
+
DescribeTLSInspectionConfigurationCommandInput,
|
|
25
|
+
DescribeTLSInspectionConfigurationCommandOutput,
|
|
26
|
+
NetworkFirewallClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeTLSInspectionConfigurationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DescribeTLSInspectionConfigurationCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeTLSInspectionConfigurationCommandInput,
|
|
37
|
+
DescribeTLSInspectionConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListTLSInspectionConfigurationsRequest,
|
|
11
|
+
ListTLSInspectionConfigurationsResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NetworkFirewallClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NetworkFirewallClient";
|
|
18
|
+
export interface ListTLSInspectionConfigurationsCommandInput
|
|
19
|
+
extends ListTLSInspectionConfigurationsRequest {}
|
|
20
|
+
export interface ListTLSInspectionConfigurationsCommandOutput
|
|
21
|
+
extends ListTLSInspectionConfigurationsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListTLSInspectionConfigurationsCommand extends $Command<
|
|
24
|
+
ListTLSInspectionConfigurationsCommandInput,
|
|
25
|
+
ListTLSInspectionConfigurationsCommandOutput,
|
|
26
|
+
NetworkFirewallClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTLSInspectionConfigurationsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListTLSInspectionConfigurationsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListTLSInspectionConfigurationsCommandInput,
|
|
37
|
+
ListTLSInspectionConfigurationsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
UpdateTLSInspectionConfigurationRequest,
|
|
11
|
+
UpdateTLSInspectionConfigurationResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NetworkFirewallClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NetworkFirewallClient";
|
|
18
|
+
export interface UpdateTLSInspectionConfigurationCommandInput
|
|
19
|
+
extends UpdateTLSInspectionConfigurationRequest {}
|
|
20
|
+
export interface UpdateTLSInspectionConfigurationCommandOutput
|
|
21
|
+
extends UpdateTLSInspectionConfigurationResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class UpdateTLSInspectionConfigurationCommand extends $Command<
|
|
24
|
+
UpdateTLSInspectionConfigurationCommandInput,
|
|
25
|
+
UpdateTLSInspectionConfigurationCommandOutput,
|
|
26
|
+
NetworkFirewallClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateTLSInspectionConfigurationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UpdateTLSInspectionConfigurationCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NetworkFirewallClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateTLSInspectionConfigurationCommandInput,
|
|
37
|
+
UpdateTLSInspectionConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -3,20 +3,24 @@ export * from "./AssociateSubnetsCommand";
|
|
|
3
3
|
export * from "./CreateFirewallCommand";
|
|
4
4
|
export * from "./CreateFirewallPolicyCommand";
|
|
5
5
|
export * from "./CreateRuleGroupCommand";
|
|
6
|
+
export * from "./CreateTLSInspectionConfigurationCommand";
|
|
6
7
|
export * from "./DeleteFirewallCommand";
|
|
7
8
|
export * from "./DeleteFirewallPolicyCommand";
|
|
8
9
|
export * from "./DeleteResourcePolicyCommand";
|
|
9
10
|
export * from "./DeleteRuleGroupCommand";
|
|
11
|
+
export * from "./DeleteTLSInspectionConfigurationCommand";
|
|
10
12
|
export * from "./DescribeFirewallCommand";
|
|
11
13
|
export * from "./DescribeFirewallPolicyCommand";
|
|
12
14
|
export * from "./DescribeLoggingConfigurationCommand";
|
|
13
15
|
export * from "./DescribeResourcePolicyCommand";
|
|
14
16
|
export * from "./DescribeRuleGroupCommand";
|
|
15
17
|
export * from "./DescribeRuleGroupMetadataCommand";
|
|
18
|
+
export * from "./DescribeTLSInspectionConfigurationCommand";
|
|
16
19
|
export * from "./DisassociateSubnetsCommand";
|
|
17
20
|
export * from "./ListFirewallPoliciesCommand";
|
|
18
21
|
export * from "./ListFirewallsCommand";
|
|
19
22
|
export * from "./ListRuleGroupsCommand";
|
|
23
|
+
export * from "./ListTLSInspectionConfigurationsCommand";
|
|
20
24
|
export * from "./ListTagsForResourceCommand";
|
|
21
25
|
export * from "./PutResourcePolicyCommand";
|
|
22
26
|
export * from "./TagResourceCommand";
|
|
@@ -29,3 +33,4 @@ export * from "./UpdateFirewallPolicyCommand";
|
|
|
29
33
|
export * from "./UpdateLoggingConfigurationCommand";
|
|
30
34
|
export * from "./UpdateRuleGroupCommand";
|
|
31
35
|
export * from "./UpdateSubnetChangeProtectionCommand";
|
|
36
|
+
export * from "./UpdateTLSInspectionConfigurationCommand";
|
|
@@ -26,7 +26,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
26
26
|
defaultSigningName: string;
|
|
27
27
|
};
|
|
28
28
|
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
-
Region
|
|
29
|
+
Region?: string;
|
|
30
30
|
UseDualStack?: boolean;
|
|
31
31
|
UseFIPS?: boolean;
|
|
32
32
|
Endpoint?: string;
|