@aws-sdk/client-bedrock 3.632.0 → 3.634.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 (35) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/index.js +296 -1
  3. package/dist-es/Bedrock.js +8 -0
  4. package/dist-es/commands/CreateModelInvocationJobCommand.js +24 -0
  5. package/dist-es/commands/GetModelInvocationJobCommand.js +25 -0
  6. package/dist-es/commands/ListModelInvocationJobsCommand.js +25 -0
  7. package/dist-es/commands/StopModelInvocationJobCommand.js +24 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/models_0.js +49 -0
  10. package/dist-es/pagination/ListModelInvocationJobsPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/protocols/Aws_restJson1.js +150 -0
  13. package/dist-types/Bedrock.d.ts +29 -0
  14. package/dist-types/BedrockClient.d.ts +6 -2
  15. package/dist-types/commands/CreateModelInvocationJobCommand.d.ts +104 -0
  16. package/dist-types/commands/GetModelInvocationJobCommand.d.ts +99 -0
  17. package/dist-types/commands/ListModelInvocationJobsCommand.d.ts +107 -0
  18. package/dist-types/commands/StopModelInvocationJobCommand.d.ts +76 -0
  19. package/dist-types/commands/index.d.ts +4 -0
  20. package/dist-types/models/models_0.d.ts +433 -0
  21. package/dist-types/pagination/ListModelInvocationJobsPaginator.d.ts +7 -0
  22. package/dist-types/pagination/index.d.ts +1 -0
  23. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  24. package/dist-types/ts3.4/Bedrock.d.ts +69 -0
  25. package/dist-types/ts3.4/BedrockClient.d.ts +24 -0
  26. package/dist-types/ts3.4/commands/CreateModelInvocationJobCommand.d.ts +40 -0
  27. package/dist-types/ts3.4/commands/GetModelInvocationJobCommand.d.ts +40 -0
  28. package/dist-types/ts3.4/commands/ListModelInvocationJobsCommand.d.ts +40 -0
  29. package/dist-types/ts3.4/commands/StopModelInvocationJobCommand.d.ts +40 -0
  30. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +143 -0
  32. package/dist-types/ts3.4/pagination/ListModelInvocationJobsPaginator.d.ts +11 -0
  33. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  34. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  35. package/package.json +1 -1
@@ -23,6 +23,10 @@ import {
23
23
  CreateModelCustomizationJobCommandInput,
24
24
  CreateModelCustomizationJobCommandOutput,
25
25
  } from "../commands/CreateModelCustomizationJobCommand";
26
+ import {
27
+ CreateModelInvocationJobCommandInput,
28
+ CreateModelInvocationJobCommandOutput,
29
+ } from "../commands/CreateModelInvocationJobCommand";
26
30
  import {
27
31
  CreateProvisionedModelThroughputCommandInput,
28
32
  CreateProvisionedModelThroughputCommandOutput,
@@ -67,6 +71,10 @@ import {
67
71
  GetModelCustomizationJobCommandInput,
68
72
  GetModelCustomizationJobCommandOutput,
69
73
  } from "../commands/GetModelCustomizationJobCommand";
74
+ import {
75
+ GetModelInvocationJobCommandInput,
76
+ GetModelInvocationJobCommandOutput,
77
+ } from "../commands/GetModelInvocationJobCommand";
70
78
  import {
71
79
  GetModelInvocationLoggingConfigurationCommandInput,
72
80
  GetModelInvocationLoggingConfigurationCommandOutput,
@@ -99,6 +107,10 @@ import {
99
107
  ListModelCustomizationJobsCommandInput,
100
108
  ListModelCustomizationJobsCommandOutput,
101
109
  } from "../commands/ListModelCustomizationJobsCommand";
110
+ import {
111
+ ListModelInvocationJobsCommandInput,
112
+ ListModelInvocationJobsCommandOutput,
113
+ } from "../commands/ListModelInvocationJobsCommand";
102
114
  import {
103
115
  ListProvisionedModelThroughputsCommandInput,
104
116
  ListProvisionedModelThroughputsCommandOutput,
@@ -119,6 +131,10 @@ import {
119
131
  StopModelCustomizationJobCommandInput,
120
132
  StopModelCustomizationJobCommandOutput,
121
133
  } from "../commands/StopModelCustomizationJobCommand";
134
+ import {
135
+ StopModelInvocationJobCommandInput,
136
+ StopModelInvocationJobCommandOutput,
137
+ } from "../commands/StopModelInvocationJobCommand";
122
138
  import {
123
139
  TagResourceCommandInput,
124
140
  TagResourceCommandOutput,
@@ -155,6 +171,10 @@ export declare const se_CreateModelCustomizationJobCommand: (
155
171
  input: CreateModelCustomizationJobCommandInput,
156
172
  context: __SerdeContext
157
173
  ) => Promise<__HttpRequest>;
174
+ export declare const se_CreateModelInvocationJobCommand: (
175
+ input: CreateModelInvocationJobCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
158
178
  export declare const se_CreateProvisionedModelThroughputCommand: (
159
179
  input: CreateProvisionedModelThroughputCommandInput,
160
180
  context: __SerdeContext
@@ -199,6 +219,10 @@ export declare const se_GetModelCustomizationJobCommand: (
199
219
  input: GetModelCustomizationJobCommandInput,
200
220
  context: __SerdeContext
201
221
  ) => Promise<__HttpRequest>;
222
+ export declare const se_GetModelInvocationJobCommand: (
223
+ input: GetModelInvocationJobCommandInput,
224
+ context: __SerdeContext
225
+ ) => Promise<__HttpRequest>;
202
226
  export declare const se_GetModelInvocationLoggingConfigurationCommand: (
203
227
  input: GetModelInvocationLoggingConfigurationCommandInput,
204
228
  context: __SerdeContext
@@ -231,6 +255,10 @@ export declare const se_ListModelCustomizationJobsCommand: (
231
255
  input: ListModelCustomizationJobsCommandInput,
232
256
  context: __SerdeContext
233
257
  ) => Promise<__HttpRequest>;
258
+ export declare const se_ListModelInvocationJobsCommand: (
259
+ input: ListModelInvocationJobsCommandInput,
260
+ context: __SerdeContext
261
+ ) => Promise<__HttpRequest>;
234
262
  export declare const se_ListProvisionedModelThroughputsCommand: (
235
263
  input: ListProvisionedModelThroughputsCommandInput,
236
264
  context: __SerdeContext
@@ -251,6 +279,10 @@ export declare const se_StopModelCustomizationJobCommand: (
251
279
  input: StopModelCustomizationJobCommandInput,
252
280
  context: __SerdeContext
253
281
  ) => Promise<__HttpRequest>;
282
+ export declare const se_StopModelInvocationJobCommand: (
283
+ input: StopModelInvocationJobCommandInput,
284
+ context: __SerdeContext
285
+ ) => Promise<__HttpRequest>;
254
286
  export declare const se_TagResourceCommand: (
255
287
  input: TagResourceCommandInput,
256
288
  context: __SerdeContext
@@ -287,6 +319,10 @@ export declare const de_CreateModelCustomizationJobCommand: (
287
319
  output: __HttpResponse,
288
320
  context: __SerdeContext
289
321
  ) => Promise<CreateModelCustomizationJobCommandOutput>;
322
+ export declare const de_CreateModelInvocationJobCommand: (
323
+ output: __HttpResponse,
324
+ context: __SerdeContext
325
+ ) => Promise<CreateModelInvocationJobCommandOutput>;
290
326
  export declare const de_CreateProvisionedModelThroughputCommand: (
291
327
  output: __HttpResponse,
292
328
  context: __SerdeContext
@@ -331,6 +367,10 @@ export declare const de_GetModelCustomizationJobCommand: (
331
367
  output: __HttpResponse,
332
368
  context: __SerdeContext
333
369
  ) => Promise<GetModelCustomizationJobCommandOutput>;
370
+ export declare const de_GetModelInvocationJobCommand: (
371
+ output: __HttpResponse,
372
+ context: __SerdeContext
373
+ ) => Promise<GetModelInvocationJobCommandOutput>;
334
374
  export declare const de_GetModelInvocationLoggingConfigurationCommand: (
335
375
  output: __HttpResponse,
336
376
  context: __SerdeContext
@@ -363,6 +403,10 @@ export declare const de_ListModelCustomizationJobsCommand: (
363
403
  output: __HttpResponse,
364
404
  context: __SerdeContext
365
405
  ) => Promise<ListModelCustomizationJobsCommandOutput>;
406
+ export declare const de_ListModelInvocationJobsCommand: (
407
+ output: __HttpResponse,
408
+ context: __SerdeContext
409
+ ) => Promise<ListModelInvocationJobsCommandOutput>;
366
410
  export declare const de_ListProvisionedModelThroughputsCommand: (
367
411
  output: __HttpResponse,
368
412
  context: __SerdeContext
@@ -383,6 +427,10 @@ export declare const de_StopModelCustomizationJobCommand: (
383
427
  output: __HttpResponse,
384
428
  context: __SerdeContext
385
429
  ) => Promise<StopModelCustomizationJobCommandOutput>;
430
+ export declare const de_StopModelInvocationJobCommand: (
431
+ output: __HttpResponse,
432
+ context: __SerdeContext
433
+ ) => Promise<StopModelInvocationJobCommandOutput>;
386
434
  export declare const de_TagResourceCommand: (
387
435
  output: __HttpResponse,
388
436
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-bedrock",
3
3
  "description": "AWS SDK for JavaScript Bedrock Client for Node.js, Browser and React Native",
4
- "version": "3.632.0",
4
+ "version": "3.634.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-bedrock",