@@ -34,6 +34,16 @@ import {
34
34
GetAgentMemoryCommandInput ,
35
35
GetAgentMemoryCommandOutput ,
36
36
} from "./commands/GetAgentMemoryCommand" ;
37
+ import {
38
+ GetExecutionFlowSnapshotCommand ,
39
+ GetExecutionFlowSnapshotCommandInput ,
40
+ GetExecutionFlowSnapshotCommandOutput ,
41
+ } from "./commands/GetExecutionFlowSnapshotCommand" ;
42
+ import {
43
+ GetFlowExecutionCommand ,
44
+ GetFlowExecutionCommandInput ,
45
+ GetFlowExecutionCommandOutput ,
46
+ } from "./commands/GetFlowExecutionCommand" ;
37
47
import {
38
48
GetInvocationStepCommand ,
39
49
GetInvocationStepCommandInput ,
@@ -47,6 +57,16 @@ import {
47
57
InvokeInlineAgentCommandInput ,
48
58
InvokeInlineAgentCommandOutput ,
49
59
} from "./commands/InvokeInlineAgentCommand" ;
60
+ import {
61
+ ListFlowExecutionEventsCommand ,
62
+ ListFlowExecutionEventsCommandInput ,
63
+ ListFlowExecutionEventsCommandOutput ,
64
+ } from "./commands/ListFlowExecutionEventsCommand" ;
65
+ import {
66
+ ListFlowExecutionsCommand ,
67
+ ListFlowExecutionsCommandInput ,
68
+ ListFlowExecutionsCommandOutput ,
69
+ } from "./commands/ListFlowExecutionsCommand" ;
50
70
import {
51
71
ListInvocationsCommand ,
52
72
ListInvocationsCommandInput ,
@@ -89,6 +109,16 @@ import {
89
109
RetrieveAndGenerateStreamCommandOutput ,
90
110
} from "./commands/RetrieveAndGenerateStreamCommand" ;
91
111
import { RetrieveCommand , RetrieveCommandInput , RetrieveCommandOutput } from "./commands/RetrieveCommand" ;
112
+ import {
113
+ StartFlowExecutionCommand ,
114
+ StartFlowExecutionCommandInput ,
115
+ StartFlowExecutionCommandOutput ,
116
+ } from "./commands/StartFlowExecutionCommand" ;
117
+ import {
118
+ StopFlowExecutionCommand ,
119
+ StopFlowExecutionCommandInput ,
120
+ StopFlowExecutionCommandOutput ,
121
+ } from "./commands/StopFlowExecutionCommand" ;
92
122
import { TagResourceCommand , TagResourceCommandInput , TagResourceCommandOutput } from "./commands/TagResourceCommand" ;
93
123
import {
94
124
UntagResourceCommand ,
@@ -109,11 +139,15 @@ const commands = {
109
139
EndSessionCommand,
110
140
GenerateQueryCommand,
111
141
GetAgentMemoryCommand,
142
+ GetExecutionFlowSnapshotCommand,
143
+ GetFlowExecutionCommand,
112
144
GetInvocationStepCommand,
113
145
GetSessionCommand,
114
146
InvokeAgentCommand,
115
147
InvokeFlowCommand,
116
148
InvokeInlineAgentCommand,
149
+ ListFlowExecutionEventsCommand,
150
+ ListFlowExecutionsCommand,
117
151
ListInvocationsCommand,
118
152
ListInvocationStepsCommand,
119
153
ListSessionsCommand,
@@ -124,6 +158,8 @@ const commands = {
124
158
RetrieveCommand,
125
159
RetrieveAndGenerateCommand,
126
160
RetrieveAndGenerateStreamCommand,
161
+ StartFlowExecutionCommand,
162
+ StopFlowExecutionCommand,
127
163
TagResourceCommand,
128
164
UntagResourceCommand,
129
165
UpdateSessionCommand,
@@ -223,6 +259,40 @@ export interface BedrockAgentRuntime {
223
259
cb : ( err : any , data ?: GetAgentMemoryCommandOutput ) => void
224
260
) : void ;
225
261
262
+ /**
263
+ * @see {@link GetExecutionFlowSnapshotCommand }
264
+ */
265
+ getExecutionFlowSnapshot (
266
+ args : GetExecutionFlowSnapshotCommandInput ,
267
+ options ?: __HttpHandlerOptions
268
+ ) : Promise < GetExecutionFlowSnapshotCommandOutput > ;
269
+ getExecutionFlowSnapshot (
270
+ args : GetExecutionFlowSnapshotCommandInput ,
271
+ cb : ( err : any , data ?: GetExecutionFlowSnapshotCommandOutput ) => void
272
+ ) : void ;
273
+ getExecutionFlowSnapshot (
274
+ args : GetExecutionFlowSnapshotCommandInput ,
275
+ options : __HttpHandlerOptions ,
276
+ cb : ( err : any , data ?: GetExecutionFlowSnapshotCommandOutput ) => void
277
+ ) : void ;
278
+
279
+ /**
280
+ * @see {@link GetFlowExecutionCommand }
281
+ */
282
+ getFlowExecution (
283
+ args : GetFlowExecutionCommandInput ,
284
+ options ?: __HttpHandlerOptions
285
+ ) : Promise < GetFlowExecutionCommandOutput > ;
286
+ getFlowExecution (
287
+ args : GetFlowExecutionCommandInput ,
288
+ cb : ( err : any , data ?: GetFlowExecutionCommandOutput ) => void
289
+ ) : void ;
290
+ getFlowExecution (
291
+ args : GetFlowExecutionCommandInput ,
292
+ options : __HttpHandlerOptions ,
293
+ cb : ( err : any , data ?: GetFlowExecutionCommandOutput ) => void
294
+ ) : void ;
295
+
226
296
/**
227
297
* @see {@link GetInvocationStepCommand }
228
298
*/
@@ -290,6 +360,40 @@ export interface BedrockAgentRuntime {
290
360
cb : ( err : any , data ?: InvokeInlineAgentCommandOutput ) => void
291
361
) : void ;
292
362
363
+ /**
364
+ * @see {@link ListFlowExecutionEventsCommand }
365
+ */
366
+ listFlowExecutionEvents (
367
+ args : ListFlowExecutionEventsCommandInput ,
368
+ options ?: __HttpHandlerOptions
369
+ ) : Promise < ListFlowExecutionEventsCommandOutput > ;
370
+ listFlowExecutionEvents (
371
+ args : ListFlowExecutionEventsCommandInput ,
372
+ cb : ( err : any , data ?: ListFlowExecutionEventsCommandOutput ) => void
373
+ ) : void ;
374
+ listFlowExecutionEvents (
375
+ args : ListFlowExecutionEventsCommandInput ,
376
+ options : __HttpHandlerOptions ,
377
+ cb : ( err : any , data ?: ListFlowExecutionEventsCommandOutput ) => void
378
+ ) : void ;
379
+
380
+ /**
381
+ * @see {@link ListFlowExecutionsCommand }
382
+ */
383
+ listFlowExecutions (
384
+ args : ListFlowExecutionsCommandInput ,
385
+ options ?: __HttpHandlerOptions
386
+ ) : Promise < ListFlowExecutionsCommandOutput > ;
387
+ listFlowExecutions (
388
+ args : ListFlowExecutionsCommandInput ,
389
+ cb : ( err : any , data ?: ListFlowExecutionsCommandOutput ) => void
390
+ ) : void ;
391
+ listFlowExecutions (
392
+ args : ListFlowExecutionsCommandInput ,
393
+ options : __HttpHandlerOptions ,
394
+ cb : ( err : any , data ?: ListFlowExecutionsCommandOutput ) => void
395
+ ) : void ;
396
+
293
397
/**
294
398
* @see {@link ListInvocationsCommand }
295
399
*/
@@ -437,6 +541,40 @@ export interface BedrockAgentRuntime {
437
541
cb : ( err : any , data ?: RetrieveAndGenerateStreamCommandOutput ) => void
438
542
) : void ;
439
543
544
+ /**
545
+ * @see {@link StartFlowExecutionCommand }
546
+ */
547
+ startFlowExecution (
548
+ args : StartFlowExecutionCommandInput ,
549
+ options ?: __HttpHandlerOptions
550
+ ) : Promise < StartFlowExecutionCommandOutput > ;
551
+ startFlowExecution (
552
+ args : StartFlowExecutionCommandInput ,
553
+ cb : ( err : any , data ?: StartFlowExecutionCommandOutput ) => void
554
+ ) : void ;
555
+ startFlowExecution (
556
+ args : StartFlowExecutionCommandInput ,
557
+ options : __HttpHandlerOptions ,
558
+ cb : ( err : any , data ?: StartFlowExecutionCommandOutput ) => void
559
+ ) : void ;
560
+
561
+ /**
562
+ * @see {@link StopFlowExecutionCommand }
563
+ */
564
+ stopFlowExecution (
565
+ args : StopFlowExecutionCommandInput ,
566
+ options ?: __HttpHandlerOptions
567
+ ) : Promise < StopFlowExecutionCommandOutput > ;
568
+ stopFlowExecution (
569
+ args : StopFlowExecutionCommandInput ,
570
+ cb : ( err : any , data ?: StopFlowExecutionCommandOutput ) => void
571
+ ) : void ;
572
+ stopFlowExecution (
573
+ args : StopFlowExecutionCommandInput ,
574
+ options : __HttpHandlerOptions ,
575
+ cb : ( err : any , data ?: StopFlowExecutionCommandOutput ) => void
576
+ ) : void ;
577
+
440
578
/**
441
579
* @see {@link TagResourceCommand }
442
580
*/
0 commit comments