@aws-sdk/client-bedrock 3.705.0 → 3.709.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.
Files changed (56) hide show
  1. package/README.md +72 -0
  2. package/dist-cjs/index.js +614 -27
  3. package/dist-es/Bedrock.js +18 -0
  4. package/dist-es/commands/CreateMarketplaceModelEndpointCommand.js +22 -0
  5. package/dist-es/commands/DeleteMarketplaceModelEndpointCommand.js +22 -0
  6. package/dist-es/commands/DeregisterMarketplaceModelEndpointCommand.js +22 -0
  7. package/dist-es/commands/GetMarketplaceModelEndpointCommand.js +22 -0
  8. package/dist-es/commands/GetPromptRouterCommand.js +23 -0
  9. package/dist-es/commands/ListMarketplaceModelEndpointsCommand.js +22 -0
  10. package/dist-es/commands/ListPromptRoutersCommand.js +23 -0
  11. package/dist-es/commands/RegisterMarketplaceModelEndpointCommand.js +22 -0
  12. package/dist-es/commands/UpdateMarketplaceModelEndpointCommand.js +22 -0
  13. package/dist-es/commands/index.js +9 -0
  14. package/dist-es/models/models_0.js +96 -20
  15. package/dist-es/pagination/ListMarketplaceModelEndpointsPaginator.js +4 -0
  16. package/dist-es/pagination/ListPromptRoutersPaginator.js +4 -0
  17. package/dist-es/pagination/index.js +2 -0
  18. package/dist-es/protocols/Aws_restJson1.js +314 -1
  19. package/dist-types/Bedrock.d.ts +65 -0
  20. package/dist-types/BedrockClient.d.ts +11 -2
  21. package/dist-types/commands/CreateGuardrailCommand.d.ts +6 -0
  22. package/dist-types/commands/CreateMarketplaceModelEndpointCommand.d.ts +143 -0
  23. package/dist-types/commands/DeleteMarketplaceModelEndpointCommand.d.ts +84 -0
  24. package/dist-types/commands/DeregisterMarketplaceModelEndpointCommand.d.ts +89 -0
  25. package/dist-types/commands/GetGuardrailCommand.d.ts +6 -0
  26. package/dist-types/commands/GetMarketplaceModelEndpointCommand.d.ts +111 -0
  27. package/dist-types/commands/GetPromptRouterCommand.d.ts +103 -0
  28. package/dist-types/commands/ListMarketplaceModelEndpointsCommand.d.ts +99 -0
  29. package/dist-types/commands/ListPromptRoutersCommand.d.ts +106 -0
  30. package/dist-types/commands/RegisterMarketplaceModelEndpointCommand.d.ts +116 -0
  31. package/dist-types/commands/UpdateGuardrailCommand.d.ts +6 -0
  32. package/dist-types/commands/UpdateMarketplaceModelEndpointCommand.d.ts +135 -0
  33. package/dist-types/commands/index.d.ts +9 -0
  34. package/dist-types/models/models_0.d.ts +736 -97
  35. package/dist-types/pagination/ListMarketplaceModelEndpointsPaginator.d.ts +7 -0
  36. package/dist-types/pagination/ListPromptRoutersPaginator.d.ts +7 -0
  37. package/dist-types/pagination/index.d.ts +2 -0
  38. package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
  39. package/dist-types/ts3.4/Bedrock.d.ts +161 -0
  40. package/dist-types/ts3.4/BedrockClient.d.ts +54 -0
  41. package/dist-types/ts3.4/commands/CreateMarketplaceModelEndpointCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/DeleteMarketplaceModelEndpointCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/DeregisterMarketplaceModelEndpointCommand.d.ts +51 -0
  44. package/dist-types/ts3.4/commands/GetMarketplaceModelEndpointCommand.d.ts +51 -0
  45. package/dist-types/ts3.4/commands/GetPromptRouterCommand.d.ts +50 -0
  46. package/dist-types/ts3.4/commands/ListMarketplaceModelEndpointsCommand.d.ts +51 -0
  47. package/dist-types/ts3.4/commands/ListPromptRoutersCommand.d.ts +51 -0
  48. package/dist-types/ts3.4/commands/RegisterMarketplaceModelEndpointCommand.d.ts +51 -0
  49. package/dist-types/ts3.4/commands/UpdateMarketplaceModelEndpointCommand.d.ts +51 -0
  50. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  51. package/dist-types/ts3.4/models/models_0.d.ts +229 -41
  52. package/dist-types/ts3.4/pagination/ListMarketplaceModelEndpointsPaginator.d.ts +11 -0
  53. package/dist-types/ts3.4/pagination/ListPromptRoutersPaginator.d.ts +11 -0
  54. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  55. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
  56. package/package.json +35 -35
@@ -65,6 +65,10 @@ import {
65
65
  CreateInferenceProfileCommandInput,
66
66
  CreateInferenceProfileCommandOutput,
67
67
  } from "./commands/CreateInferenceProfileCommand";
68
+ import {
69
+ CreateMarketplaceModelEndpointCommandInput,
70
+ CreateMarketplaceModelEndpointCommandOutput,
71
+ } from "./commands/CreateMarketplaceModelEndpointCommand";
68
72
  import {
69
73
  CreateModelCopyJobCommandInput,
70
74
  CreateModelCopyJobCommandOutput,
@@ -101,6 +105,10 @@ import {
101
105
  DeleteInferenceProfileCommandInput,
102
106
  DeleteInferenceProfileCommandOutput,
103
107
  } from "./commands/DeleteInferenceProfileCommand";
108
+ import {
109
+ DeleteMarketplaceModelEndpointCommandInput,
110
+ DeleteMarketplaceModelEndpointCommandOutput,
111
+ } from "./commands/DeleteMarketplaceModelEndpointCommand";
104
112
  import {
105
113
  DeleteModelInvocationLoggingConfigurationCommandInput,
106
114
  DeleteModelInvocationLoggingConfigurationCommandOutput,
@@ -109,6 +117,10 @@ import {
109
117
  DeleteProvisionedModelThroughputCommandInput,
110
118
  DeleteProvisionedModelThroughputCommandOutput,
111
119
  } from "./commands/DeleteProvisionedModelThroughputCommand";
120
+ import {
121
+ DeregisterMarketplaceModelEndpointCommandInput,
122
+ DeregisterMarketplaceModelEndpointCommandOutput,
123
+ } from "./commands/DeregisterMarketplaceModelEndpointCommand";
112
124
  import {
113
125
  GetCustomModelCommandInput,
114
126
  GetCustomModelCommandOutput,
@@ -133,6 +145,10 @@ import {
133
145
  GetInferenceProfileCommandInput,
134
146
  GetInferenceProfileCommandOutput,
135
147
  } from "./commands/GetInferenceProfileCommand";
148
+ import {
149
+ GetMarketplaceModelEndpointCommandInput,
150
+ GetMarketplaceModelEndpointCommandOutput,
151
+ } from "./commands/GetMarketplaceModelEndpointCommand";
136
152
  import {
137
153
  GetModelCopyJobCommandInput,
138
154
  GetModelCopyJobCommandOutput,
@@ -153,6 +169,10 @@ import {
153
169
  GetModelInvocationLoggingConfigurationCommandInput,
154
170
  GetModelInvocationLoggingConfigurationCommandOutput,
155
171
  } from "./commands/GetModelInvocationLoggingConfigurationCommand";
172
+ import {
173
+ GetPromptRouterCommandInput,
174
+ GetPromptRouterCommandOutput,
175
+ } from "./commands/GetPromptRouterCommand";
156
176
  import {
157
177
  GetProvisionedModelThroughputCommandInput,
158
178
  GetProvisionedModelThroughputCommandOutput,
@@ -181,6 +201,10 @@ import {
181
201
  ListInferenceProfilesCommandInput,
182
202
  ListInferenceProfilesCommandOutput,
183
203
  } from "./commands/ListInferenceProfilesCommand";
204
+ import {
205
+ ListMarketplaceModelEndpointsCommandInput,
206
+ ListMarketplaceModelEndpointsCommandOutput,
207
+ } from "./commands/ListMarketplaceModelEndpointsCommand";
184
208
  import {
185
209
  ListModelCopyJobsCommandInput,
186
210
  ListModelCopyJobsCommandOutput,
@@ -197,6 +221,10 @@ import {
197
221
  ListModelInvocationJobsCommandInput,
198
222
  ListModelInvocationJobsCommandOutput,
199
223
  } from "./commands/ListModelInvocationJobsCommand";
224
+ import {
225
+ ListPromptRoutersCommandInput,
226
+ ListPromptRoutersCommandOutput,
227
+ } from "./commands/ListPromptRoutersCommand";
200
228
  import {
201
229
  ListProvisionedModelThroughputsCommandInput,
202
230
  ListProvisionedModelThroughputsCommandOutput,
@@ -209,6 +237,10 @@ import {
209
237
  PutModelInvocationLoggingConfigurationCommandInput,
210
238
  PutModelInvocationLoggingConfigurationCommandOutput,
211
239
  } from "./commands/PutModelInvocationLoggingConfigurationCommand";
240
+ import {
241
+ RegisterMarketplaceModelEndpointCommandInput,
242
+ RegisterMarketplaceModelEndpointCommandOutput,
243
+ } from "./commands/RegisterMarketplaceModelEndpointCommand";
212
244
  import {
213
245
  StopEvaluationJobCommandInput,
214
246
  StopEvaluationJobCommandOutput,
@@ -233,6 +265,10 @@ import {
233
265
  UpdateGuardrailCommandInput,
234
266
  UpdateGuardrailCommandOutput,
235
267
  } from "./commands/UpdateGuardrailCommand";
268
+ import {
269
+ UpdateMarketplaceModelEndpointCommandInput,
270
+ UpdateMarketplaceModelEndpointCommandOutput,
271
+ } from "./commands/UpdateMarketplaceModelEndpointCommand";
236
272
  import {
237
273
  UpdateProvisionedModelThroughputCommandInput,
238
274
  UpdateProvisionedModelThroughputCommandOutput,
@@ -250,6 +286,7 @@ export type ServiceInputTypes =
250
286
  | CreateGuardrailCommandInput
251
287
  | CreateGuardrailVersionCommandInput
252
288
  | CreateInferenceProfileCommandInput
289
+ | CreateMarketplaceModelEndpointCommandInput
253
290
  | CreateModelCopyJobCommandInput
254
291
  | CreateModelCustomizationJobCommandInput
255
292
  | CreateModelImportJobCommandInput
@@ -259,19 +296,23 @@ export type ServiceInputTypes =
259
296
  | DeleteGuardrailCommandInput
260
297
  | DeleteImportedModelCommandInput
261
298
  | DeleteInferenceProfileCommandInput
299
+ | DeleteMarketplaceModelEndpointCommandInput
262
300
  | DeleteModelInvocationLoggingConfigurationCommandInput
263
301
  | DeleteProvisionedModelThroughputCommandInput
302
+ | DeregisterMarketplaceModelEndpointCommandInput
264
303
  | GetCustomModelCommandInput
265
304
  | GetEvaluationJobCommandInput
266
305
  | GetFoundationModelCommandInput
267
306
  | GetGuardrailCommandInput
268
307
  | GetImportedModelCommandInput
269
308
  | GetInferenceProfileCommandInput
309
+ | GetMarketplaceModelEndpointCommandInput
270
310
  | GetModelCopyJobCommandInput
271
311
  | GetModelCustomizationJobCommandInput
272
312
  | GetModelImportJobCommandInput
273
313
  | GetModelInvocationJobCommandInput
274
314
  | GetModelInvocationLoggingConfigurationCommandInput
315
+ | GetPromptRouterCommandInput
275
316
  | GetProvisionedModelThroughputCommandInput
276
317
  | ListCustomModelsCommandInput
277
318
  | ListEvaluationJobsCommandInput
@@ -279,19 +320,23 @@ export type ServiceInputTypes =
279
320
  | ListGuardrailsCommandInput
280
321
  | ListImportedModelsCommandInput
281
322
  | ListInferenceProfilesCommandInput
323
+ | ListMarketplaceModelEndpointsCommandInput
282
324
  | ListModelCopyJobsCommandInput
283
325
  | ListModelCustomizationJobsCommandInput
284
326
  | ListModelImportJobsCommandInput
285
327
  | ListModelInvocationJobsCommandInput
328
+ | ListPromptRoutersCommandInput
286
329
  | ListProvisionedModelThroughputsCommandInput
287
330
  | ListTagsForResourceCommandInput
288
331
  | PutModelInvocationLoggingConfigurationCommandInput
332
+ | RegisterMarketplaceModelEndpointCommandInput
289
333
  | StopEvaluationJobCommandInput
290
334
  | StopModelCustomizationJobCommandInput
291
335
  | StopModelInvocationJobCommandInput
292
336
  | TagResourceCommandInput
293
337
  | UntagResourceCommandInput
294
338
  | UpdateGuardrailCommandInput
339
+ | UpdateMarketplaceModelEndpointCommandInput
295
340
  | UpdateProvisionedModelThroughputCommandInput;
296
341
  export type ServiceOutputTypes =
297
342
  | BatchDeleteEvaluationJobCommandOutput
@@ -299,6 +344,7 @@ export type ServiceOutputTypes =
299
344
  | CreateGuardrailCommandOutput
300
345
  | CreateGuardrailVersionCommandOutput
301
346
  | CreateInferenceProfileCommandOutput
347
+ | CreateMarketplaceModelEndpointCommandOutput
302
348
  | CreateModelCopyJobCommandOutput
303
349
  | CreateModelCustomizationJobCommandOutput
304
350
  | CreateModelImportJobCommandOutput
@@ -308,19 +354,23 @@ export type ServiceOutputTypes =
308
354
  | DeleteGuardrailCommandOutput
309
355
  | DeleteImportedModelCommandOutput
310
356
  | DeleteInferenceProfileCommandOutput
357
+ | DeleteMarketplaceModelEndpointCommandOutput
311
358
  | DeleteModelInvocationLoggingConfigurationCommandOutput
312
359
  | DeleteProvisionedModelThroughputCommandOutput
360
+ | DeregisterMarketplaceModelEndpointCommandOutput
313
361
  | GetCustomModelCommandOutput
314
362
  | GetEvaluationJobCommandOutput
315
363
  | GetFoundationModelCommandOutput
316
364
  | GetGuardrailCommandOutput
317
365
  | GetImportedModelCommandOutput
318
366
  | GetInferenceProfileCommandOutput
367
+ | GetMarketplaceModelEndpointCommandOutput
319
368
  | GetModelCopyJobCommandOutput
320
369
  | GetModelCustomizationJobCommandOutput
321
370
  | GetModelImportJobCommandOutput
322
371
  | GetModelInvocationJobCommandOutput
323
372
  | GetModelInvocationLoggingConfigurationCommandOutput
373
+ | GetPromptRouterCommandOutput
324
374
  | GetProvisionedModelThroughputCommandOutput
325
375
  | ListCustomModelsCommandOutput
326
376
  | ListEvaluationJobsCommandOutput
@@ -328,19 +378,23 @@ export type ServiceOutputTypes =
328
378
  | ListGuardrailsCommandOutput
329
379
  | ListImportedModelsCommandOutput
330
380
  | ListInferenceProfilesCommandOutput
381
+ | ListMarketplaceModelEndpointsCommandOutput
331
382
  | ListModelCopyJobsCommandOutput
332
383
  | ListModelCustomizationJobsCommandOutput
333
384
  | ListModelImportJobsCommandOutput
334
385
  | ListModelInvocationJobsCommandOutput
386
+ | ListPromptRoutersCommandOutput
335
387
  | ListProvisionedModelThroughputsCommandOutput
336
388
  | ListTagsForResourceCommandOutput
337
389
  | PutModelInvocationLoggingConfigurationCommandOutput
390
+ | RegisterMarketplaceModelEndpointCommandOutput
338
391
  | StopEvaluationJobCommandOutput
339
392
  | StopModelCustomizationJobCommandOutput
340
393
  | StopModelInvocationJobCommandOutput
341
394
  | TagResourceCommandOutput
342
395
  | UntagResourceCommandOutput
343
396
  | UpdateGuardrailCommandOutput
397
+ | UpdateMarketplaceModelEndpointCommandOutput
344
398
  | UpdateProvisionedModelThroughputCommandOutput;
345
399
  export interface ClientDefaults
346
400
  extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockClient";
8
+ import {
9
+ CreateMarketplaceModelEndpointRequest,
10
+ CreateMarketplaceModelEndpointResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateMarketplaceModelEndpointCommandInput
15
+ extends CreateMarketplaceModelEndpointRequest {}
16
+ export interface CreateMarketplaceModelEndpointCommandOutput
17
+ extends CreateMarketplaceModelEndpointResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateMarketplaceModelEndpointCommand_base: {
20
+ new (
21
+ input: CreateMarketplaceModelEndpointCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateMarketplaceModelEndpointCommandInput,
24
+ CreateMarketplaceModelEndpointCommandOutput,
25
+ BedrockClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateMarketplaceModelEndpointCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateMarketplaceModelEndpointCommandInput,
33
+ CreateMarketplaceModelEndpointCommandOutput,
34
+ BedrockClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateMarketplaceModelEndpointCommand extends CreateMarketplaceModelEndpointCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateMarketplaceModelEndpointRequest;
44
+ output: CreateMarketplaceModelEndpointResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateMarketplaceModelEndpointCommandInput;
48
+ output: CreateMarketplaceModelEndpointCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockClient";
8
+ import {
9
+ DeleteMarketplaceModelEndpointRequest,
10
+ DeleteMarketplaceModelEndpointResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteMarketplaceModelEndpointCommandInput
15
+ extends DeleteMarketplaceModelEndpointRequest {}
16
+ export interface DeleteMarketplaceModelEndpointCommandOutput
17
+ extends DeleteMarketplaceModelEndpointResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteMarketplaceModelEndpointCommand_base: {
20
+ new (
21
+ input: DeleteMarketplaceModelEndpointCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteMarketplaceModelEndpointCommandInput,
24
+ DeleteMarketplaceModelEndpointCommandOutput,
25
+ BedrockClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DeleteMarketplaceModelEndpointCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteMarketplaceModelEndpointCommandInput,
33
+ DeleteMarketplaceModelEndpointCommandOutput,
34
+ BedrockClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteMarketplaceModelEndpointCommand extends DeleteMarketplaceModelEndpointCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteMarketplaceModelEndpointRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DeleteMarketplaceModelEndpointCommandInput;
48
+ output: DeleteMarketplaceModelEndpointCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockClient";
8
+ import {
9
+ DeregisterMarketplaceModelEndpointRequest,
10
+ DeregisterMarketplaceModelEndpointResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeregisterMarketplaceModelEndpointCommandInput
15
+ extends DeregisterMarketplaceModelEndpointRequest {}
16
+ export interface DeregisterMarketplaceModelEndpointCommandOutput
17
+ extends DeregisterMarketplaceModelEndpointResponse,
18
+ __MetadataBearer {}
19
+ declare const DeregisterMarketplaceModelEndpointCommand_base: {
20
+ new (
21
+ input: DeregisterMarketplaceModelEndpointCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeregisterMarketplaceModelEndpointCommandInput,
24
+ DeregisterMarketplaceModelEndpointCommandOutput,
25
+ BedrockClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DeregisterMarketplaceModelEndpointCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeregisterMarketplaceModelEndpointCommandInput,
33
+ DeregisterMarketplaceModelEndpointCommandOutput,
34
+ BedrockClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeregisterMarketplaceModelEndpointCommand extends DeregisterMarketplaceModelEndpointCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeregisterMarketplaceModelEndpointRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DeregisterMarketplaceModelEndpointCommandInput;
48
+ output: DeregisterMarketplaceModelEndpointCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockClient";
8
+ import {
9
+ GetMarketplaceModelEndpointRequest,
10
+ GetMarketplaceModelEndpointResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetMarketplaceModelEndpointCommandInput
15
+ extends GetMarketplaceModelEndpointRequest {}
16
+ export interface GetMarketplaceModelEndpointCommandOutput
17
+ extends GetMarketplaceModelEndpointResponse,
18
+ __MetadataBearer {}
19
+ declare const GetMarketplaceModelEndpointCommand_base: {
20
+ new (
21
+ input: GetMarketplaceModelEndpointCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetMarketplaceModelEndpointCommandInput,
24
+ GetMarketplaceModelEndpointCommandOutput,
25
+ BedrockClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetMarketplaceModelEndpointCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetMarketplaceModelEndpointCommandInput,
33
+ GetMarketplaceModelEndpointCommandOutput,
34
+ BedrockClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetMarketplaceModelEndpointCommand extends GetMarketplaceModelEndpointCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetMarketplaceModelEndpointRequest;
44
+ output: GetMarketplaceModelEndpointResponse;
45
+ };
46
+ sdk: {
47
+ input: GetMarketplaceModelEndpointCommandInput;
48
+ output: GetMarketplaceModelEndpointCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockClient";
8
+ import {
9
+ GetPromptRouterRequest,
10
+ GetPromptRouterResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetPromptRouterCommandInput extends GetPromptRouterRequest {}
15
+ export interface GetPromptRouterCommandOutput
16
+ extends GetPromptRouterResponse,
17
+ __MetadataBearer {}
18
+ declare const GetPromptRouterCommand_base: {
19
+ new (
20
+ input: GetPromptRouterCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetPromptRouterCommandInput,
23
+ GetPromptRouterCommandOutput,
24
+ BedrockClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: GetPromptRouterCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetPromptRouterCommandInput,
32
+ GetPromptRouterCommandOutput,
33
+ BedrockClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetPromptRouterCommand extends GetPromptRouterCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetPromptRouterRequest;
43
+ output: GetPromptRouterResponse;
44
+ };
45
+ sdk: {
46
+ input: GetPromptRouterCommandInput;
47
+ output: GetPromptRouterCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockClient";
8
+ import {
9
+ ListMarketplaceModelEndpointsRequest,
10
+ ListMarketplaceModelEndpointsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListMarketplaceModelEndpointsCommandInput
15
+ extends ListMarketplaceModelEndpointsRequest {}
16
+ export interface ListMarketplaceModelEndpointsCommandOutput
17
+ extends ListMarketplaceModelEndpointsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListMarketplaceModelEndpointsCommand_base: {
20
+ new (
21
+ input: ListMarketplaceModelEndpointsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListMarketplaceModelEndpointsCommandInput,
24
+ ListMarketplaceModelEndpointsCommandOutput,
25
+ BedrockClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListMarketplaceModelEndpointsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListMarketplaceModelEndpointsCommandInput,
33
+ ListMarketplaceModelEndpointsCommandOutput,
34
+ BedrockClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListMarketplaceModelEndpointsCommand extends ListMarketplaceModelEndpointsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListMarketplaceModelEndpointsRequest;
44
+ output: ListMarketplaceModelEndpointsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListMarketplaceModelEndpointsCommandInput;
48
+ output: ListMarketplaceModelEndpointsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockClient";
8
+ import {
9
+ ListPromptRoutersRequest,
10
+ ListPromptRoutersResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListPromptRoutersCommandInput
15
+ extends ListPromptRoutersRequest {}
16
+ export interface ListPromptRoutersCommandOutput
17
+ extends ListPromptRoutersResponse,
18
+ __MetadataBearer {}
19
+ declare const ListPromptRoutersCommand_base: {
20
+ new (
21
+ input: ListPromptRoutersCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListPromptRoutersCommandInput,
24
+ ListPromptRoutersCommandOutput,
25
+ BedrockClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListPromptRoutersCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListPromptRoutersCommandInput,
33
+ ListPromptRoutersCommandOutput,
34
+ BedrockClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListPromptRoutersCommand extends ListPromptRoutersCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListPromptRoutersRequest;
44
+ output: ListPromptRoutersResponse;
45
+ };
46
+ sdk: {
47
+ input: ListPromptRoutersCommandInput;
48
+ output: ListPromptRoutersCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockClient";
8
+ import {
9
+ RegisterMarketplaceModelEndpointRequest,
10
+ RegisterMarketplaceModelEndpointResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface RegisterMarketplaceModelEndpointCommandInput
15
+ extends RegisterMarketplaceModelEndpointRequest {}
16
+ export interface RegisterMarketplaceModelEndpointCommandOutput
17
+ extends RegisterMarketplaceModelEndpointResponse,
18
+ __MetadataBearer {}
19
+ declare const RegisterMarketplaceModelEndpointCommand_base: {
20
+ new (
21
+ input: RegisterMarketplaceModelEndpointCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ RegisterMarketplaceModelEndpointCommandInput,
24
+ RegisterMarketplaceModelEndpointCommandOutput,
25
+ BedrockClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: RegisterMarketplaceModelEndpointCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ RegisterMarketplaceModelEndpointCommandInput,
33
+ RegisterMarketplaceModelEndpointCommandOutput,
34
+ BedrockClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class RegisterMarketplaceModelEndpointCommand extends RegisterMarketplaceModelEndpointCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: RegisterMarketplaceModelEndpointRequest;
44
+ output: RegisterMarketplaceModelEndpointResponse;
45
+ };
46
+ sdk: {
47
+ input: RegisterMarketplaceModelEndpointCommandInput;
48
+ output: RegisterMarketplaceModelEndpointCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockClient";
8
+ import {
9
+ UpdateMarketplaceModelEndpointRequest,
10
+ UpdateMarketplaceModelEndpointResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateMarketplaceModelEndpointCommandInput
15
+ extends UpdateMarketplaceModelEndpointRequest {}
16
+ export interface UpdateMarketplaceModelEndpointCommandOutput
17
+ extends UpdateMarketplaceModelEndpointResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateMarketplaceModelEndpointCommand_base: {
20
+ new (
21
+ input: UpdateMarketplaceModelEndpointCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateMarketplaceModelEndpointCommandInput,
24
+ UpdateMarketplaceModelEndpointCommandOutput,
25
+ BedrockClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: UpdateMarketplaceModelEndpointCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateMarketplaceModelEndpointCommandInput,
33
+ UpdateMarketplaceModelEndpointCommandOutput,
34
+ BedrockClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateMarketplaceModelEndpointCommand extends UpdateMarketplaceModelEndpointCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateMarketplaceModelEndpointRequest;
44
+ output: UpdateMarketplaceModelEndpointResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateMarketplaceModelEndpointCommandInput;
48
+ output: UpdateMarketplaceModelEndpointCommandOutput;
49
+ };
50
+ };
51
+ }