@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
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListMarketplaceModelEndpointsCommandInput, ListMarketplaceModelEndpointsCommandOutput } from "../commands/ListMarketplaceModelEndpointsCommand";
|
|
3
|
+
import { BedrockPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListMarketplaceModelEndpoints: (config: BedrockPaginationConfiguration, input: ListMarketplaceModelEndpointsCommandInput, ...rest: any[]) => Paginator<ListMarketplaceModelEndpointsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListPromptRoutersCommandInput, ListPromptRoutersCommandOutput } from "../commands/ListPromptRoutersCommand";
|
|
3
|
+
import { BedrockPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListPromptRouters: (config: BedrockPaginationConfiguration, input: ListPromptRoutersCommandInput, ...rest: any[]) => Paginator<ListPromptRoutersCommandOutput>;
|
|
@@ -4,8 +4,10 @@ export * from "./ListEvaluationJobsPaginator";
|
|
|
4
4
|
export * from "./ListGuardrailsPaginator";
|
|
5
5
|
export * from "./ListImportedModelsPaginator";
|
|
6
6
|
export * from "./ListInferenceProfilesPaginator";
|
|
7
|
+
export * from "./ListMarketplaceModelEndpointsPaginator";
|
|
7
8
|
export * from "./ListModelCopyJobsPaginator";
|
|
8
9
|
export * from "./ListModelCustomizationJobsPaginator";
|
|
9
10
|
export * from "./ListModelImportJobsPaginator";
|
|
10
11
|
export * from "./ListModelInvocationJobsPaginator";
|
|
12
|
+
export * from "./ListPromptRoutersPaginator";
|
|
11
13
|
export * from "./ListProvisionedModelThroughputsPaginator";
|
|
@@ -5,6 +5,7 @@ import { CreateEvaluationJobCommandInput, CreateEvaluationJobCommandOutput } fro
|
|
|
5
5
|
import { CreateGuardrailCommandInput, CreateGuardrailCommandOutput } from "../commands/CreateGuardrailCommand";
|
|
6
6
|
import { CreateGuardrailVersionCommandInput, CreateGuardrailVersionCommandOutput } from "../commands/CreateGuardrailVersionCommand";
|
|
7
7
|
import { CreateInferenceProfileCommandInput, CreateInferenceProfileCommandOutput } from "../commands/CreateInferenceProfileCommand";
|
|
8
|
+
import { CreateMarketplaceModelEndpointCommandInput, CreateMarketplaceModelEndpointCommandOutput } from "../commands/CreateMarketplaceModelEndpointCommand";
|
|
8
9
|
import { CreateModelCopyJobCommandInput, CreateModelCopyJobCommandOutput } from "../commands/CreateModelCopyJobCommand";
|
|
9
10
|
import { CreateModelCustomizationJobCommandInput, CreateModelCustomizationJobCommandOutput } from "../commands/CreateModelCustomizationJobCommand";
|
|
10
11
|
import { CreateModelImportJobCommandInput, CreateModelImportJobCommandOutput } from "../commands/CreateModelImportJobCommand";
|
|
@@ -14,19 +15,23 @@ import { DeleteCustomModelCommandInput, DeleteCustomModelCommandOutput } from ".
|
|
|
14
15
|
import { DeleteGuardrailCommandInput, DeleteGuardrailCommandOutput } from "../commands/DeleteGuardrailCommand";
|
|
15
16
|
import { DeleteImportedModelCommandInput, DeleteImportedModelCommandOutput } from "../commands/DeleteImportedModelCommand";
|
|
16
17
|
import { DeleteInferenceProfileCommandInput, DeleteInferenceProfileCommandOutput } from "../commands/DeleteInferenceProfileCommand";
|
|
18
|
+
import { DeleteMarketplaceModelEndpointCommandInput, DeleteMarketplaceModelEndpointCommandOutput } from "../commands/DeleteMarketplaceModelEndpointCommand";
|
|
17
19
|
import { DeleteModelInvocationLoggingConfigurationCommandInput, DeleteModelInvocationLoggingConfigurationCommandOutput } from "../commands/DeleteModelInvocationLoggingConfigurationCommand";
|
|
18
20
|
import { DeleteProvisionedModelThroughputCommandInput, DeleteProvisionedModelThroughputCommandOutput } from "../commands/DeleteProvisionedModelThroughputCommand";
|
|
21
|
+
import { DeregisterMarketplaceModelEndpointCommandInput, DeregisterMarketplaceModelEndpointCommandOutput } from "../commands/DeregisterMarketplaceModelEndpointCommand";
|
|
19
22
|
import { GetCustomModelCommandInput, GetCustomModelCommandOutput } from "../commands/GetCustomModelCommand";
|
|
20
23
|
import { GetEvaluationJobCommandInput, GetEvaluationJobCommandOutput } from "../commands/GetEvaluationJobCommand";
|
|
21
24
|
import { GetFoundationModelCommandInput, GetFoundationModelCommandOutput } from "../commands/GetFoundationModelCommand";
|
|
22
25
|
import { GetGuardrailCommandInput, GetGuardrailCommandOutput } from "../commands/GetGuardrailCommand";
|
|
23
26
|
import { GetImportedModelCommandInput, GetImportedModelCommandOutput } from "../commands/GetImportedModelCommand";
|
|
24
27
|
import { GetInferenceProfileCommandInput, GetInferenceProfileCommandOutput } from "../commands/GetInferenceProfileCommand";
|
|
28
|
+
import { GetMarketplaceModelEndpointCommandInput, GetMarketplaceModelEndpointCommandOutput } from "../commands/GetMarketplaceModelEndpointCommand";
|
|
25
29
|
import { GetModelCopyJobCommandInput, GetModelCopyJobCommandOutput } from "../commands/GetModelCopyJobCommand";
|
|
26
30
|
import { GetModelCustomizationJobCommandInput, GetModelCustomizationJobCommandOutput } from "../commands/GetModelCustomizationJobCommand";
|
|
27
31
|
import { GetModelImportJobCommandInput, GetModelImportJobCommandOutput } from "../commands/GetModelImportJobCommand";
|
|
28
32
|
import { GetModelInvocationJobCommandInput, GetModelInvocationJobCommandOutput } from "../commands/GetModelInvocationJobCommand";
|
|
29
33
|
import { GetModelInvocationLoggingConfigurationCommandInput, GetModelInvocationLoggingConfigurationCommandOutput } from "../commands/GetModelInvocationLoggingConfigurationCommand";
|
|
34
|
+
import { GetPromptRouterCommandInput, GetPromptRouterCommandOutput } from "../commands/GetPromptRouterCommand";
|
|
30
35
|
import { GetProvisionedModelThroughputCommandInput, GetProvisionedModelThroughputCommandOutput } from "../commands/GetProvisionedModelThroughputCommand";
|
|
31
36
|
import { ListCustomModelsCommandInput, ListCustomModelsCommandOutput } from "../commands/ListCustomModelsCommand";
|
|
32
37
|
import { ListEvaluationJobsCommandInput, ListEvaluationJobsCommandOutput } from "../commands/ListEvaluationJobsCommand";
|
|
@@ -34,19 +39,23 @@ import { ListFoundationModelsCommandInput, ListFoundationModelsCommandOutput } f
|
|
|
34
39
|
import { ListGuardrailsCommandInput, ListGuardrailsCommandOutput } from "../commands/ListGuardrailsCommand";
|
|
35
40
|
import { ListImportedModelsCommandInput, ListImportedModelsCommandOutput } from "../commands/ListImportedModelsCommand";
|
|
36
41
|
import { ListInferenceProfilesCommandInput, ListInferenceProfilesCommandOutput } from "../commands/ListInferenceProfilesCommand";
|
|
42
|
+
import { ListMarketplaceModelEndpointsCommandInput, ListMarketplaceModelEndpointsCommandOutput } from "../commands/ListMarketplaceModelEndpointsCommand";
|
|
37
43
|
import { ListModelCopyJobsCommandInput, ListModelCopyJobsCommandOutput } from "../commands/ListModelCopyJobsCommand";
|
|
38
44
|
import { ListModelCustomizationJobsCommandInput, ListModelCustomizationJobsCommandOutput } from "../commands/ListModelCustomizationJobsCommand";
|
|
39
45
|
import { ListModelImportJobsCommandInput, ListModelImportJobsCommandOutput } from "../commands/ListModelImportJobsCommand";
|
|
40
46
|
import { ListModelInvocationJobsCommandInput, ListModelInvocationJobsCommandOutput } from "../commands/ListModelInvocationJobsCommand";
|
|
47
|
+
import { ListPromptRoutersCommandInput, ListPromptRoutersCommandOutput } from "../commands/ListPromptRoutersCommand";
|
|
41
48
|
import { ListProvisionedModelThroughputsCommandInput, ListProvisionedModelThroughputsCommandOutput } from "../commands/ListProvisionedModelThroughputsCommand";
|
|
42
49
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
43
50
|
import { PutModelInvocationLoggingConfigurationCommandInput, PutModelInvocationLoggingConfigurationCommandOutput } from "../commands/PutModelInvocationLoggingConfigurationCommand";
|
|
51
|
+
import { RegisterMarketplaceModelEndpointCommandInput, RegisterMarketplaceModelEndpointCommandOutput } from "../commands/RegisterMarketplaceModelEndpointCommand";
|
|
44
52
|
import { StopEvaluationJobCommandInput, StopEvaluationJobCommandOutput } from "../commands/StopEvaluationJobCommand";
|
|
45
53
|
import { StopModelCustomizationJobCommandInput, StopModelCustomizationJobCommandOutput } from "../commands/StopModelCustomizationJobCommand";
|
|
46
54
|
import { StopModelInvocationJobCommandInput, StopModelInvocationJobCommandOutput } from "../commands/StopModelInvocationJobCommand";
|
|
47
55
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
48
56
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
49
57
|
import { UpdateGuardrailCommandInput, UpdateGuardrailCommandOutput } from "../commands/UpdateGuardrailCommand";
|
|
58
|
+
import { UpdateMarketplaceModelEndpointCommandInput, UpdateMarketplaceModelEndpointCommandOutput } from "../commands/UpdateMarketplaceModelEndpointCommand";
|
|
50
59
|
import { UpdateProvisionedModelThroughputCommandInput, UpdateProvisionedModelThroughputCommandOutput } from "../commands/UpdateProvisionedModelThroughputCommand";
|
|
51
60
|
/**
|
|
52
61
|
* serializeAws_restJson1BatchDeleteEvaluationJobCommand
|
|
@@ -68,6 +77,10 @@ export declare const se_CreateGuardrailVersionCommand: (input: CreateGuardrailVe
|
|
|
68
77
|
* serializeAws_restJson1CreateInferenceProfileCommand
|
|
69
78
|
*/
|
|
70
79
|
export declare const se_CreateInferenceProfileCommand: (input: CreateInferenceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
|
+
/**
|
|
81
|
+
* serializeAws_restJson1CreateMarketplaceModelEndpointCommand
|
|
82
|
+
*/
|
|
83
|
+
export declare const se_CreateMarketplaceModelEndpointCommand: (input: CreateMarketplaceModelEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
84
|
/**
|
|
72
85
|
* serializeAws_restJson1CreateModelCopyJobCommand
|
|
73
86
|
*/
|
|
@@ -104,6 +117,10 @@ export declare const se_DeleteImportedModelCommand: (input: DeleteImportedModelC
|
|
|
104
117
|
* serializeAws_restJson1DeleteInferenceProfileCommand
|
|
105
118
|
*/
|
|
106
119
|
export declare const se_DeleteInferenceProfileCommand: (input: DeleteInferenceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
120
|
+
/**
|
|
121
|
+
* serializeAws_restJson1DeleteMarketplaceModelEndpointCommand
|
|
122
|
+
*/
|
|
123
|
+
export declare const se_DeleteMarketplaceModelEndpointCommand: (input: DeleteMarketplaceModelEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
124
|
/**
|
|
108
125
|
* serializeAws_restJson1DeleteModelInvocationLoggingConfigurationCommand
|
|
109
126
|
*/
|
|
@@ -112,6 +129,10 @@ export declare const se_DeleteModelInvocationLoggingConfigurationCommand: (input
|
|
|
112
129
|
* serializeAws_restJson1DeleteProvisionedModelThroughputCommand
|
|
113
130
|
*/
|
|
114
131
|
export declare const se_DeleteProvisionedModelThroughputCommand: (input: DeleteProvisionedModelThroughputCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
132
|
+
/**
|
|
133
|
+
* serializeAws_restJson1DeregisterMarketplaceModelEndpointCommand
|
|
134
|
+
*/
|
|
135
|
+
export declare const se_DeregisterMarketplaceModelEndpointCommand: (input: DeregisterMarketplaceModelEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
115
136
|
/**
|
|
116
137
|
* serializeAws_restJson1GetCustomModelCommand
|
|
117
138
|
*/
|
|
@@ -136,6 +157,10 @@ export declare const se_GetImportedModelCommand: (input: GetImportedModelCommand
|
|
|
136
157
|
* serializeAws_restJson1GetInferenceProfileCommand
|
|
137
158
|
*/
|
|
138
159
|
export declare const se_GetInferenceProfileCommand: (input: GetInferenceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
160
|
+
/**
|
|
161
|
+
* serializeAws_restJson1GetMarketplaceModelEndpointCommand
|
|
162
|
+
*/
|
|
163
|
+
export declare const se_GetMarketplaceModelEndpointCommand: (input: GetMarketplaceModelEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
139
164
|
/**
|
|
140
165
|
* serializeAws_restJson1GetModelCopyJobCommand
|
|
141
166
|
*/
|
|
@@ -156,6 +181,10 @@ export declare const se_GetModelInvocationJobCommand: (input: GetModelInvocation
|
|
|
156
181
|
* serializeAws_restJson1GetModelInvocationLoggingConfigurationCommand
|
|
157
182
|
*/
|
|
158
183
|
export declare const se_GetModelInvocationLoggingConfigurationCommand: (input: GetModelInvocationLoggingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
184
|
+
/**
|
|
185
|
+
* serializeAws_restJson1GetPromptRouterCommand
|
|
186
|
+
*/
|
|
187
|
+
export declare const se_GetPromptRouterCommand: (input: GetPromptRouterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
159
188
|
/**
|
|
160
189
|
* serializeAws_restJson1GetProvisionedModelThroughputCommand
|
|
161
190
|
*/
|
|
@@ -184,6 +213,10 @@ export declare const se_ListImportedModelsCommand: (input: ListImportedModelsCom
|
|
|
184
213
|
* serializeAws_restJson1ListInferenceProfilesCommand
|
|
185
214
|
*/
|
|
186
215
|
export declare const se_ListInferenceProfilesCommand: (input: ListInferenceProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
216
|
+
/**
|
|
217
|
+
* serializeAws_restJson1ListMarketplaceModelEndpointsCommand
|
|
218
|
+
*/
|
|
219
|
+
export declare const se_ListMarketplaceModelEndpointsCommand: (input: ListMarketplaceModelEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
187
220
|
/**
|
|
188
221
|
* serializeAws_restJson1ListModelCopyJobsCommand
|
|
189
222
|
*/
|
|
@@ -200,6 +233,10 @@ export declare const se_ListModelImportJobsCommand: (input: ListModelImportJobsC
|
|
|
200
233
|
* serializeAws_restJson1ListModelInvocationJobsCommand
|
|
201
234
|
*/
|
|
202
235
|
export declare const se_ListModelInvocationJobsCommand: (input: ListModelInvocationJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
236
|
+
/**
|
|
237
|
+
* serializeAws_restJson1ListPromptRoutersCommand
|
|
238
|
+
*/
|
|
239
|
+
export declare const se_ListPromptRoutersCommand: (input: ListPromptRoutersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
203
240
|
/**
|
|
204
241
|
* serializeAws_restJson1ListProvisionedModelThroughputsCommand
|
|
205
242
|
*/
|
|
@@ -212,6 +249,10 @@ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceC
|
|
|
212
249
|
* serializeAws_restJson1PutModelInvocationLoggingConfigurationCommand
|
|
213
250
|
*/
|
|
214
251
|
export declare const se_PutModelInvocationLoggingConfigurationCommand: (input: PutModelInvocationLoggingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
252
|
+
/**
|
|
253
|
+
* serializeAws_restJson1RegisterMarketplaceModelEndpointCommand
|
|
254
|
+
*/
|
|
255
|
+
export declare const se_RegisterMarketplaceModelEndpointCommand: (input: RegisterMarketplaceModelEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
215
256
|
/**
|
|
216
257
|
* serializeAws_restJson1StopEvaluationJobCommand
|
|
217
258
|
*/
|
|
@@ -236,6 +277,10 @@ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput,
|
|
|
236
277
|
* serializeAws_restJson1UpdateGuardrailCommand
|
|
237
278
|
*/
|
|
238
279
|
export declare const se_UpdateGuardrailCommand: (input: UpdateGuardrailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
280
|
+
/**
|
|
281
|
+
* serializeAws_restJson1UpdateMarketplaceModelEndpointCommand
|
|
282
|
+
*/
|
|
283
|
+
export declare const se_UpdateMarketplaceModelEndpointCommand: (input: UpdateMarketplaceModelEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
239
284
|
/**
|
|
240
285
|
* serializeAws_restJson1UpdateProvisionedModelThroughputCommand
|
|
241
286
|
*/
|
|
@@ -260,6 +305,10 @@ export declare const de_CreateGuardrailVersionCommand: (output: __HttpResponse,
|
|
|
260
305
|
* deserializeAws_restJson1CreateInferenceProfileCommand
|
|
261
306
|
*/
|
|
262
307
|
export declare const de_CreateInferenceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateInferenceProfileCommandOutput>;
|
|
308
|
+
/**
|
|
309
|
+
* deserializeAws_restJson1CreateMarketplaceModelEndpointCommand
|
|
310
|
+
*/
|
|
311
|
+
export declare const de_CreateMarketplaceModelEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMarketplaceModelEndpointCommandOutput>;
|
|
263
312
|
/**
|
|
264
313
|
* deserializeAws_restJson1CreateModelCopyJobCommand
|
|
265
314
|
*/
|
|
@@ -296,6 +345,10 @@ export declare const de_DeleteImportedModelCommand: (output: __HttpResponse, con
|
|
|
296
345
|
* deserializeAws_restJson1DeleteInferenceProfileCommand
|
|
297
346
|
*/
|
|
298
347
|
export declare const de_DeleteInferenceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteInferenceProfileCommandOutput>;
|
|
348
|
+
/**
|
|
349
|
+
* deserializeAws_restJson1DeleteMarketplaceModelEndpointCommand
|
|
350
|
+
*/
|
|
351
|
+
export declare const de_DeleteMarketplaceModelEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMarketplaceModelEndpointCommandOutput>;
|
|
299
352
|
/**
|
|
300
353
|
* deserializeAws_restJson1DeleteModelInvocationLoggingConfigurationCommand
|
|
301
354
|
*/
|
|
@@ -304,6 +357,10 @@ export declare const de_DeleteModelInvocationLoggingConfigurationCommand: (outpu
|
|
|
304
357
|
* deserializeAws_restJson1DeleteProvisionedModelThroughputCommand
|
|
305
358
|
*/
|
|
306
359
|
export declare const de_DeleteProvisionedModelThroughputCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProvisionedModelThroughputCommandOutput>;
|
|
360
|
+
/**
|
|
361
|
+
* deserializeAws_restJson1DeregisterMarketplaceModelEndpointCommand
|
|
362
|
+
*/
|
|
363
|
+
export declare const de_DeregisterMarketplaceModelEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterMarketplaceModelEndpointCommandOutput>;
|
|
307
364
|
/**
|
|
308
365
|
* deserializeAws_restJson1GetCustomModelCommand
|
|
309
366
|
*/
|
|
@@ -328,6 +385,10 @@ export declare const de_GetImportedModelCommand: (output: __HttpResponse, contex
|
|
|
328
385
|
* deserializeAws_restJson1GetInferenceProfileCommand
|
|
329
386
|
*/
|
|
330
387
|
export declare const de_GetInferenceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInferenceProfileCommandOutput>;
|
|
388
|
+
/**
|
|
389
|
+
* deserializeAws_restJson1GetMarketplaceModelEndpointCommand
|
|
390
|
+
*/
|
|
391
|
+
export declare const de_GetMarketplaceModelEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMarketplaceModelEndpointCommandOutput>;
|
|
331
392
|
/**
|
|
332
393
|
* deserializeAws_restJson1GetModelCopyJobCommand
|
|
333
394
|
*/
|
|
@@ -348,6 +409,10 @@ export declare const de_GetModelInvocationJobCommand: (output: __HttpResponse, c
|
|
|
348
409
|
* deserializeAws_restJson1GetModelInvocationLoggingConfigurationCommand
|
|
349
410
|
*/
|
|
350
411
|
export declare const de_GetModelInvocationLoggingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetModelInvocationLoggingConfigurationCommandOutput>;
|
|
412
|
+
/**
|
|
413
|
+
* deserializeAws_restJson1GetPromptRouterCommand
|
|
414
|
+
*/
|
|
415
|
+
export declare const de_GetPromptRouterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPromptRouterCommandOutput>;
|
|
351
416
|
/**
|
|
352
417
|
* deserializeAws_restJson1GetProvisionedModelThroughputCommand
|
|
353
418
|
*/
|
|
@@ -376,6 +441,10 @@ export declare const de_ListImportedModelsCommand: (output: __HttpResponse, cont
|
|
|
376
441
|
* deserializeAws_restJson1ListInferenceProfilesCommand
|
|
377
442
|
*/
|
|
378
443
|
export declare const de_ListInferenceProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceProfilesCommandOutput>;
|
|
444
|
+
/**
|
|
445
|
+
* deserializeAws_restJson1ListMarketplaceModelEndpointsCommand
|
|
446
|
+
*/
|
|
447
|
+
export declare const de_ListMarketplaceModelEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMarketplaceModelEndpointsCommandOutput>;
|
|
379
448
|
/**
|
|
380
449
|
* deserializeAws_restJson1ListModelCopyJobsCommand
|
|
381
450
|
*/
|
|
@@ -392,6 +461,10 @@ export declare const de_ListModelImportJobsCommand: (output: __HttpResponse, con
|
|
|
392
461
|
* deserializeAws_restJson1ListModelInvocationJobsCommand
|
|
393
462
|
*/
|
|
394
463
|
export declare const de_ListModelInvocationJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListModelInvocationJobsCommandOutput>;
|
|
464
|
+
/**
|
|
465
|
+
* deserializeAws_restJson1ListPromptRoutersCommand
|
|
466
|
+
*/
|
|
467
|
+
export declare const de_ListPromptRoutersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPromptRoutersCommandOutput>;
|
|
395
468
|
/**
|
|
396
469
|
* deserializeAws_restJson1ListProvisionedModelThroughputsCommand
|
|
397
470
|
*/
|
|
@@ -404,6 +477,10 @@ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, con
|
|
|
404
477
|
* deserializeAws_restJson1PutModelInvocationLoggingConfigurationCommand
|
|
405
478
|
*/
|
|
406
479
|
export declare const de_PutModelInvocationLoggingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutModelInvocationLoggingConfigurationCommandOutput>;
|
|
480
|
+
/**
|
|
481
|
+
* deserializeAws_restJson1RegisterMarketplaceModelEndpointCommand
|
|
482
|
+
*/
|
|
483
|
+
export declare const de_RegisterMarketplaceModelEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterMarketplaceModelEndpointCommandOutput>;
|
|
407
484
|
/**
|
|
408
485
|
* deserializeAws_restJson1StopEvaluationJobCommand
|
|
409
486
|
*/
|
|
@@ -428,6 +505,10 @@ export declare const de_UntagResourceCommand: (output: __HttpResponse, context:
|
|
|
428
505
|
* deserializeAws_restJson1UpdateGuardrailCommand
|
|
429
506
|
*/
|
|
430
507
|
export declare const de_UpdateGuardrailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGuardrailCommandOutput>;
|
|
508
|
+
/**
|
|
509
|
+
* deserializeAws_restJson1UpdateMarketplaceModelEndpointCommand
|
|
510
|
+
*/
|
|
511
|
+
export declare const de_UpdateMarketplaceModelEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMarketplaceModelEndpointCommandOutput>;
|
|
431
512
|
/**
|
|
432
513
|
* deserializeAws_restJson1UpdateProvisionedModelThroughputCommand
|
|
433
514
|
*/
|
|
@@ -20,6 +20,10 @@ import {
|
|
|
20
20
|
CreateInferenceProfileCommandInput,
|
|
21
21
|
CreateInferenceProfileCommandOutput,
|
|
22
22
|
} from "./commands/CreateInferenceProfileCommand";
|
|
23
|
+
import {
|
|
24
|
+
CreateMarketplaceModelEndpointCommandInput,
|
|
25
|
+
CreateMarketplaceModelEndpointCommandOutput,
|
|
26
|
+
} from "./commands/CreateMarketplaceModelEndpointCommand";
|
|
23
27
|
import {
|
|
24
28
|
CreateModelCopyJobCommandInput,
|
|
25
29
|
CreateModelCopyJobCommandOutput,
|
|
@@ -56,6 +60,10 @@ import {
|
|
|
56
60
|
DeleteInferenceProfileCommandInput,
|
|
57
61
|
DeleteInferenceProfileCommandOutput,
|
|
58
62
|
} from "./commands/DeleteInferenceProfileCommand";
|
|
63
|
+
import {
|
|
64
|
+
DeleteMarketplaceModelEndpointCommandInput,
|
|
65
|
+
DeleteMarketplaceModelEndpointCommandOutput,
|
|
66
|
+
} from "./commands/DeleteMarketplaceModelEndpointCommand";
|
|
59
67
|
import {
|
|
60
68
|
DeleteModelInvocationLoggingConfigurationCommandInput,
|
|
61
69
|
DeleteModelInvocationLoggingConfigurationCommandOutput,
|
|
@@ -64,6 +72,10 @@ import {
|
|
|
64
72
|
DeleteProvisionedModelThroughputCommandInput,
|
|
65
73
|
DeleteProvisionedModelThroughputCommandOutput,
|
|
66
74
|
} from "./commands/DeleteProvisionedModelThroughputCommand";
|
|
75
|
+
import {
|
|
76
|
+
DeregisterMarketplaceModelEndpointCommandInput,
|
|
77
|
+
DeregisterMarketplaceModelEndpointCommandOutput,
|
|
78
|
+
} from "./commands/DeregisterMarketplaceModelEndpointCommand";
|
|
67
79
|
import {
|
|
68
80
|
GetCustomModelCommandInput,
|
|
69
81
|
GetCustomModelCommandOutput,
|
|
@@ -88,6 +100,10 @@ import {
|
|
|
88
100
|
GetInferenceProfileCommandInput,
|
|
89
101
|
GetInferenceProfileCommandOutput,
|
|
90
102
|
} from "./commands/GetInferenceProfileCommand";
|
|
103
|
+
import {
|
|
104
|
+
GetMarketplaceModelEndpointCommandInput,
|
|
105
|
+
GetMarketplaceModelEndpointCommandOutput,
|
|
106
|
+
} from "./commands/GetMarketplaceModelEndpointCommand";
|
|
91
107
|
import {
|
|
92
108
|
GetModelCopyJobCommandInput,
|
|
93
109
|
GetModelCopyJobCommandOutput,
|
|
@@ -108,6 +124,10 @@ import {
|
|
|
108
124
|
GetModelInvocationLoggingConfigurationCommandInput,
|
|
109
125
|
GetModelInvocationLoggingConfigurationCommandOutput,
|
|
110
126
|
} from "./commands/GetModelInvocationLoggingConfigurationCommand";
|
|
127
|
+
import {
|
|
128
|
+
GetPromptRouterCommandInput,
|
|
129
|
+
GetPromptRouterCommandOutput,
|
|
130
|
+
} from "./commands/GetPromptRouterCommand";
|
|
111
131
|
import {
|
|
112
132
|
GetProvisionedModelThroughputCommandInput,
|
|
113
133
|
GetProvisionedModelThroughputCommandOutput,
|
|
@@ -136,6 +156,10 @@ import {
|
|
|
136
156
|
ListInferenceProfilesCommandInput,
|
|
137
157
|
ListInferenceProfilesCommandOutput,
|
|
138
158
|
} from "./commands/ListInferenceProfilesCommand";
|
|
159
|
+
import {
|
|
160
|
+
ListMarketplaceModelEndpointsCommandInput,
|
|
161
|
+
ListMarketplaceModelEndpointsCommandOutput,
|
|
162
|
+
} from "./commands/ListMarketplaceModelEndpointsCommand";
|
|
139
163
|
import {
|
|
140
164
|
ListModelCopyJobsCommandInput,
|
|
141
165
|
ListModelCopyJobsCommandOutput,
|
|
@@ -152,6 +176,10 @@ import {
|
|
|
152
176
|
ListModelInvocationJobsCommandInput,
|
|
153
177
|
ListModelInvocationJobsCommandOutput,
|
|
154
178
|
} from "./commands/ListModelInvocationJobsCommand";
|
|
179
|
+
import {
|
|
180
|
+
ListPromptRoutersCommandInput,
|
|
181
|
+
ListPromptRoutersCommandOutput,
|
|
182
|
+
} from "./commands/ListPromptRoutersCommand";
|
|
155
183
|
import {
|
|
156
184
|
ListProvisionedModelThroughputsCommandInput,
|
|
157
185
|
ListProvisionedModelThroughputsCommandOutput,
|
|
@@ -164,6 +192,10 @@ import {
|
|
|
164
192
|
PutModelInvocationLoggingConfigurationCommandInput,
|
|
165
193
|
PutModelInvocationLoggingConfigurationCommandOutput,
|
|
166
194
|
} from "./commands/PutModelInvocationLoggingConfigurationCommand";
|
|
195
|
+
import {
|
|
196
|
+
RegisterMarketplaceModelEndpointCommandInput,
|
|
197
|
+
RegisterMarketplaceModelEndpointCommandOutput,
|
|
198
|
+
} from "./commands/RegisterMarketplaceModelEndpointCommand";
|
|
167
199
|
import {
|
|
168
200
|
StopEvaluationJobCommandInput,
|
|
169
201
|
StopEvaluationJobCommandOutput,
|
|
@@ -188,6 +220,10 @@ import {
|
|
|
188
220
|
UpdateGuardrailCommandInput,
|
|
189
221
|
UpdateGuardrailCommandOutput,
|
|
190
222
|
} from "./commands/UpdateGuardrailCommand";
|
|
223
|
+
import {
|
|
224
|
+
UpdateMarketplaceModelEndpointCommandInput,
|
|
225
|
+
UpdateMarketplaceModelEndpointCommandOutput,
|
|
226
|
+
} from "./commands/UpdateMarketplaceModelEndpointCommand";
|
|
191
227
|
import {
|
|
192
228
|
UpdateProvisionedModelThroughputCommandInput,
|
|
193
229
|
UpdateProvisionedModelThroughputCommandOutput,
|
|
@@ -258,6 +294,19 @@ export interface Bedrock {
|
|
|
258
294
|
options: __HttpHandlerOptions,
|
|
259
295
|
cb: (err: any, data?: CreateInferenceProfileCommandOutput) => void
|
|
260
296
|
): void;
|
|
297
|
+
createMarketplaceModelEndpoint(
|
|
298
|
+
args: CreateMarketplaceModelEndpointCommandInput,
|
|
299
|
+
options?: __HttpHandlerOptions
|
|
300
|
+
): Promise<CreateMarketplaceModelEndpointCommandOutput>;
|
|
301
|
+
createMarketplaceModelEndpoint(
|
|
302
|
+
args: CreateMarketplaceModelEndpointCommandInput,
|
|
303
|
+
cb: (err: any, data?: CreateMarketplaceModelEndpointCommandOutput) => void
|
|
304
|
+
): void;
|
|
305
|
+
createMarketplaceModelEndpoint(
|
|
306
|
+
args: CreateMarketplaceModelEndpointCommandInput,
|
|
307
|
+
options: __HttpHandlerOptions,
|
|
308
|
+
cb: (err: any, data?: CreateMarketplaceModelEndpointCommandOutput) => void
|
|
309
|
+
): void;
|
|
261
310
|
createModelCopyJob(
|
|
262
311
|
args: CreateModelCopyJobCommandInput,
|
|
263
312
|
options?: __HttpHandlerOptions
|
|
@@ -375,6 +424,19 @@ export interface Bedrock {
|
|
|
375
424
|
options: __HttpHandlerOptions,
|
|
376
425
|
cb: (err: any, data?: DeleteInferenceProfileCommandOutput) => void
|
|
377
426
|
): void;
|
|
427
|
+
deleteMarketplaceModelEndpoint(
|
|
428
|
+
args: DeleteMarketplaceModelEndpointCommandInput,
|
|
429
|
+
options?: __HttpHandlerOptions
|
|
430
|
+
): Promise<DeleteMarketplaceModelEndpointCommandOutput>;
|
|
431
|
+
deleteMarketplaceModelEndpoint(
|
|
432
|
+
args: DeleteMarketplaceModelEndpointCommandInput,
|
|
433
|
+
cb: (err: any, data?: DeleteMarketplaceModelEndpointCommandOutput) => void
|
|
434
|
+
): void;
|
|
435
|
+
deleteMarketplaceModelEndpoint(
|
|
436
|
+
args: DeleteMarketplaceModelEndpointCommandInput,
|
|
437
|
+
options: __HttpHandlerOptions,
|
|
438
|
+
cb: (err: any, data?: DeleteMarketplaceModelEndpointCommandOutput) => void
|
|
439
|
+
): void;
|
|
378
440
|
deleteModelInvocationLoggingConfiguration(): Promise<DeleteModelInvocationLoggingConfigurationCommandOutput>;
|
|
379
441
|
deleteModelInvocationLoggingConfiguration(
|
|
380
442
|
args: DeleteModelInvocationLoggingConfigurationCommandInput,
|
|
@@ -408,6 +470,25 @@ export interface Bedrock {
|
|
|
408
470
|
options: __HttpHandlerOptions,
|
|
409
471
|
cb: (err: any, data?: DeleteProvisionedModelThroughputCommandOutput) => void
|
|
410
472
|
): void;
|
|
473
|
+
deregisterMarketplaceModelEndpoint(
|
|
474
|
+
args: DeregisterMarketplaceModelEndpointCommandInput,
|
|
475
|
+
options?: __HttpHandlerOptions
|
|
476
|
+
): Promise<DeregisterMarketplaceModelEndpointCommandOutput>;
|
|
477
|
+
deregisterMarketplaceModelEndpoint(
|
|
478
|
+
args: DeregisterMarketplaceModelEndpointCommandInput,
|
|
479
|
+
cb: (
|
|
480
|
+
err: any,
|
|
481
|
+
data?: DeregisterMarketplaceModelEndpointCommandOutput
|
|
482
|
+
) => void
|
|
483
|
+
): void;
|
|
484
|
+
deregisterMarketplaceModelEndpoint(
|
|
485
|
+
args: DeregisterMarketplaceModelEndpointCommandInput,
|
|
486
|
+
options: __HttpHandlerOptions,
|
|
487
|
+
cb: (
|
|
488
|
+
err: any,
|
|
489
|
+
data?: DeregisterMarketplaceModelEndpointCommandOutput
|
|
490
|
+
) => void
|
|
491
|
+
): void;
|
|
411
492
|
getCustomModel(
|
|
412
493
|
args: GetCustomModelCommandInput,
|
|
413
494
|
options?: __HttpHandlerOptions
|
|
@@ -486,6 +567,19 @@ export interface Bedrock {
|
|
|
486
567
|
options: __HttpHandlerOptions,
|
|
487
568
|
cb: (err: any, data?: GetInferenceProfileCommandOutput) => void
|
|
488
569
|
): void;
|
|
570
|
+
getMarketplaceModelEndpoint(
|
|
571
|
+
args: GetMarketplaceModelEndpointCommandInput,
|
|
572
|
+
options?: __HttpHandlerOptions
|
|
573
|
+
): Promise<GetMarketplaceModelEndpointCommandOutput>;
|
|
574
|
+
getMarketplaceModelEndpoint(
|
|
575
|
+
args: GetMarketplaceModelEndpointCommandInput,
|
|
576
|
+
cb: (err: any, data?: GetMarketplaceModelEndpointCommandOutput) => void
|
|
577
|
+
): void;
|
|
578
|
+
getMarketplaceModelEndpoint(
|
|
579
|
+
args: GetMarketplaceModelEndpointCommandInput,
|
|
580
|
+
options: __HttpHandlerOptions,
|
|
581
|
+
cb: (err: any, data?: GetMarketplaceModelEndpointCommandOutput) => void
|
|
582
|
+
): void;
|
|
489
583
|
getModelCopyJob(
|
|
490
584
|
args: GetModelCopyJobCommandInput,
|
|
491
585
|
options?: __HttpHandlerOptions
|
|
@@ -558,6 +652,19 @@ export interface Bedrock {
|
|
|
558
652
|
data?: GetModelInvocationLoggingConfigurationCommandOutput
|
|
559
653
|
) => void
|
|
560
654
|
): void;
|
|
655
|
+
getPromptRouter(
|
|
656
|
+
args: GetPromptRouterCommandInput,
|
|
657
|
+
options?: __HttpHandlerOptions
|
|
658
|
+
): Promise<GetPromptRouterCommandOutput>;
|
|
659
|
+
getPromptRouter(
|
|
660
|
+
args: GetPromptRouterCommandInput,
|
|
661
|
+
cb: (err: any, data?: GetPromptRouterCommandOutput) => void
|
|
662
|
+
): void;
|
|
663
|
+
getPromptRouter(
|
|
664
|
+
args: GetPromptRouterCommandInput,
|
|
665
|
+
options: __HttpHandlerOptions,
|
|
666
|
+
cb: (err: any, data?: GetPromptRouterCommandOutput) => void
|
|
667
|
+
): void;
|
|
561
668
|
getProvisionedModelThroughput(
|
|
562
669
|
args: GetProvisionedModelThroughputCommandInput,
|
|
563
670
|
options?: __HttpHandlerOptions
|
|
@@ -655,6 +762,20 @@ export interface Bedrock {
|
|
|
655
762
|
options: __HttpHandlerOptions,
|
|
656
763
|
cb: (err: any, data?: ListInferenceProfilesCommandOutput) => void
|
|
657
764
|
): void;
|
|
765
|
+
listMarketplaceModelEndpoints(): Promise<ListMarketplaceModelEndpointsCommandOutput>;
|
|
766
|
+
listMarketplaceModelEndpoints(
|
|
767
|
+
args: ListMarketplaceModelEndpointsCommandInput,
|
|
768
|
+
options?: __HttpHandlerOptions
|
|
769
|
+
): Promise<ListMarketplaceModelEndpointsCommandOutput>;
|
|
770
|
+
listMarketplaceModelEndpoints(
|
|
771
|
+
args: ListMarketplaceModelEndpointsCommandInput,
|
|
772
|
+
cb: (err: any, data?: ListMarketplaceModelEndpointsCommandOutput) => void
|
|
773
|
+
): void;
|
|
774
|
+
listMarketplaceModelEndpoints(
|
|
775
|
+
args: ListMarketplaceModelEndpointsCommandInput,
|
|
776
|
+
options: __HttpHandlerOptions,
|
|
777
|
+
cb: (err: any, data?: ListMarketplaceModelEndpointsCommandOutput) => void
|
|
778
|
+
): void;
|
|
658
779
|
listModelCopyJobs(): Promise<ListModelCopyJobsCommandOutput>;
|
|
659
780
|
listModelCopyJobs(
|
|
660
781
|
args: ListModelCopyJobsCommandInput,
|
|
@@ -711,6 +832,20 @@ export interface Bedrock {
|
|
|
711
832
|
options: __HttpHandlerOptions,
|
|
712
833
|
cb: (err: any, data?: ListModelInvocationJobsCommandOutput) => void
|
|
713
834
|
): void;
|
|
835
|
+
listPromptRouters(): Promise<ListPromptRoutersCommandOutput>;
|
|
836
|
+
listPromptRouters(
|
|
837
|
+
args: ListPromptRoutersCommandInput,
|
|
838
|
+
options?: __HttpHandlerOptions
|
|
839
|
+
): Promise<ListPromptRoutersCommandOutput>;
|
|
840
|
+
listPromptRouters(
|
|
841
|
+
args: ListPromptRoutersCommandInput,
|
|
842
|
+
cb: (err: any, data?: ListPromptRoutersCommandOutput) => void
|
|
843
|
+
): void;
|
|
844
|
+
listPromptRouters(
|
|
845
|
+
args: ListPromptRoutersCommandInput,
|
|
846
|
+
options: __HttpHandlerOptions,
|
|
847
|
+
cb: (err: any, data?: ListPromptRoutersCommandOutput) => void
|
|
848
|
+
): void;
|
|
714
849
|
listProvisionedModelThroughputs(): Promise<ListProvisionedModelThroughputsCommandOutput>;
|
|
715
850
|
listProvisionedModelThroughputs(
|
|
716
851
|
args: ListProvisionedModelThroughputsCommandInput,
|
|
@@ -757,6 +892,19 @@ export interface Bedrock {
|
|
|
757
892
|
data?: PutModelInvocationLoggingConfigurationCommandOutput
|
|
758
893
|
) => void
|
|
759
894
|
): void;
|
|
895
|
+
registerMarketplaceModelEndpoint(
|
|
896
|
+
args: RegisterMarketplaceModelEndpointCommandInput,
|
|
897
|
+
options?: __HttpHandlerOptions
|
|
898
|
+
): Promise<RegisterMarketplaceModelEndpointCommandOutput>;
|
|
899
|
+
registerMarketplaceModelEndpoint(
|
|
900
|
+
args: RegisterMarketplaceModelEndpointCommandInput,
|
|
901
|
+
cb: (err: any, data?: RegisterMarketplaceModelEndpointCommandOutput) => void
|
|
902
|
+
): void;
|
|
903
|
+
registerMarketplaceModelEndpoint(
|
|
904
|
+
args: RegisterMarketplaceModelEndpointCommandInput,
|
|
905
|
+
options: __HttpHandlerOptions,
|
|
906
|
+
cb: (err: any, data?: RegisterMarketplaceModelEndpointCommandOutput) => void
|
|
907
|
+
): void;
|
|
760
908
|
stopEvaluationJob(
|
|
761
909
|
args: StopEvaluationJobCommandInput,
|
|
762
910
|
options?: __HttpHandlerOptions
|
|
@@ -835,6 +983,19 @@ export interface Bedrock {
|
|
|
835
983
|
options: __HttpHandlerOptions,
|
|
836
984
|
cb: (err: any, data?: UpdateGuardrailCommandOutput) => void
|
|
837
985
|
): void;
|
|
986
|
+
updateMarketplaceModelEndpoint(
|
|
987
|
+
args: UpdateMarketplaceModelEndpointCommandInput,
|
|
988
|
+
options?: __HttpHandlerOptions
|
|
989
|
+
): Promise<UpdateMarketplaceModelEndpointCommandOutput>;
|
|
990
|
+
updateMarketplaceModelEndpoint(
|
|
991
|
+
args: UpdateMarketplaceModelEndpointCommandInput,
|
|
992
|
+
cb: (err: any, data?: UpdateMarketplaceModelEndpointCommandOutput) => void
|
|
993
|
+
): void;
|
|
994
|
+
updateMarketplaceModelEndpoint(
|
|
995
|
+
args: UpdateMarketplaceModelEndpointCommandInput,
|
|
996
|
+
options: __HttpHandlerOptions,
|
|
997
|
+
cb: (err: any, data?: UpdateMarketplaceModelEndpointCommandOutput) => void
|
|
998
|
+
): void;
|
|
838
999
|
updateProvisionedModelThroughput(
|
|
839
1000
|
args: UpdateProvisionedModelThroughputCommandInput,
|
|
840
1001
|
options?: __HttpHandlerOptions
|