@@ -28,6 +28,11 @@ import {
28
28
CreateModelCustomizationJobCommandInput ,
29
29
CreateModelCustomizationJobCommandOutput ,
30
30
} from "./commands/CreateModelCustomizationJobCommand" ;
31
+ import {
32
+ CreateModelInvocationJobCommand ,
33
+ CreateModelInvocationJobCommandInput ,
34
+ CreateModelInvocationJobCommandOutput ,
35
+ } from "./commands/CreateModelInvocationJobCommand" ;
31
36
import {
32
37
CreateProvisionedModelThroughputCommand ,
33
38
CreateProvisionedModelThroughputCommandInput ,
@@ -83,6 +88,11 @@ import {
83
88
GetModelCustomizationJobCommandInput ,
84
89
GetModelCustomizationJobCommandOutput ,
85
90
} from "./commands/GetModelCustomizationJobCommand" ;
91
+ import {
92
+ GetModelInvocationJobCommand ,
93
+ GetModelInvocationJobCommandInput ,
94
+ GetModelInvocationJobCommandOutput ,
95
+ } from "./commands/GetModelInvocationJobCommand" ;
86
96
import {
87
97
GetModelInvocationLoggingConfigurationCommand ,
88
98
GetModelInvocationLoggingConfigurationCommandInput ,
@@ -123,6 +133,11 @@ import {
123
133
ListModelCustomizationJobsCommandInput ,
124
134
ListModelCustomizationJobsCommandOutput ,
125
135
} from "./commands/ListModelCustomizationJobsCommand" ;
136
+ import {
137
+ ListModelInvocationJobsCommand ,
138
+ ListModelInvocationJobsCommandInput ,
139
+ ListModelInvocationJobsCommandOutput ,
140
+ } from "./commands/ListModelInvocationJobsCommand" ;
126
141
import {
127
142
ListProvisionedModelThroughputsCommand ,
128
143
ListProvisionedModelThroughputsCommandInput ,
@@ -148,6 +163,11 @@ import {
148
163
StopModelCustomizationJobCommandInput ,
149
164
StopModelCustomizationJobCommandOutput ,
150
165
} from "./commands/StopModelCustomizationJobCommand" ;
166
+ import {
167
+ StopModelInvocationJobCommand ,
168
+ StopModelInvocationJobCommandInput ,
169
+ StopModelInvocationJobCommandOutput ,
170
+ } from "./commands/StopModelInvocationJobCommand" ;
151
171
import { TagResourceCommand , TagResourceCommandInput , TagResourceCommandOutput } from "./commands/TagResourceCommand" ;
152
172
import {
153
173
UntagResourceCommand ,
@@ -171,6 +191,7 @@ const commands = {
171
191
CreateGuardrailVersionCommand,
172
192
CreateModelCopyJobCommand,
173
193
CreateModelCustomizationJobCommand,
194
+ CreateModelInvocationJobCommand,
174
195
CreateProvisionedModelThroughputCommand,
175
196
DeleteCustomModelCommand,
176
197
DeleteGuardrailCommand,
@@ -182,6 +203,7 @@ const commands = {
182
203
GetGuardrailCommand,
183
204
GetModelCopyJobCommand,
184
205
GetModelCustomizationJobCommand,
206
+ GetModelInvocationJobCommand,
185
207
GetModelInvocationLoggingConfigurationCommand,
186
208
GetProvisionedModelThroughputCommand,
187
209
ListCustomModelsCommand,
@@ -190,11 +212,13 @@ const commands = {
190
212
ListGuardrailsCommand,
191
213
ListModelCopyJobsCommand,
192
214
ListModelCustomizationJobsCommand,
215
+ ListModelInvocationJobsCommand,
193
216
ListProvisionedModelThroughputsCommand,
194
217
ListTagsForResourceCommand,
195
218
PutModelInvocationLoggingConfigurationCommand,
196
219
StopEvaluationJobCommand,
197
220
StopModelCustomizationJobCommand,
221
+ StopModelInvocationJobCommand,
198
222
TagResourceCommand,
199
223
UntagResourceCommand,
200
224
UpdateGuardrailCommand,
@@ -284,6 +308,23 @@ export interface Bedrock {
284
308
cb : ( err : any , data ?: CreateModelCustomizationJobCommandOutput ) => void
285
309
) : void ;
286
310
311
+ /**
312
+ * @see {@link CreateModelInvocationJobCommand }
313
+ */
314
+ createModelInvocationJob (
315
+ args : CreateModelInvocationJobCommandInput ,
316
+ options ?: __HttpHandlerOptions
317
+ ) : Promise < CreateModelInvocationJobCommandOutput > ;
318
+ createModelInvocationJob (
319
+ args : CreateModelInvocationJobCommandInput ,
320
+ cb : ( err : any , data ?: CreateModelInvocationJobCommandOutput ) => void
321
+ ) : void ;
322
+ createModelInvocationJob (
323
+ args : CreateModelInvocationJobCommandInput ,
324
+ options : __HttpHandlerOptions ,
325
+ cb : ( err : any , data ?: CreateModelInvocationJobCommandOutput ) => void
326
+ ) : void ;
327
+
287
328
/**
288
329
* @see {@link CreateProvisionedModelThroughputCommand }
289
330
*/
@@ -457,6 +498,23 @@ export interface Bedrock {
457
498
cb : ( err : any , data ?: GetModelCustomizationJobCommandOutput ) => void
458
499
) : void ;
459
500
501
+ /**
502
+ * @see {@link GetModelInvocationJobCommand }
503
+ */
504
+ getModelInvocationJob (
505
+ args : GetModelInvocationJobCommandInput ,
506
+ options ?: __HttpHandlerOptions
507
+ ) : Promise < GetModelInvocationJobCommandOutput > ;
508
+ getModelInvocationJob (
509
+ args : GetModelInvocationJobCommandInput ,
510
+ cb : ( err : any , data ?: GetModelInvocationJobCommandOutput ) => void
511
+ ) : void ;
512
+ getModelInvocationJob (
513
+ args : GetModelInvocationJobCommandInput ,
514
+ options : __HttpHandlerOptions ,
515
+ cb : ( err : any , data ?: GetModelInvocationJobCommandOutput ) => void
516
+ ) : void ;
517
+
460
518
/**
461
519
* @see {@link GetModelInvocationLoggingConfigurationCommand }
462
520
*/
@@ -597,6 +655,24 @@ export interface Bedrock {
597
655
cb : ( err : any , data ?: ListModelCustomizationJobsCommandOutput ) => void
598
656
) : void ;
599
657
658
+ /**
659
+ * @see {@link ListModelInvocationJobsCommand }
660
+ */
661
+ listModelInvocationJobs ( ) : Promise < ListModelInvocationJobsCommandOutput > ;
662
+ listModelInvocationJobs (
663
+ args : ListModelInvocationJobsCommandInput ,
664
+ options ?: __HttpHandlerOptions
665
+ ) : Promise < ListModelInvocationJobsCommandOutput > ;
666
+ listModelInvocationJobs (
667
+ args : ListModelInvocationJobsCommandInput ,
668
+ cb : ( err : any , data ?: ListModelInvocationJobsCommandOutput ) => void
669
+ ) : void ;
670
+ listModelInvocationJobs (
671
+ args : ListModelInvocationJobsCommandInput ,
672
+ options : __HttpHandlerOptions ,
673
+ cb : ( err : any , data ?: ListModelInvocationJobsCommandOutput ) => void
674
+ ) : void ;
675
+
600
676
/**
601
677
* @see {@link ListProvisionedModelThroughputsCommand }
602
678
*/
@@ -683,6 +759,23 @@ export interface Bedrock {
683
759
cb : ( err : any , data ?: StopModelCustomizationJobCommandOutput ) => void
684
760
) : void ;
685
761
762
+ /**
763
+ * @see {@link StopModelInvocationJobCommand }
764
+ */
765
+ stopModelInvocationJob (
766
+ args : StopModelInvocationJobCommandInput ,
767
+ options ?: __HttpHandlerOptions
768
+ ) : Promise < StopModelInvocationJobCommandOutput > ;
769
+ stopModelInvocationJob (
770
+ args : StopModelInvocationJobCommandInput ,
771
+ cb : ( err : any , data ?: StopModelInvocationJobCommandOutput ) => void
772
+ ) : void ;
773
+ stopModelInvocationJob (
774
+ args : StopModelInvocationJobCommandInput ,
775
+ options : __HttpHandlerOptions ,
776
+ cb : ( err : any , data ?: StopModelInvocationJobCommandOutput ) => void
777
+ ) : void ;
778
+
686
779
/**
687
780
* @see {@link TagResourceCommand }
688
781
*/
0 commit comments