@aws-sdk/client-bedrock 3.705.0 → 3.706.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +72 -0
- package/dist-cjs/index.js +614 -27
- package/dist-es/Bedrock.js +18 -0
- package/dist-es/commands/CreateMarketplaceModelEndpointCommand.js +22 -0
- package/dist-es/commands/DeleteMarketplaceModelEndpointCommand.js +22 -0
- package/dist-es/commands/DeregisterMarketplaceModelEndpointCommand.js +22 -0
- package/dist-es/commands/GetMarketplaceModelEndpointCommand.js +22 -0
- package/dist-es/commands/GetPromptRouterCommand.js +23 -0
- package/dist-es/commands/ListMarketplaceModelEndpointsCommand.js +22 -0
- package/dist-es/commands/ListPromptRoutersCommand.js +23 -0
- package/dist-es/commands/RegisterMarketplaceModelEndpointCommand.js +22 -0
- package/dist-es/commands/UpdateMarketplaceModelEndpointCommand.js +22 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +96 -20
- package/dist-es/pagination/ListMarketplaceModelEndpointsPaginator.js +4 -0
- package/dist-es/pagination/ListPromptRoutersPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +314 -1
- package/dist-types/Bedrock.d.ts +65 -0
- package/dist-types/BedrockClient.d.ts +11 -2
- package/dist-types/commands/CreateGuardrailCommand.d.ts +6 -0
- package/dist-types/commands/CreateMarketplaceModelEndpointCommand.d.ts +143 -0
- package/dist-types/commands/DeleteMarketplaceModelEndpointCommand.d.ts +84 -0
- package/dist-types/commands/DeregisterMarketplaceModelEndpointCommand.d.ts +89 -0
- package/dist-types/commands/GetGuardrailCommand.d.ts +6 -0
- package/dist-types/commands/GetMarketplaceModelEndpointCommand.d.ts +111 -0
- package/dist-types/commands/GetPromptRouterCommand.d.ts +103 -0
- package/dist-types/commands/ListMarketplaceModelEndpointsCommand.d.ts +99 -0
- package/dist-types/commands/ListPromptRoutersCommand.d.ts +106 -0
- package/dist-types/commands/RegisterMarketplaceModelEndpointCommand.d.ts +116 -0
- package/dist-types/commands/UpdateGuardrailCommand.d.ts +6 -0
- package/dist-types/commands/UpdateMarketplaceModelEndpointCommand.d.ts +135 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +736 -97
- package/dist-types/pagination/ListMarketplaceModelEndpointsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPromptRoutersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
- package/dist-types/ts3.4/Bedrock.d.ts +161 -0
- package/dist-types/ts3.4/BedrockClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/CreateMarketplaceModelEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteMarketplaceModelEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeregisterMarketplaceModelEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetMarketplaceModelEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPromptRouterCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListMarketplaceModelEndpointsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPromptRoutersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RegisterMarketplaceModelEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateMarketplaceModelEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +229 -41
- package/dist-types/ts3.4/pagination/ListMarketplaceModelEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPromptRoutersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
- package/package.json +1 -1
|
@@ -23,6 +23,10 @@ import {
|
|
|
23
23
|
CreateInferenceProfileCommandInput,
|
|
24
24
|
CreateInferenceProfileCommandOutput,
|
|
25
25
|
} from "../commands/CreateInferenceProfileCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateMarketplaceModelEndpointCommandInput,
|
|
28
|
+
CreateMarketplaceModelEndpointCommandOutput,
|
|
29
|
+
} from "../commands/CreateMarketplaceModelEndpointCommand";
|
|
26
30
|
import {
|
|
27
31
|
CreateModelCopyJobCommandInput,
|
|
28
32
|
CreateModelCopyJobCommandOutput,
|
|
@@ -59,6 +63,10 @@ import {
|
|
|
59
63
|
DeleteInferenceProfileCommandInput,
|
|
60
64
|
DeleteInferenceProfileCommandOutput,
|
|
61
65
|
} from "../commands/DeleteInferenceProfileCommand";
|
|
66
|
+
import {
|
|
67
|
+
DeleteMarketplaceModelEndpointCommandInput,
|
|
68
|
+
DeleteMarketplaceModelEndpointCommandOutput,
|
|
69
|
+
} from "../commands/DeleteMarketplaceModelEndpointCommand";
|
|
62
70
|
import {
|
|
63
71
|
DeleteModelInvocationLoggingConfigurationCommandInput,
|
|
64
72
|
DeleteModelInvocationLoggingConfigurationCommandOutput,
|
|
@@ -67,6 +75,10 @@ import {
|
|
|
67
75
|
DeleteProvisionedModelThroughputCommandInput,
|
|
68
76
|
DeleteProvisionedModelThroughputCommandOutput,
|
|
69
77
|
} from "../commands/DeleteProvisionedModelThroughputCommand";
|
|
78
|
+
import {
|
|
79
|
+
DeregisterMarketplaceModelEndpointCommandInput,
|
|
80
|
+
DeregisterMarketplaceModelEndpointCommandOutput,
|
|
81
|
+
} from "../commands/DeregisterMarketplaceModelEndpointCommand";
|
|
70
82
|
import {
|
|
71
83
|
GetCustomModelCommandInput,
|
|
72
84
|
GetCustomModelCommandOutput,
|
|
@@ -91,6 +103,10 @@ import {
|
|
|
91
103
|
GetInferenceProfileCommandInput,
|
|
92
104
|
GetInferenceProfileCommandOutput,
|
|
93
105
|
} from "../commands/GetInferenceProfileCommand";
|
|
106
|
+
import {
|
|
107
|
+
GetMarketplaceModelEndpointCommandInput,
|
|
108
|
+
GetMarketplaceModelEndpointCommandOutput,
|
|
109
|
+
} from "../commands/GetMarketplaceModelEndpointCommand";
|
|
94
110
|
import {
|
|
95
111
|
GetModelCopyJobCommandInput,
|
|
96
112
|
GetModelCopyJobCommandOutput,
|
|
@@ -111,6 +127,10 @@ import {
|
|
|
111
127
|
GetModelInvocationLoggingConfigurationCommandInput,
|
|
112
128
|
GetModelInvocationLoggingConfigurationCommandOutput,
|
|
113
129
|
} from "../commands/GetModelInvocationLoggingConfigurationCommand";
|
|
130
|
+
import {
|
|
131
|
+
GetPromptRouterCommandInput,
|
|
132
|
+
GetPromptRouterCommandOutput,
|
|
133
|
+
} from "../commands/GetPromptRouterCommand";
|
|
114
134
|
import {
|
|
115
135
|
GetProvisionedModelThroughputCommandInput,
|
|
116
136
|
GetProvisionedModelThroughputCommandOutput,
|
|
@@ -139,6 +159,10 @@ import {
|
|
|
139
159
|
ListInferenceProfilesCommandInput,
|
|
140
160
|
ListInferenceProfilesCommandOutput,
|
|
141
161
|
} from "../commands/ListInferenceProfilesCommand";
|
|
162
|
+
import {
|
|
163
|
+
ListMarketplaceModelEndpointsCommandInput,
|
|
164
|
+
ListMarketplaceModelEndpointsCommandOutput,
|
|
165
|
+
} from "../commands/ListMarketplaceModelEndpointsCommand";
|
|
142
166
|
import {
|
|
143
167
|
ListModelCopyJobsCommandInput,
|
|
144
168
|
ListModelCopyJobsCommandOutput,
|
|
@@ -155,6 +179,10 @@ import {
|
|
|
155
179
|
ListModelInvocationJobsCommandInput,
|
|
156
180
|
ListModelInvocationJobsCommandOutput,
|
|
157
181
|
} from "../commands/ListModelInvocationJobsCommand";
|
|
182
|
+
import {
|
|
183
|
+
ListPromptRoutersCommandInput,
|
|
184
|
+
ListPromptRoutersCommandOutput,
|
|
185
|
+
} from "../commands/ListPromptRoutersCommand";
|
|
158
186
|
import {
|
|
159
187
|
ListProvisionedModelThroughputsCommandInput,
|
|
160
188
|
ListProvisionedModelThroughputsCommandOutput,
|
|
@@ -167,6 +195,10 @@ import {
|
|
|
167
195
|
PutModelInvocationLoggingConfigurationCommandInput,
|
|
168
196
|
PutModelInvocationLoggingConfigurationCommandOutput,
|
|
169
197
|
} from "../commands/PutModelInvocationLoggingConfigurationCommand";
|
|
198
|
+
import {
|
|
199
|
+
RegisterMarketplaceModelEndpointCommandInput,
|
|
200
|
+
RegisterMarketplaceModelEndpointCommandOutput,
|
|
201
|
+
} from "../commands/RegisterMarketplaceModelEndpointCommand";
|
|
170
202
|
import {
|
|
171
203
|
StopEvaluationJobCommandInput,
|
|
172
204
|
StopEvaluationJobCommandOutput,
|
|
@@ -191,6 +223,10 @@ import {
|
|
|
191
223
|
UpdateGuardrailCommandInput,
|
|
192
224
|
UpdateGuardrailCommandOutput,
|
|
193
225
|
} from "../commands/UpdateGuardrailCommand";
|
|
226
|
+
import {
|
|
227
|
+
UpdateMarketplaceModelEndpointCommandInput,
|
|
228
|
+
UpdateMarketplaceModelEndpointCommandOutput,
|
|
229
|
+
} from "../commands/UpdateMarketplaceModelEndpointCommand";
|
|
194
230
|
import {
|
|
195
231
|
UpdateProvisionedModelThroughputCommandInput,
|
|
196
232
|
UpdateProvisionedModelThroughputCommandOutput,
|
|
@@ -215,6 +251,10 @@ export declare const se_CreateInferenceProfileCommand: (
|
|
|
215
251
|
input: CreateInferenceProfileCommandInput,
|
|
216
252
|
context: __SerdeContext
|
|
217
253
|
) => Promise<__HttpRequest>;
|
|
254
|
+
export declare const se_CreateMarketplaceModelEndpointCommand: (
|
|
255
|
+
input: CreateMarketplaceModelEndpointCommandInput,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<__HttpRequest>;
|
|
218
258
|
export declare const se_CreateModelCopyJobCommand: (
|
|
219
259
|
input: CreateModelCopyJobCommandInput,
|
|
220
260
|
context: __SerdeContext
|
|
@@ -251,6 +291,10 @@ export declare const se_DeleteInferenceProfileCommand: (
|
|
|
251
291
|
input: DeleteInferenceProfileCommandInput,
|
|
252
292
|
context: __SerdeContext
|
|
253
293
|
) => Promise<__HttpRequest>;
|
|
294
|
+
export declare const se_DeleteMarketplaceModelEndpointCommand: (
|
|
295
|
+
input: DeleteMarketplaceModelEndpointCommandInput,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<__HttpRequest>;
|
|
254
298
|
export declare const se_DeleteModelInvocationLoggingConfigurationCommand: (
|
|
255
299
|
input: DeleteModelInvocationLoggingConfigurationCommandInput,
|
|
256
300
|
context: __SerdeContext
|
|
@@ -259,6 +303,10 @@ export declare const se_DeleteProvisionedModelThroughputCommand: (
|
|
|
259
303
|
input: DeleteProvisionedModelThroughputCommandInput,
|
|
260
304
|
context: __SerdeContext
|
|
261
305
|
) => Promise<__HttpRequest>;
|
|
306
|
+
export declare const se_DeregisterMarketplaceModelEndpointCommand: (
|
|
307
|
+
input: DeregisterMarketplaceModelEndpointCommandInput,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<__HttpRequest>;
|
|
262
310
|
export declare const se_GetCustomModelCommand: (
|
|
263
311
|
input: GetCustomModelCommandInput,
|
|
264
312
|
context: __SerdeContext
|
|
@@ -283,6 +331,10 @@ export declare const se_GetInferenceProfileCommand: (
|
|
|
283
331
|
input: GetInferenceProfileCommandInput,
|
|
284
332
|
context: __SerdeContext
|
|
285
333
|
) => Promise<__HttpRequest>;
|
|
334
|
+
export declare const se_GetMarketplaceModelEndpointCommand: (
|
|
335
|
+
input: GetMarketplaceModelEndpointCommandInput,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<__HttpRequest>;
|
|
286
338
|
export declare const se_GetModelCopyJobCommand: (
|
|
287
339
|
input: GetModelCopyJobCommandInput,
|
|
288
340
|
context: __SerdeContext
|
|
@@ -303,6 +355,10 @@ export declare const se_GetModelInvocationLoggingConfigurationCommand: (
|
|
|
303
355
|
input: GetModelInvocationLoggingConfigurationCommandInput,
|
|
304
356
|
context: __SerdeContext
|
|
305
357
|
) => Promise<__HttpRequest>;
|
|
358
|
+
export declare const se_GetPromptRouterCommand: (
|
|
359
|
+
input: GetPromptRouterCommandInput,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<__HttpRequest>;
|
|
306
362
|
export declare const se_GetProvisionedModelThroughputCommand: (
|
|
307
363
|
input: GetProvisionedModelThroughputCommandInput,
|
|
308
364
|
context: __SerdeContext
|
|
@@ -331,6 +387,10 @@ export declare const se_ListInferenceProfilesCommand: (
|
|
|
331
387
|
input: ListInferenceProfilesCommandInput,
|
|
332
388
|
context: __SerdeContext
|
|
333
389
|
) => Promise<__HttpRequest>;
|
|
390
|
+
export declare const se_ListMarketplaceModelEndpointsCommand: (
|
|
391
|
+
input: ListMarketplaceModelEndpointsCommandInput,
|
|
392
|
+
context: __SerdeContext
|
|
393
|
+
) => Promise<__HttpRequest>;
|
|
334
394
|
export declare const se_ListModelCopyJobsCommand: (
|
|
335
395
|
input: ListModelCopyJobsCommandInput,
|
|
336
396
|
context: __SerdeContext
|
|
@@ -347,6 +407,10 @@ export declare const se_ListModelInvocationJobsCommand: (
|
|
|
347
407
|
input: ListModelInvocationJobsCommandInput,
|
|
348
408
|
context: __SerdeContext
|
|
349
409
|
) => Promise<__HttpRequest>;
|
|
410
|
+
export declare const se_ListPromptRoutersCommand: (
|
|
411
|
+
input: ListPromptRoutersCommandInput,
|
|
412
|
+
context: __SerdeContext
|
|
413
|
+
) => Promise<__HttpRequest>;
|
|
350
414
|
export declare const se_ListProvisionedModelThroughputsCommand: (
|
|
351
415
|
input: ListProvisionedModelThroughputsCommandInput,
|
|
352
416
|
context: __SerdeContext
|
|
@@ -359,6 +423,10 @@ export declare const se_PutModelInvocationLoggingConfigurationCommand: (
|
|
|
359
423
|
input: PutModelInvocationLoggingConfigurationCommandInput,
|
|
360
424
|
context: __SerdeContext
|
|
361
425
|
) => Promise<__HttpRequest>;
|
|
426
|
+
export declare const se_RegisterMarketplaceModelEndpointCommand: (
|
|
427
|
+
input: RegisterMarketplaceModelEndpointCommandInput,
|
|
428
|
+
context: __SerdeContext
|
|
429
|
+
) => Promise<__HttpRequest>;
|
|
362
430
|
export declare const se_StopEvaluationJobCommand: (
|
|
363
431
|
input: StopEvaluationJobCommandInput,
|
|
364
432
|
context: __SerdeContext
|
|
@@ -383,6 +451,10 @@ export declare const se_UpdateGuardrailCommand: (
|
|
|
383
451
|
input: UpdateGuardrailCommandInput,
|
|
384
452
|
context: __SerdeContext
|
|
385
453
|
) => Promise<__HttpRequest>;
|
|
454
|
+
export declare const se_UpdateMarketplaceModelEndpointCommand: (
|
|
455
|
+
input: UpdateMarketplaceModelEndpointCommandInput,
|
|
456
|
+
context: __SerdeContext
|
|
457
|
+
) => Promise<__HttpRequest>;
|
|
386
458
|
export declare const se_UpdateProvisionedModelThroughputCommand: (
|
|
387
459
|
input: UpdateProvisionedModelThroughputCommandInput,
|
|
388
460
|
context: __SerdeContext
|
|
@@ -407,6 +479,10 @@ export declare const de_CreateInferenceProfileCommand: (
|
|
|
407
479
|
output: __HttpResponse,
|
|
408
480
|
context: __SerdeContext
|
|
409
481
|
) => Promise<CreateInferenceProfileCommandOutput>;
|
|
482
|
+
export declare const de_CreateMarketplaceModelEndpointCommand: (
|
|
483
|
+
output: __HttpResponse,
|
|
484
|
+
context: __SerdeContext
|
|
485
|
+
) => Promise<CreateMarketplaceModelEndpointCommandOutput>;
|
|
410
486
|
export declare const de_CreateModelCopyJobCommand: (
|
|
411
487
|
output: __HttpResponse,
|
|
412
488
|
context: __SerdeContext
|
|
@@ -443,6 +519,10 @@ export declare const de_DeleteInferenceProfileCommand: (
|
|
|
443
519
|
output: __HttpResponse,
|
|
444
520
|
context: __SerdeContext
|
|
445
521
|
) => Promise<DeleteInferenceProfileCommandOutput>;
|
|
522
|
+
export declare const de_DeleteMarketplaceModelEndpointCommand: (
|
|
523
|
+
output: __HttpResponse,
|
|
524
|
+
context: __SerdeContext
|
|
525
|
+
) => Promise<DeleteMarketplaceModelEndpointCommandOutput>;
|
|
446
526
|
export declare const de_DeleteModelInvocationLoggingConfigurationCommand: (
|
|
447
527
|
output: __HttpResponse,
|
|
448
528
|
context: __SerdeContext
|
|
@@ -451,6 +531,10 @@ export declare const de_DeleteProvisionedModelThroughputCommand: (
|
|
|
451
531
|
output: __HttpResponse,
|
|
452
532
|
context: __SerdeContext
|
|
453
533
|
) => Promise<DeleteProvisionedModelThroughputCommandOutput>;
|
|
534
|
+
export declare const de_DeregisterMarketplaceModelEndpointCommand: (
|
|
535
|
+
output: __HttpResponse,
|
|
536
|
+
context: __SerdeContext
|
|
537
|
+
) => Promise<DeregisterMarketplaceModelEndpointCommandOutput>;
|
|
454
538
|
export declare const de_GetCustomModelCommand: (
|
|
455
539
|
output: __HttpResponse,
|
|
456
540
|
context: __SerdeContext
|
|
@@ -475,6 +559,10 @@ export declare const de_GetInferenceProfileCommand: (
|
|
|
475
559
|
output: __HttpResponse,
|
|
476
560
|
context: __SerdeContext
|
|
477
561
|
) => Promise<GetInferenceProfileCommandOutput>;
|
|
562
|
+
export declare const de_GetMarketplaceModelEndpointCommand: (
|
|
563
|
+
output: __HttpResponse,
|
|
564
|
+
context: __SerdeContext
|
|
565
|
+
) => Promise<GetMarketplaceModelEndpointCommandOutput>;
|
|
478
566
|
export declare const de_GetModelCopyJobCommand: (
|
|
479
567
|
output: __HttpResponse,
|
|
480
568
|
context: __SerdeContext
|
|
@@ -495,6 +583,10 @@ export declare const de_GetModelInvocationLoggingConfigurationCommand: (
|
|
|
495
583
|
output: __HttpResponse,
|
|
496
584
|
context: __SerdeContext
|
|
497
585
|
) => Promise<GetModelInvocationLoggingConfigurationCommandOutput>;
|
|
586
|
+
export declare const de_GetPromptRouterCommand: (
|
|
587
|
+
output: __HttpResponse,
|
|
588
|
+
context: __SerdeContext
|
|
589
|
+
) => Promise<GetPromptRouterCommandOutput>;
|
|
498
590
|
export declare const de_GetProvisionedModelThroughputCommand: (
|
|
499
591
|
output: __HttpResponse,
|
|
500
592
|
context: __SerdeContext
|
|
@@ -523,6 +615,10 @@ export declare const de_ListInferenceProfilesCommand: (
|
|
|
523
615
|
output: __HttpResponse,
|
|
524
616
|
context: __SerdeContext
|
|
525
617
|
) => Promise<ListInferenceProfilesCommandOutput>;
|
|
618
|
+
export declare const de_ListMarketplaceModelEndpointsCommand: (
|
|
619
|
+
output: __HttpResponse,
|
|
620
|
+
context: __SerdeContext
|
|
621
|
+
) => Promise<ListMarketplaceModelEndpointsCommandOutput>;
|
|
526
622
|
export declare const de_ListModelCopyJobsCommand: (
|
|
527
623
|
output: __HttpResponse,
|
|
528
624
|
context: __SerdeContext
|
|
@@ -539,6 +635,10 @@ export declare const de_ListModelInvocationJobsCommand: (
|
|
|
539
635
|
output: __HttpResponse,
|
|
540
636
|
context: __SerdeContext
|
|
541
637
|
) => Promise<ListModelInvocationJobsCommandOutput>;
|
|
638
|
+
export declare const de_ListPromptRoutersCommand: (
|
|
639
|
+
output: __HttpResponse,
|
|
640
|
+
context: __SerdeContext
|
|
641
|
+
) => Promise<ListPromptRoutersCommandOutput>;
|
|
542
642
|
export declare const de_ListProvisionedModelThroughputsCommand: (
|
|
543
643
|
output: __HttpResponse,
|
|
544
644
|
context: __SerdeContext
|
|
@@ -551,6 +651,10 @@ export declare const de_PutModelInvocationLoggingConfigurationCommand: (
|
|
|
551
651
|
output: __HttpResponse,
|
|
552
652
|
context: __SerdeContext
|
|
553
653
|
) => Promise<PutModelInvocationLoggingConfigurationCommandOutput>;
|
|
654
|
+
export declare const de_RegisterMarketplaceModelEndpointCommand: (
|
|
655
|
+
output: __HttpResponse,
|
|
656
|
+
context: __SerdeContext
|
|
657
|
+
) => Promise<RegisterMarketplaceModelEndpointCommandOutput>;
|
|
554
658
|
export declare const de_StopEvaluationJobCommand: (
|
|
555
659
|
output: __HttpResponse,
|
|
556
660
|
context: __SerdeContext
|
|
@@ -575,6 +679,10 @@ export declare const de_UpdateGuardrailCommand: (
|
|
|
575
679
|
output: __HttpResponse,
|
|
576
680
|
context: __SerdeContext
|
|
577
681
|
) => Promise<UpdateGuardrailCommandOutput>;
|
|
682
|
+
export declare const de_UpdateMarketplaceModelEndpointCommand: (
|
|
683
|
+
output: __HttpResponse,
|
|
684
|
+
context: __SerdeContext
|
|
685
|
+
) => Promise<UpdateMarketplaceModelEndpointCommandOutput>;
|
|
578
686
|
export declare const de_UpdateProvisionedModelThroughputCommand: (
|
|
579
687
|
output: __HttpResponse,
|
|
580
688
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.706.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock",
|