@@ -8,6 +8,11 @@ import {
8
8
CreateModelCustomizationJobCommandInput ,
9
9
CreateModelCustomizationJobCommandOutput ,
10
10
} from "./commands/CreateModelCustomizationJobCommand" ;
11
+ import {
12
+ CreateProvisionedModelThroughputCommand ,
13
+ CreateProvisionedModelThroughputCommandInput ,
14
+ CreateProvisionedModelThroughputCommandOutput ,
15
+ } from "./commands/CreateProvisionedModelThroughputCommand" ;
11
16
import {
12
17
DeleteCustomModelCommand ,
13
18
DeleteCustomModelCommandInput ,
@@ -18,6 +23,11 @@ import {
18
23
DeleteModelInvocationLoggingConfigurationCommandInput ,
19
24
DeleteModelInvocationLoggingConfigurationCommandOutput ,
20
25
} from "./commands/DeleteModelInvocationLoggingConfigurationCommand" ;
26
+ import {
27
+ DeleteProvisionedModelThroughputCommand ,
28
+ DeleteProvisionedModelThroughputCommandInput ,
29
+ DeleteProvisionedModelThroughputCommandOutput ,
30
+ } from "./commands/DeleteProvisionedModelThroughputCommand" ;
21
31
import {
22
32
GetCustomModelCommand ,
23
33
GetCustomModelCommandInput ,
@@ -38,6 +48,11 @@ import {
38
48
GetModelInvocationLoggingConfigurationCommandInput ,
39
49
GetModelInvocationLoggingConfigurationCommandOutput ,
40
50
} from "./commands/GetModelInvocationLoggingConfigurationCommand" ;
51
+ import {
52
+ GetProvisionedModelThroughputCommand ,
53
+ GetProvisionedModelThroughputCommandInput ,
54
+ GetProvisionedModelThroughputCommandOutput ,
55
+ } from "./commands/GetProvisionedModelThroughputCommand" ;
41
56
import {
42
57
ListCustomModelsCommand ,
43
58
ListCustomModelsCommandInput ,
@@ -53,6 +68,11 @@ import {
53
68
ListModelCustomizationJobsCommandInput ,
54
69
ListModelCustomizationJobsCommandOutput ,
55
70
} from "./commands/ListModelCustomizationJobsCommand" ;
71
+ import {
72
+ ListProvisionedModelThroughputsCommand ,
73
+ ListProvisionedModelThroughputsCommandInput ,
74
+ ListProvisionedModelThroughputsCommandOutput ,
75
+ } from "./commands/ListProvisionedModelThroughputsCommand" ;
56
76
import {
57
77
ListTagsForResourceCommand ,
58
78
ListTagsForResourceCommandInput ,
@@ -74,23 +94,33 @@ import {
74
94
UntagResourceCommandInput ,
75
95
UntagResourceCommandOutput ,
76
96
} from "./commands/UntagResourceCommand" ;
97
+ import {
98
+ UpdateProvisionedModelThroughputCommand ,
99
+ UpdateProvisionedModelThroughputCommandInput ,
100
+ UpdateProvisionedModelThroughputCommandOutput ,
101
+ } from "./commands/UpdateProvisionedModelThroughputCommand" ;
77
102
78
103
const commands = {
79
104
CreateModelCustomizationJobCommand,
105
+ CreateProvisionedModelThroughputCommand,
80
106
DeleteCustomModelCommand,
81
107
DeleteModelInvocationLoggingConfigurationCommand,
108
+ DeleteProvisionedModelThroughputCommand,
82
109
GetCustomModelCommand,
83
110
GetFoundationModelCommand,
84
111
GetModelCustomizationJobCommand,
85
112
GetModelInvocationLoggingConfigurationCommand,
113
+ GetProvisionedModelThroughputCommand,
86
114
ListCustomModelsCommand,
87
115
ListFoundationModelsCommand,
88
116
ListModelCustomizationJobsCommand,
117
+ ListProvisionedModelThroughputsCommand,
89
118
ListTagsForResourceCommand,
90
119
PutModelInvocationLoggingConfigurationCommand,
91
120
StopModelCustomizationJobCommand,
92
121
TagResourceCommand,
93
122
UntagResourceCommand,
123
+ UpdateProvisionedModelThroughputCommand,
94
124
} ;
95
125
96
126
export interface Bedrock {
@@ -111,6 +141,23 @@ export interface Bedrock {
111
141
cb : ( err : any , data ?: CreateModelCustomizationJobCommandOutput ) => void
112
142
) : void ;
113
143
144
+ /**
145
+ * @see {@link CreateProvisionedModelThroughputCommand }
146
+ */
147
+ createProvisionedModelThroughput (
148
+ args : CreateProvisionedModelThroughputCommandInput ,
149
+ options ?: __HttpHandlerOptions
150
+ ) : Promise < CreateProvisionedModelThroughputCommandOutput > ;
151
+ createProvisionedModelThroughput (
152
+ args : CreateProvisionedModelThroughputCommandInput ,
153
+ cb : ( err : any , data ?: CreateProvisionedModelThroughputCommandOutput ) => void
154
+ ) : void ;
155
+ createProvisionedModelThroughput (
156
+ args : CreateProvisionedModelThroughputCommandInput ,
157
+ options : __HttpHandlerOptions ,
158
+ cb : ( err : any , data ?: CreateProvisionedModelThroughputCommandOutput ) => void
159
+ ) : void ;
160
+
114
161
/**
115
162
* @see {@link DeleteCustomModelCommand }
116
163
*/
@@ -145,6 +192,23 @@ export interface Bedrock {
145
192
cb : ( err : any , data ?: DeleteModelInvocationLoggingConfigurationCommandOutput ) => void
146
193
) : void ;
147
194
195
+ /**
196
+ * @see {@link DeleteProvisionedModelThroughputCommand }
197
+ */
198
+ deleteProvisionedModelThroughput (
199
+ args : DeleteProvisionedModelThroughputCommandInput ,
200
+ options ?: __HttpHandlerOptions
201
+ ) : Promise < DeleteProvisionedModelThroughputCommandOutput > ;
202
+ deleteProvisionedModelThroughput (
203
+ args : DeleteProvisionedModelThroughputCommandInput ,
204
+ cb : ( err : any , data ?: DeleteProvisionedModelThroughputCommandOutput ) => void
205
+ ) : void ;
206
+ deleteProvisionedModelThroughput (
207
+ args : DeleteProvisionedModelThroughputCommandInput ,
208
+ options : __HttpHandlerOptions ,
209
+ cb : ( err : any , data ?: DeleteProvisionedModelThroughputCommandOutput ) => void
210
+ ) : void ;
211
+
148
212
/**
149
213
* @see {@link GetCustomModelCommand }
150
214
*/
@@ -210,6 +274,23 @@ export interface Bedrock {
210
274
cb : ( err : any , data ?: GetModelInvocationLoggingConfigurationCommandOutput ) => void
211
275
) : void ;
212
276
277
+ /**
278
+ * @see {@link GetProvisionedModelThroughputCommand }
279
+ */
280
+ getProvisionedModelThroughput (
281
+ args : GetProvisionedModelThroughputCommandInput ,
282
+ options ?: __HttpHandlerOptions
283
+ ) : Promise < GetProvisionedModelThroughputCommandOutput > ;
284
+ getProvisionedModelThroughput (
285
+ args : GetProvisionedModelThroughputCommandInput ,
286
+ cb : ( err : any , data ?: GetProvisionedModelThroughputCommandOutput ) => void
287
+ ) : void ;
288
+ getProvisionedModelThroughput (
289
+ args : GetProvisionedModelThroughputCommandInput ,
290
+ options : __HttpHandlerOptions ,
291
+ cb : ( err : any , data ?: GetProvisionedModelThroughputCommandOutput ) => void
292
+ ) : void ;
293
+
213
294
/**
214
295
* @see {@link ListCustomModelsCommand }
215
296
*/
@@ -261,6 +342,23 @@ export interface Bedrock {
261
342
cb : ( err : any , data ?: ListModelCustomizationJobsCommandOutput ) => void
262
343
) : void ;
263
344
345
+ /**
346
+ * @see {@link ListProvisionedModelThroughputsCommand }
347
+ */
348
+ listProvisionedModelThroughputs (
349
+ args : ListProvisionedModelThroughputsCommandInput ,
350
+ options ?: __HttpHandlerOptions
351
+ ) : Promise < ListProvisionedModelThroughputsCommandOutput > ;
352
+ listProvisionedModelThroughputs (
353
+ args : ListProvisionedModelThroughputsCommandInput ,
354
+ cb : ( err : any , data ?: ListProvisionedModelThroughputsCommandOutput ) => void
355
+ ) : void ;
356
+ listProvisionedModelThroughputs (
357
+ args : ListProvisionedModelThroughputsCommandInput ,
358
+ options : __HttpHandlerOptions ,
359
+ cb : ( err : any , data ?: ListProvisionedModelThroughputsCommandOutput ) => void
360
+ ) : void ;
361
+
264
362
/**
265
363
* @see {@link ListTagsForResourceCommand }
266
364
*/
@@ -333,6 +431,23 @@ export interface Bedrock {
333
431
options : __HttpHandlerOptions ,
334
432
cb : ( err : any , data ?: UntagResourceCommandOutput ) => void
335
433
) : void ;
434
+
435
+ /**
436
+ * @see {@link UpdateProvisionedModelThroughputCommand }
437
+ */
438
+ updateProvisionedModelThroughput (
439
+ args : UpdateProvisionedModelThroughputCommandInput ,
440
+ options ?: __HttpHandlerOptions
441
+ ) : Promise < UpdateProvisionedModelThroughputCommandOutput > ;
442
+ updateProvisionedModelThroughput (
443
+ args : UpdateProvisionedModelThroughputCommandInput ,
444
+ cb : ( err : any , data ?: UpdateProvisionedModelThroughputCommandOutput ) => void
445
+ ) : void ;
446
+ updateProvisionedModelThroughput (
447
+ args : UpdateProvisionedModelThroughputCommandInput ,
448
+ options : __HttpHandlerOptions ,
449
+ cb : ( err : any , data ?: UpdateProvisionedModelThroughputCommandOutput ) => void
450
+ ) : void ;
336
451
}
337
452
338
453
/**
0 commit comments