@aws-sdk/client-bedrock 3.635.0 → 3.640.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 (59) hide show
  1. package/README.md +72 -0
  2. package/dist-cjs/index.js +646 -78
  3. package/dist-es/Bedrock.js +18 -0
  4. package/dist-es/commands/BatchDeleteEvaluationJobCommand.js +25 -0
  5. package/dist-es/commands/CreateModelImportJobCommand.js +24 -0
  6. package/dist-es/commands/DeleteImportedModelCommand.js +24 -0
  7. package/dist-es/commands/GetImportedModelCommand.js +24 -0
  8. package/dist-es/commands/GetInferenceProfileCommand.js +24 -0
  9. package/dist-es/commands/GetModelImportJobCommand.js +24 -0
  10. package/dist-es/commands/ListImportedModelsCommand.js +24 -0
  11. package/dist-es/commands/ListInferenceProfilesCommand.js +24 -0
  12. package/dist-es/commands/ListModelImportJobsCommand.js +24 -0
  13. package/dist-es/commands/index.js +9 -0
  14. package/dist-es/models/models_0.js +97 -58
  15. package/dist-es/pagination/ListImportedModelsPaginator.js +4 -0
  16. package/dist-es/pagination/ListInferenceProfilesPaginator.js +4 -0
  17. package/dist-es/pagination/ListModelImportJobsPaginator.js +4 -0
  18. package/dist-es/pagination/index.js +3 -0
  19. package/dist-es/protocols/Aws_restJson1.js +329 -3
  20. package/dist-types/Bedrock.d.ts +66 -0
  21. package/dist-types/BedrockClient.d.ts +11 -2
  22. package/dist-types/commands/BatchDeleteEvaluationJobCommand.d.ts +92 -0
  23. package/dist-types/commands/CreateModelImportJobCommand.d.ts +116 -0
  24. package/dist-types/commands/CreateModelInvocationJobCommand.d.ts +2 -2
  25. package/dist-types/commands/DeleteImportedModelCommand.d.ts +78 -0
  26. package/dist-types/commands/GetEvaluationJobCommand.d.ts +1 -1
  27. package/dist-types/commands/GetImportedModelCommand.d.ts +86 -0
  28. package/dist-types/commands/GetInferenceProfileCommand.d.ts +87 -0
  29. package/dist-types/commands/GetModelImportJobCommand.d.ts +100 -0
  30. package/dist-types/commands/ListEvaluationJobsCommand.d.ts +2 -2
  31. package/dist-types/commands/ListImportedModelsCommand.d.ts +87 -0
  32. package/dist-types/commands/ListInferenceProfilesCommand.d.ts +90 -0
  33. package/dist-types/commands/ListModelImportJobsCommand.d.ts +93 -0
  34. package/dist-types/commands/index.d.ts +9 -0
  35. package/dist-types/models/models_0.d.ts +952 -249
  36. package/dist-types/pagination/ListImportedModelsPaginator.d.ts +7 -0
  37. package/dist-types/pagination/ListInferenceProfilesPaginator.d.ts +7 -0
  38. package/dist-types/pagination/ListModelImportJobsPaginator.d.ts +7 -0
  39. package/dist-types/pagination/index.d.ts +3 -0
  40. package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
  41. package/dist-types/ts3.4/Bedrock.d.ts +156 -0
  42. package/dist-types/ts3.4/BedrockClient.d.ts +54 -0
  43. package/dist-types/ts3.4/commands/BatchDeleteEvaluationJobCommand.d.ts +40 -0
  44. package/dist-types/ts3.4/commands/CreateModelImportJobCommand.d.ts +40 -0
  45. package/dist-types/ts3.4/commands/DeleteImportedModelCommand.d.ts +40 -0
  46. package/dist-types/ts3.4/commands/GetImportedModelCommand.d.ts +39 -0
  47. package/dist-types/ts3.4/commands/GetInferenceProfileCommand.d.ts +40 -0
  48. package/dist-types/ts3.4/commands/GetModelImportJobCommand.d.ts +40 -0
  49. package/dist-types/ts3.4/commands/ListImportedModelsCommand.d.ts +40 -0
  50. package/dist-types/ts3.4/commands/ListInferenceProfilesCommand.d.ts +40 -0
  51. package/dist-types/ts3.4/commands/ListModelImportJobsCommand.d.ts +40 -0
  52. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  53. package/dist-types/ts3.4/models/models_0.d.ts +239 -45
  54. package/dist-types/ts3.4/pagination/ListImportedModelsPaginator.d.ts +11 -0
  55. package/dist-types/ts3.4/pagination/ListInferenceProfilesPaginator.d.ts +11 -0
  56. package/dist-types/ts3.4/pagination/ListModelImportJobsPaginator.d.ts +11 -0
  57. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  58. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
  59. package/package.json +6 -6
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListImportedModelsCommandInput, ListImportedModelsCommandOutput } from "../commands/ListImportedModelsCommand";
3
+ import { BedrockPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListImportedModels: (config: BedrockPaginationConfiguration, input: ListImportedModelsCommandInput, ...rest: any[]) => Paginator<ListImportedModelsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListInferenceProfilesCommandInput, ListInferenceProfilesCommandOutput } from "../commands/ListInferenceProfilesCommand";
3
+ import { BedrockPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListInferenceProfiles: (config: BedrockPaginationConfiguration, input: ListInferenceProfilesCommandInput, ...rest: any[]) => Paginator<ListInferenceProfilesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListModelImportJobsCommandInput, ListModelImportJobsCommandOutput } from "../commands/ListModelImportJobsCommand";
3
+ import { BedrockPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListModelImportJobs: (config: BedrockPaginationConfiguration, input: ListModelImportJobsCommandInput, ...rest: any[]) => Paginator<ListModelImportJobsCommandOutput>;
@@ -2,7 +2,10 @@ export * from "./Interfaces";
2
2
  export * from "./ListCustomModelsPaginator";
3
3
  export * from "./ListEvaluationJobsPaginator";
4
4
  export * from "./ListGuardrailsPaginator";
5
+ export * from "./ListImportedModelsPaginator";
6
+ export * from "./ListInferenceProfilesPaginator";
5
7
  export * from "./ListModelCopyJobsPaginator";
6
8
  export * from "./ListModelCustomizationJobsPaginator";
9
+ export * from "./ListModelImportJobsPaginator";
7
10
  export * from "./ListModelInvocationJobsPaginator";
8
11
  export * from "./ListProvisionedModelThroughputsPaginator";
@@ -1,22 +1,28 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { BatchDeleteEvaluationJobCommandInput, BatchDeleteEvaluationJobCommandOutput } from "../commands/BatchDeleteEvaluationJobCommand";
3
4
  import { CreateEvaluationJobCommandInput, CreateEvaluationJobCommandOutput } from "../commands/CreateEvaluationJobCommand";
4
5
  import { CreateGuardrailCommandInput, CreateGuardrailCommandOutput } from "../commands/CreateGuardrailCommand";
5
6
  import { CreateGuardrailVersionCommandInput, CreateGuardrailVersionCommandOutput } from "../commands/CreateGuardrailVersionCommand";
6
7
  import { CreateModelCopyJobCommandInput, CreateModelCopyJobCommandOutput } from "../commands/CreateModelCopyJobCommand";
7
8
  import { CreateModelCustomizationJobCommandInput, CreateModelCustomizationJobCommandOutput } from "../commands/CreateModelCustomizationJobCommand";
9
+ import { CreateModelImportJobCommandInput, CreateModelImportJobCommandOutput } from "../commands/CreateModelImportJobCommand";
8
10
  import { CreateModelInvocationJobCommandInput, CreateModelInvocationJobCommandOutput } from "../commands/CreateModelInvocationJobCommand";
9
11
  import { CreateProvisionedModelThroughputCommandInput, CreateProvisionedModelThroughputCommandOutput } from "../commands/CreateProvisionedModelThroughputCommand";
10
12
  import { DeleteCustomModelCommandInput, DeleteCustomModelCommandOutput } from "../commands/DeleteCustomModelCommand";
11
13
  import { DeleteGuardrailCommandInput, DeleteGuardrailCommandOutput } from "../commands/DeleteGuardrailCommand";
14
+ import { DeleteImportedModelCommandInput, DeleteImportedModelCommandOutput } from "../commands/DeleteImportedModelCommand";
12
15
  import { DeleteModelInvocationLoggingConfigurationCommandInput, DeleteModelInvocationLoggingConfigurationCommandOutput } from "../commands/DeleteModelInvocationLoggingConfigurationCommand";
13
16
  import { DeleteProvisionedModelThroughputCommandInput, DeleteProvisionedModelThroughputCommandOutput } from "../commands/DeleteProvisionedModelThroughputCommand";
14
17
  import { GetCustomModelCommandInput, GetCustomModelCommandOutput } from "../commands/GetCustomModelCommand";
15
18
  import { GetEvaluationJobCommandInput, GetEvaluationJobCommandOutput } from "../commands/GetEvaluationJobCommand";
16
19
  import { GetFoundationModelCommandInput, GetFoundationModelCommandOutput } from "../commands/GetFoundationModelCommand";
17
20
  import { GetGuardrailCommandInput, GetGuardrailCommandOutput } from "../commands/GetGuardrailCommand";
21
+ import { GetImportedModelCommandInput, GetImportedModelCommandOutput } from "../commands/GetImportedModelCommand";
22
+ import { GetInferenceProfileCommandInput, GetInferenceProfileCommandOutput } from "../commands/GetInferenceProfileCommand";
18
23
  import { GetModelCopyJobCommandInput, GetModelCopyJobCommandOutput } from "../commands/GetModelCopyJobCommand";
19
24
  import { GetModelCustomizationJobCommandInput, GetModelCustomizationJobCommandOutput } from "../commands/GetModelCustomizationJobCommand";
25
+ import { GetModelImportJobCommandInput, GetModelImportJobCommandOutput } from "../commands/GetModelImportJobCommand";
20
26
  import { GetModelInvocationJobCommandInput, GetModelInvocationJobCommandOutput } from "../commands/GetModelInvocationJobCommand";
21
27
  import { GetModelInvocationLoggingConfigurationCommandInput, GetModelInvocationLoggingConfigurationCommandOutput } from "../commands/GetModelInvocationLoggingConfigurationCommand";
22
28
  import { GetProvisionedModelThroughputCommandInput, GetProvisionedModelThroughputCommandOutput } from "../commands/GetProvisionedModelThroughputCommand";
@@ -24,8 +30,11 @@ import { ListCustomModelsCommandInput, ListCustomModelsCommandOutput } from "../
24
30
  import { ListEvaluationJobsCommandInput, ListEvaluationJobsCommandOutput } from "../commands/ListEvaluationJobsCommand";
25
31
  import { ListFoundationModelsCommandInput, ListFoundationModelsCommandOutput } from "../commands/ListFoundationModelsCommand";
26
32
  import { ListGuardrailsCommandInput, ListGuardrailsCommandOutput } from "../commands/ListGuardrailsCommand";
33
+ import { ListImportedModelsCommandInput, ListImportedModelsCommandOutput } from "../commands/ListImportedModelsCommand";
34
+ import { ListInferenceProfilesCommandInput, ListInferenceProfilesCommandOutput } from "../commands/ListInferenceProfilesCommand";
27
35
  import { ListModelCopyJobsCommandInput, ListModelCopyJobsCommandOutput } from "../commands/ListModelCopyJobsCommand";
28
36
  import { ListModelCustomizationJobsCommandInput, ListModelCustomizationJobsCommandOutput } from "../commands/ListModelCustomizationJobsCommand";
37
+ import { ListModelImportJobsCommandInput, ListModelImportJobsCommandOutput } from "../commands/ListModelImportJobsCommand";
29
38
  import { ListModelInvocationJobsCommandInput, ListModelInvocationJobsCommandOutput } from "../commands/ListModelInvocationJobsCommand";
30
39
  import { ListProvisionedModelThroughputsCommandInput, ListProvisionedModelThroughputsCommandOutput } from "../commands/ListProvisionedModelThroughputsCommand";
31
40
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
@@ -37,6 +46,10 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/T
37
46
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
38
47
  import { UpdateGuardrailCommandInput, UpdateGuardrailCommandOutput } from "../commands/UpdateGuardrailCommand";
39
48
  import { UpdateProvisionedModelThroughputCommandInput, UpdateProvisionedModelThroughputCommandOutput } from "../commands/UpdateProvisionedModelThroughputCommand";
49
+ /**
50
+ * serializeAws_restJson1BatchDeleteEvaluationJobCommand
51
+ */
52
+ export declare const se_BatchDeleteEvaluationJobCommand: (input: BatchDeleteEvaluationJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
53
  /**
41
54
  * serializeAws_restJson1CreateEvaluationJobCommand
42
55
  */
@@ -57,6 +70,10 @@ export declare const se_CreateModelCopyJobCommand: (input: CreateModelCopyJobCom
57
70
  * serializeAws_restJson1CreateModelCustomizationJobCommand
58
71
  */
59
72
  export declare const se_CreateModelCustomizationJobCommand: (input: CreateModelCustomizationJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
+ /**
74
+ * serializeAws_restJson1CreateModelImportJobCommand
75
+ */
76
+ export declare const se_CreateModelImportJobCommand: (input: CreateModelImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
77
  /**
61
78
  * serializeAws_restJson1CreateModelInvocationJobCommand
62
79
  */
@@ -73,6 +90,10 @@ export declare const se_DeleteCustomModelCommand: (input: DeleteCustomModelComma
73
90
  * serializeAws_restJson1DeleteGuardrailCommand
74
91
  */
75
92
  export declare const se_DeleteGuardrailCommand: (input: DeleteGuardrailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
93
+ /**
94
+ * serializeAws_restJson1DeleteImportedModelCommand
95
+ */
96
+ export declare const se_DeleteImportedModelCommand: (input: DeleteImportedModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
97
  /**
77
98
  * serializeAws_restJson1DeleteModelInvocationLoggingConfigurationCommand
78
99
  */
@@ -97,6 +118,14 @@ export declare const se_GetFoundationModelCommand: (input: GetFoundationModelCom
97
118
  * serializeAws_restJson1GetGuardrailCommand
98
119
  */
99
120
  export declare const se_GetGuardrailCommand: (input: GetGuardrailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
121
+ /**
122
+ * serializeAws_restJson1GetImportedModelCommand
123
+ */
124
+ export declare const se_GetImportedModelCommand: (input: GetImportedModelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
125
+ /**
126
+ * serializeAws_restJson1GetInferenceProfileCommand
127
+ */
128
+ export declare const se_GetInferenceProfileCommand: (input: GetInferenceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
100
129
  /**
101
130
  * serializeAws_restJson1GetModelCopyJobCommand
102
131
  */
@@ -105,6 +134,10 @@ export declare const se_GetModelCopyJobCommand: (input: GetModelCopyJobCommandIn
105
134
  * serializeAws_restJson1GetModelCustomizationJobCommand
106
135
  */
107
136
  export declare const se_GetModelCustomizationJobCommand: (input: GetModelCustomizationJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
137
+ /**
138
+ * serializeAws_restJson1GetModelImportJobCommand
139
+ */
140
+ export declare const se_GetModelImportJobCommand: (input: GetModelImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
108
141
  /**
109
142
  * serializeAws_restJson1GetModelInvocationJobCommand
110
143
  */
@@ -133,6 +166,14 @@ export declare const se_ListFoundationModelsCommand: (input: ListFoundationModel
133
166
  * serializeAws_restJson1ListGuardrailsCommand
134
167
  */
135
168
  export declare const se_ListGuardrailsCommand: (input: ListGuardrailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
169
+ /**
170
+ * serializeAws_restJson1ListImportedModelsCommand
171
+ */
172
+ export declare const se_ListImportedModelsCommand: (input: ListImportedModelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
173
+ /**
174
+ * serializeAws_restJson1ListInferenceProfilesCommand
175
+ */
176
+ export declare const se_ListInferenceProfilesCommand: (input: ListInferenceProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
136
177
  /**
137
178
  * serializeAws_restJson1ListModelCopyJobsCommand
138
179
  */
@@ -141,6 +182,10 @@ export declare const se_ListModelCopyJobsCommand: (input: ListModelCopyJobsComma
141
182
  * serializeAws_restJson1ListModelCustomizationJobsCommand
142
183
  */
143
184
  export declare const se_ListModelCustomizationJobsCommand: (input: ListModelCustomizationJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
185
+ /**
186
+ * serializeAws_restJson1ListModelImportJobsCommand
187
+ */
188
+ export declare const se_ListModelImportJobsCommand: (input: ListModelImportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
144
189
  /**
145
190
  * serializeAws_restJson1ListModelInvocationJobsCommand
146
191
  */
@@ -185,6 +230,10 @@ export declare const se_UpdateGuardrailCommand: (input: UpdateGuardrailCommandIn
185
230
  * serializeAws_restJson1UpdateProvisionedModelThroughputCommand
186
231
  */
187
232
  export declare const se_UpdateProvisionedModelThroughputCommand: (input: UpdateProvisionedModelThroughputCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
233
+ /**
234
+ * deserializeAws_restJson1BatchDeleteEvaluationJobCommand
235
+ */
236
+ export declare const de_BatchDeleteEvaluationJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchDeleteEvaluationJobCommandOutput>;
188
237
  /**
189
238
  * deserializeAws_restJson1CreateEvaluationJobCommand
190
239
  */
@@ -205,6 +254,10 @@ export declare const de_CreateModelCopyJobCommand: (output: __HttpResponse, cont
205
254
  * deserializeAws_restJson1CreateModelCustomizationJobCommand
206
255
  */
207
256
  export declare const de_CreateModelCustomizationJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateModelCustomizationJobCommandOutput>;
257
+ /**
258
+ * deserializeAws_restJson1CreateModelImportJobCommand
259
+ */
260
+ export declare const de_CreateModelImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateModelImportJobCommandOutput>;
208
261
  /**
209
262
  * deserializeAws_restJson1CreateModelInvocationJobCommand
210
263
  */
@@ -221,6 +274,10 @@ export declare const de_DeleteCustomModelCommand: (output: __HttpResponse, conte
221
274
  * deserializeAws_restJson1DeleteGuardrailCommand
222
275
  */
223
276
  export declare const de_DeleteGuardrailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGuardrailCommandOutput>;
277
+ /**
278
+ * deserializeAws_restJson1DeleteImportedModelCommand
279
+ */
280
+ export declare const de_DeleteImportedModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteImportedModelCommandOutput>;
224
281
  /**
225
282
  * deserializeAws_restJson1DeleteModelInvocationLoggingConfigurationCommand
226
283
  */
@@ -245,6 +302,14 @@ export declare const de_GetFoundationModelCommand: (output: __HttpResponse, cont
245
302
  * deserializeAws_restJson1GetGuardrailCommand
246
303
  */
247
304
  export declare const de_GetGuardrailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGuardrailCommandOutput>;
305
+ /**
306
+ * deserializeAws_restJson1GetImportedModelCommand
307
+ */
308
+ export declare const de_GetImportedModelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetImportedModelCommandOutput>;
309
+ /**
310
+ * deserializeAws_restJson1GetInferenceProfileCommand
311
+ */
312
+ export declare const de_GetInferenceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInferenceProfileCommandOutput>;
248
313
  /**
249
314
  * deserializeAws_restJson1GetModelCopyJobCommand
250
315
  */
@@ -253,6 +318,10 @@ export declare const de_GetModelCopyJobCommand: (output: __HttpResponse, context
253
318
  * deserializeAws_restJson1GetModelCustomizationJobCommand
254
319
  */
255
320
  export declare const de_GetModelCustomizationJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetModelCustomizationJobCommandOutput>;
321
+ /**
322
+ * deserializeAws_restJson1GetModelImportJobCommand
323
+ */
324
+ export declare const de_GetModelImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetModelImportJobCommandOutput>;
256
325
  /**
257
326
  * deserializeAws_restJson1GetModelInvocationJobCommand
258
327
  */
@@ -281,6 +350,14 @@ export declare const de_ListFoundationModelsCommand: (output: __HttpResponse, co
281
350
  * deserializeAws_restJson1ListGuardrailsCommand
282
351
  */
283
352
  export declare const de_ListGuardrailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGuardrailsCommandOutput>;
353
+ /**
354
+ * deserializeAws_restJson1ListImportedModelsCommand
355
+ */
356
+ export declare const de_ListImportedModelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListImportedModelsCommandOutput>;
357
+ /**
358
+ * deserializeAws_restJson1ListInferenceProfilesCommand
359
+ */
360
+ export declare const de_ListInferenceProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInferenceProfilesCommandOutput>;
284
361
  /**
285
362
  * deserializeAws_restJson1ListModelCopyJobsCommand
286
363
  */
@@ -289,6 +366,10 @@ export declare const de_ListModelCopyJobsCommand: (output: __HttpResponse, conte
289
366
  * deserializeAws_restJson1ListModelCustomizationJobsCommand
290
367
  */
291
368
  export declare const de_ListModelCustomizationJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListModelCustomizationJobsCommandOutput>;
369
+ /**
370
+ * deserializeAws_restJson1ListModelImportJobsCommand
371
+ */
372
+ export declare const de_ListModelImportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListModelImportJobsCommandOutput>;
292
373
  /**
293
374
  * deserializeAws_restJson1ListModelInvocationJobsCommand
294
375
  */
@@ -1,5 +1,9 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
2
  import { BedrockClient } from "./BedrockClient";
3
+ import {
4
+ BatchDeleteEvaluationJobCommandInput,
5
+ BatchDeleteEvaluationJobCommandOutput,
6
+ } from "./commands/BatchDeleteEvaluationJobCommand";
3
7
  import {
4
8
  CreateEvaluationJobCommandInput,
5
9
  CreateEvaluationJobCommandOutput,
@@ -20,6 +24,10 @@ import {
20
24
  CreateModelCustomizationJobCommandInput,
21
25
  CreateModelCustomizationJobCommandOutput,
22
26
  } from "./commands/CreateModelCustomizationJobCommand";
27
+ import {
28
+ CreateModelImportJobCommandInput,
29
+ CreateModelImportJobCommandOutput,
30
+ } from "./commands/CreateModelImportJobCommand";
23
31
  import {
24
32
  CreateModelInvocationJobCommandInput,
25
33
  CreateModelInvocationJobCommandOutput,
@@ -36,6 +44,10 @@ import {
36
44
  DeleteGuardrailCommandInput,
37
45
  DeleteGuardrailCommandOutput,
38
46
  } from "./commands/DeleteGuardrailCommand";
47
+ import {
48
+ DeleteImportedModelCommandInput,
49
+ DeleteImportedModelCommandOutput,
50
+ } from "./commands/DeleteImportedModelCommand";
39
51
  import {
40
52
  DeleteModelInvocationLoggingConfigurationCommandInput,
41
53
  DeleteModelInvocationLoggingConfigurationCommandOutput,
@@ -60,6 +72,14 @@ import {
60
72
  GetGuardrailCommandInput,
61
73
  GetGuardrailCommandOutput,
62
74
  } from "./commands/GetGuardrailCommand";
75
+ import {
76
+ GetImportedModelCommandInput,
77
+ GetImportedModelCommandOutput,
78
+ } from "./commands/GetImportedModelCommand";
79
+ import {
80
+ GetInferenceProfileCommandInput,
81
+ GetInferenceProfileCommandOutput,
82
+ } from "./commands/GetInferenceProfileCommand";
63
83
  import {
64
84
  GetModelCopyJobCommandInput,
65
85
  GetModelCopyJobCommandOutput,
@@ -68,6 +88,10 @@ import {
68
88
  GetModelCustomizationJobCommandInput,
69
89
  GetModelCustomizationJobCommandOutput,
70
90
  } from "./commands/GetModelCustomizationJobCommand";
91
+ import {
92
+ GetModelImportJobCommandInput,
93
+ GetModelImportJobCommandOutput,
94
+ } from "./commands/GetModelImportJobCommand";
71
95
  import {
72
96
  GetModelInvocationJobCommandInput,
73
97
  GetModelInvocationJobCommandOutput,
@@ -96,6 +120,14 @@ import {
96
120
  ListGuardrailsCommandInput,
97
121
  ListGuardrailsCommandOutput,
98
122
  } from "./commands/ListGuardrailsCommand";
123
+ import {
124
+ ListImportedModelsCommandInput,
125
+ ListImportedModelsCommandOutput,
126
+ } from "./commands/ListImportedModelsCommand";
127
+ import {
128
+ ListInferenceProfilesCommandInput,
129
+ ListInferenceProfilesCommandOutput,
130
+ } from "./commands/ListInferenceProfilesCommand";
99
131
  import {
100
132
  ListModelCopyJobsCommandInput,
101
133
  ListModelCopyJobsCommandOutput,
@@ -104,6 +136,10 @@ import {
104
136
  ListModelCustomizationJobsCommandInput,
105
137
  ListModelCustomizationJobsCommandOutput,
106
138
  } from "./commands/ListModelCustomizationJobsCommand";
139
+ import {
140
+ ListModelImportJobsCommandInput,
141
+ ListModelImportJobsCommandOutput,
142
+ } from "./commands/ListModelImportJobsCommand";
107
143
  import {
108
144
  ListModelInvocationJobsCommandInput,
109
145
  ListModelInvocationJobsCommandOutput,
@@ -149,6 +185,19 @@ import {
149
185
  UpdateProvisionedModelThroughputCommandOutput,
150
186
  } from "./commands/UpdateProvisionedModelThroughputCommand";
151
187
  export interface Bedrock {
188
+ batchDeleteEvaluationJob(
189
+ args: BatchDeleteEvaluationJobCommandInput,
190
+ options?: __HttpHandlerOptions
191
+ ): Promise<BatchDeleteEvaluationJobCommandOutput>;
192
+ batchDeleteEvaluationJob(
193
+ args: BatchDeleteEvaluationJobCommandInput,
194
+ cb: (err: any, data?: BatchDeleteEvaluationJobCommandOutput) => void
195
+ ): void;
196
+ batchDeleteEvaluationJob(
197
+ args: BatchDeleteEvaluationJobCommandInput,
198
+ options: __HttpHandlerOptions,
199
+ cb: (err: any, data?: BatchDeleteEvaluationJobCommandOutput) => void
200
+ ): void;
152
201
  createEvaluationJob(
153
202
  args: CreateEvaluationJobCommandInput,
154
203
  options?: __HttpHandlerOptions
@@ -214,6 +263,19 @@ export interface Bedrock {
214
263
  options: __HttpHandlerOptions,
215
264
  cb: (err: any, data?: CreateModelCustomizationJobCommandOutput) => void
216
265
  ): void;
266
+ createModelImportJob(
267
+ args: CreateModelImportJobCommandInput,
268
+ options?: __HttpHandlerOptions
269
+ ): Promise<CreateModelImportJobCommandOutput>;
270
+ createModelImportJob(
271
+ args: CreateModelImportJobCommandInput,
272
+ cb: (err: any, data?: CreateModelImportJobCommandOutput) => void
273
+ ): void;
274
+ createModelImportJob(
275
+ args: CreateModelImportJobCommandInput,
276
+ options: __HttpHandlerOptions,
277
+ cb: (err: any, data?: CreateModelImportJobCommandOutput) => void
278
+ ): void;
217
279
  createModelInvocationJob(
218
280
  args: CreateModelInvocationJobCommandInput,
219
281
  options?: __HttpHandlerOptions
@@ -266,6 +328,19 @@ export interface Bedrock {
266
328
  options: __HttpHandlerOptions,
267
329
  cb: (err: any, data?: DeleteGuardrailCommandOutput) => void
268
330
  ): void;
331
+ deleteImportedModel(
332
+ args: DeleteImportedModelCommandInput,
333
+ options?: __HttpHandlerOptions
334
+ ): Promise<DeleteImportedModelCommandOutput>;
335
+ deleteImportedModel(
336
+ args: DeleteImportedModelCommandInput,
337
+ cb: (err: any, data?: DeleteImportedModelCommandOutput) => void
338
+ ): void;
339
+ deleteImportedModel(
340
+ args: DeleteImportedModelCommandInput,
341
+ options: __HttpHandlerOptions,
342
+ cb: (err: any, data?: DeleteImportedModelCommandOutput) => void
343
+ ): void;
269
344
  deleteModelInvocationLoggingConfiguration(): Promise<DeleteModelInvocationLoggingConfigurationCommandOutput>;
270
345
  deleteModelInvocationLoggingConfiguration(
271
346
  args: DeleteModelInvocationLoggingConfigurationCommandInput,
@@ -351,6 +426,32 @@ export interface Bedrock {
351
426
  options: __HttpHandlerOptions,
352
427
  cb: (err: any, data?: GetGuardrailCommandOutput) => void
353
428
  ): void;
429
+ getImportedModel(
430
+ args: GetImportedModelCommandInput,
431
+ options?: __HttpHandlerOptions
432
+ ): Promise<GetImportedModelCommandOutput>;
433
+ getImportedModel(
434
+ args: GetImportedModelCommandInput,
435
+ cb: (err: any, data?: GetImportedModelCommandOutput) => void
436
+ ): void;
437
+ getImportedModel(
438
+ args: GetImportedModelCommandInput,
439
+ options: __HttpHandlerOptions,
440
+ cb: (err: any, data?: GetImportedModelCommandOutput) => void
441
+ ): void;
442
+ getInferenceProfile(
443
+ args: GetInferenceProfileCommandInput,
444
+ options?: __HttpHandlerOptions
445
+ ): Promise<GetInferenceProfileCommandOutput>;
446
+ getInferenceProfile(
447
+ args: GetInferenceProfileCommandInput,
448
+ cb: (err: any, data?: GetInferenceProfileCommandOutput) => void
449
+ ): void;
450
+ getInferenceProfile(
451
+ args: GetInferenceProfileCommandInput,
452
+ options: __HttpHandlerOptions,
453
+ cb: (err: any, data?: GetInferenceProfileCommandOutput) => void
454
+ ): void;
354
455
  getModelCopyJob(
355
456
  args: GetModelCopyJobCommandInput,
356
457
  options?: __HttpHandlerOptions
@@ -377,6 +478,19 @@ export interface Bedrock {
377
478
  options: __HttpHandlerOptions,
378
479
  cb: (err: any, data?: GetModelCustomizationJobCommandOutput) => void
379
480
  ): void;
481
+ getModelImportJob(
482
+ args: GetModelImportJobCommandInput,
483
+ options?: __HttpHandlerOptions
484
+ ): Promise<GetModelImportJobCommandOutput>;
485
+ getModelImportJob(
486
+ args: GetModelImportJobCommandInput,
487
+ cb: (err: any, data?: GetModelImportJobCommandOutput) => void
488
+ ): void;
489
+ getModelImportJob(
490
+ args: GetModelImportJobCommandInput,
491
+ options: __HttpHandlerOptions,
492
+ cb: (err: any, data?: GetModelImportJobCommandOutput) => void
493
+ ): void;
380
494
  getModelInvocationJob(
381
495
  args: GetModelInvocationJobCommandInput,
382
496
  options?: __HttpHandlerOptions
@@ -479,6 +593,34 @@ export interface Bedrock {
479
593
  options: __HttpHandlerOptions,
480
594
  cb: (err: any, data?: ListGuardrailsCommandOutput) => void
481
595
  ): void;
596
+ listImportedModels(): Promise<ListImportedModelsCommandOutput>;
597
+ listImportedModels(
598
+ args: ListImportedModelsCommandInput,
599
+ options?: __HttpHandlerOptions
600
+ ): Promise<ListImportedModelsCommandOutput>;
601
+ listImportedModels(
602
+ args: ListImportedModelsCommandInput,
603
+ cb: (err: any, data?: ListImportedModelsCommandOutput) => void
604
+ ): void;
605
+ listImportedModels(
606
+ args: ListImportedModelsCommandInput,
607
+ options: __HttpHandlerOptions,
608
+ cb: (err: any, data?: ListImportedModelsCommandOutput) => void
609
+ ): void;
610
+ listInferenceProfiles(): Promise<ListInferenceProfilesCommandOutput>;
611
+ listInferenceProfiles(
612
+ args: ListInferenceProfilesCommandInput,
613
+ options?: __HttpHandlerOptions
614
+ ): Promise<ListInferenceProfilesCommandOutput>;
615
+ listInferenceProfiles(
616
+ args: ListInferenceProfilesCommandInput,
617
+ cb: (err: any, data?: ListInferenceProfilesCommandOutput) => void
618
+ ): void;
619
+ listInferenceProfiles(
620
+ args: ListInferenceProfilesCommandInput,
621
+ options: __HttpHandlerOptions,
622
+ cb: (err: any, data?: ListInferenceProfilesCommandOutput) => void
623
+ ): void;
482
624
  listModelCopyJobs(): Promise<ListModelCopyJobsCommandOutput>;
483
625
  listModelCopyJobs(
484
626
  args: ListModelCopyJobsCommandInput,
@@ -507,6 +649,20 @@ export interface Bedrock {
507
649
  options: __HttpHandlerOptions,
508
650
  cb: (err: any, data?: ListModelCustomizationJobsCommandOutput) => void
509
651
  ): void;
652
+ listModelImportJobs(): Promise<ListModelImportJobsCommandOutput>;
653
+ listModelImportJobs(
654
+ args: ListModelImportJobsCommandInput,
655
+ options?: __HttpHandlerOptions
656
+ ): Promise<ListModelImportJobsCommandOutput>;
657
+ listModelImportJobs(
658
+ args: ListModelImportJobsCommandInput,
659
+ cb: (err: any, data?: ListModelImportJobsCommandOutput) => void
660
+ ): void;
661
+ listModelImportJobs(
662
+ args: ListModelImportJobsCommandInput,
663
+ options: __HttpHandlerOptions,
664
+ cb: (err: any, data?: ListModelImportJobsCommandOutput) => void
665
+ ): void;
510
666
  listModelInvocationJobs(): Promise<ListModelInvocationJobsCommandOutput>;
511
667
  listModelInvocationJobs(
512
668
  args: ListModelInvocationJobsCommandInput,
@@ -45,6 +45,10 @@ import {
45
45
  HttpAuthSchemeInputConfig,
46
46
  HttpAuthSchemeResolvedConfig,
47
47
  } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ BatchDeleteEvaluationJobCommandInput,
50
+ BatchDeleteEvaluationJobCommandOutput,
51
+ } from "./commands/BatchDeleteEvaluationJobCommand";
48
52
  import {
49
53
  CreateEvaluationJobCommandInput,
50
54
  CreateEvaluationJobCommandOutput,
@@ -65,6 +69,10 @@ import {
65
69
  CreateModelCustomizationJobCommandInput,
66
70
  CreateModelCustomizationJobCommandOutput,
67
71
  } from "./commands/CreateModelCustomizationJobCommand";
72
+ import {
73
+ CreateModelImportJobCommandInput,
74
+ CreateModelImportJobCommandOutput,
75
+ } from "./commands/CreateModelImportJobCommand";
68
76
  import {
69
77
  CreateModelInvocationJobCommandInput,
70
78
  CreateModelInvocationJobCommandOutput,
@@ -81,6 +89,10 @@ import {
81
89
  DeleteGuardrailCommandInput,
82
90
  DeleteGuardrailCommandOutput,
83
91
  } from "./commands/DeleteGuardrailCommand";
92
+ import {
93
+ DeleteImportedModelCommandInput,
94
+ DeleteImportedModelCommandOutput,
95
+ } from "./commands/DeleteImportedModelCommand";
84
96
  import {
85
97
  DeleteModelInvocationLoggingConfigurationCommandInput,
86
98
  DeleteModelInvocationLoggingConfigurationCommandOutput,
@@ -105,6 +117,14 @@ import {
105
117
  GetGuardrailCommandInput,
106
118
  GetGuardrailCommandOutput,
107
119
  } from "./commands/GetGuardrailCommand";
120
+ import {
121
+ GetImportedModelCommandInput,
122
+ GetImportedModelCommandOutput,
123
+ } from "./commands/GetImportedModelCommand";
124
+ import {
125
+ GetInferenceProfileCommandInput,
126
+ GetInferenceProfileCommandOutput,
127
+ } from "./commands/GetInferenceProfileCommand";
108
128
  import {
109
129
  GetModelCopyJobCommandInput,
110
130
  GetModelCopyJobCommandOutput,
@@ -113,6 +133,10 @@ import {
113
133
  GetModelCustomizationJobCommandInput,
114
134
  GetModelCustomizationJobCommandOutput,
115
135
  } from "./commands/GetModelCustomizationJobCommand";
136
+ import {
137
+ GetModelImportJobCommandInput,
138
+ GetModelImportJobCommandOutput,
139
+ } from "./commands/GetModelImportJobCommand";
116
140
  import {
117
141
  GetModelInvocationJobCommandInput,
118
142
  GetModelInvocationJobCommandOutput,
@@ -141,6 +165,14 @@ import {
141
165
  ListGuardrailsCommandInput,
142
166
  ListGuardrailsCommandOutput,
143
167
  } from "./commands/ListGuardrailsCommand";
168
+ import {
169
+ ListImportedModelsCommandInput,
170
+ ListImportedModelsCommandOutput,
171
+ } from "./commands/ListImportedModelsCommand";
172
+ import {
173
+ ListInferenceProfilesCommandInput,
174
+ ListInferenceProfilesCommandOutput,
175
+ } from "./commands/ListInferenceProfilesCommand";
144
176
  import {
145
177
  ListModelCopyJobsCommandInput,
146
178
  ListModelCopyJobsCommandOutput,
@@ -149,6 +181,10 @@ import {
149
181
  ListModelCustomizationJobsCommandInput,
150
182
  ListModelCustomizationJobsCommandOutput,
151
183
  } from "./commands/ListModelCustomizationJobsCommand";
184
+ import {
185
+ ListModelImportJobsCommandInput,
186
+ ListModelImportJobsCommandOutput,
187
+ } from "./commands/ListModelImportJobsCommand";
152
188
  import {
153
189
  ListModelInvocationJobsCommandInput,
154
190
  ListModelInvocationJobsCommandOutput,
@@ -201,23 +237,29 @@ import {
201
237
  import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
202
238
  export { __Client };
203
239
  export type ServiceInputTypes =
240
+ | BatchDeleteEvaluationJobCommandInput
204
241
  | CreateEvaluationJobCommandInput
205
242
  | CreateGuardrailCommandInput
206
243
  | CreateGuardrailVersionCommandInput
207
244
  | CreateModelCopyJobCommandInput
208
245
  | CreateModelCustomizationJobCommandInput
246
+ | CreateModelImportJobCommandInput
209
247
  | CreateModelInvocationJobCommandInput
210
248
  | CreateProvisionedModelThroughputCommandInput
211
249
  | DeleteCustomModelCommandInput
212
250
  | DeleteGuardrailCommandInput
251
+ | DeleteImportedModelCommandInput
213
252
  | DeleteModelInvocationLoggingConfigurationCommandInput
214
253
  | DeleteProvisionedModelThroughputCommandInput
215
254
  | GetCustomModelCommandInput
216
255
  | GetEvaluationJobCommandInput
217
256
  | GetFoundationModelCommandInput
218
257
  | GetGuardrailCommandInput
258
+ | GetImportedModelCommandInput
259
+ | GetInferenceProfileCommandInput
219
260
  | GetModelCopyJobCommandInput
220
261
  | GetModelCustomizationJobCommandInput
262
+ | GetModelImportJobCommandInput
221
263
  | GetModelInvocationJobCommandInput
222
264
  | GetModelInvocationLoggingConfigurationCommandInput
223
265
  | GetProvisionedModelThroughputCommandInput
@@ -225,8 +267,11 @@ export type ServiceInputTypes =
225
267
  | ListEvaluationJobsCommandInput
226
268
  | ListFoundationModelsCommandInput
227
269
  | ListGuardrailsCommandInput
270
+ | ListImportedModelsCommandInput
271
+ | ListInferenceProfilesCommandInput
228
272
  | ListModelCopyJobsCommandInput
229
273
  | ListModelCustomizationJobsCommandInput
274
+ | ListModelImportJobsCommandInput
230
275
  | ListModelInvocationJobsCommandInput
231
276
  | ListProvisionedModelThroughputsCommandInput
232
277
  | ListTagsForResourceCommandInput
@@ -239,23 +284,29 @@ export type ServiceInputTypes =
239
284
  | UpdateGuardrailCommandInput
240
285
  | UpdateProvisionedModelThroughputCommandInput;
241
286
  export type ServiceOutputTypes =
287
+ | BatchDeleteEvaluationJobCommandOutput
242
288
  | CreateEvaluationJobCommandOutput
243
289
  | CreateGuardrailCommandOutput
244
290
  | CreateGuardrailVersionCommandOutput
245
291
  | CreateModelCopyJobCommandOutput
246
292
  | CreateModelCustomizationJobCommandOutput
293
+ | CreateModelImportJobCommandOutput
247
294
  | CreateModelInvocationJobCommandOutput
248
295
  | CreateProvisionedModelThroughputCommandOutput
249
296
  | DeleteCustomModelCommandOutput
250
297
  | DeleteGuardrailCommandOutput
298
+ | DeleteImportedModelCommandOutput
251
299
  | DeleteModelInvocationLoggingConfigurationCommandOutput
252
300
  | DeleteProvisionedModelThroughputCommandOutput
253
301
  | GetCustomModelCommandOutput
254
302
  | GetEvaluationJobCommandOutput
255
303
  | GetFoundationModelCommandOutput
256
304
  | GetGuardrailCommandOutput
305
+ | GetImportedModelCommandOutput
306
+ | GetInferenceProfileCommandOutput
257
307
  | GetModelCopyJobCommandOutput
258
308
  | GetModelCustomizationJobCommandOutput
309
+ | GetModelImportJobCommandOutput
259
310
  | GetModelInvocationJobCommandOutput
260
311
  | GetModelInvocationLoggingConfigurationCommandOutput
261
312
  | GetProvisionedModelThroughputCommandOutput
@@ -263,8 +314,11 @@ export type ServiceOutputTypes =
263
314
  | ListEvaluationJobsCommandOutput
264
315
  | ListFoundationModelsCommandOutput
265
316
  | ListGuardrailsCommandOutput
317
+ | ListImportedModelsCommandOutput
318
+ | ListInferenceProfilesCommandOutput
266
319
  | ListModelCopyJobsCommandOutput
267
320
  | ListModelCustomizationJobsCommandOutput
321
+ | ListModelImportJobsCommandOutput
268
322
  | ListModelInvocationJobsCommandOutput
269
323
  | ListProvisionedModelThroughputsCommandOutput
270
324
  | ListTagsForResourceCommandOutput