@@ -28,6 +28,11 @@ import {
2828 CreateModelCustomizationJobCommandInput ,
2929 CreateModelCustomizationJobCommandOutput ,
3030} from "./commands/CreateModelCustomizationJobCommand" ;
31+ import {
32+ CreateModelInvocationJobCommand ,
33+ CreateModelInvocationJobCommandInput ,
34+ CreateModelInvocationJobCommandOutput ,
35+ } from "./commands/CreateModelInvocationJobCommand" ;
3136import {
3237 CreateProvisionedModelThroughputCommand ,
3338 CreateProvisionedModelThroughputCommandInput ,
@@ -83,6 +88,11 @@ import {
8388 GetModelCustomizationJobCommandInput ,
8489 GetModelCustomizationJobCommandOutput ,
8590} from "./commands/GetModelCustomizationJobCommand" ;
91+ import {
92+ GetModelInvocationJobCommand ,
93+ GetModelInvocationJobCommandInput ,
94+ GetModelInvocationJobCommandOutput ,
95+ } from "./commands/GetModelInvocationJobCommand" ;
8696import {
8797 GetModelInvocationLoggingConfigurationCommand ,
8898 GetModelInvocationLoggingConfigurationCommandInput ,
@@ -123,6 +133,11 @@ import {
123133 ListModelCustomizationJobsCommandInput ,
124134 ListModelCustomizationJobsCommandOutput ,
125135} from "./commands/ListModelCustomizationJobsCommand" ;
136+ import {
137+ ListModelInvocationJobsCommand ,
138+ ListModelInvocationJobsCommandInput ,
139+ ListModelInvocationJobsCommandOutput ,
140+ } from "./commands/ListModelInvocationJobsCommand" ;
126141import {
127142 ListProvisionedModelThroughputsCommand ,
128143 ListProvisionedModelThroughputsCommandInput ,
@@ -148,6 +163,11 @@ import {
148163 StopModelCustomizationJobCommandInput ,
149164 StopModelCustomizationJobCommandOutput ,
150165} from "./commands/StopModelCustomizationJobCommand" ;
166+ import {
167+ StopModelInvocationJobCommand ,
168+ StopModelInvocationJobCommandInput ,
169+ StopModelInvocationJobCommandOutput ,
170+ } from "./commands/StopModelInvocationJobCommand" ;
151171import { TagResourceCommand , TagResourceCommandInput , TagResourceCommandOutput } from "./commands/TagResourceCommand" ;
152172import {
153173 UntagResourceCommand ,
@@ -171,6 +191,7 @@ const commands = {
171191 CreateGuardrailVersionCommand,
172192 CreateModelCopyJobCommand,
173193 CreateModelCustomizationJobCommand,
194+ CreateModelInvocationJobCommand,
174195 CreateProvisionedModelThroughputCommand,
175196 DeleteCustomModelCommand,
176197 DeleteGuardrailCommand,
@@ -182,6 +203,7 @@ const commands = {
182203 GetGuardrailCommand,
183204 GetModelCopyJobCommand,
184205 GetModelCustomizationJobCommand,
206+ GetModelInvocationJobCommand,
185207 GetModelInvocationLoggingConfigurationCommand,
186208 GetProvisionedModelThroughputCommand,
187209 ListCustomModelsCommand,
@@ -190,11 +212,13 @@ const commands = {
190212 ListGuardrailsCommand,
191213 ListModelCopyJobsCommand,
192214 ListModelCustomizationJobsCommand,
215+ ListModelInvocationJobsCommand,
193216 ListProvisionedModelThroughputsCommand,
194217 ListTagsForResourceCommand,
195218 PutModelInvocationLoggingConfigurationCommand,
196219 StopEvaluationJobCommand,
197220 StopModelCustomizationJobCommand,
221+ StopModelInvocationJobCommand,
198222 TagResourceCommand,
199223 UntagResourceCommand,
200224 UpdateGuardrailCommand,
@@ -284,6 +308,23 @@ export interface Bedrock {
284308 cb : ( err : any , data ?: CreateModelCustomizationJobCommandOutput ) => void
285309 ) : void ;
286310
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+
287328 /**
288329 * @see {@link CreateProvisionedModelThroughputCommand }
289330 */
@@ -457,6 +498,23 @@ export interface Bedrock {
457498 cb : ( err : any , data ?: GetModelCustomizationJobCommandOutput ) => void
458499 ) : void ;
459500
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+
460518 /**
461519 * @see {@link GetModelInvocationLoggingConfigurationCommand }
462520 */
@@ -597,6 +655,24 @@ export interface Bedrock {
597655 cb : ( err : any , data ?: ListModelCustomizationJobsCommandOutput ) => void
598656 ) : void ;
599657
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+
600676 /**
601677 * @see {@link ListProvisionedModelThroughputsCommand }
602678 */
@@ -683,6 +759,23 @@ export interface Bedrock {
683759 cb : ( err : any , data ?: StopModelCustomizationJobCommandOutput ) => void
684760 ) : void ;
685761
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+
686779 /**
687780 * @see {@link TagResourceCommand }
688781 */
0 commit comments