@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
|
@@ -64,6 +64,10 @@ import {
|
|
|
64
64
|
AssociateSubnetsCommandInput,
|
|
65
65
|
AssociateSubnetsCommandOutput,
|
|
66
66
|
} from "./commands/AssociateSubnetsCommand";
|
|
67
|
+
import {
|
|
68
|
+
AttachRuleGroupsToProxyConfigurationCommandInput,
|
|
69
|
+
AttachRuleGroupsToProxyConfigurationCommandOutput,
|
|
70
|
+
} from "./commands/AttachRuleGroupsToProxyConfigurationCommand";
|
|
67
71
|
import {
|
|
68
72
|
CreateFirewallCommandInput,
|
|
69
73
|
CreateFirewallCommandOutput,
|
|
@@ -72,6 +76,22 @@ import {
|
|
|
72
76
|
CreateFirewallPolicyCommandInput,
|
|
73
77
|
CreateFirewallPolicyCommandOutput,
|
|
74
78
|
} from "./commands/CreateFirewallPolicyCommand";
|
|
79
|
+
import {
|
|
80
|
+
CreateProxyCommandInput,
|
|
81
|
+
CreateProxyCommandOutput,
|
|
82
|
+
} from "./commands/CreateProxyCommand";
|
|
83
|
+
import {
|
|
84
|
+
CreateProxyConfigurationCommandInput,
|
|
85
|
+
CreateProxyConfigurationCommandOutput,
|
|
86
|
+
} from "./commands/CreateProxyConfigurationCommand";
|
|
87
|
+
import {
|
|
88
|
+
CreateProxyRuleGroupCommandInput,
|
|
89
|
+
CreateProxyRuleGroupCommandOutput,
|
|
90
|
+
} from "./commands/CreateProxyRuleGroupCommand";
|
|
91
|
+
import {
|
|
92
|
+
CreateProxyRulesCommandInput,
|
|
93
|
+
CreateProxyRulesCommandOutput,
|
|
94
|
+
} from "./commands/CreateProxyRulesCommand";
|
|
75
95
|
import {
|
|
76
96
|
CreateRuleGroupCommandInput,
|
|
77
97
|
CreateRuleGroupCommandOutput,
|
|
@@ -96,6 +116,22 @@ import {
|
|
|
96
116
|
DeleteNetworkFirewallTransitGatewayAttachmentCommandInput,
|
|
97
117
|
DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput,
|
|
98
118
|
} from "./commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand";
|
|
119
|
+
import {
|
|
120
|
+
DeleteProxyCommandInput,
|
|
121
|
+
DeleteProxyCommandOutput,
|
|
122
|
+
} from "./commands/DeleteProxyCommand";
|
|
123
|
+
import {
|
|
124
|
+
DeleteProxyConfigurationCommandInput,
|
|
125
|
+
DeleteProxyConfigurationCommandOutput,
|
|
126
|
+
} from "./commands/DeleteProxyConfigurationCommand";
|
|
127
|
+
import {
|
|
128
|
+
DeleteProxyRuleGroupCommandInput,
|
|
129
|
+
DeleteProxyRuleGroupCommandOutput,
|
|
130
|
+
} from "./commands/DeleteProxyRuleGroupCommand";
|
|
131
|
+
import {
|
|
132
|
+
DeleteProxyRulesCommandInput,
|
|
133
|
+
DeleteProxyRulesCommandOutput,
|
|
134
|
+
} from "./commands/DeleteProxyRulesCommand";
|
|
99
135
|
import {
|
|
100
136
|
DeleteResourcePolicyCommandInput,
|
|
101
137
|
DeleteResourcePolicyCommandOutput,
|
|
@@ -132,6 +168,22 @@ import {
|
|
|
132
168
|
DescribeLoggingConfigurationCommandInput,
|
|
133
169
|
DescribeLoggingConfigurationCommandOutput,
|
|
134
170
|
} from "./commands/DescribeLoggingConfigurationCommand";
|
|
171
|
+
import {
|
|
172
|
+
DescribeProxyCommandInput,
|
|
173
|
+
DescribeProxyCommandOutput,
|
|
174
|
+
} from "./commands/DescribeProxyCommand";
|
|
175
|
+
import {
|
|
176
|
+
DescribeProxyConfigurationCommandInput,
|
|
177
|
+
DescribeProxyConfigurationCommandOutput,
|
|
178
|
+
} from "./commands/DescribeProxyConfigurationCommand";
|
|
179
|
+
import {
|
|
180
|
+
DescribeProxyRuleCommandInput,
|
|
181
|
+
DescribeProxyRuleCommandOutput,
|
|
182
|
+
} from "./commands/DescribeProxyRuleCommand";
|
|
183
|
+
import {
|
|
184
|
+
DescribeProxyRuleGroupCommandInput,
|
|
185
|
+
DescribeProxyRuleGroupCommandOutput,
|
|
186
|
+
} from "./commands/DescribeProxyRuleGroupCommand";
|
|
135
187
|
import {
|
|
136
188
|
DescribeResourcePolicyCommandInput,
|
|
137
189
|
DescribeResourcePolicyCommandOutput,
|
|
@@ -156,6 +208,10 @@ import {
|
|
|
156
208
|
DescribeVpcEndpointAssociationCommandInput,
|
|
157
209
|
DescribeVpcEndpointAssociationCommandOutput,
|
|
158
210
|
} from "./commands/DescribeVpcEndpointAssociationCommand";
|
|
211
|
+
import {
|
|
212
|
+
DetachRuleGroupsFromProxyConfigurationCommandInput,
|
|
213
|
+
DetachRuleGroupsFromProxyConfigurationCommandOutput,
|
|
214
|
+
} from "./commands/DetachRuleGroupsFromProxyConfigurationCommand";
|
|
159
215
|
import {
|
|
160
216
|
DisassociateAvailabilityZonesCommandInput,
|
|
161
217
|
DisassociateAvailabilityZonesCommandOutput,
|
|
@@ -188,6 +244,18 @@ import {
|
|
|
188
244
|
ListFlowOperationsCommandInput,
|
|
189
245
|
ListFlowOperationsCommandOutput,
|
|
190
246
|
} from "./commands/ListFlowOperationsCommand";
|
|
247
|
+
import {
|
|
248
|
+
ListProxiesCommandInput,
|
|
249
|
+
ListProxiesCommandOutput,
|
|
250
|
+
} from "./commands/ListProxiesCommand";
|
|
251
|
+
import {
|
|
252
|
+
ListProxyConfigurationsCommandInput,
|
|
253
|
+
ListProxyConfigurationsCommandOutput,
|
|
254
|
+
} from "./commands/ListProxyConfigurationsCommand";
|
|
255
|
+
import {
|
|
256
|
+
ListProxyRuleGroupsCommandInput,
|
|
257
|
+
ListProxyRuleGroupsCommandOutput,
|
|
258
|
+
} from "./commands/ListProxyRuleGroupsCommand";
|
|
191
259
|
import {
|
|
192
260
|
ListRuleGroupsCommandInput,
|
|
193
261
|
ListRuleGroupsCommandOutput,
|
|
@@ -264,6 +332,26 @@ import {
|
|
|
264
332
|
UpdateLoggingConfigurationCommandInput,
|
|
265
333
|
UpdateLoggingConfigurationCommandOutput,
|
|
266
334
|
} from "./commands/UpdateLoggingConfigurationCommand";
|
|
335
|
+
import {
|
|
336
|
+
UpdateProxyCommandInput,
|
|
337
|
+
UpdateProxyCommandOutput,
|
|
338
|
+
} from "./commands/UpdateProxyCommand";
|
|
339
|
+
import {
|
|
340
|
+
UpdateProxyConfigurationCommandInput,
|
|
341
|
+
UpdateProxyConfigurationCommandOutput,
|
|
342
|
+
} from "./commands/UpdateProxyConfigurationCommand";
|
|
343
|
+
import {
|
|
344
|
+
UpdateProxyRuleCommandInput,
|
|
345
|
+
UpdateProxyRuleCommandOutput,
|
|
346
|
+
} from "./commands/UpdateProxyRuleCommand";
|
|
347
|
+
import {
|
|
348
|
+
UpdateProxyRuleGroupPrioritiesCommandInput,
|
|
349
|
+
UpdateProxyRuleGroupPrioritiesCommandOutput,
|
|
350
|
+
} from "./commands/UpdateProxyRuleGroupPrioritiesCommand";
|
|
351
|
+
import {
|
|
352
|
+
UpdateProxyRulePrioritiesCommandInput,
|
|
353
|
+
UpdateProxyRulePrioritiesCommandOutput,
|
|
354
|
+
} from "./commands/UpdateProxyRulePrioritiesCommand";
|
|
267
355
|
import {
|
|
268
356
|
UpdateRuleGroupCommandInput,
|
|
269
357
|
UpdateRuleGroupCommandOutput,
|
|
@@ -288,14 +376,23 @@ export type ServiceInputTypes =
|
|
|
288
376
|
| AssociateAvailabilityZonesCommandInput
|
|
289
377
|
| AssociateFirewallPolicyCommandInput
|
|
290
378
|
| AssociateSubnetsCommandInput
|
|
379
|
+
| AttachRuleGroupsToProxyConfigurationCommandInput
|
|
291
380
|
| CreateFirewallCommandInput
|
|
292
381
|
| CreateFirewallPolicyCommandInput
|
|
382
|
+
| CreateProxyCommandInput
|
|
383
|
+
| CreateProxyConfigurationCommandInput
|
|
384
|
+
| CreateProxyRuleGroupCommandInput
|
|
385
|
+
| CreateProxyRulesCommandInput
|
|
293
386
|
| CreateRuleGroupCommandInput
|
|
294
387
|
| CreateTLSInspectionConfigurationCommandInput
|
|
295
388
|
| CreateVpcEndpointAssociationCommandInput
|
|
296
389
|
| DeleteFirewallCommandInput
|
|
297
390
|
| DeleteFirewallPolicyCommandInput
|
|
298
391
|
| DeleteNetworkFirewallTransitGatewayAttachmentCommandInput
|
|
392
|
+
| DeleteProxyCommandInput
|
|
393
|
+
| DeleteProxyConfigurationCommandInput
|
|
394
|
+
| DeleteProxyRuleGroupCommandInput
|
|
395
|
+
| DeleteProxyRulesCommandInput
|
|
299
396
|
| DeleteResourcePolicyCommandInput
|
|
300
397
|
| DeleteRuleGroupCommandInput
|
|
301
398
|
| DeleteTLSInspectionConfigurationCommandInput
|
|
@@ -305,12 +402,17 @@ export type ServiceInputTypes =
|
|
|
305
402
|
| DescribeFirewallPolicyCommandInput
|
|
306
403
|
| DescribeFlowOperationCommandInput
|
|
307
404
|
| DescribeLoggingConfigurationCommandInput
|
|
405
|
+
| DescribeProxyCommandInput
|
|
406
|
+
| DescribeProxyConfigurationCommandInput
|
|
407
|
+
| DescribeProxyRuleCommandInput
|
|
408
|
+
| DescribeProxyRuleGroupCommandInput
|
|
308
409
|
| DescribeResourcePolicyCommandInput
|
|
309
410
|
| DescribeRuleGroupCommandInput
|
|
310
411
|
| DescribeRuleGroupMetadataCommandInput
|
|
311
412
|
| DescribeRuleGroupSummaryCommandInput
|
|
312
413
|
| DescribeTLSInspectionConfigurationCommandInput
|
|
313
414
|
| DescribeVpcEndpointAssociationCommandInput
|
|
415
|
+
| DetachRuleGroupsFromProxyConfigurationCommandInput
|
|
314
416
|
| DisassociateAvailabilityZonesCommandInput
|
|
315
417
|
| DisassociateSubnetsCommandInput
|
|
316
418
|
| GetAnalysisReportResultsCommandInput
|
|
@@ -319,6 +421,9 @@ export type ServiceInputTypes =
|
|
|
319
421
|
| ListFirewallsCommandInput
|
|
320
422
|
| ListFlowOperationResultsCommandInput
|
|
321
423
|
| ListFlowOperationsCommandInput
|
|
424
|
+
| ListProxiesCommandInput
|
|
425
|
+
| ListProxyConfigurationsCommandInput
|
|
426
|
+
| ListProxyRuleGroupsCommandInput
|
|
322
427
|
| ListRuleGroupsCommandInput
|
|
323
428
|
| ListTLSInspectionConfigurationsCommandInput
|
|
324
429
|
| ListTagsForResourceCommandInput
|
|
@@ -338,6 +443,11 @@ export type ServiceInputTypes =
|
|
|
338
443
|
| UpdateFirewallPolicyChangeProtectionCommandInput
|
|
339
444
|
| UpdateFirewallPolicyCommandInput
|
|
340
445
|
| UpdateLoggingConfigurationCommandInput
|
|
446
|
+
| UpdateProxyCommandInput
|
|
447
|
+
| UpdateProxyConfigurationCommandInput
|
|
448
|
+
| UpdateProxyRuleCommandInput
|
|
449
|
+
| UpdateProxyRuleGroupPrioritiesCommandInput
|
|
450
|
+
| UpdateProxyRulePrioritiesCommandInput
|
|
341
451
|
| UpdateRuleGroupCommandInput
|
|
342
452
|
| UpdateSubnetChangeProtectionCommandInput
|
|
343
453
|
| UpdateTLSInspectionConfigurationCommandInput;
|
|
@@ -346,14 +456,23 @@ export type ServiceOutputTypes =
|
|
|
346
456
|
| AssociateAvailabilityZonesCommandOutput
|
|
347
457
|
| AssociateFirewallPolicyCommandOutput
|
|
348
458
|
| AssociateSubnetsCommandOutput
|
|
459
|
+
| AttachRuleGroupsToProxyConfigurationCommandOutput
|
|
349
460
|
| CreateFirewallCommandOutput
|
|
350
461
|
| CreateFirewallPolicyCommandOutput
|
|
462
|
+
| CreateProxyCommandOutput
|
|
463
|
+
| CreateProxyConfigurationCommandOutput
|
|
464
|
+
| CreateProxyRuleGroupCommandOutput
|
|
465
|
+
| CreateProxyRulesCommandOutput
|
|
351
466
|
| CreateRuleGroupCommandOutput
|
|
352
467
|
| CreateTLSInspectionConfigurationCommandOutput
|
|
353
468
|
| CreateVpcEndpointAssociationCommandOutput
|
|
354
469
|
| DeleteFirewallCommandOutput
|
|
355
470
|
| DeleteFirewallPolicyCommandOutput
|
|
356
471
|
| DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput
|
|
472
|
+
| DeleteProxyCommandOutput
|
|
473
|
+
| DeleteProxyConfigurationCommandOutput
|
|
474
|
+
| DeleteProxyRuleGroupCommandOutput
|
|
475
|
+
| DeleteProxyRulesCommandOutput
|
|
357
476
|
| DeleteResourcePolicyCommandOutput
|
|
358
477
|
| DeleteRuleGroupCommandOutput
|
|
359
478
|
| DeleteTLSInspectionConfigurationCommandOutput
|
|
@@ -363,12 +482,17 @@ export type ServiceOutputTypes =
|
|
|
363
482
|
| DescribeFirewallPolicyCommandOutput
|
|
364
483
|
| DescribeFlowOperationCommandOutput
|
|
365
484
|
| DescribeLoggingConfigurationCommandOutput
|
|
485
|
+
| DescribeProxyCommandOutput
|
|
486
|
+
| DescribeProxyConfigurationCommandOutput
|
|
487
|
+
| DescribeProxyRuleCommandOutput
|
|
488
|
+
| DescribeProxyRuleGroupCommandOutput
|
|
366
489
|
| DescribeResourcePolicyCommandOutput
|
|
367
490
|
| DescribeRuleGroupCommandOutput
|
|
368
491
|
| DescribeRuleGroupMetadataCommandOutput
|
|
369
492
|
| DescribeRuleGroupSummaryCommandOutput
|
|
370
493
|
| DescribeTLSInspectionConfigurationCommandOutput
|
|
371
494
|
| DescribeVpcEndpointAssociationCommandOutput
|
|
495
|
+
| DetachRuleGroupsFromProxyConfigurationCommandOutput
|
|
372
496
|
| DisassociateAvailabilityZonesCommandOutput
|
|
373
497
|
| DisassociateSubnetsCommandOutput
|
|
374
498
|
| GetAnalysisReportResultsCommandOutput
|
|
@@ -377,6 +501,9 @@ export type ServiceOutputTypes =
|
|
|
377
501
|
| ListFirewallsCommandOutput
|
|
378
502
|
| ListFlowOperationResultsCommandOutput
|
|
379
503
|
| ListFlowOperationsCommandOutput
|
|
504
|
+
| ListProxiesCommandOutput
|
|
505
|
+
| ListProxyConfigurationsCommandOutput
|
|
506
|
+
| ListProxyRuleGroupsCommandOutput
|
|
380
507
|
| ListRuleGroupsCommandOutput
|
|
381
508
|
| ListTLSInspectionConfigurationsCommandOutput
|
|
382
509
|
| ListTagsForResourceCommandOutput
|
|
@@ -396,6 +523,11 @@ export type ServiceOutputTypes =
|
|
|
396
523
|
| UpdateFirewallPolicyChangeProtectionCommandOutput
|
|
397
524
|
| UpdateFirewallPolicyCommandOutput
|
|
398
525
|
| UpdateLoggingConfigurationCommandOutput
|
|
526
|
+
| UpdateProxyCommandOutput
|
|
527
|
+
| UpdateProxyConfigurationCommandOutput
|
|
528
|
+
| UpdateProxyRuleCommandOutput
|
|
529
|
+
| UpdateProxyRuleGroupPrioritiesCommandOutput
|
|
530
|
+
| UpdateProxyRulePrioritiesCommandOutput
|
|
399
531
|
| UpdateRuleGroupCommandOutput
|
|
400
532
|
| UpdateSubnetChangeProtectionCommandOutput
|
|
401
533
|
| UpdateTLSInspectionConfigurationCommandOutput;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AttachRuleGroupsToProxyConfigurationRequest,
|
|
5
|
+
AttachRuleGroupsToProxyConfigurationResponse,
|
|
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 AttachRuleGroupsToProxyConfigurationCommandInput
|
|
15
|
+
extends AttachRuleGroupsToProxyConfigurationRequest {}
|
|
16
|
+
export interface AttachRuleGroupsToProxyConfigurationCommandOutput
|
|
17
|
+
extends AttachRuleGroupsToProxyConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AttachRuleGroupsToProxyConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AttachRuleGroupsToProxyConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
AttachRuleGroupsToProxyConfigurationCommandInput,
|
|
24
|
+
AttachRuleGroupsToProxyConfigurationCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: AttachRuleGroupsToProxyConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
AttachRuleGroupsToProxyConfigurationCommandInput,
|
|
33
|
+
AttachRuleGroupsToProxyConfigurationCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class AttachRuleGroupsToProxyConfigurationCommand extends AttachRuleGroupsToProxyConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: AttachRuleGroupsToProxyConfigurationRequest;
|
|
44
|
+
output: AttachRuleGroupsToProxyConfigurationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: AttachRuleGroupsToProxyConfigurationCommandInput;
|
|
48
|
+
output: AttachRuleGroupsToProxyConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CreateProxyRequest, CreateProxyResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
NetworkFirewallClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../NetworkFirewallClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface CreateProxyCommandInput extends CreateProxyRequest {}
|
|
12
|
+
export interface CreateProxyCommandOutput
|
|
13
|
+
extends CreateProxyResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const CreateProxyCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: CreateProxyCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
CreateProxyCommandInput,
|
|
20
|
+
CreateProxyCommandOutput,
|
|
21
|
+
NetworkFirewallClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: CreateProxyCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
CreateProxyCommandInput,
|
|
29
|
+
CreateProxyCommandOutput,
|
|
30
|
+
NetworkFirewallClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class CreateProxyCommand extends CreateProxyCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: CreateProxyRequest;
|
|
40
|
+
output: CreateProxyResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: CreateProxyCommandInput;
|
|
44
|
+
output: CreateProxyCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateProxyConfigurationRequest,
|
|
5
|
+
CreateProxyConfigurationResponse,
|
|
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 CreateProxyConfigurationCommandInput
|
|
15
|
+
extends CreateProxyConfigurationRequest {}
|
|
16
|
+
export interface CreateProxyConfigurationCommandOutput
|
|
17
|
+
extends CreateProxyConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateProxyConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateProxyConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateProxyConfigurationCommandInput,
|
|
24
|
+
CreateProxyConfigurationCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateProxyConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateProxyConfigurationCommandInput,
|
|
33
|
+
CreateProxyConfigurationCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateProxyConfigurationCommand extends CreateProxyConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateProxyConfigurationRequest;
|
|
44
|
+
output: CreateProxyConfigurationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateProxyConfigurationCommandInput;
|
|
48
|
+
output: CreateProxyConfigurationCommandOutput;
|
|
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
|
+
CreateProxyRuleGroupRequest,
|
|
5
|
+
CreateProxyRuleGroupResponse,
|
|
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 CreateProxyRuleGroupCommandInput
|
|
15
|
+
extends CreateProxyRuleGroupRequest {}
|
|
16
|
+
export interface CreateProxyRuleGroupCommandOutput
|
|
17
|
+
extends CreateProxyRuleGroupResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateProxyRuleGroupCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateProxyRuleGroupCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateProxyRuleGroupCommandInput,
|
|
24
|
+
CreateProxyRuleGroupCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateProxyRuleGroupCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateProxyRuleGroupCommandInput,
|
|
33
|
+
CreateProxyRuleGroupCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateProxyRuleGroupCommand extends CreateProxyRuleGroupCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateProxyRuleGroupRequest;
|
|
44
|
+
output: CreateProxyRuleGroupResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateProxyRuleGroupCommandInput;
|
|
48
|
+
output: CreateProxyRuleGroupCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateProxyRulesRequest,
|
|
5
|
+
CreateProxyRulesResponse,
|
|
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 CreateProxyRulesCommandInput extends CreateProxyRulesRequest {}
|
|
15
|
+
export interface CreateProxyRulesCommandOutput
|
|
16
|
+
extends CreateProxyRulesResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateProxyRulesCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateProxyRulesCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateProxyRulesCommandInput,
|
|
23
|
+
CreateProxyRulesCommandOutput,
|
|
24
|
+
NetworkFirewallClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: CreateProxyRulesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateProxyRulesCommandInput,
|
|
32
|
+
CreateProxyRulesCommandOutput,
|
|
33
|
+
NetworkFirewallClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateProxyRulesCommand extends CreateProxyRulesCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CreateProxyRulesRequest;
|
|
43
|
+
output: CreateProxyRulesResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CreateProxyRulesCommandInput;
|
|
47
|
+
output: CreateProxyRulesCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteProxyRequest, DeleteProxyResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
NetworkFirewallClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../NetworkFirewallClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteProxyCommandInput extends DeleteProxyRequest {}
|
|
12
|
+
export interface DeleteProxyCommandOutput
|
|
13
|
+
extends DeleteProxyResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const DeleteProxyCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteProxyCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteProxyCommandInput,
|
|
20
|
+
DeleteProxyCommandOutput,
|
|
21
|
+
NetworkFirewallClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: DeleteProxyCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteProxyCommandInput,
|
|
29
|
+
DeleteProxyCommandOutput,
|
|
30
|
+
NetworkFirewallClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteProxyCommand extends DeleteProxyCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteProxyRequest;
|
|
40
|
+
output: DeleteProxyResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteProxyCommandInput;
|
|
44
|
+
output: DeleteProxyCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteProxyConfigurationRequest,
|
|
5
|
+
DeleteProxyConfigurationResponse,
|
|
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 DeleteProxyConfigurationCommandInput
|
|
15
|
+
extends DeleteProxyConfigurationRequest {}
|
|
16
|
+
export interface DeleteProxyConfigurationCommandOutput
|
|
17
|
+
extends DeleteProxyConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteProxyConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteProxyConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteProxyConfigurationCommandInput,
|
|
24
|
+
DeleteProxyConfigurationCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [DeleteProxyConfigurationCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteProxyConfigurationCommandInput,
|
|
33
|
+
DeleteProxyConfigurationCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteProxyConfigurationCommand extends DeleteProxyConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteProxyConfigurationRequest;
|
|
44
|
+
output: DeleteProxyConfigurationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteProxyConfigurationCommandInput;
|
|
48
|
+
output: DeleteProxyConfigurationCommandOutput;
|
|
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
|
+
DeleteProxyRuleGroupRequest,
|
|
5
|
+
DeleteProxyRuleGroupResponse,
|
|
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 DeleteProxyRuleGroupCommandInput
|
|
15
|
+
extends DeleteProxyRuleGroupRequest {}
|
|
16
|
+
export interface DeleteProxyRuleGroupCommandOutput
|
|
17
|
+
extends DeleteProxyRuleGroupResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteProxyRuleGroupCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteProxyRuleGroupCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteProxyRuleGroupCommandInput,
|
|
24
|
+
DeleteProxyRuleGroupCommandOutput,
|
|
25
|
+
NetworkFirewallClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [DeleteProxyRuleGroupCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteProxyRuleGroupCommandInput,
|
|
33
|
+
DeleteProxyRuleGroupCommandOutput,
|
|
34
|
+
NetworkFirewallClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteProxyRuleGroupCommand extends DeleteProxyRuleGroupCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteProxyRuleGroupRequest;
|
|
44
|
+
output: DeleteProxyRuleGroupResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteProxyRuleGroupCommandInput;
|
|
48
|
+
output: DeleteProxyRuleGroupCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|