@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.
Files changed (97) hide show
  1. package/README.md +183 -7
  2. package/dist-cjs/index.js +1000 -42
  3. package/dist-es/NetworkFirewall.js +44 -0
  4. package/dist-es/commands/AttachRuleGroupsToProxyConfigurationCommand.js +16 -0
  5. package/dist-es/commands/CreateProxyCommand.js +16 -0
  6. package/dist-es/commands/CreateProxyConfigurationCommand.js +16 -0
  7. package/dist-es/commands/CreateProxyRuleGroupCommand.js +16 -0
  8. package/dist-es/commands/CreateProxyRulesCommand.js +16 -0
  9. package/dist-es/commands/DeleteProxyCommand.js +16 -0
  10. package/dist-es/commands/DeleteProxyConfigurationCommand.js +16 -0
  11. package/dist-es/commands/DeleteProxyRuleGroupCommand.js +16 -0
  12. package/dist-es/commands/DeleteProxyRulesCommand.js +16 -0
  13. package/dist-es/commands/DescribeProxyCommand.js +16 -0
  14. package/dist-es/commands/DescribeProxyConfigurationCommand.js +16 -0
  15. package/dist-es/commands/DescribeProxyRuleCommand.js +16 -0
  16. package/dist-es/commands/DescribeProxyRuleGroupCommand.js +16 -0
  17. package/dist-es/commands/DetachRuleGroupsFromProxyConfigurationCommand.js +16 -0
  18. package/dist-es/commands/ListProxiesCommand.js +16 -0
  19. package/dist-es/commands/ListProxyConfigurationsCommand.js +16 -0
  20. package/dist-es/commands/ListProxyRuleGroupsCommand.js +16 -0
  21. package/dist-es/commands/UpdateProxyCommand.js +16 -0
  22. package/dist-es/commands/UpdateProxyConfigurationCommand.js +16 -0
  23. package/dist-es/commands/UpdateProxyRuleCommand.js +16 -0
  24. package/dist-es/commands/UpdateProxyRuleGroupPrioritiesCommand.js +16 -0
  25. package/dist-es/commands/UpdateProxyRulePrioritiesCommand.js +16 -0
  26. package/dist-es/commands/index.js +22 -0
  27. package/dist-es/models/enums.js +31 -0
  28. package/dist-es/pagination/ListProxiesPaginator.js +4 -0
  29. package/dist-es/pagination/ListProxyConfigurationsPaginator.js +4 -0
  30. package/dist-es/pagination/ListProxyRuleGroupsPaginator.js +4 -0
  31. package/dist-es/pagination/index.js +3 -0
  32. package/dist-es/schemas/schemas_0.js +649 -42
  33. package/dist-types/NetworkFirewall.d.ts +162 -0
  34. package/dist-types/NetworkFirewallClient.d.ts +24 -2
  35. package/dist-types/commands/AttachRuleGroupsToProxyConfigurationCommand.d.ts +136 -0
  36. package/dist-types/commands/CreateProxyCommand.d.ts +159 -0
  37. package/dist-types/commands/CreateProxyConfigurationCommand.d.ts +151 -0
  38. package/dist-types/commands/CreateProxyRuleGroupCommand.d.ts +225 -0
  39. package/dist-types/commands/CreateProxyRulesCommand.d.ts +216 -0
  40. package/dist-types/commands/DeleteProxyCommand.d.ts +108 -0
  41. package/dist-types/commands/DeleteProxyConfigurationCommand.d.ts +102 -0
  42. package/dist-types/commands/DeleteProxyRuleGroupCommand.d.ts +102 -0
  43. package/dist-types/commands/DeleteProxyRulesCommand.d.ts +167 -0
  44. package/dist-types/commands/DescribeProxyCommand.d.ts +133 -0
  45. package/dist-types/commands/DescribeProxyConfigurationCommand.d.ts +127 -0
  46. package/dist-types/commands/DescribeProxyRuleCommand.d.ts +116 -0
  47. package/dist-types/commands/DescribeProxyRuleGroupCommand.d.ts +164 -0
  48. package/dist-types/commands/DetachRuleGroupsFromProxyConfigurationCommand.d.ts +136 -0
  49. package/dist-types/commands/ListProxiesCommand.d.ts +106 -0
  50. package/dist-types/commands/ListProxyConfigurationsCommand.d.ts +109 -0
  51. package/dist-types/commands/ListProxyRuleGroupsCommand.d.ts +109 -0
  52. package/dist-types/commands/UpdateProxyCommand.d.ts +152 -0
  53. package/dist-types/commands/UpdateProxyConfigurationCommand.d.ts +133 -0
  54. package/dist-types/commands/UpdateProxyRuleCommand.d.ts +146 -0
  55. package/dist-types/commands/UpdateProxyRuleGroupPrioritiesCommand.d.ts +114 -0
  56. package/dist-types/commands/UpdateProxyRulePrioritiesCommand.d.ts +118 -0
  57. package/dist-types/commands/index.d.ts +22 -0
  58. package/dist-types/models/enums.d.ts +79 -0
  59. package/dist-types/models/models_0.d.ts +1834 -264
  60. package/dist-types/pagination/ListProxiesPaginator.d.ts +7 -0
  61. package/dist-types/pagination/ListProxyConfigurationsPaginator.d.ts +7 -0
  62. package/dist-types/pagination/ListProxyRuleGroupsPaginator.d.ts +7 -0
  63. package/dist-types/pagination/index.d.ts +3 -0
  64. package/dist-types/schemas/schemas_0.d.ts +104 -0
  65. package/dist-types/ts3.4/NetworkFirewall.d.ts +394 -0
  66. package/dist-types/ts3.4/NetworkFirewallClient.d.ts +132 -0
  67. package/dist-types/ts3.4/commands/AttachRuleGroupsToProxyConfigurationCommand.d.ts +51 -0
  68. package/dist-types/ts3.4/commands/CreateProxyCommand.d.ts +47 -0
  69. package/dist-types/ts3.4/commands/CreateProxyConfigurationCommand.d.ts +51 -0
  70. package/dist-types/ts3.4/commands/CreateProxyRuleGroupCommand.d.ts +51 -0
  71. package/dist-types/ts3.4/commands/CreateProxyRulesCommand.d.ts +50 -0
  72. package/dist-types/ts3.4/commands/DeleteProxyCommand.d.ts +47 -0
  73. package/dist-types/ts3.4/commands/DeleteProxyConfigurationCommand.d.ts +51 -0
  74. package/dist-types/ts3.4/commands/DeleteProxyRuleGroupCommand.d.ts +51 -0
  75. package/dist-types/ts3.4/commands/DeleteProxyRulesCommand.d.ts +50 -0
  76. package/dist-types/ts3.4/commands/DescribeProxyCommand.d.ts +50 -0
  77. package/dist-types/ts3.4/commands/DescribeProxyConfigurationCommand.d.ts +51 -0
  78. package/dist-types/ts3.4/commands/DescribeProxyRuleCommand.d.ts +51 -0
  79. package/dist-types/ts3.4/commands/DescribeProxyRuleGroupCommand.d.ts +51 -0
  80. package/dist-types/ts3.4/commands/DetachRuleGroupsFromProxyConfigurationCommand.d.ts +51 -0
  81. package/dist-types/ts3.4/commands/ListProxiesCommand.d.ts +47 -0
  82. package/dist-types/ts3.4/commands/ListProxyConfigurationsCommand.d.ts +51 -0
  83. package/dist-types/ts3.4/commands/ListProxyRuleGroupsCommand.d.ts +51 -0
  84. package/dist-types/ts3.4/commands/UpdateProxyCommand.d.ts +47 -0
  85. package/dist-types/ts3.4/commands/UpdateProxyConfigurationCommand.d.ts +51 -0
  86. package/dist-types/ts3.4/commands/UpdateProxyRuleCommand.d.ts +50 -0
  87. package/dist-types/ts3.4/commands/UpdateProxyRuleGroupPrioritiesCommand.d.ts +51 -0
  88. package/dist-types/ts3.4/commands/UpdateProxyRulePrioritiesCommand.d.ts +51 -0
  89. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  90. package/dist-types/ts3.4/models/enums.d.ts +42 -0
  91. package/dist-types/ts3.4/models/models_0.d.ts +372 -4
  92. package/dist-types/ts3.4/pagination/ListProxiesPaginator.d.ts +11 -0
  93. package/dist-types/ts3.4/pagination/ListProxyConfigurationsPaginator.d.ts +11 -0
  94. package/dist-types/ts3.4/pagination/ListProxyRuleGroupsPaginator.d.ts +11 -0
  95. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  96. package/dist-types/ts3.4/schemas/schemas_0.d.ts +104 -0
  97. package/package.json +5 -5
@@ -15,6 +15,10 @@ import {
15
15
  AssociateSubnetsCommandInput,
16
16
  AssociateSubnetsCommandOutput,
17
17
  } from "./commands/AssociateSubnetsCommand";
18
+ import {
19
+ AttachRuleGroupsToProxyConfigurationCommandInput,
20
+ AttachRuleGroupsToProxyConfigurationCommandOutput,
21
+ } from "./commands/AttachRuleGroupsToProxyConfigurationCommand";
18
22
  import {
19
23
  CreateFirewallCommandInput,
20
24
  CreateFirewallCommandOutput,
@@ -23,6 +27,22 @@ import {
23
27
  CreateFirewallPolicyCommandInput,
24
28
  CreateFirewallPolicyCommandOutput,
25
29
  } from "./commands/CreateFirewallPolicyCommand";
30
+ import {
31
+ CreateProxyCommandInput,
32
+ CreateProxyCommandOutput,
33
+ } from "./commands/CreateProxyCommand";
34
+ import {
35
+ CreateProxyConfigurationCommandInput,
36
+ CreateProxyConfigurationCommandOutput,
37
+ } from "./commands/CreateProxyConfigurationCommand";
38
+ import {
39
+ CreateProxyRuleGroupCommandInput,
40
+ CreateProxyRuleGroupCommandOutput,
41
+ } from "./commands/CreateProxyRuleGroupCommand";
42
+ import {
43
+ CreateProxyRulesCommandInput,
44
+ CreateProxyRulesCommandOutput,
45
+ } from "./commands/CreateProxyRulesCommand";
26
46
  import {
27
47
  CreateRuleGroupCommandInput,
28
48
  CreateRuleGroupCommandOutput,
@@ -47,6 +67,22 @@ import {
47
67
  DeleteNetworkFirewallTransitGatewayAttachmentCommandInput,
48
68
  DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput,
49
69
  } from "./commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand";
70
+ import {
71
+ DeleteProxyCommandInput,
72
+ DeleteProxyCommandOutput,
73
+ } from "./commands/DeleteProxyCommand";
74
+ import {
75
+ DeleteProxyConfigurationCommandInput,
76
+ DeleteProxyConfigurationCommandOutput,
77
+ } from "./commands/DeleteProxyConfigurationCommand";
78
+ import {
79
+ DeleteProxyRuleGroupCommandInput,
80
+ DeleteProxyRuleGroupCommandOutput,
81
+ } from "./commands/DeleteProxyRuleGroupCommand";
82
+ import {
83
+ DeleteProxyRulesCommandInput,
84
+ DeleteProxyRulesCommandOutput,
85
+ } from "./commands/DeleteProxyRulesCommand";
50
86
  import {
51
87
  DeleteResourcePolicyCommandInput,
52
88
  DeleteResourcePolicyCommandOutput,
@@ -83,6 +119,22 @@ import {
83
119
  DescribeLoggingConfigurationCommandInput,
84
120
  DescribeLoggingConfigurationCommandOutput,
85
121
  } from "./commands/DescribeLoggingConfigurationCommand";
122
+ import {
123
+ DescribeProxyCommandInput,
124
+ DescribeProxyCommandOutput,
125
+ } from "./commands/DescribeProxyCommand";
126
+ import {
127
+ DescribeProxyConfigurationCommandInput,
128
+ DescribeProxyConfigurationCommandOutput,
129
+ } from "./commands/DescribeProxyConfigurationCommand";
130
+ import {
131
+ DescribeProxyRuleCommandInput,
132
+ DescribeProxyRuleCommandOutput,
133
+ } from "./commands/DescribeProxyRuleCommand";
134
+ import {
135
+ DescribeProxyRuleGroupCommandInput,
136
+ DescribeProxyRuleGroupCommandOutput,
137
+ } from "./commands/DescribeProxyRuleGroupCommand";
86
138
  import {
87
139
  DescribeResourcePolicyCommandInput,
88
140
  DescribeResourcePolicyCommandOutput,
@@ -107,6 +159,10 @@ import {
107
159
  DescribeVpcEndpointAssociationCommandInput,
108
160
  DescribeVpcEndpointAssociationCommandOutput,
109
161
  } from "./commands/DescribeVpcEndpointAssociationCommand";
162
+ import {
163
+ DetachRuleGroupsFromProxyConfigurationCommandInput,
164
+ DetachRuleGroupsFromProxyConfigurationCommandOutput,
165
+ } from "./commands/DetachRuleGroupsFromProxyConfigurationCommand";
110
166
  import {
111
167
  DisassociateAvailabilityZonesCommandInput,
112
168
  DisassociateAvailabilityZonesCommandOutput,
@@ -139,6 +195,18 @@ import {
139
195
  ListFlowOperationsCommandInput,
140
196
  ListFlowOperationsCommandOutput,
141
197
  } from "./commands/ListFlowOperationsCommand";
198
+ import {
199
+ ListProxiesCommandInput,
200
+ ListProxiesCommandOutput,
201
+ } from "./commands/ListProxiesCommand";
202
+ import {
203
+ ListProxyConfigurationsCommandInput,
204
+ ListProxyConfigurationsCommandOutput,
205
+ } from "./commands/ListProxyConfigurationsCommand";
206
+ import {
207
+ ListProxyRuleGroupsCommandInput,
208
+ ListProxyRuleGroupsCommandOutput,
209
+ } from "./commands/ListProxyRuleGroupsCommand";
142
210
  import {
143
211
  ListRuleGroupsCommandInput,
144
212
  ListRuleGroupsCommandOutput,
@@ -215,6 +283,26 @@ import {
215
283
  UpdateLoggingConfigurationCommandInput,
216
284
  UpdateLoggingConfigurationCommandOutput,
217
285
  } from "./commands/UpdateLoggingConfigurationCommand";
286
+ import {
287
+ UpdateProxyCommandInput,
288
+ UpdateProxyCommandOutput,
289
+ } from "./commands/UpdateProxyCommand";
290
+ import {
291
+ UpdateProxyConfigurationCommandInput,
292
+ UpdateProxyConfigurationCommandOutput,
293
+ } from "./commands/UpdateProxyConfigurationCommand";
294
+ import {
295
+ UpdateProxyRuleCommandInput,
296
+ UpdateProxyRuleCommandOutput,
297
+ } from "./commands/UpdateProxyRuleCommand";
298
+ import {
299
+ UpdateProxyRuleGroupPrioritiesCommandInput,
300
+ UpdateProxyRuleGroupPrioritiesCommandOutput,
301
+ } from "./commands/UpdateProxyRuleGroupPrioritiesCommand";
302
+ import {
303
+ UpdateProxyRulePrioritiesCommandInput,
304
+ UpdateProxyRulePrioritiesCommandOutput,
305
+ } from "./commands/UpdateProxyRulePrioritiesCommand";
218
306
  import {
219
307
  UpdateRuleGroupCommandInput,
220
308
  UpdateRuleGroupCommandOutput,
@@ -287,6 +375,25 @@ export interface NetworkFirewall {
287
375
  options: __HttpHandlerOptions,
288
376
  cb: (err: any, data?: AssociateSubnetsCommandOutput) => void
289
377
  ): void;
378
+ attachRuleGroupsToProxyConfiguration(
379
+ args: AttachRuleGroupsToProxyConfigurationCommandInput,
380
+ options?: __HttpHandlerOptions
381
+ ): Promise<AttachRuleGroupsToProxyConfigurationCommandOutput>;
382
+ attachRuleGroupsToProxyConfiguration(
383
+ args: AttachRuleGroupsToProxyConfigurationCommandInput,
384
+ cb: (
385
+ err: any,
386
+ data?: AttachRuleGroupsToProxyConfigurationCommandOutput
387
+ ) => void
388
+ ): void;
389
+ attachRuleGroupsToProxyConfiguration(
390
+ args: AttachRuleGroupsToProxyConfigurationCommandInput,
391
+ options: __HttpHandlerOptions,
392
+ cb: (
393
+ err: any,
394
+ data?: AttachRuleGroupsToProxyConfigurationCommandOutput
395
+ ) => void
396
+ ): void;
290
397
  createFirewall(
291
398
  args: CreateFirewallCommandInput,
292
399
  options?: __HttpHandlerOptions
@@ -313,6 +420,58 @@ export interface NetworkFirewall {
313
420
  options: __HttpHandlerOptions,
314
421
  cb: (err: any, data?: CreateFirewallPolicyCommandOutput) => void
315
422
  ): void;
423
+ createProxy(
424
+ args: CreateProxyCommandInput,
425
+ options?: __HttpHandlerOptions
426
+ ): Promise<CreateProxyCommandOutput>;
427
+ createProxy(
428
+ args: CreateProxyCommandInput,
429
+ cb: (err: any, data?: CreateProxyCommandOutput) => void
430
+ ): void;
431
+ createProxy(
432
+ args: CreateProxyCommandInput,
433
+ options: __HttpHandlerOptions,
434
+ cb: (err: any, data?: CreateProxyCommandOutput) => void
435
+ ): void;
436
+ createProxyConfiguration(
437
+ args: CreateProxyConfigurationCommandInput,
438
+ options?: __HttpHandlerOptions
439
+ ): Promise<CreateProxyConfigurationCommandOutput>;
440
+ createProxyConfiguration(
441
+ args: CreateProxyConfigurationCommandInput,
442
+ cb: (err: any, data?: CreateProxyConfigurationCommandOutput) => void
443
+ ): void;
444
+ createProxyConfiguration(
445
+ args: CreateProxyConfigurationCommandInput,
446
+ options: __HttpHandlerOptions,
447
+ cb: (err: any, data?: CreateProxyConfigurationCommandOutput) => void
448
+ ): void;
449
+ createProxyRuleGroup(
450
+ args: CreateProxyRuleGroupCommandInput,
451
+ options?: __HttpHandlerOptions
452
+ ): Promise<CreateProxyRuleGroupCommandOutput>;
453
+ createProxyRuleGroup(
454
+ args: CreateProxyRuleGroupCommandInput,
455
+ cb: (err: any, data?: CreateProxyRuleGroupCommandOutput) => void
456
+ ): void;
457
+ createProxyRuleGroup(
458
+ args: CreateProxyRuleGroupCommandInput,
459
+ options: __HttpHandlerOptions,
460
+ cb: (err: any, data?: CreateProxyRuleGroupCommandOutput) => void
461
+ ): void;
462
+ createProxyRules(
463
+ args: CreateProxyRulesCommandInput,
464
+ options?: __HttpHandlerOptions
465
+ ): Promise<CreateProxyRulesCommandOutput>;
466
+ createProxyRules(
467
+ args: CreateProxyRulesCommandInput,
468
+ cb: (err: any, data?: CreateProxyRulesCommandOutput) => void
469
+ ): void;
470
+ createProxyRules(
471
+ args: CreateProxyRulesCommandInput,
472
+ options: __HttpHandlerOptions,
473
+ cb: (err: any, data?: CreateProxyRulesCommandOutput) => void
474
+ ): void;
316
475
  createRuleGroup(
317
476
  args: CreateRuleGroupCommandInput,
318
477
  options?: __HttpHandlerOptions
@@ -399,6 +558,60 @@ export interface NetworkFirewall {
399
558
  data?: DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput
400
559
  ) => void
401
560
  ): void;
561
+ deleteProxy(
562
+ args: DeleteProxyCommandInput,
563
+ options?: __HttpHandlerOptions
564
+ ): Promise<DeleteProxyCommandOutput>;
565
+ deleteProxy(
566
+ args: DeleteProxyCommandInput,
567
+ cb: (err: any, data?: DeleteProxyCommandOutput) => void
568
+ ): void;
569
+ deleteProxy(
570
+ args: DeleteProxyCommandInput,
571
+ options: __HttpHandlerOptions,
572
+ cb: (err: any, data?: DeleteProxyCommandOutput) => void
573
+ ): void;
574
+ deleteProxyConfiguration(): Promise<DeleteProxyConfigurationCommandOutput>;
575
+ deleteProxyConfiguration(
576
+ args: DeleteProxyConfigurationCommandInput,
577
+ options?: __HttpHandlerOptions
578
+ ): Promise<DeleteProxyConfigurationCommandOutput>;
579
+ deleteProxyConfiguration(
580
+ args: DeleteProxyConfigurationCommandInput,
581
+ cb: (err: any, data?: DeleteProxyConfigurationCommandOutput) => void
582
+ ): void;
583
+ deleteProxyConfiguration(
584
+ args: DeleteProxyConfigurationCommandInput,
585
+ options: __HttpHandlerOptions,
586
+ cb: (err: any, data?: DeleteProxyConfigurationCommandOutput) => void
587
+ ): void;
588
+ deleteProxyRuleGroup(): Promise<DeleteProxyRuleGroupCommandOutput>;
589
+ deleteProxyRuleGroup(
590
+ args: DeleteProxyRuleGroupCommandInput,
591
+ options?: __HttpHandlerOptions
592
+ ): Promise<DeleteProxyRuleGroupCommandOutput>;
593
+ deleteProxyRuleGroup(
594
+ args: DeleteProxyRuleGroupCommandInput,
595
+ cb: (err: any, data?: DeleteProxyRuleGroupCommandOutput) => void
596
+ ): void;
597
+ deleteProxyRuleGroup(
598
+ args: DeleteProxyRuleGroupCommandInput,
599
+ options: __HttpHandlerOptions,
600
+ cb: (err: any, data?: DeleteProxyRuleGroupCommandOutput) => void
601
+ ): void;
602
+ deleteProxyRules(
603
+ args: DeleteProxyRulesCommandInput,
604
+ options?: __HttpHandlerOptions
605
+ ): Promise<DeleteProxyRulesCommandOutput>;
606
+ deleteProxyRules(
607
+ args: DeleteProxyRulesCommandInput,
608
+ cb: (err: any, data?: DeleteProxyRulesCommandOutput) => void
609
+ ): void;
610
+ deleteProxyRules(
611
+ args: DeleteProxyRulesCommandInput,
612
+ options: __HttpHandlerOptions,
613
+ cb: (err: any, data?: DeleteProxyRulesCommandOutput) => void
614
+ ): void;
402
615
  deleteResourcePolicy(
403
616
  args: DeleteResourcePolicyCommandInput,
404
617
  options?: __HttpHandlerOptions
@@ -522,6 +735,61 @@ export interface NetworkFirewall {
522
735
  options: __HttpHandlerOptions,
523
736
  cb: (err: any, data?: DescribeLoggingConfigurationCommandOutput) => void
524
737
  ): void;
738
+ describeProxy(): Promise<DescribeProxyCommandOutput>;
739
+ describeProxy(
740
+ args: DescribeProxyCommandInput,
741
+ options?: __HttpHandlerOptions
742
+ ): Promise<DescribeProxyCommandOutput>;
743
+ describeProxy(
744
+ args: DescribeProxyCommandInput,
745
+ cb: (err: any, data?: DescribeProxyCommandOutput) => void
746
+ ): void;
747
+ describeProxy(
748
+ args: DescribeProxyCommandInput,
749
+ options: __HttpHandlerOptions,
750
+ cb: (err: any, data?: DescribeProxyCommandOutput) => void
751
+ ): void;
752
+ describeProxyConfiguration(): Promise<DescribeProxyConfigurationCommandOutput>;
753
+ describeProxyConfiguration(
754
+ args: DescribeProxyConfigurationCommandInput,
755
+ options?: __HttpHandlerOptions
756
+ ): Promise<DescribeProxyConfigurationCommandOutput>;
757
+ describeProxyConfiguration(
758
+ args: DescribeProxyConfigurationCommandInput,
759
+ cb: (err: any, data?: DescribeProxyConfigurationCommandOutput) => void
760
+ ): void;
761
+ describeProxyConfiguration(
762
+ args: DescribeProxyConfigurationCommandInput,
763
+ options: __HttpHandlerOptions,
764
+ cb: (err: any, data?: DescribeProxyConfigurationCommandOutput) => void
765
+ ): void;
766
+ describeProxyRule(
767
+ args: DescribeProxyRuleCommandInput,
768
+ options?: __HttpHandlerOptions
769
+ ): Promise<DescribeProxyRuleCommandOutput>;
770
+ describeProxyRule(
771
+ args: DescribeProxyRuleCommandInput,
772
+ cb: (err: any, data?: DescribeProxyRuleCommandOutput) => void
773
+ ): void;
774
+ describeProxyRule(
775
+ args: DescribeProxyRuleCommandInput,
776
+ options: __HttpHandlerOptions,
777
+ cb: (err: any, data?: DescribeProxyRuleCommandOutput) => void
778
+ ): void;
779
+ describeProxyRuleGroup(): Promise<DescribeProxyRuleGroupCommandOutput>;
780
+ describeProxyRuleGroup(
781
+ args: DescribeProxyRuleGroupCommandInput,
782
+ options?: __HttpHandlerOptions
783
+ ): Promise<DescribeProxyRuleGroupCommandOutput>;
784
+ describeProxyRuleGroup(
785
+ args: DescribeProxyRuleGroupCommandInput,
786
+ cb: (err: any, data?: DescribeProxyRuleGroupCommandOutput) => void
787
+ ): void;
788
+ describeProxyRuleGroup(
789
+ args: DescribeProxyRuleGroupCommandInput,
790
+ options: __HttpHandlerOptions,
791
+ cb: (err: any, data?: DescribeProxyRuleGroupCommandOutput) => void
792
+ ): void;
525
793
  describeResourcePolicy(
526
794
  args: DescribeResourcePolicyCommandInput,
527
795
  options?: __HttpHandlerOptions
@@ -610,6 +878,25 @@ export interface NetworkFirewall {
610
878
  options: __HttpHandlerOptions,
611
879
  cb: (err: any, data?: DescribeVpcEndpointAssociationCommandOutput) => void
612
880
  ): void;
881
+ detachRuleGroupsFromProxyConfiguration(
882
+ args: DetachRuleGroupsFromProxyConfigurationCommandInput,
883
+ options?: __HttpHandlerOptions
884
+ ): Promise<DetachRuleGroupsFromProxyConfigurationCommandOutput>;
885
+ detachRuleGroupsFromProxyConfiguration(
886
+ args: DetachRuleGroupsFromProxyConfigurationCommandInput,
887
+ cb: (
888
+ err: any,
889
+ data?: DetachRuleGroupsFromProxyConfigurationCommandOutput
890
+ ) => void
891
+ ): void;
892
+ detachRuleGroupsFromProxyConfiguration(
893
+ args: DetachRuleGroupsFromProxyConfigurationCommandInput,
894
+ options: __HttpHandlerOptions,
895
+ cb: (
896
+ err: any,
897
+ data?: DetachRuleGroupsFromProxyConfigurationCommandOutput
898
+ ) => void
899
+ ): void;
613
900
  disassociateAvailabilityZones(
614
901
  args: DisassociateAvailabilityZonesCommandInput,
615
902
  options?: __HttpHandlerOptions
@@ -717,6 +1004,48 @@ export interface NetworkFirewall {
717
1004
  options: __HttpHandlerOptions,
718
1005
  cb: (err: any, data?: ListFlowOperationsCommandOutput) => void
719
1006
  ): void;
1007
+ listProxies(): Promise<ListProxiesCommandOutput>;
1008
+ listProxies(
1009
+ args: ListProxiesCommandInput,
1010
+ options?: __HttpHandlerOptions
1011
+ ): Promise<ListProxiesCommandOutput>;
1012
+ listProxies(
1013
+ args: ListProxiesCommandInput,
1014
+ cb: (err: any, data?: ListProxiesCommandOutput) => void
1015
+ ): void;
1016
+ listProxies(
1017
+ args: ListProxiesCommandInput,
1018
+ options: __HttpHandlerOptions,
1019
+ cb: (err: any, data?: ListProxiesCommandOutput) => void
1020
+ ): void;
1021
+ listProxyConfigurations(): Promise<ListProxyConfigurationsCommandOutput>;
1022
+ listProxyConfigurations(
1023
+ args: ListProxyConfigurationsCommandInput,
1024
+ options?: __HttpHandlerOptions
1025
+ ): Promise<ListProxyConfigurationsCommandOutput>;
1026
+ listProxyConfigurations(
1027
+ args: ListProxyConfigurationsCommandInput,
1028
+ cb: (err: any, data?: ListProxyConfigurationsCommandOutput) => void
1029
+ ): void;
1030
+ listProxyConfigurations(
1031
+ args: ListProxyConfigurationsCommandInput,
1032
+ options: __HttpHandlerOptions,
1033
+ cb: (err: any, data?: ListProxyConfigurationsCommandOutput) => void
1034
+ ): void;
1035
+ listProxyRuleGroups(): Promise<ListProxyRuleGroupsCommandOutput>;
1036
+ listProxyRuleGroups(
1037
+ args: ListProxyRuleGroupsCommandInput,
1038
+ options?: __HttpHandlerOptions
1039
+ ): Promise<ListProxyRuleGroupsCommandOutput>;
1040
+ listProxyRuleGroups(
1041
+ args: ListProxyRuleGroupsCommandInput,
1042
+ cb: (err: any, data?: ListProxyRuleGroupsCommandOutput) => void
1043
+ ): void;
1044
+ listProxyRuleGroups(
1045
+ args: ListProxyRuleGroupsCommandInput,
1046
+ options: __HttpHandlerOptions,
1047
+ cb: (err: any, data?: ListProxyRuleGroupsCommandOutput) => void
1048
+ ): void;
720
1049
  listRuleGroups(): Promise<ListRuleGroupsCommandOutput>;
721
1050
  listRuleGroups(
722
1051
  args: ListRuleGroupsCommandInput,
@@ -995,6 +1324,71 @@ export interface NetworkFirewall {
995
1324
  options: __HttpHandlerOptions,
996
1325
  cb: (err: any, data?: UpdateLoggingConfigurationCommandOutput) => void
997
1326
  ): void;
1327
+ updateProxy(
1328
+ args: UpdateProxyCommandInput,
1329
+ options?: __HttpHandlerOptions
1330
+ ): Promise<UpdateProxyCommandOutput>;
1331
+ updateProxy(
1332
+ args: UpdateProxyCommandInput,
1333
+ cb: (err: any, data?: UpdateProxyCommandOutput) => void
1334
+ ): void;
1335
+ updateProxy(
1336
+ args: UpdateProxyCommandInput,
1337
+ options: __HttpHandlerOptions,
1338
+ cb: (err: any, data?: UpdateProxyCommandOutput) => void
1339
+ ): void;
1340
+ updateProxyConfiguration(
1341
+ args: UpdateProxyConfigurationCommandInput,
1342
+ options?: __HttpHandlerOptions
1343
+ ): Promise<UpdateProxyConfigurationCommandOutput>;
1344
+ updateProxyConfiguration(
1345
+ args: UpdateProxyConfigurationCommandInput,
1346
+ cb: (err: any, data?: UpdateProxyConfigurationCommandOutput) => void
1347
+ ): void;
1348
+ updateProxyConfiguration(
1349
+ args: UpdateProxyConfigurationCommandInput,
1350
+ options: __HttpHandlerOptions,
1351
+ cb: (err: any, data?: UpdateProxyConfigurationCommandOutput) => void
1352
+ ): void;
1353
+ updateProxyRule(
1354
+ args: UpdateProxyRuleCommandInput,
1355
+ options?: __HttpHandlerOptions
1356
+ ): Promise<UpdateProxyRuleCommandOutput>;
1357
+ updateProxyRule(
1358
+ args: UpdateProxyRuleCommandInput,
1359
+ cb: (err: any, data?: UpdateProxyRuleCommandOutput) => void
1360
+ ): void;
1361
+ updateProxyRule(
1362
+ args: UpdateProxyRuleCommandInput,
1363
+ options: __HttpHandlerOptions,
1364
+ cb: (err: any, data?: UpdateProxyRuleCommandOutput) => void
1365
+ ): void;
1366
+ updateProxyRuleGroupPriorities(
1367
+ args: UpdateProxyRuleGroupPrioritiesCommandInput,
1368
+ options?: __HttpHandlerOptions
1369
+ ): Promise<UpdateProxyRuleGroupPrioritiesCommandOutput>;
1370
+ updateProxyRuleGroupPriorities(
1371
+ args: UpdateProxyRuleGroupPrioritiesCommandInput,
1372
+ cb: (err: any, data?: UpdateProxyRuleGroupPrioritiesCommandOutput) => void
1373
+ ): void;
1374
+ updateProxyRuleGroupPriorities(
1375
+ args: UpdateProxyRuleGroupPrioritiesCommandInput,
1376
+ options: __HttpHandlerOptions,
1377
+ cb: (err: any, data?: UpdateProxyRuleGroupPrioritiesCommandOutput) => void
1378
+ ): void;
1379
+ updateProxyRulePriorities(
1380
+ args: UpdateProxyRulePrioritiesCommandInput,
1381
+ options?: __HttpHandlerOptions
1382
+ ): Promise<UpdateProxyRulePrioritiesCommandOutput>;
1383
+ updateProxyRulePriorities(
1384
+ args: UpdateProxyRulePrioritiesCommandInput,
1385
+ cb: (err: any, data?: UpdateProxyRulePrioritiesCommandOutput) => void
1386
+ ): void;
1387
+ updateProxyRulePriorities(
1388
+ args: UpdateProxyRulePrioritiesCommandInput,
1389
+ options: __HttpHandlerOptions,
1390
+ cb: (err: any, data?: UpdateProxyRulePrioritiesCommandOutput) => void
1391
+ ): void;
998
1392
  updateRuleGroup(
999
1393
  args: UpdateRuleGroupCommandInput,
1000
1394
  options?: __HttpHandlerOptions