@@ -67,6 +67,11 @@ import {
67
67
DescribeFirewallPolicyCommandInput ,
68
68
DescribeFirewallPolicyCommandOutput ,
69
69
} from "./commands/DescribeFirewallPolicyCommand" ;
70
+ import {
71
+ DescribeFlowOperationCommand ,
72
+ DescribeFlowOperationCommandInput ,
73
+ DescribeFlowOperationCommandOutput ,
74
+ } from "./commands/DescribeFlowOperationCommand" ;
70
75
import {
71
76
DescribeLoggingConfigurationCommand ,
72
77
DescribeLoggingConfigurationCommandInput ,
@@ -117,6 +122,16 @@ import {
117
122
ListFirewallsCommandInput ,
118
123
ListFirewallsCommandOutput ,
119
124
} from "./commands/ListFirewallsCommand" ;
125
+ import {
126
+ ListFlowOperationResultsCommand ,
127
+ ListFlowOperationResultsCommandInput ,
128
+ ListFlowOperationResultsCommandOutput ,
129
+ } from "./commands/ListFlowOperationResultsCommand" ;
130
+ import {
131
+ ListFlowOperationsCommand ,
132
+ ListFlowOperationsCommandInput ,
133
+ ListFlowOperationsCommandOutput ,
134
+ } from "./commands/ListFlowOperationsCommand" ;
120
135
import {
121
136
ListRuleGroupsCommand ,
122
137
ListRuleGroupsCommandInput ,
@@ -142,6 +157,16 @@ import {
142
157
StartAnalysisReportCommandInput ,
143
158
StartAnalysisReportCommandOutput ,
144
159
} from "./commands/StartAnalysisReportCommand" ;
160
+ import {
161
+ StartFlowCaptureCommand ,
162
+ StartFlowCaptureCommandInput ,
163
+ StartFlowCaptureCommandOutput ,
164
+ } from "./commands/StartFlowCaptureCommand" ;
165
+ import {
166
+ StartFlowFlushCommand ,
167
+ StartFlowFlushCommandInput ,
168
+ StartFlowFlushCommandOutput ,
169
+ } from "./commands/StartFlowFlushCommand" ;
145
170
import { TagResourceCommand , TagResourceCommandInput , TagResourceCommandOutput } from "./commands/TagResourceCommand" ;
146
171
import {
147
172
UntagResourceCommand ,
@@ -214,6 +239,7 @@ const commands = {
214
239
DeleteTLSInspectionConfigurationCommand,
215
240
DescribeFirewallCommand,
216
241
DescribeFirewallPolicyCommand,
242
+ DescribeFlowOperationCommand,
217
243
DescribeLoggingConfigurationCommand,
218
244
DescribeResourcePolicyCommand,
219
245
DescribeRuleGroupCommand,
@@ -224,11 +250,15 @@ const commands = {
224
250
ListAnalysisReportsCommand,
225
251
ListFirewallPoliciesCommand,
226
252
ListFirewallsCommand,
253
+ ListFlowOperationResultsCommand,
254
+ ListFlowOperationsCommand,
227
255
ListRuleGroupsCommand,
228
256
ListTagsForResourceCommand,
229
257
ListTLSInspectionConfigurationsCommand,
230
258
PutResourcePolicyCommand,
231
259
StartAnalysisReportCommand,
260
+ StartFlowCaptureCommand,
261
+ StartFlowFlushCommand,
232
262
TagResourceCommand,
233
263
UntagResourceCommand,
234
264
UpdateFirewallAnalysisSettingsCommand,
@@ -459,6 +489,23 @@ export interface NetworkFirewall {
459
489
cb : ( err : any , data ?: DescribeFirewallPolicyCommandOutput ) => void
460
490
) : void ;
461
491
492
+ /**
493
+ * @see {@link DescribeFlowOperationCommand }
494
+ */
495
+ describeFlowOperation (
496
+ args : DescribeFlowOperationCommandInput ,
497
+ options ?: __HttpHandlerOptions
498
+ ) : Promise < DescribeFlowOperationCommandOutput > ;
499
+ describeFlowOperation (
500
+ args : DescribeFlowOperationCommandInput ,
501
+ cb : ( err : any , data ?: DescribeFlowOperationCommandOutput ) => void
502
+ ) : void ;
503
+ describeFlowOperation (
504
+ args : DescribeFlowOperationCommandInput ,
505
+ options : __HttpHandlerOptions ,
506
+ cb : ( err : any , data ?: DescribeFlowOperationCommandOutput ) => void
507
+ ) : void ;
508
+
462
509
/**
463
510
* @see {@link DescribeLoggingConfigurationCommand }
464
511
*/
@@ -630,6 +677,40 @@ export interface NetworkFirewall {
630
677
cb : ( err : any , data ?: ListFirewallsCommandOutput ) => void
631
678
) : void ;
632
679
680
+ /**
681
+ * @see {@link ListFlowOperationResultsCommand }
682
+ */
683
+ listFlowOperationResults (
684
+ args : ListFlowOperationResultsCommandInput ,
685
+ options ?: __HttpHandlerOptions
686
+ ) : Promise < ListFlowOperationResultsCommandOutput > ;
687
+ listFlowOperationResults (
688
+ args : ListFlowOperationResultsCommandInput ,
689
+ cb : ( err : any , data ?: ListFlowOperationResultsCommandOutput ) => void
690
+ ) : void ;
691
+ listFlowOperationResults (
692
+ args : ListFlowOperationResultsCommandInput ,
693
+ options : __HttpHandlerOptions ,
694
+ cb : ( err : any , data ?: ListFlowOperationResultsCommandOutput ) => void
695
+ ) : void ;
696
+
697
+ /**
698
+ * @see {@link ListFlowOperationsCommand }
699
+ */
700
+ listFlowOperations (
701
+ args : ListFlowOperationsCommandInput ,
702
+ options ?: __HttpHandlerOptions
703
+ ) : Promise < ListFlowOperationsCommandOutput > ;
704
+ listFlowOperations (
705
+ args : ListFlowOperationsCommandInput ,
706
+ cb : ( err : any , data ?: ListFlowOperationsCommandOutput ) => void
707
+ ) : void ;
708
+ listFlowOperations (
709
+ args : ListFlowOperationsCommandInput ,
710
+ options : __HttpHandlerOptions ,
711
+ cb : ( err : any , data ?: ListFlowOperationsCommandOutput ) => void
712
+ ) : void ;
713
+
633
714
/**
634
715
* @see {@link ListRuleGroupsCommand }
635
716
*/
@@ -714,6 +795,37 @@ export interface NetworkFirewall {
714
795
cb : ( err : any , data ?: StartAnalysisReportCommandOutput ) => void
715
796
) : void ;
716
797
798
+ /**
799
+ * @see {@link StartFlowCaptureCommand }
800
+ */
801
+ startFlowCapture (
802
+ args : StartFlowCaptureCommandInput ,
803
+ options ?: __HttpHandlerOptions
804
+ ) : Promise < StartFlowCaptureCommandOutput > ;
805
+ startFlowCapture (
806
+ args : StartFlowCaptureCommandInput ,
807
+ cb : ( err : any , data ?: StartFlowCaptureCommandOutput ) => void
808
+ ) : void ;
809
+ startFlowCapture (
810
+ args : StartFlowCaptureCommandInput ,
811
+ options : __HttpHandlerOptions ,
812
+ cb : ( err : any , data ?: StartFlowCaptureCommandOutput ) => void
813
+ ) : void ;
814
+
815
+ /**
816
+ * @see {@link StartFlowFlushCommand }
817
+ */
818
+ startFlowFlush (
819
+ args : StartFlowFlushCommandInput ,
820
+ options ?: __HttpHandlerOptions
821
+ ) : Promise < StartFlowFlushCommandOutput > ;
822
+ startFlowFlush ( args : StartFlowFlushCommandInput , cb : ( err : any , data ?: StartFlowFlushCommandOutput ) => void ) : void ;
823
+ startFlowFlush (
824
+ args : StartFlowFlushCommandInput ,
825
+ options : __HttpHandlerOptions ,
826
+ cb : ( err : any , data ?: StartFlowFlushCommandOutput ) => void
827
+ ) : void ;
828
+
717
829
/**
718
830
* @see {@link TagResourceCommand }
719
831
*/
0 commit comments