@@ -67,6 +67,11 @@ import {
6767 DescribeFirewallPolicyCommandInput ,
6868 DescribeFirewallPolicyCommandOutput ,
6969} from "./commands/DescribeFirewallPolicyCommand" ;
70+ import {
71+ DescribeFlowOperationCommand ,
72+ DescribeFlowOperationCommandInput ,
73+ DescribeFlowOperationCommandOutput ,
74+ } from "./commands/DescribeFlowOperationCommand" ;
7075import {
7176 DescribeLoggingConfigurationCommand ,
7277 DescribeLoggingConfigurationCommandInput ,
@@ -117,6 +122,16 @@ import {
117122 ListFirewallsCommandInput ,
118123 ListFirewallsCommandOutput ,
119124} 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" ;
120135import {
121136 ListRuleGroupsCommand ,
122137 ListRuleGroupsCommandInput ,
@@ -142,6 +157,16 @@ import {
142157 StartAnalysisReportCommandInput ,
143158 StartAnalysisReportCommandOutput ,
144159} 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" ;
145170import { TagResourceCommand , TagResourceCommandInput , TagResourceCommandOutput } from "./commands/TagResourceCommand" ;
146171import {
147172 UntagResourceCommand ,
@@ -214,6 +239,7 @@ const commands = {
214239 DeleteTLSInspectionConfigurationCommand,
215240 DescribeFirewallCommand,
216241 DescribeFirewallPolicyCommand,
242+ DescribeFlowOperationCommand,
217243 DescribeLoggingConfigurationCommand,
218244 DescribeResourcePolicyCommand,
219245 DescribeRuleGroupCommand,
@@ -224,11 +250,15 @@ const commands = {
224250 ListAnalysisReportsCommand,
225251 ListFirewallPoliciesCommand,
226252 ListFirewallsCommand,
253+ ListFlowOperationResultsCommand,
254+ ListFlowOperationsCommand,
227255 ListRuleGroupsCommand,
228256 ListTagsForResourceCommand,
229257 ListTLSInspectionConfigurationsCommand,
230258 PutResourcePolicyCommand,
231259 StartAnalysisReportCommand,
260+ StartFlowCaptureCommand,
261+ StartFlowFlushCommand,
232262 TagResourceCommand,
233263 UntagResourceCommand,
234264 UpdateFirewallAnalysisSettingsCommand,
@@ -459,6 +489,23 @@ export interface NetworkFirewall {
459489 cb : ( err : any , data ?: DescribeFirewallPolicyCommandOutput ) => void
460490 ) : void ;
461491
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+
462509 /**
463510 * @see {@link DescribeLoggingConfigurationCommand }
464511 */
@@ -630,6 +677,40 @@ export interface NetworkFirewall {
630677 cb : ( err : any , data ?: ListFirewallsCommandOutput ) => void
631678 ) : void ;
632679
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+
633714 /**
634715 * @see {@link ListRuleGroupsCommand }
635716 */
@@ -714,6 +795,37 @@ export interface NetworkFirewall {
714795 cb : ( err : any , data ?: StartAnalysisReportCommandOutput ) => void
715796 ) : void ;
716797
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+
717829 /**
718830 * @see {@link TagResourceCommand }
719831 */
0 commit comments