@aws-sdk/client-network-firewall 3.936.0 → 3.940.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 +183 -7
- package/dist-cjs/index.js +1000 -42
- package/dist-es/NetworkFirewall.js +44 -0
- package/dist-es/commands/AttachRuleGroupsToProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/CreateProxyCommand.js +16 -0
- package/dist-es/commands/CreateProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/CreateProxyRuleGroupCommand.js +16 -0
- package/dist-es/commands/CreateProxyRulesCommand.js +16 -0
- package/dist-es/commands/DeleteProxyCommand.js +16 -0
- package/dist-es/commands/DeleteProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/DeleteProxyRuleGroupCommand.js +16 -0
- package/dist-es/commands/DeleteProxyRulesCommand.js +16 -0
- package/dist-es/commands/DescribeProxyCommand.js +16 -0
- package/dist-es/commands/DescribeProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/DescribeProxyRuleCommand.js +16 -0
- package/dist-es/commands/DescribeProxyRuleGroupCommand.js +16 -0
- package/dist-es/commands/DetachRuleGroupsFromProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/ListProxiesCommand.js +16 -0
- package/dist-es/commands/ListProxyConfigurationsCommand.js +16 -0
- package/dist-es/commands/ListProxyRuleGroupsCommand.js +16 -0
- package/dist-es/commands/UpdateProxyCommand.js +16 -0
- package/dist-es/commands/UpdateProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/UpdateProxyRuleCommand.js +16 -0
- package/dist-es/commands/UpdateProxyRuleGroupPrioritiesCommand.js +16 -0
- package/dist-es/commands/UpdateProxyRulePrioritiesCommand.js +16 -0
- package/dist-es/commands/index.js +22 -0
- package/dist-es/models/enums.js +31 -0
- package/dist-es/pagination/ListProxiesPaginator.js +4 -0
- package/dist-es/pagination/ListProxyConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/ListProxyRuleGroupsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +649 -42
- package/dist-types/NetworkFirewall.d.ts +162 -0
- package/dist-types/NetworkFirewallClient.d.ts +24 -2
- package/dist-types/commands/AttachRuleGroupsToProxyConfigurationCommand.d.ts +136 -0
- package/dist-types/commands/CreateProxyCommand.d.ts +159 -0
- package/dist-types/commands/CreateProxyConfigurationCommand.d.ts +151 -0
- package/dist-types/commands/CreateProxyRuleGroupCommand.d.ts +225 -0
- package/dist-types/commands/CreateProxyRulesCommand.d.ts +216 -0
- package/dist-types/commands/DeleteProxyCommand.d.ts +108 -0
- package/dist-types/commands/DeleteProxyConfigurationCommand.d.ts +102 -0
- package/dist-types/commands/DeleteProxyRuleGroupCommand.d.ts +102 -0
- package/dist-types/commands/DeleteProxyRulesCommand.d.ts +167 -0
- package/dist-types/commands/DescribeProxyCommand.d.ts +133 -0
- package/dist-types/commands/DescribeProxyConfigurationCommand.d.ts +127 -0
- package/dist-types/commands/DescribeProxyRuleCommand.d.ts +116 -0
- package/dist-types/commands/DescribeProxyRuleGroupCommand.d.ts +164 -0
- package/dist-types/commands/DetachRuleGroupsFromProxyConfigurationCommand.d.ts +136 -0
- package/dist-types/commands/ListProxiesCommand.d.ts +106 -0
- package/dist-types/commands/ListProxyConfigurationsCommand.d.ts +109 -0
- package/dist-types/commands/ListProxyRuleGroupsCommand.d.ts +109 -0
- package/dist-types/commands/UpdateProxyCommand.d.ts +152 -0
- package/dist-types/commands/UpdateProxyConfigurationCommand.d.ts +133 -0
- package/dist-types/commands/UpdateProxyRuleCommand.d.ts +146 -0
- package/dist-types/commands/UpdateProxyRuleGroupPrioritiesCommand.d.ts +114 -0
- package/dist-types/commands/UpdateProxyRulePrioritiesCommand.d.ts +118 -0
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/models/enums.d.ts +79 -0
- package/dist-types/models/models_0.d.ts +1834 -264
- package/dist-types/pagination/ListProxiesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProxyConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProxyRuleGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +104 -0
- package/dist-types/ts3.4/NetworkFirewall.d.ts +394 -0
- package/dist-types/ts3.4/NetworkFirewallClient.d.ts +132 -0
- package/dist-types/ts3.4/commands/AttachRuleGroupsToProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProxyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProxyRuleGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProxyRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteProxyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteProxyRuleGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteProxyRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeProxyCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeProxyRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeProxyRuleGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DetachRuleGroupsFromProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListProxiesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListProxyConfigurationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListProxyRuleGroupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProxyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProxyRuleCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateProxyRuleGroupPrioritiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProxyRulePrioritiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +22 -0
- package/dist-types/ts3.4/models/enums.d.ts +42 -0
- package/dist-types/ts3.4/models/models_0.d.ts +372 -4
- package/dist-types/ts3.4/pagination/ListProxiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProxyConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProxyRuleGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +104 -0
- 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
|
+
UpdateProxyRulePrioritiesRequest,
|
|
5
|
+
UpdateProxyRulePrioritiesResponse,
|
|
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 UpdateProxyRulePrioritiesCommandInput
|
|
15
|
+
extends UpdateProxyRulePrioritiesRequest {}
|
|
16
|
+
export interface UpdateProxyRulePrioritiesCommandOutput
|
|
17
|
+
extends UpdateProxyRulePrioritiesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateProxyRulePrioritiesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateProxyRulePrioritiesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateProxyRulePrioritiesCommandInput,
|
|
24
|
+
UpdateProxyRulePrioritiesCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateProxyRulePrioritiesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateProxyRulePrioritiesCommandInput,
|
|
33
|
+
UpdateProxyRulePrioritiesCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateProxyRulePrioritiesCommand extends UpdateProxyRulePrioritiesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateProxyRulePrioritiesRequest;
|
|
44
|
+
output: UpdateProxyRulePrioritiesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateProxyRulePrioritiesCommandInput;
|
|
48
|
+
output: UpdateProxyRulePrioritiesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -2,14 +2,23 @@ export * from "./AcceptNetworkFirewallTransitGatewayAttachmentCommand";
|
|
|
2
2
|
export * from "./AssociateAvailabilityZonesCommand";
|
|
3
3
|
export * from "./AssociateFirewallPolicyCommand";
|
|
4
4
|
export * from "./AssociateSubnetsCommand";
|
|
5
|
+
export * from "./AttachRuleGroupsToProxyConfigurationCommand";
|
|
5
6
|
export * from "./CreateFirewallCommand";
|
|
6
7
|
export * from "./CreateFirewallPolicyCommand";
|
|
8
|
+
export * from "./CreateProxyCommand";
|
|
9
|
+
export * from "./CreateProxyConfigurationCommand";
|
|
10
|
+
export * from "./CreateProxyRuleGroupCommand";
|
|
11
|
+
export * from "./CreateProxyRulesCommand";
|
|
7
12
|
export * from "./CreateRuleGroupCommand";
|
|
8
13
|
export * from "./CreateTLSInspectionConfigurationCommand";
|
|
9
14
|
export * from "./CreateVpcEndpointAssociationCommand";
|
|
10
15
|
export * from "./DeleteFirewallCommand";
|
|
11
16
|
export * from "./DeleteFirewallPolicyCommand";
|
|
12
17
|
export * from "./DeleteNetworkFirewallTransitGatewayAttachmentCommand";
|
|
18
|
+
export * from "./DeleteProxyCommand";
|
|
19
|
+
export * from "./DeleteProxyConfigurationCommand";
|
|
20
|
+
export * from "./DeleteProxyRuleGroupCommand";
|
|
21
|
+
export * from "./DeleteProxyRulesCommand";
|
|
13
22
|
export * from "./DeleteResourcePolicyCommand";
|
|
14
23
|
export * from "./DeleteRuleGroupCommand";
|
|
15
24
|
export * from "./DeleteTLSInspectionConfigurationCommand";
|
|
@@ -19,12 +28,17 @@ export * from "./DescribeFirewallMetadataCommand";
|
|
|
19
28
|
export * from "./DescribeFirewallPolicyCommand";
|
|
20
29
|
export * from "./DescribeFlowOperationCommand";
|
|
21
30
|
export * from "./DescribeLoggingConfigurationCommand";
|
|
31
|
+
export * from "./DescribeProxyCommand";
|
|
32
|
+
export * from "./DescribeProxyConfigurationCommand";
|
|
33
|
+
export * from "./DescribeProxyRuleCommand";
|
|
34
|
+
export * from "./DescribeProxyRuleGroupCommand";
|
|
22
35
|
export * from "./DescribeResourcePolicyCommand";
|
|
23
36
|
export * from "./DescribeRuleGroupCommand";
|
|
24
37
|
export * from "./DescribeRuleGroupMetadataCommand";
|
|
25
38
|
export * from "./DescribeRuleGroupSummaryCommand";
|
|
26
39
|
export * from "./DescribeTLSInspectionConfigurationCommand";
|
|
27
40
|
export * from "./DescribeVpcEndpointAssociationCommand";
|
|
41
|
+
export * from "./DetachRuleGroupsFromProxyConfigurationCommand";
|
|
28
42
|
export * from "./DisassociateAvailabilityZonesCommand";
|
|
29
43
|
export * from "./DisassociateSubnetsCommand";
|
|
30
44
|
export * from "./GetAnalysisReportResultsCommand";
|
|
@@ -33,6 +47,9 @@ export * from "./ListFirewallPoliciesCommand";
|
|
|
33
47
|
export * from "./ListFirewallsCommand";
|
|
34
48
|
export * from "./ListFlowOperationResultsCommand";
|
|
35
49
|
export * from "./ListFlowOperationsCommand";
|
|
50
|
+
export * from "./ListProxiesCommand";
|
|
51
|
+
export * from "./ListProxyConfigurationsCommand";
|
|
52
|
+
export * from "./ListProxyRuleGroupsCommand";
|
|
36
53
|
export * from "./ListRuleGroupsCommand";
|
|
37
54
|
export * from "./ListTLSInspectionConfigurationsCommand";
|
|
38
55
|
export * from "./ListTagsForResourceCommand";
|
|
@@ -52,6 +69,11 @@ export * from "./UpdateFirewallEncryptionConfigurationCommand";
|
|
|
52
69
|
export * from "./UpdateFirewallPolicyChangeProtectionCommand";
|
|
53
70
|
export * from "./UpdateFirewallPolicyCommand";
|
|
54
71
|
export * from "./UpdateLoggingConfigurationCommand";
|
|
72
|
+
export * from "./UpdateProxyCommand";
|
|
73
|
+
export * from "./UpdateProxyConfigurationCommand";
|
|
74
|
+
export * from "./UpdateProxyRuleCommand";
|
|
75
|
+
export * from "./UpdateProxyRuleGroupPrioritiesCommand";
|
|
76
|
+
export * from "./UpdateProxyRulePrioritiesCommand";
|
|
55
77
|
export * from "./UpdateRuleGroupCommand";
|
|
56
78
|
export * from "./UpdateSubnetChangeProtectionCommand";
|
|
57
79
|
export * from "./UpdateTLSInspectionConfigurationCommand";
|
|
@@ -39,6 +39,13 @@ export declare const AttachmentStatus: {
|
|
|
39
39
|
};
|
|
40
40
|
export type AttachmentStatus =
|
|
41
41
|
(typeof AttachmentStatus)[keyof typeof AttachmentStatus];
|
|
42
|
+
export declare const ProxyRulePhaseAction: {
|
|
43
|
+
readonly ALERT: "ALERT";
|
|
44
|
+
readonly ALLOW: "ALLOW";
|
|
45
|
+
readonly DENY: "DENY";
|
|
46
|
+
};
|
|
47
|
+
export type ProxyRulePhaseAction =
|
|
48
|
+
(typeof ProxyRulePhaseAction)[keyof typeof ProxyRulePhaseAction];
|
|
42
49
|
export declare const RevocationCheckAction: {
|
|
43
50
|
readonly DROP: "DROP";
|
|
44
51
|
readonly PASS: "PASS";
|
|
@@ -99,6 +106,34 @@ export declare const ResourceStatus: {
|
|
|
99
106
|
};
|
|
100
107
|
export type ResourceStatus =
|
|
101
108
|
(typeof ResourceStatus)[keyof typeof ResourceStatus];
|
|
109
|
+
export declare const ListenerPropertyType: {
|
|
110
|
+
readonly HTTP: "HTTP";
|
|
111
|
+
readonly HTTPS: "HTTPS";
|
|
112
|
+
};
|
|
113
|
+
export type ListenerPropertyType =
|
|
114
|
+
(typeof ListenerPropertyType)[keyof typeof ListenerPropertyType];
|
|
115
|
+
export declare const TlsInterceptMode: {
|
|
116
|
+
readonly DISABLED: "DISABLED";
|
|
117
|
+
readonly ENABLED: "ENABLED";
|
|
118
|
+
};
|
|
119
|
+
export type TlsInterceptMode =
|
|
120
|
+
(typeof TlsInterceptMode)[keyof typeof TlsInterceptMode];
|
|
121
|
+
export declare const ProxyModifyState: {
|
|
122
|
+
readonly COMPLETED: "COMPLETED";
|
|
123
|
+
readonly FAILED: "FAILED";
|
|
124
|
+
readonly MODIFYING: "MODIFYING";
|
|
125
|
+
};
|
|
126
|
+
export type ProxyModifyState =
|
|
127
|
+
(typeof ProxyModifyState)[keyof typeof ProxyModifyState];
|
|
128
|
+
export declare const ProxyState: {
|
|
129
|
+
readonly ATTACHED: "ATTACHED";
|
|
130
|
+
readonly ATTACHING: "ATTACHING";
|
|
131
|
+
readonly ATTACH_FAILED: "ATTACH_FAILED";
|
|
132
|
+
readonly DETACHED: "DETACHED";
|
|
133
|
+
readonly DETACHING: "DETACHING";
|
|
134
|
+
readonly DETACH_FAILED: "DETACH_FAILED";
|
|
135
|
+
};
|
|
136
|
+
export type ProxyState = (typeof ProxyState)[keyof typeof ProxyState];
|
|
102
137
|
export declare const GeneratedRulesType: {
|
|
103
138
|
readonly ALERTLIST: "ALERTLIST";
|
|
104
139
|
readonly ALLOWLIST: "ALLOWLIST";
|
|
@@ -221,3 +256,10 @@ export declare const SubscriptionStatus: {
|
|
|
221
256
|
};
|
|
222
257
|
export type SubscriptionStatus =
|
|
223
258
|
(typeof SubscriptionStatus)[keyof typeof SubscriptionStatus];
|
|
259
|
+
export declare const RuleGroupRequestPhase: {
|
|
260
|
+
readonly POST_RES: "POST_RES";
|
|
261
|
+
readonly PRE_DNS: "PRE_DNS";
|
|
262
|
+
readonly PRE_REQ: "PRE_REQ";
|
|
263
|
+
};
|
|
264
|
+
export type RuleGroupRequestPhase =
|
|
265
|
+
(typeof RuleGroupRequestPhase)[keyof typeof RuleGroupRequestPhase];
|
|
@@ -9,14 +9,19 @@ import {
|
|
|
9
9
|
GeneratedRulesType,
|
|
10
10
|
IdentifiedType,
|
|
11
11
|
IPAddressType,
|
|
12
|
+
ListenerPropertyType,
|
|
12
13
|
LogDestinationType,
|
|
13
14
|
LogType,
|
|
14
15
|
OverrideAction,
|
|
15
16
|
PerObjectSyncStatus,
|
|
17
|
+
ProxyModifyState,
|
|
18
|
+
ProxyRulePhaseAction,
|
|
19
|
+
ProxyState,
|
|
16
20
|
ResourceManagedStatus,
|
|
17
21
|
ResourceManagedType,
|
|
18
22
|
ResourceStatus,
|
|
19
23
|
RevocationCheckAction,
|
|
24
|
+
RuleGroupRequestPhase,
|
|
20
25
|
RuleGroupType,
|
|
21
26
|
RuleOrder,
|
|
22
27
|
StatefulAction,
|
|
@@ -27,6 +32,7 @@ import {
|
|
|
27
32
|
SummaryRuleOption,
|
|
28
33
|
TargetType,
|
|
29
34
|
TCPFlag,
|
|
35
|
+
TlsInterceptMode,
|
|
30
36
|
TransitGatewayAttachmentStatus,
|
|
31
37
|
} from "./enums";
|
|
32
38
|
export interface AcceptNetworkFirewallTransitGatewayAttachmentRequest {
|
|
@@ -125,6 +131,47 @@ export interface Attachment {
|
|
|
125
131
|
export interface AZSyncState {
|
|
126
132
|
Attachment?: Attachment | undefined;
|
|
127
133
|
}
|
|
134
|
+
export interface ProxyRuleGroupAttachment {
|
|
135
|
+
ProxyRuleGroupName?: string | undefined;
|
|
136
|
+
InsertPosition?: number | undefined;
|
|
137
|
+
}
|
|
138
|
+
export interface AttachRuleGroupsToProxyConfigurationRequest {
|
|
139
|
+
ProxyConfigurationName?: string | undefined;
|
|
140
|
+
ProxyConfigurationArn?: string | undefined;
|
|
141
|
+
RuleGroups: ProxyRuleGroupAttachment[] | undefined;
|
|
142
|
+
UpdateToken: string | undefined;
|
|
143
|
+
}
|
|
144
|
+
export interface ProxyConfigDefaultRulePhaseActionsRequest {
|
|
145
|
+
PreDNS?: ProxyRulePhaseAction | undefined;
|
|
146
|
+
PreREQUEST?: ProxyRulePhaseAction | undefined;
|
|
147
|
+
PostRESPONSE?: ProxyRulePhaseAction | undefined;
|
|
148
|
+
}
|
|
149
|
+
export interface ProxyConfigRuleGroup {
|
|
150
|
+
ProxyRuleGroupName?: string | undefined;
|
|
151
|
+
ProxyRuleGroupArn?: string | undefined;
|
|
152
|
+
Type?: string | undefined;
|
|
153
|
+
Priority?: number | undefined;
|
|
154
|
+
}
|
|
155
|
+
export interface Tag {
|
|
156
|
+
Key: string | undefined;
|
|
157
|
+
Value: string | undefined;
|
|
158
|
+
}
|
|
159
|
+
export interface ProxyConfiguration {
|
|
160
|
+
ProxyConfigurationName?: string | undefined;
|
|
161
|
+
ProxyConfigurationArn?: string | undefined;
|
|
162
|
+
Description?: string | undefined;
|
|
163
|
+
CreateTime?: Date | undefined;
|
|
164
|
+
DeleteTime?: Date | undefined;
|
|
165
|
+
RuleGroups?: ProxyConfigRuleGroup[] | undefined;
|
|
166
|
+
DefaultRulePhaseActions?:
|
|
167
|
+
| ProxyConfigDefaultRulePhaseActionsRequest
|
|
168
|
+
| undefined;
|
|
169
|
+
Tags?: Tag[] | undefined;
|
|
170
|
+
}
|
|
171
|
+
export interface AttachRuleGroupsToProxyConfigurationResponse {
|
|
172
|
+
ProxyConfiguration?: ProxyConfiguration | undefined;
|
|
173
|
+
UpdateToken?: string | undefined;
|
|
174
|
+
}
|
|
128
175
|
export interface AvailabilityZoneMetadata {
|
|
129
176
|
IPAddressType?: IPAddressType | undefined;
|
|
130
177
|
}
|
|
@@ -153,10 +200,6 @@ export interface EncryptionConfiguration {
|
|
|
153
200
|
KeyId?: string | undefined;
|
|
154
201
|
Type: EncryptionType | undefined;
|
|
155
202
|
}
|
|
156
|
-
export interface Tag {
|
|
157
|
-
Key: string | undefined;
|
|
158
|
-
Value: string | undefined;
|
|
159
|
-
}
|
|
160
203
|
export interface CreateFirewallRequest {
|
|
161
204
|
FirewallName: string | undefined;
|
|
162
205
|
FirewallPolicyArn: string | undefined;
|
|
@@ -287,6 +330,122 @@ export interface CreateFirewallPolicyResponse {
|
|
|
287
330
|
UpdateToken: string | undefined;
|
|
288
331
|
FirewallPolicyResponse: FirewallPolicyResponse | undefined;
|
|
289
332
|
}
|
|
333
|
+
export interface ListenerPropertyRequest {
|
|
334
|
+
Port: number | undefined;
|
|
335
|
+
Type: ListenerPropertyType | undefined;
|
|
336
|
+
}
|
|
337
|
+
export interface TlsInterceptPropertiesRequest {
|
|
338
|
+
PcaArn?: string | undefined;
|
|
339
|
+
TlsInterceptMode?: TlsInterceptMode | undefined;
|
|
340
|
+
}
|
|
341
|
+
export interface CreateProxyRequest {
|
|
342
|
+
ProxyName: string | undefined;
|
|
343
|
+
NatGatewayId: string | undefined;
|
|
344
|
+
ProxyConfigurationName?: string | undefined;
|
|
345
|
+
ProxyConfigurationArn?: string | undefined;
|
|
346
|
+
ListenerProperties?: ListenerPropertyRequest[] | undefined;
|
|
347
|
+
TlsInterceptProperties: TlsInterceptPropertiesRequest | undefined;
|
|
348
|
+
Tags?: Tag[] | undefined;
|
|
349
|
+
}
|
|
350
|
+
export interface ListenerProperty {
|
|
351
|
+
Port?: number | undefined;
|
|
352
|
+
Type?: ListenerPropertyType | undefined;
|
|
353
|
+
}
|
|
354
|
+
export interface TlsInterceptProperties {
|
|
355
|
+
PcaArn?: string | undefined;
|
|
356
|
+
TlsInterceptMode?: TlsInterceptMode | undefined;
|
|
357
|
+
}
|
|
358
|
+
export interface Proxy {
|
|
359
|
+
CreateTime?: Date | undefined;
|
|
360
|
+
DeleteTime?: Date | undefined;
|
|
361
|
+
UpdateTime?: Date | undefined;
|
|
362
|
+
FailureCode?: string | undefined;
|
|
363
|
+
FailureMessage?: string | undefined;
|
|
364
|
+
ProxyState?: ProxyState | undefined;
|
|
365
|
+
ProxyModifyState?: ProxyModifyState | undefined;
|
|
366
|
+
NatGatewayId?: string | undefined;
|
|
367
|
+
ProxyConfigurationName?: string | undefined;
|
|
368
|
+
ProxyConfigurationArn?: string | undefined;
|
|
369
|
+
ProxyName?: string | undefined;
|
|
370
|
+
ProxyArn?: string | undefined;
|
|
371
|
+
ListenerProperties?: ListenerProperty[] | undefined;
|
|
372
|
+
TlsInterceptProperties?: TlsInterceptProperties | undefined;
|
|
373
|
+
Tags?: Tag[] | undefined;
|
|
374
|
+
}
|
|
375
|
+
export interface CreateProxyResponse {
|
|
376
|
+
Proxy?: Proxy | undefined;
|
|
377
|
+
UpdateToken?: string | undefined;
|
|
378
|
+
}
|
|
379
|
+
export interface CreateProxyConfigurationRequest {
|
|
380
|
+
ProxyConfigurationName: string | undefined;
|
|
381
|
+
Description?: string | undefined;
|
|
382
|
+
RuleGroupNames?: string[] | undefined;
|
|
383
|
+
RuleGroupArns?: string[] | undefined;
|
|
384
|
+
DefaultRulePhaseActions:
|
|
385
|
+
| ProxyConfigDefaultRulePhaseActionsRequest
|
|
386
|
+
| undefined;
|
|
387
|
+
Tags?: Tag[] | undefined;
|
|
388
|
+
}
|
|
389
|
+
export interface CreateProxyConfigurationResponse {
|
|
390
|
+
ProxyConfiguration?: ProxyConfiguration | undefined;
|
|
391
|
+
UpdateToken?: string | undefined;
|
|
392
|
+
}
|
|
393
|
+
export interface ProxyRuleCondition {
|
|
394
|
+
ConditionOperator?: string | undefined;
|
|
395
|
+
ConditionKey?: string | undefined;
|
|
396
|
+
ConditionValues?: string[] | undefined;
|
|
397
|
+
}
|
|
398
|
+
export interface CreateProxyRule {
|
|
399
|
+
ProxyRuleName?: string | undefined;
|
|
400
|
+
Description?: string | undefined;
|
|
401
|
+
Action?: ProxyRulePhaseAction | undefined;
|
|
402
|
+
Conditions?: ProxyRuleCondition[] | undefined;
|
|
403
|
+
InsertPosition?: number | undefined;
|
|
404
|
+
}
|
|
405
|
+
export interface ProxyRule {
|
|
406
|
+
ProxyRuleName?: string | undefined;
|
|
407
|
+
Description?: string | undefined;
|
|
408
|
+
Action?: ProxyRulePhaseAction | undefined;
|
|
409
|
+
Conditions?: ProxyRuleCondition[] | undefined;
|
|
410
|
+
}
|
|
411
|
+
export interface ProxyRulesByRequestPhase {
|
|
412
|
+
PreDNS?: ProxyRule[] | undefined;
|
|
413
|
+
PreREQUEST?: ProxyRule[] | undefined;
|
|
414
|
+
PostRESPONSE?: ProxyRule[] | undefined;
|
|
415
|
+
}
|
|
416
|
+
export interface CreateProxyRuleGroupRequest {
|
|
417
|
+
ProxyRuleGroupName: string | undefined;
|
|
418
|
+
Description?: string | undefined;
|
|
419
|
+
Rules?: ProxyRulesByRequestPhase | undefined;
|
|
420
|
+
Tags?: Tag[] | undefined;
|
|
421
|
+
}
|
|
422
|
+
export interface ProxyRuleGroup {
|
|
423
|
+
ProxyRuleGroupName?: string | undefined;
|
|
424
|
+
ProxyRuleGroupArn?: string | undefined;
|
|
425
|
+
CreateTime?: Date | undefined;
|
|
426
|
+
DeleteTime?: Date | undefined;
|
|
427
|
+
Rules?: ProxyRulesByRequestPhase | undefined;
|
|
428
|
+
Description?: string | undefined;
|
|
429
|
+
Tags?: Tag[] | undefined;
|
|
430
|
+
}
|
|
431
|
+
export interface CreateProxyRuleGroupResponse {
|
|
432
|
+
ProxyRuleGroup?: ProxyRuleGroup | undefined;
|
|
433
|
+
UpdateToken?: string | undefined;
|
|
434
|
+
}
|
|
435
|
+
export interface CreateProxyRulesByRequestPhase {
|
|
436
|
+
PreDNS?: CreateProxyRule[] | undefined;
|
|
437
|
+
PreREQUEST?: CreateProxyRule[] | undefined;
|
|
438
|
+
PostRESPONSE?: CreateProxyRule[] | undefined;
|
|
439
|
+
}
|
|
440
|
+
export interface CreateProxyRulesRequest {
|
|
441
|
+
ProxyRuleGroupArn?: string | undefined;
|
|
442
|
+
ProxyRuleGroupName?: string | undefined;
|
|
443
|
+
Rules: CreateProxyRulesByRequestPhase | undefined;
|
|
444
|
+
}
|
|
445
|
+
export interface CreateProxyRulesResponse {
|
|
446
|
+
ProxyRuleGroup?: ProxyRuleGroup | undefined;
|
|
447
|
+
UpdateToken?: string | undefined;
|
|
448
|
+
}
|
|
290
449
|
export interface IPSetReference {
|
|
291
450
|
ReferenceArn?: string | undefined;
|
|
292
451
|
}
|
|
@@ -503,6 +662,40 @@ export interface DeleteNetworkFirewallTransitGatewayAttachmentResponse {
|
|
|
503
662
|
TransitGatewayAttachmentId: string | undefined;
|
|
504
663
|
TransitGatewayAttachmentStatus: TransitGatewayAttachmentStatus | undefined;
|
|
505
664
|
}
|
|
665
|
+
export interface DeleteProxyRequest {
|
|
666
|
+
NatGatewayId: string | undefined;
|
|
667
|
+
ProxyName?: string | undefined;
|
|
668
|
+
ProxyArn?: string | undefined;
|
|
669
|
+
}
|
|
670
|
+
export interface DeleteProxyResponse {
|
|
671
|
+
NatGatewayId?: string | undefined;
|
|
672
|
+
ProxyName?: string | undefined;
|
|
673
|
+
ProxyArn?: string | undefined;
|
|
674
|
+
}
|
|
675
|
+
export interface DeleteProxyConfigurationRequest {
|
|
676
|
+
ProxyConfigurationName?: string | undefined;
|
|
677
|
+
ProxyConfigurationArn?: string | undefined;
|
|
678
|
+
}
|
|
679
|
+
export interface DeleteProxyConfigurationResponse {
|
|
680
|
+
ProxyConfigurationName?: string | undefined;
|
|
681
|
+
ProxyConfigurationArn?: string | undefined;
|
|
682
|
+
}
|
|
683
|
+
export interface DeleteProxyRuleGroupRequest {
|
|
684
|
+
ProxyRuleGroupName?: string | undefined;
|
|
685
|
+
ProxyRuleGroupArn?: string | undefined;
|
|
686
|
+
}
|
|
687
|
+
export interface DeleteProxyRuleGroupResponse {
|
|
688
|
+
ProxyRuleGroupName?: string | undefined;
|
|
689
|
+
ProxyRuleGroupArn?: string | undefined;
|
|
690
|
+
}
|
|
691
|
+
export interface DeleteProxyRulesRequest {
|
|
692
|
+
ProxyRuleGroupArn?: string | undefined;
|
|
693
|
+
ProxyRuleGroupName?: string | undefined;
|
|
694
|
+
Rules: string[] | undefined;
|
|
695
|
+
}
|
|
696
|
+
export interface DeleteProxyRulesResponse {
|
|
697
|
+
ProxyRuleGroup?: ProxyRuleGroup | undefined;
|
|
698
|
+
}
|
|
506
699
|
export interface DeleteResourcePolicyRequest {
|
|
507
700
|
ResourceArn: string | undefined;
|
|
508
701
|
}
|
|
@@ -609,6 +802,58 @@ export interface DescribeLoggingConfigurationResponse {
|
|
|
609
802
|
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
610
803
|
EnableMonitoringDashboard?: boolean | undefined;
|
|
611
804
|
}
|
|
805
|
+
export interface DescribeProxyRequest {
|
|
806
|
+
ProxyName?: string | undefined;
|
|
807
|
+
ProxyArn?: string | undefined;
|
|
808
|
+
}
|
|
809
|
+
export interface DescribeProxyResource {
|
|
810
|
+
ProxyName?: string | undefined;
|
|
811
|
+
ProxyArn?: string | undefined;
|
|
812
|
+
ProxyConfigurationName?: string | undefined;
|
|
813
|
+
ProxyConfigurationArn?: string | undefined;
|
|
814
|
+
NatGatewayId?: string | undefined;
|
|
815
|
+
ProxyState?: ProxyState | undefined;
|
|
816
|
+
ProxyModifyState?: ProxyModifyState | undefined;
|
|
817
|
+
ListenerProperties?: ListenerProperty[] | undefined;
|
|
818
|
+
TlsInterceptProperties?: TlsInterceptProperties | undefined;
|
|
819
|
+
VpcEndpointServiceName?: string | undefined;
|
|
820
|
+
PrivateDNSName?: string | undefined;
|
|
821
|
+
CreateTime?: Date | undefined;
|
|
822
|
+
DeleteTime?: Date | undefined;
|
|
823
|
+
UpdateTime?: Date | undefined;
|
|
824
|
+
FailureCode?: string | undefined;
|
|
825
|
+
FailureMessage?: string | undefined;
|
|
826
|
+
Tags?: Tag[] | undefined;
|
|
827
|
+
}
|
|
828
|
+
export interface DescribeProxyResponse {
|
|
829
|
+
Proxy?: DescribeProxyResource | undefined;
|
|
830
|
+
UpdateToken?: string | undefined;
|
|
831
|
+
}
|
|
832
|
+
export interface DescribeProxyConfigurationRequest {
|
|
833
|
+
ProxyConfigurationName?: string | undefined;
|
|
834
|
+
ProxyConfigurationArn?: string | undefined;
|
|
835
|
+
}
|
|
836
|
+
export interface DescribeProxyConfigurationResponse {
|
|
837
|
+
ProxyConfiguration?: ProxyConfiguration | undefined;
|
|
838
|
+
UpdateToken?: string | undefined;
|
|
839
|
+
}
|
|
840
|
+
export interface DescribeProxyRuleRequest {
|
|
841
|
+
ProxyRuleName: string | undefined;
|
|
842
|
+
ProxyRuleGroupName?: string | undefined;
|
|
843
|
+
ProxyRuleGroupArn?: string | undefined;
|
|
844
|
+
}
|
|
845
|
+
export interface DescribeProxyRuleResponse {
|
|
846
|
+
ProxyRule?: ProxyRule | undefined;
|
|
847
|
+
UpdateToken?: string | undefined;
|
|
848
|
+
}
|
|
849
|
+
export interface DescribeProxyRuleGroupRequest {
|
|
850
|
+
ProxyRuleGroupName?: string | undefined;
|
|
851
|
+
ProxyRuleGroupArn?: string | undefined;
|
|
852
|
+
}
|
|
853
|
+
export interface DescribeProxyRuleGroupResponse {
|
|
854
|
+
ProxyRuleGroup?: ProxyRuleGroup | undefined;
|
|
855
|
+
UpdateToken?: string | undefined;
|
|
856
|
+
}
|
|
612
857
|
export interface DescribeResourcePolicyRequest {
|
|
613
858
|
ResourceArn: string | undefined;
|
|
614
859
|
}
|
|
@@ -679,6 +924,17 @@ export interface DescribeVpcEndpointAssociationResponse {
|
|
|
679
924
|
VpcEndpointAssociation?: VpcEndpointAssociation | undefined;
|
|
680
925
|
VpcEndpointAssociationStatus?: VpcEndpointAssociationStatus | undefined;
|
|
681
926
|
}
|
|
927
|
+
export interface DetachRuleGroupsFromProxyConfigurationRequest {
|
|
928
|
+
ProxyConfigurationName?: string | undefined;
|
|
929
|
+
ProxyConfigurationArn?: string | undefined;
|
|
930
|
+
RuleGroupNames?: string[] | undefined;
|
|
931
|
+
RuleGroupArns?: string[] | undefined;
|
|
932
|
+
UpdateToken: string | undefined;
|
|
933
|
+
}
|
|
934
|
+
export interface DetachRuleGroupsFromProxyConfigurationResponse {
|
|
935
|
+
ProxyConfiguration?: ProxyConfiguration | undefined;
|
|
936
|
+
UpdateToken?: string | undefined;
|
|
937
|
+
}
|
|
682
938
|
export interface DisassociateAvailabilityZonesRequest {
|
|
683
939
|
UpdateToken?: string | undefined;
|
|
684
940
|
FirewallArn?: string | undefined;
|
|
@@ -805,6 +1061,42 @@ export interface ListFlowOperationsResponse {
|
|
|
805
1061
|
FlowOperations?: FlowOperationMetadata[] | undefined;
|
|
806
1062
|
NextToken?: string | undefined;
|
|
807
1063
|
}
|
|
1064
|
+
export interface ListProxiesRequest {
|
|
1065
|
+
NextToken?: string | undefined;
|
|
1066
|
+
MaxResults?: number | undefined;
|
|
1067
|
+
}
|
|
1068
|
+
export interface ProxyMetadata {
|
|
1069
|
+
Name?: string | undefined;
|
|
1070
|
+
Arn?: string | undefined;
|
|
1071
|
+
}
|
|
1072
|
+
export interface ListProxiesResponse {
|
|
1073
|
+
Proxies?: ProxyMetadata[] | undefined;
|
|
1074
|
+
NextToken?: string | undefined;
|
|
1075
|
+
}
|
|
1076
|
+
export interface ListProxyConfigurationsRequest {
|
|
1077
|
+
NextToken?: string | undefined;
|
|
1078
|
+
MaxResults?: number | undefined;
|
|
1079
|
+
}
|
|
1080
|
+
export interface ProxyConfigurationMetadata {
|
|
1081
|
+
Name?: string | undefined;
|
|
1082
|
+
Arn?: string | undefined;
|
|
1083
|
+
}
|
|
1084
|
+
export interface ListProxyConfigurationsResponse {
|
|
1085
|
+
ProxyConfigurations?: ProxyConfigurationMetadata[] | undefined;
|
|
1086
|
+
NextToken?: string | undefined;
|
|
1087
|
+
}
|
|
1088
|
+
export interface ListProxyRuleGroupsRequest {
|
|
1089
|
+
NextToken?: string | undefined;
|
|
1090
|
+
MaxResults?: number | undefined;
|
|
1091
|
+
}
|
|
1092
|
+
export interface ProxyRuleGroupMetadata {
|
|
1093
|
+
Name?: string | undefined;
|
|
1094
|
+
Arn?: string | undefined;
|
|
1095
|
+
}
|
|
1096
|
+
export interface ListProxyRuleGroupsResponse {
|
|
1097
|
+
ProxyRuleGroups?: ProxyRuleGroupMetadata[] | undefined;
|
|
1098
|
+
NextToken?: string | undefined;
|
|
1099
|
+
}
|
|
808
1100
|
export interface ListRuleGroupsRequest {
|
|
809
1101
|
NextToken?: string | undefined;
|
|
810
1102
|
MaxResults?: number | undefined;
|
|
@@ -1010,6 +1302,82 @@ export interface UpdateLoggingConfigurationResponse {
|
|
|
1010
1302
|
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
1011
1303
|
EnableMonitoringDashboard?: boolean | undefined;
|
|
1012
1304
|
}
|
|
1305
|
+
export interface UpdateProxyRequest {
|
|
1306
|
+
NatGatewayId: string | undefined;
|
|
1307
|
+
ProxyName?: string | undefined;
|
|
1308
|
+
ProxyArn?: string | undefined;
|
|
1309
|
+
ListenerPropertiesToAdd?: ListenerPropertyRequest[] | undefined;
|
|
1310
|
+
ListenerPropertiesToRemove?: ListenerPropertyRequest[] | undefined;
|
|
1311
|
+
TlsInterceptProperties?: TlsInterceptPropertiesRequest | undefined;
|
|
1312
|
+
UpdateToken: string | undefined;
|
|
1313
|
+
}
|
|
1314
|
+
export interface UpdateProxyResponse {
|
|
1315
|
+
Proxy?: Proxy | undefined;
|
|
1316
|
+
UpdateToken?: string | undefined;
|
|
1317
|
+
}
|
|
1318
|
+
export interface UpdateProxyConfigurationRequest {
|
|
1319
|
+
ProxyConfigurationName?: string | undefined;
|
|
1320
|
+
ProxyConfigurationArn?: string | undefined;
|
|
1321
|
+
DefaultRulePhaseActions:
|
|
1322
|
+
| ProxyConfigDefaultRulePhaseActionsRequest
|
|
1323
|
+
| undefined;
|
|
1324
|
+
UpdateToken: string | undefined;
|
|
1325
|
+
}
|
|
1326
|
+
export interface UpdateProxyConfigurationResponse {
|
|
1327
|
+
ProxyConfiguration?: ProxyConfiguration | undefined;
|
|
1328
|
+
UpdateToken?: string | undefined;
|
|
1329
|
+
}
|
|
1330
|
+
export interface UpdateProxyRuleRequest {
|
|
1331
|
+
ProxyRuleGroupName?: string | undefined;
|
|
1332
|
+
ProxyRuleGroupArn?: string | undefined;
|
|
1333
|
+
ProxyRuleName: string | undefined;
|
|
1334
|
+
Description?: string | undefined;
|
|
1335
|
+
Action?: ProxyRulePhaseAction | undefined;
|
|
1336
|
+
AddConditions?: ProxyRuleCondition[] | undefined;
|
|
1337
|
+
RemoveConditions?: ProxyRuleCondition[] | undefined;
|
|
1338
|
+
UpdateToken: string | undefined;
|
|
1339
|
+
}
|
|
1340
|
+
export interface UpdateProxyRuleResponse {
|
|
1341
|
+
ProxyRule?: ProxyRule | undefined;
|
|
1342
|
+
RemovedConditions?: ProxyRuleCondition[] | undefined;
|
|
1343
|
+
UpdateToken?: string | undefined;
|
|
1344
|
+
}
|
|
1345
|
+
export interface ProxyRuleGroupPriority {
|
|
1346
|
+
ProxyRuleGroupName?: string | undefined;
|
|
1347
|
+
NewPosition?: number | undefined;
|
|
1348
|
+
}
|
|
1349
|
+
export interface UpdateProxyRuleGroupPrioritiesRequest {
|
|
1350
|
+
ProxyConfigurationName?: string | undefined;
|
|
1351
|
+
ProxyConfigurationArn?: string | undefined;
|
|
1352
|
+
RuleGroups: ProxyRuleGroupPriority[] | undefined;
|
|
1353
|
+
UpdateToken: string | undefined;
|
|
1354
|
+
}
|
|
1355
|
+
export interface ProxyRuleGroupPriorityResult {
|
|
1356
|
+
ProxyRuleGroupName?: string | undefined;
|
|
1357
|
+
Priority?: number | undefined;
|
|
1358
|
+
}
|
|
1359
|
+
export interface UpdateProxyRuleGroupPrioritiesResponse {
|
|
1360
|
+
ProxyRuleGroups?: ProxyRuleGroupPriorityResult[] | undefined;
|
|
1361
|
+
UpdateToken?: string | undefined;
|
|
1362
|
+
}
|
|
1363
|
+
export interface ProxyRulePriority {
|
|
1364
|
+
ProxyRuleName?: string | undefined;
|
|
1365
|
+
NewPosition?: number | undefined;
|
|
1366
|
+
}
|
|
1367
|
+
export interface UpdateProxyRulePrioritiesRequest {
|
|
1368
|
+
ProxyRuleGroupName?: string | undefined;
|
|
1369
|
+
ProxyRuleGroupArn?: string | undefined;
|
|
1370
|
+
RuleGroupRequestPhase: RuleGroupRequestPhase | undefined;
|
|
1371
|
+
Rules: ProxyRulePriority[] | undefined;
|
|
1372
|
+
UpdateToken: string | undefined;
|
|
1373
|
+
}
|
|
1374
|
+
export interface UpdateProxyRulePrioritiesResponse {
|
|
1375
|
+
ProxyRuleGroupName?: string | undefined;
|
|
1376
|
+
ProxyRuleGroupArn?: string | undefined;
|
|
1377
|
+
RuleGroupRequestPhase?: RuleGroupRequestPhase | undefined;
|
|
1378
|
+
Rules?: ProxyRulePriority[] | undefined;
|
|
1379
|
+
UpdateToken?: string | undefined;
|
|
1380
|
+
}
|
|
1013
1381
|
export interface UpdateRuleGroupRequest {
|
|
1014
1382
|
UpdateToken: string | undefined;
|
|
1015
1383
|
RuleGroupArn?: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListProxiesCommandInput,
|
|
4
|
+
ListProxiesCommandOutput,
|
|
5
|
+
} from "../commands/ListProxiesCommand";
|
|
6
|
+
import { NetworkFirewallPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListProxies: (
|
|
8
|
+
config: NetworkFirewallPaginationConfiguration,
|
|
9
|
+
input: ListProxiesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListProxiesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListProxyConfigurationsCommandInput,
|
|
4
|
+
ListProxyConfigurationsCommandOutput,
|
|
5
|
+
} from "../commands/ListProxyConfigurationsCommand";
|
|
6
|
+
import { NetworkFirewallPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListProxyConfigurations: (
|
|
8
|
+
config: NetworkFirewallPaginationConfiguration,
|
|
9
|
+
input: ListProxyConfigurationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListProxyConfigurationsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListProxyRuleGroupsCommandInput,
|
|
4
|
+
ListProxyRuleGroupsCommandOutput,
|
|
5
|
+
} from "../commands/ListProxyRuleGroupsCommand";
|
|
6
|
+
import { NetworkFirewallPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListProxyRuleGroups: (
|
|
8
|
+
config: NetworkFirewallPaginationConfiguration,
|
|
9
|
+
input: ListProxyRuleGroupsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListProxyRuleGroupsCommandOutput>;
|
|
@@ -5,6 +5,9 @@ export * from "./ListFirewallPoliciesPaginator";
|
|
|
5
5
|
export * from "./ListFirewallsPaginator";
|
|
6
6
|
export * from "./ListFlowOperationResultsPaginator";
|
|
7
7
|
export * from "./ListFlowOperationsPaginator";
|
|
8
|
+
export * from "./ListProxiesPaginator";
|
|
9
|
+
export * from "./ListProxyConfigurationsPaginator";
|
|
10
|
+
export * from "./ListProxyRuleGroupsPaginator";
|
|
8
11
|
export * from "./ListRuleGroupsPaginator";
|
|
9
12
|
export * from "./ListTLSInspectionConfigurationsPaginator";
|
|
10
13
|
export * from "./ListTagsForResourcePaginator";
|