@effect-aws/client-bedrock 1.10.2 → 1.10.6
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/dist/cjs/BedrockService.d.ts +146 -2
- package/dist/cjs/BedrockService.d.ts.map +1 -1
- package/dist/cjs/BedrockService.js +35 -0
- package/dist/cjs/BedrockService.js.map +1 -1
- package/dist/cjs/Errors.d.ts +3 -2
- package/dist/cjs/Errors.d.ts.map +1 -1
- package/dist/cjs/Errors.js +1 -0
- package/dist/cjs/Errors.js.map +1 -1
- package/dist/cjs/index.d.ts +5 -0
- package/dist/cjs/index.d.ts.map +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/dts/BedrockService.d.ts +146 -2
- package/dist/dts/BedrockService.d.ts.map +1 -1
- package/dist/dts/Errors.d.ts +3 -2
- package/dist/dts/Errors.d.ts.map +1 -1
- package/dist/dts/index.d.ts +5 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/esm/BedrockService.js +36 -1
- package/dist/esm/BedrockService.js.map +1 -1
- package/dist/esm/Errors.js +1 -0
- package/dist/esm/Errors.js.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
- package/src/BedrockService.ts +755 -0
- package/src/Errors.ts +3 -0
- package/src/index.ts +6 -0
package/src/BedrockService.ts
CHANGED
|
@@ -7,9 +7,30 @@ import {
|
|
|
7
7
|
type BatchDeleteEvaluationJobCommandOutput,
|
|
8
8
|
type BedrockClient,
|
|
9
9
|
type BedrockClientConfig,
|
|
10
|
+
CancelAutomatedReasoningPolicyBuildWorkflowCommand,
|
|
11
|
+
type CancelAutomatedReasoningPolicyBuildWorkflowCommandInput,
|
|
12
|
+
type CancelAutomatedReasoningPolicyBuildWorkflowCommandOutput,
|
|
13
|
+
CreateAutomatedReasoningPolicyCommand,
|
|
14
|
+
type CreateAutomatedReasoningPolicyCommandInput,
|
|
15
|
+
type CreateAutomatedReasoningPolicyCommandOutput,
|
|
16
|
+
CreateAutomatedReasoningPolicyTestCaseCommand,
|
|
17
|
+
type CreateAutomatedReasoningPolicyTestCaseCommandInput,
|
|
18
|
+
type CreateAutomatedReasoningPolicyTestCaseCommandOutput,
|
|
19
|
+
CreateAutomatedReasoningPolicyVersionCommand,
|
|
20
|
+
type CreateAutomatedReasoningPolicyVersionCommandInput,
|
|
21
|
+
type CreateAutomatedReasoningPolicyVersionCommandOutput,
|
|
22
|
+
CreateCustomModelCommand,
|
|
23
|
+
type CreateCustomModelCommandInput,
|
|
24
|
+
type CreateCustomModelCommandOutput,
|
|
25
|
+
CreateCustomModelDeploymentCommand,
|
|
26
|
+
type CreateCustomModelDeploymentCommandInput,
|
|
27
|
+
type CreateCustomModelDeploymentCommandOutput,
|
|
10
28
|
CreateEvaluationJobCommand,
|
|
11
29
|
type CreateEvaluationJobCommandInput,
|
|
12
30
|
type CreateEvaluationJobCommandOutput,
|
|
31
|
+
CreateFoundationModelAgreementCommand,
|
|
32
|
+
type CreateFoundationModelAgreementCommandInput,
|
|
33
|
+
type CreateFoundationModelAgreementCommandOutput,
|
|
13
34
|
CreateGuardrailCommand,
|
|
14
35
|
type CreateGuardrailCommandInput,
|
|
15
36
|
type CreateGuardrailCommandOutput,
|
|
@@ -40,9 +61,24 @@ import {
|
|
|
40
61
|
CreateProvisionedModelThroughputCommand,
|
|
41
62
|
type CreateProvisionedModelThroughputCommandInput,
|
|
42
63
|
type CreateProvisionedModelThroughputCommandOutput,
|
|
64
|
+
DeleteAutomatedReasoningPolicyBuildWorkflowCommand,
|
|
65
|
+
type DeleteAutomatedReasoningPolicyBuildWorkflowCommandInput,
|
|
66
|
+
type DeleteAutomatedReasoningPolicyBuildWorkflowCommandOutput,
|
|
67
|
+
DeleteAutomatedReasoningPolicyCommand,
|
|
68
|
+
type DeleteAutomatedReasoningPolicyCommandInput,
|
|
69
|
+
type DeleteAutomatedReasoningPolicyCommandOutput,
|
|
70
|
+
DeleteAutomatedReasoningPolicyTestCaseCommand,
|
|
71
|
+
type DeleteAutomatedReasoningPolicyTestCaseCommandInput,
|
|
72
|
+
type DeleteAutomatedReasoningPolicyTestCaseCommandOutput,
|
|
43
73
|
DeleteCustomModelCommand,
|
|
44
74
|
type DeleteCustomModelCommandInput,
|
|
45
75
|
type DeleteCustomModelCommandOutput,
|
|
76
|
+
DeleteCustomModelDeploymentCommand,
|
|
77
|
+
type DeleteCustomModelDeploymentCommandInput,
|
|
78
|
+
type DeleteCustomModelDeploymentCommandOutput,
|
|
79
|
+
DeleteFoundationModelAgreementCommand,
|
|
80
|
+
type DeleteFoundationModelAgreementCommandInput,
|
|
81
|
+
type DeleteFoundationModelAgreementCommandOutput,
|
|
46
82
|
DeleteGuardrailCommand,
|
|
47
83
|
type DeleteGuardrailCommandInput,
|
|
48
84
|
type DeleteGuardrailCommandOutput,
|
|
@@ -67,12 +103,42 @@ import {
|
|
|
67
103
|
DeregisterMarketplaceModelEndpointCommand,
|
|
68
104
|
type DeregisterMarketplaceModelEndpointCommandInput,
|
|
69
105
|
type DeregisterMarketplaceModelEndpointCommandOutput,
|
|
106
|
+
ExportAutomatedReasoningPolicyVersionCommand,
|
|
107
|
+
type ExportAutomatedReasoningPolicyVersionCommandInput,
|
|
108
|
+
type ExportAutomatedReasoningPolicyVersionCommandOutput,
|
|
109
|
+
GetAutomatedReasoningPolicyAnnotationsCommand,
|
|
110
|
+
type GetAutomatedReasoningPolicyAnnotationsCommandInput,
|
|
111
|
+
type GetAutomatedReasoningPolicyAnnotationsCommandOutput,
|
|
112
|
+
GetAutomatedReasoningPolicyBuildWorkflowCommand,
|
|
113
|
+
type GetAutomatedReasoningPolicyBuildWorkflowCommandInput,
|
|
114
|
+
type GetAutomatedReasoningPolicyBuildWorkflowCommandOutput,
|
|
115
|
+
GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommand,
|
|
116
|
+
type GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommandInput,
|
|
117
|
+
type GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommandOutput,
|
|
118
|
+
GetAutomatedReasoningPolicyCommand,
|
|
119
|
+
type GetAutomatedReasoningPolicyCommandInput,
|
|
120
|
+
type GetAutomatedReasoningPolicyCommandOutput,
|
|
121
|
+
GetAutomatedReasoningPolicyNextScenarioCommand,
|
|
122
|
+
type GetAutomatedReasoningPolicyNextScenarioCommandInput,
|
|
123
|
+
type GetAutomatedReasoningPolicyNextScenarioCommandOutput,
|
|
124
|
+
GetAutomatedReasoningPolicyTestCaseCommand,
|
|
125
|
+
type GetAutomatedReasoningPolicyTestCaseCommandInput,
|
|
126
|
+
type GetAutomatedReasoningPolicyTestCaseCommandOutput,
|
|
127
|
+
GetAutomatedReasoningPolicyTestResultCommand,
|
|
128
|
+
type GetAutomatedReasoningPolicyTestResultCommandInput,
|
|
129
|
+
type GetAutomatedReasoningPolicyTestResultCommandOutput,
|
|
70
130
|
GetCustomModelCommand,
|
|
71
131
|
type GetCustomModelCommandInput,
|
|
72
132
|
type GetCustomModelCommandOutput,
|
|
133
|
+
GetCustomModelDeploymentCommand,
|
|
134
|
+
type GetCustomModelDeploymentCommandInput,
|
|
135
|
+
type GetCustomModelDeploymentCommandOutput,
|
|
73
136
|
GetEvaluationJobCommand,
|
|
74
137
|
type GetEvaluationJobCommandInput,
|
|
75
138
|
type GetEvaluationJobCommandOutput,
|
|
139
|
+
GetFoundationModelAvailabilityCommand,
|
|
140
|
+
type GetFoundationModelAvailabilityCommandInput,
|
|
141
|
+
type GetFoundationModelAvailabilityCommandOutput,
|
|
76
142
|
GetFoundationModelCommand,
|
|
77
143
|
type GetFoundationModelCommandInput,
|
|
78
144
|
type GetFoundationModelCommandOutput,
|
|
@@ -109,12 +175,33 @@ import {
|
|
|
109
175
|
GetProvisionedModelThroughputCommand,
|
|
110
176
|
type GetProvisionedModelThroughputCommandInput,
|
|
111
177
|
type GetProvisionedModelThroughputCommandOutput,
|
|
178
|
+
GetUseCaseForModelAccessCommand,
|
|
179
|
+
type GetUseCaseForModelAccessCommandInput,
|
|
180
|
+
type GetUseCaseForModelAccessCommandOutput,
|
|
181
|
+
ListAutomatedReasoningPoliciesCommand,
|
|
182
|
+
type ListAutomatedReasoningPoliciesCommandInput,
|
|
183
|
+
type ListAutomatedReasoningPoliciesCommandOutput,
|
|
184
|
+
ListAutomatedReasoningPolicyBuildWorkflowsCommand,
|
|
185
|
+
type ListAutomatedReasoningPolicyBuildWorkflowsCommandInput,
|
|
186
|
+
type ListAutomatedReasoningPolicyBuildWorkflowsCommandOutput,
|
|
187
|
+
ListAutomatedReasoningPolicyTestCasesCommand,
|
|
188
|
+
type ListAutomatedReasoningPolicyTestCasesCommandInput,
|
|
189
|
+
type ListAutomatedReasoningPolicyTestCasesCommandOutput,
|
|
190
|
+
ListAutomatedReasoningPolicyTestResultsCommand,
|
|
191
|
+
type ListAutomatedReasoningPolicyTestResultsCommandInput,
|
|
192
|
+
type ListAutomatedReasoningPolicyTestResultsCommandOutput,
|
|
193
|
+
ListCustomModelDeploymentsCommand,
|
|
194
|
+
type ListCustomModelDeploymentsCommandInput,
|
|
195
|
+
type ListCustomModelDeploymentsCommandOutput,
|
|
112
196
|
ListCustomModelsCommand,
|
|
113
197
|
type ListCustomModelsCommandInput,
|
|
114
198
|
type ListCustomModelsCommandOutput,
|
|
115
199
|
ListEvaluationJobsCommand,
|
|
116
200
|
type ListEvaluationJobsCommandInput,
|
|
117
201
|
type ListEvaluationJobsCommandOutput,
|
|
202
|
+
ListFoundationModelAgreementOffersCommand,
|
|
203
|
+
type ListFoundationModelAgreementOffersCommandInput,
|
|
204
|
+
type ListFoundationModelAgreementOffersCommandOutput,
|
|
118
205
|
ListFoundationModelsCommand,
|
|
119
206
|
type ListFoundationModelsCommandInput,
|
|
120
207
|
type ListFoundationModelsCommandOutput,
|
|
@@ -154,9 +241,18 @@ import {
|
|
|
154
241
|
PutModelInvocationLoggingConfigurationCommand,
|
|
155
242
|
type PutModelInvocationLoggingConfigurationCommandInput,
|
|
156
243
|
type PutModelInvocationLoggingConfigurationCommandOutput,
|
|
244
|
+
PutUseCaseForModelAccessCommand,
|
|
245
|
+
type PutUseCaseForModelAccessCommandInput,
|
|
246
|
+
type PutUseCaseForModelAccessCommandOutput,
|
|
157
247
|
RegisterMarketplaceModelEndpointCommand,
|
|
158
248
|
type RegisterMarketplaceModelEndpointCommandInput,
|
|
159
249
|
type RegisterMarketplaceModelEndpointCommandOutput,
|
|
250
|
+
StartAutomatedReasoningPolicyBuildWorkflowCommand,
|
|
251
|
+
type StartAutomatedReasoningPolicyBuildWorkflowCommandInput,
|
|
252
|
+
type StartAutomatedReasoningPolicyBuildWorkflowCommandOutput,
|
|
253
|
+
StartAutomatedReasoningPolicyTestWorkflowCommand,
|
|
254
|
+
type StartAutomatedReasoningPolicyTestWorkflowCommandInput,
|
|
255
|
+
type StartAutomatedReasoningPolicyTestWorkflowCommandOutput,
|
|
160
256
|
StopEvaluationJobCommand,
|
|
161
257
|
type StopEvaluationJobCommandInput,
|
|
162
258
|
type StopEvaluationJobCommandOutput,
|
|
@@ -172,6 +268,15 @@ import {
|
|
|
172
268
|
UntagResourceCommand,
|
|
173
269
|
type UntagResourceCommandInput,
|
|
174
270
|
type UntagResourceCommandOutput,
|
|
271
|
+
UpdateAutomatedReasoningPolicyAnnotationsCommand,
|
|
272
|
+
type UpdateAutomatedReasoningPolicyAnnotationsCommandInput,
|
|
273
|
+
type UpdateAutomatedReasoningPolicyAnnotationsCommandOutput,
|
|
274
|
+
UpdateAutomatedReasoningPolicyCommand,
|
|
275
|
+
type UpdateAutomatedReasoningPolicyCommandInput,
|
|
276
|
+
type UpdateAutomatedReasoningPolicyCommandOutput,
|
|
277
|
+
UpdateAutomatedReasoningPolicyTestCaseCommand,
|
|
278
|
+
type UpdateAutomatedReasoningPolicyTestCaseCommandInput,
|
|
279
|
+
type UpdateAutomatedReasoningPolicyTestCaseCommandOutput,
|
|
175
280
|
UpdateGuardrailCommand,
|
|
176
281
|
type UpdateGuardrailCommandInput,
|
|
177
282
|
type UpdateGuardrailCommandOutput,
|
|
@@ -192,6 +297,7 @@ import type {
|
|
|
192
297
|
AccessDeniedError,
|
|
193
298
|
ConflictError,
|
|
194
299
|
InternalServerError,
|
|
300
|
+
ResourceInUseError,
|
|
195
301
|
ResourceNotFoundError,
|
|
196
302
|
SdkError,
|
|
197
303
|
ServiceQuotaExceededError,
|
|
@@ -204,7 +310,14 @@ import { AllServiceErrors } from "./Errors.js";
|
|
|
204
310
|
|
|
205
311
|
const commands = {
|
|
206
312
|
BatchDeleteEvaluationJobCommand,
|
|
313
|
+
CancelAutomatedReasoningPolicyBuildWorkflowCommand,
|
|
314
|
+
CreateAutomatedReasoningPolicyCommand,
|
|
315
|
+
CreateAutomatedReasoningPolicyTestCaseCommand,
|
|
316
|
+
CreateAutomatedReasoningPolicyVersionCommand,
|
|
317
|
+
CreateCustomModelCommand,
|
|
318
|
+
CreateCustomModelDeploymentCommand,
|
|
207
319
|
CreateEvaluationJobCommand,
|
|
320
|
+
CreateFoundationModelAgreementCommand,
|
|
208
321
|
CreateGuardrailCommand,
|
|
209
322
|
CreateGuardrailVersionCommand,
|
|
210
323
|
CreateInferenceProfileCommand,
|
|
@@ -215,7 +328,12 @@ const commands = {
|
|
|
215
328
|
CreateModelInvocationJobCommand,
|
|
216
329
|
CreatePromptRouterCommand,
|
|
217
330
|
CreateProvisionedModelThroughputCommand,
|
|
331
|
+
DeleteAutomatedReasoningPolicyCommand,
|
|
332
|
+
DeleteAutomatedReasoningPolicyBuildWorkflowCommand,
|
|
333
|
+
DeleteAutomatedReasoningPolicyTestCaseCommand,
|
|
218
334
|
DeleteCustomModelCommand,
|
|
335
|
+
DeleteCustomModelDeploymentCommand,
|
|
336
|
+
DeleteFoundationModelAgreementCommand,
|
|
219
337
|
DeleteGuardrailCommand,
|
|
220
338
|
DeleteImportedModelCommand,
|
|
221
339
|
DeleteInferenceProfileCommand,
|
|
@@ -224,9 +342,19 @@ const commands = {
|
|
|
224
342
|
DeletePromptRouterCommand,
|
|
225
343
|
DeleteProvisionedModelThroughputCommand,
|
|
226
344
|
DeregisterMarketplaceModelEndpointCommand,
|
|
345
|
+
ExportAutomatedReasoningPolicyVersionCommand,
|
|
346
|
+
GetAutomatedReasoningPolicyCommand,
|
|
347
|
+
GetAutomatedReasoningPolicyAnnotationsCommand,
|
|
348
|
+
GetAutomatedReasoningPolicyBuildWorkflowCommand,
|
|
349
|
+
GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommand,
|
|
350
|
+
GetAutomatedReasoningPolicyNextScenarioCommand,
|
|
351
|
+
GetAutomatedReasoningPolicyTestCaseCommand,
|
|
352
|
+
GetAutomatedReasoningPolicyTestResultCommand,
|
|
227
353
|
GetCustomModelCommand,
|
|
354
|
+
GetCustomModelDeploymentCommand,
|
|
228
355
|
GetEvaluationJobCommand,
|
|
229
356
|
GetFoundationModelCommand,
|
|
357
|
+
GetFoundationModelAvailabilityCommand,
|
|
230
358
|
GetGuardrailCommand,
|
|
231
359
|
GetImportedModelCommand,
|
|
232
360
|
GetInferenceProfileCommand,
|
|
@@ -238,8 +366,15 @@ const commands = {
|
|
|
238
366
|
GetModelInvocationLoggingConfigurationCommand,
|
|
239
367
|
GetPromptRouterCommand,
|
|
240
368
|
GetProvisionedModelThroughputCommand,
|
|
369
|
+
GetUseCaseForModelAccessCommand,
|
|
370
|
+
ListAutomatedReasoningPoliciesCommand,
|
|
371
|
+
ListAutomatedReasoningPolicyBuildWorkflowsCommand,
|
|
372
|
+
ListAutomatedReasoningPolicyTestCasesCommand,
|
|
373
|
+
ListAutomatedReasoningPolicyTestResultsCommand,
|
|
374
|
+
ListCustomModelDeploymentsCommand,
|
|
241
375
|
ListCustomModelsCommand,
|
|
242
376
|
ListEvaluationJobsCommand,
|
|
377
|
+
ListFoundationModelAgreementOffersCommand,
|
|
243
378
|
ListFoundationModelsCommand,
|
|
244
379
|
ListGuardrailsCommand,
|
|
245
380
|
ListImportedModelsCommand,
|
|
@@ -253,12 +388,18 @@ const commands = {
|
|
|
253
388
|
ListProvisionedModelThroughputsCommand,
|
|
254
389
|
ListTagsForResourceCommand,
|
|
255
390
|
PutModelInvocationLoggingConfigurationCommand,
|
|
391
|
+
PutUseCaseForModelAccessCommand,
|
|
256
392
|
RegisterMarketplaceModelEndpointCommand,
|
|
393
|
+
StartAutomatedReasoningPolicyBuildWorkflowCommand,
|
|
394
|
+
StartAutomatedReasoningPolicyTestWorkflowCommand,
|
|
257
395
|
StopEvaluationJobCommand,
|
|
258
396
|
StopModelCustomizationJobCommand,
|
|
259
397
|
StopModelInvocationJobCommand,
|
|
260
398
|
TagResourceCommand,
|
|
261
399
|
UntagResourceCommand,
|
|
400
|
+
UpdateAutomatedReasoningPolicyCommand,
|
|
401
|
+
UpdateAutomatedReasoningPolicyAnnotationsCommand,
|
|
402
|
+
UpdateAutomatedReasoningPolicyTestCaseCommand,
|
|
262
403
|
UpdateGuardrailCommand,
|
|
263
404
|
UpdateMarketplaceModelEndpointCommand,
|
|
264
405
|
UpdateProvisionedModelThroughputCommand,
|
|
@@ -285,6 +426,121 @@ interface BedrockService$ {
|
|
|
285
426
|
| ValidationError
|
|
286
427
|
>;
|
|
287
428
|
|
|
429
|
+
/**
|
|
430
|
+
* @see {@link CancelAutomatedReasoningPolicyBuildWorkflowCommand}
|
|
431
|
+
*/
|
|
432
|
+
cancelAutomatedReasoningPolicyBuildWorkflow(
|
|
433
|
+
args: CancelAutomatedReasoningPolicyBuildWorkflowCommandInput,
|
|
434
|
+
options?: HttpHandlerOptions,
|
|
435
|
+
): Effect.Effect<
|
|
436
|
+
CancelAutomatedReasoningPolicyBuildWorkflowCommandOutput,
|
|
437
|
+
| Cause.TimeoutException
|
|
438
|
+
| SdkError
|
|
439
|
+
| AccessDeniedError
|
|
440
|
+
| InternalServerError
|
|
441
|
+
| ResourceNotFoundError
|
|
442
|
+
| ThrottlingError
|
|
443
|
+
| ValidationError
|
|
444
|
+
>;
|
|
445
|
+
|
|
446
|
+
/**
|
|
447
|
+
* @see {@link CreateAutomatedReasoningPolicyCommand}
|
|
448
|
+
*/
|
|
449
|
+
createAutomatedReasoningPolicy(
|
|
450
|
+
args: CreateAutomatedReasoningPolicyCommandInput,
|
|
451
|
+
options?: HttpHandlerOptions,
|
|
452
|
+
): Effect.Effect<
|
|
453
|
+
CreateAutomatedReasoningPolicyCommandOutput,
|
|
454
|
+
| Cause.TimeoutException
|
|
455
|
+
| SdkError
|
|
456
|
+
| AccessDeniedError
|
|
457
|
+
| ConflictError
|
|
458
|
+
| InternalServerError
|
|
459
|
+
| ResourceNotFoundError
|
|
460
|
+
| ServiceQuotaExceededError
|
|
461
|
+
| ThrottlingError
|
|
462
|
+
| TooManyTagsError
|
|
463
|
+
| ValidationError
|
|
464
|
+
>;
|
|
465
|
+
|
|
466
|
+
/**
|
|
467
|
+
* @see {@link CreateAutomatedReasoningPolicyTestCaseCommand}
|
|
468
|
+
*/
|
|
469
|
+
createAutomatedReasoningPolicyTestCase(
|
|
470
|
+
args: CreateAutomatedReasoningPolicyTestCaseCommandInput,
|
|
471
|
+
options?: HttpHandlerOptions,
|
|
472
|
+
): Effect.Effect<
|
|
473
|
+
CreateAutomatedReasoningPolicyTestCaseCommandOutput,
|
|
474
|
+
| Cause.TimeoutException
|
|
475
|
+
| SdkError
|
|
476
|
+
| AccessDeniedError
|
|
477
|
+
| ConflictError
|
|
478
|
+
| InternalServerError
|
|
479
|
+
| ResourceNotFoundError
|
|
480
|
+
| ServiceQuotaExceededError
|
|
481
|
+
| ThrottlingError
|
|
482
|
+
| ValidationError
|
|
483
|
+
>;
|
|
484
|
+
|
|
485
|
+
/**
|
|
486
|
+
* @see {@link CreateAutomatedReasoningPolicyVersionCommand}
|
|
487
|
+
*/
|
|
488
|
+
createAutomatedReasoningPolicyVersion(
|
|
489
|
+
args: CreateAutomatedReasoningPolicyVersionCommandInput,
|
|
490
|
+
options?: HttpHandlerOptions,
|
|
491
|
+
): Effect.Effect<
|
|
492
|
+
CreateAutomatedReasoningPolicyVersionCommandOutput,
|
|
493
|
+
| Cause.TimeoutException
|
|
494
|
+
| SdkError
|
|
495
|
+
| AccessDeniedError
|
|
496
|
+
| ConflictError
|
|
497
|
+
| InternalServerError
|
|
498
|
+
| ResourceNotFoundError
|
|
499
|
+
| ServiceQuotaExceededError
|
|
500
|
+
| ThrottlingError
|
|
501
|
+
| TooManyTagsError
|
|
502
|
+
| ValidationError
|
|
503
|
+
>;
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* @see {@link CreateCustomModelCommand}
|
|
507
|
+
*/
|
|
508
|
+
createCustomModel(
|
|
509
|
+
args: CreateCustomModelCommandInput,
|
|
510
|
+
options?: HttpHandlerOptions,
|
|
511
|
+
): Effect.Effect<
|
|
512
|
+
CreateCustomModelCommandOutput,
|
|
513
|
+
| Cause.TimeoutException
|
|
514
|
+
| SdkError
|
|
515
|
+
| AccessDeniedError
|
|
516
|
+
| ConflictError
|
|
517
|
+
| InternalServerError
|
|
518
|
+
| ResourceNotFoundError
|
|
519
|
+
| ServiceQuotaExceededError
|
|
520
|
+
| ThrottlingError
|
|
521
|
+
| TooManyTagsError
|
|
522
|
+
| ValidationError
|
|
523
|
+
>;
|
|
524
|
+
|
|
525
|
+
/**
|
|
526
|
+
* @see {@link CreateCustomModelDeploymentCommand}
|
|
527
|
+
*/
|
|
528
|
+
createCustomModelDeployment(
|
|
529
|
+
args: CreateCustomModelDeploymentCommandInput,
|
|
530
|
+
options?: HttpHandlerOptions,
|
|
531
|
+
): Effect.Effect<
|
|
532
|
+
CreateCustomModelDeploymentCommandOutput,
|
|
533
|
+
| Cause.TimeoutException
|
|
534
|
+
| SdkError
|
|
535
|
+
| AccessDeniedError
|
|
536
|
+
| InternalServerError
|
|
537
|
+
| ResourceNotFoundError
|
|
538
|
+
| ServiceQuotaExceededError
|
|
539
|
+
| ThrottlingError
|
|
540
|
+
| TooManyTagsError
|
|
541
|
+
| ValidationError
|
|
542
|
+
>;
|
|
543
|
+
|
|
288
544
|
/**
|
|
289
545
|
* @see {@link CreateEvaluationJobCommand}
|
|
290
546
|
*/
|
|
@@ -304,6 +560,24 @@ interface BedrockService$ {
|
|
|
304
560
|
| ValidationError
|
|
305
561
|
>;
|
|
306
562
|
|
|
563
|
+
/**
|
|
564
|
+
* @see {@link CreateFoundationModelAgreementCommand}
|
|
565
|
+
*/
|
|
566
|
+
createFoundationModelAgreement(
|
|
567
|
+
args: CreateFoundationModelAgreementCommandInput,
|
|
568
|
+
options?: HttpHandlerOptions,
|
|
569
|
+
): Effect.Effect<
|
|
570
|
+
CreateFoundationModelAgreementCommandOutput,
|
|
571
|
+
| Cause.TimeoutException
|
|
572
|
+
| SdkError
|
|
573
|
+
| AccessDeniedError
|
|
574
|
+
| ConflictError
|
|
575
|
+
| InternalServerError
|
|
576
|
+
| ResourceNotFoundError
|
|
577
|
+
| ThrottlingError
|
|
578
|
+
| ValidationError
|
|
579
|
+
>;
|
|
580
|
+
|
|
307
581
|
/**
|
|
308
582
|
* @see {@link CreateGuardrailCommand}
|
|
309
583
|
*/
|
|
@@ -496,6 +770,63 @@ interface BedrockService$ {
|
|
|
496
770
|
| ValidationError
|
|
497
771
|
>;
|
|
498
772
|
|
|
773
|
+
/**
|
|
774
|
+
* @see {@link DeleteAutomatedReasoningPolicyCommand}
|
|
775
|
+
*/
|
|
776
|
+
deleteAutomatedReasoningPolicy(
|
|
777
|
+
args: DeleteAutomatedReasoningPolicyCommandInput,
|
|
778
|
+
options?: HttpHandlerOptions,
|
|
779
|
+
): Effect.Effect<
|
|
780
|
+
DeleteAutomatedReasoningPolicyCommandOutput,
|
|
781
|
+
| Cause.TimeoutException
|
|
782
|
+
| SdkError
|
|
783
|
+
| AccessDeniedError
|
|
784
|
+
| ConflictError
|
|
785
|
+
| InternalServerError
|
|
786
|
+
| ResourceInUseError
|
|
787
|
+
| ResourceNotFoundError
|
|
788
|
+
| ThrottlingError
|
|
789
|
+
| ValidationError
|
|
790
|
+
>;
|
|
791
|
+
|
|
792
|
+
/**
|
|
793
|
+
* @see {@link DeleteAutomatedReasoningPolicyBuildWorkflowCommand}
|
|
794
|
+
*/
|
|
795
|
+
deleteAutomatedReasoningPolicyBuildWorkflow(
|
|
796
|
+
args: DeleteAutomatedReasoningPolicyBuildWorkflowCommandInput,
|
|
797
|
+
options?: HttpHandlerOptions,
|
|
798
|
+
): Effect.Effect<
|
|
799
|
+
DeleteAutomatedReasoningPolicyBuildWorkflowCommandOutput,
|
|
800
|
+
| Cause.TimeoutException
|
|
801
|
+
| SdkError
|
|
802
|
+
| AccessDeniedError
|
|
803
|
+
| ConflictError
|
|
804
|
+
| InternalServerError
|
|
805
|
+
| ResourceInUseError
|
|
806
|
+
| ResourceNotFoundError
|
|
807
|
+
| ThrottlingError
|
|
808
|
+
| ValidationError
|
|
809
|
+
>;
|
|
810
|
+
|
|
811
|
+
/**
|
|
812
|
+
* @see {@link DeleteAutomatedReasoningPolicyTestCaseCommand}
|
|
813
|
+
*/
|
|
814
|
+
deleteAutomatedReasoningPolicyTestCase(
|
|
815
|
+
args: DeleteAutomatedReasoningPolicyTestCaseCommandInput,
|
|
816
|
+
options?: HttpHandlerOptions,
|
|
817
|
+
): Effect.Effect<
|
|
818
|
+
DeleteAutomatedReasoningPolicyTestCaseCommandOutput,
|
|
819
|
+
| Cause.TimeoutException
|
|
820
|
+
| SdkError
|
|
821
|
+
| AccessDeniedError
|
|
822
|
+
| ConflictError
|
|
823
|
+
| InternalServerError
|
|
824
|
+
| ResourceInUseError
|
|
825
|
+
| ResourceNotFoundError
|
|
826
|
+
| ThrottlingError
|
|
827
|
+
| ValidationError
|
|
828
|
+
>;
|
|
829
|
+
|
|
499
830
|
/**
|
|
500
831
|
* @see {@link DeleteCustomModelCommand}
|
|
501
832
|
*/
|
|
@@ -514,6 +845,42 @@ interface BedrockService$ {
|
|
|
514
845
|
| ValidationError
|
|
515
846
|
>;
|
|
516
847
|
|
|
848
|
+
/**
|
|
849
|
+
* @see {@link DeleteCustomModelDeploymentCommand}
|
|
850
|
+
*/
|
|
851
|
+
deleteCustomModelDeployment(
|
|
852
|
+
args: DeleteCustomModelDeploymentCommandInput,
|
|
853
|
+
options?: HttpHandlerOptions,
|
|
854
|
+
): Effect.Effect<
|
|
855
|
+
DeleteCustomModelDeploymentCommandOutput,
|
|
856
|
+
| Cause.TimeoutException
|
|
857
|
+
| SdkError
|
|
858
|
+
| AccessDeniedError
|
|
859
|
+
| ConflictError
|
|
860
|
+
| InternalServerError
|
|
861
|
+
| ResourceNotFoundError
|
|
862
|
+
| ThrottlingError
|
|
863
|
+
| ValidationError
|
|
864
|
+
>;
|
|
865
|
+
|
|
866
|
+
/**
|
|
867
|
+
* @see {@link DeleteFoundationModelAgreementCommand}
|
|
868
|
+
*/
|
|
869
|
+
deleteFoundationModelAgreement(
|
|
870
|
+
args: DeleteFoundationModelAgreementCommandInput,
|
|
871
|
+
options?: HttpHandlerOptions,
|
|
872
|
+
): Effect.Effect<
|
|
873
|
+
DeleteFoundationModelAgreementCommandOutput,
|
|
874
|
+
| Cause.TimeoutException
|
|
875
|
+
| SdkError
|
|
876
|
+
| AccessDeniedError
|
|
877
|
+
| ConflictError
|
|
878
|
+
| InternalServerError
|
|
879
|
+
| ResourceNotFoundError
|
|
880
|
+
| ThrottlingError
|
|
881
|
+
| ValidationError
|
|
882
|
+
>;
|
|
883
|
+
|
|
517
884
|
/**
|
|
518
885
|
* @see {@link DeleteGuardrailCommand}
|
|
519
886
|
*/
|
|
@@ -649,6 +1016,142 @@ interface BedrockService$ {
|
|
|
649
1016
|
| ValidationError
|
|
650
1017
|
>;
|
|
651
1018
|
|
|
1019
|
+
/**
|
|
1020
|
+
* @see {@link ExportAutomatedReasoningPolicyVersionCommand}
|
|
1021
|
+
*/
|
|
1022
|
+
exportAutomatedReasoningPolicyVersion(
|
|
1023
|
+
args: ExportAutomatedReasoningPolicyVersionCommandInput,
|
|
1024
|
+
options?: HttpHandlerOptions,
|
|
1025
|
+
): Effect.Effect<
|
|
1026
|
+
ExportAutomatedReasoningPolicyVersionCommandOutput,
|
|
1027
|
+
| Cause.TimeoutException
|
|
1028
|
+
| SdkError
|
|
1029
|
+
| AccessDeniedError
|
|
1030
|
+
| InternalServerError
|
|
1031
|
+
| ResourceNotFoundError
|
|
1032
|
+
| ThrottlingError
|
|
1033
|
+
| ValidationError
|
|
1034
|
+
>;
|
|
1035
|
+
|
|
1036
|
+
/**
|
|
1037
|
+
* @see {@link GetAutomatedReasoningPolicyCommand}
|
|
1038
|
+
*/
|
|
1039
|
+
getAutomatedReasoningPolicy(
|
|
1040
|
+
args: GetAutomatedReasoningPolicyCommandInput,
|
|
1041
|
+
options?: HttpHandlerOptions,
|
|
1042
|
+
): Effect.Effect<
|
|
1043
|
+
GetAutomatedReasoningPolicyCommandOutput,
|
|
1044
|
+
| Cause.TimeoutException
|
|
1045
|
+
| SdkError
|
|
1046
|
+
| AccessDeniedError
|
|
1047
|
+
| InternalServerError
|
|
1048
|
+
| ResourceNotFoundError
|
|
1049
|
+
| ThrottlingError
|
|
1050
|
+
| ValidationError
|
|
1051
|
+
>;
|
|
1052
|
+
|
|
1053
|
+
/**
|
|
1054
|
+
* @see {@link GetAutomatedReasoningPolicyAnnotationsCommand}
|
|
1055
|
+
*/
|
|
1056
|
+
getAutomatedReasoningPolicyAnnotations(
|
|
1057
|
+
args: GetAutomatedReasoningPolicyAnnotationsCommandInput,
|
|
1058
|
+
options?: HttpHandlerOptions,
|
|
1059
|
+
): Effect.Effect<
|
|
1060
|
+
GetAutomatedReasoningPolicyAnnotationsCommandOutput,
|
|
1061
|
+
| Cause.TimeoutException
|
|
1062
|
+
| SdkError
|
|
1063
|
+
| AccessDeniedError
|
|
1064
|
+
| InternalServerError
|
|
1065
|
+
| ResourceNotFoundError
|
|
1066
|
+
| ThrottlingError
|
|
1067
|
+
| ValidationError
|
|
1068
|
+
>;
|
|
1069
|
+
|
|
1070
|
+
/**
|
|
1071
|
+
* @see {@link GetAutomatedReasoningPolicyBuildWorkflowCommand}
|
|
1072
|
+
*/
|
|
1073
|
+
getAutomatedReasoningPolicyBuildWorkflow(
|
|
1074
|
+
args: GetAutomatedReasoningPolicyBuildWorkflowCommandInput,
|
|
1075
|
+
options?: HttpHandlerOptions,
|
|
1076
|
+
): Effect.Effect<
|
|
1077
|
+
GetAutomatedReasoningPolicyBuildWorkflowCommandOutput,
|
|
1078
|
+
| Cause.TimeoutException
|
|
1079
|
+
| SdkError
|
|
1080
|
+
| AccessDeniedError
|
|
1081
|
+
| InternalServerError
|
|
1082
|
+
| ResourceNotFoundError
|
|
1083
|
+
| ThrottlingError
|
|
1084
|
+
| ValidationError
|
|
1085
|
+
>;
|
|
1086
|
+
|
|
1087
|
+
/**
|
|
1088
|
+
* @see {@link GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommand}
|
|
1089
|
+
*/
|
|
1090
|
+
getAutomatedReasoningPolicyBuildWorkflowResultAssets(
|
|
1091
|
+
args: GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommandInput,
|
|
1092
|
+
options?: HttpHandlerOptions,
|
|
1093
|
+
): Effect.Effect<
|
|
1094
|
+
GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommandOutput,
|
|
1095
|
+
| Cause.TimeoutException
|
|
1096
|
+
| SdkError
|
|
1097
|
+
| AccessDeniedError
|
|
1098
|
+
| InternalServerError
|
|
1099
|
+
| ResourceNotFoundError
|
|
1100
|
+
| ThrottlingError
|
|
1101
|
+
| ValidationError
|
|
1102
|
+
>;
|
|
1103
|
+
|
|
1104
|
+
/**
|
|
1105
|
+
* @see {@link GetAutomatedReasoningPolicyNextScenarioCommand}
|
|
1106
|
+
*/
|
|
1107
|
+
getAutomatedReasoningPolicyNextScenario(
|
|
1108
|
+
args: GetAutomatedReasoningPolicyNextScenarioCommandInput,
|
|
1109
|
+
options?: HttpHandlerOptions,
|
|
1110
|
+
): Effect.Effect<
|
|
1111
|
+
GetAutomatedReasoningPolicyNextScenarioCommandOutput,
|
|
1112
|
+
| Cause.TimeoutException
|
|
1113
|
+
| SdkError
|
|
1114
|
+
| AccessDeniedError
|
|
1115
|
+
| InternalServerError
|
|
1116
|
+
| ResourceNotFoundError
|
|
1117
|
+
| ThrottlingError
|
|
1118
|
+
| ValidationError
|
|
1119
|
+
>;
|
|
1120
|
+
|
|
1121
|
+
/**
|
|
1122
|
+
* @see {@link GetAutomatedReasoningPolicyTestCaseCommand}
|
|
1123
|
+
*/
|
|
1124
|
+
getAutomatedReasoningPolicyTestCase(
|
|
1125
|
+
args: GetAutomatedReasoningPolicyTestCaseCommandInput,
|
|
1126
|
+
options?: HttpHandlerOptions,
|
|
1127
|
+
): Effect.Effect<
|
|
1128
|
+
GetAutomatedReasoningPolicyTestCaseCommandOutput,
|
|
1129
|
+
| Cause.TimeoutException
|
|
1130
|
+
| SdkError
|
|
1131
|
+
| AccessDeniedError
|
|
1132
|
+
| InternalServerError
|
|
1133
|
+
| ResourceNotFoundError
|
|
1134
|
+
| ThrottlingError
|
|
1135
|
+
| ValidationError
|
|
1136
|
+
>;
|
|
1137
|
+
|
|
1138
|
+
/**
|
|
1139
|
+
* @see {@link GetAutomatedReasoningPolicyTestResultCommand}
|
|
1140
|
+
*/
|
|
1141
|
+
getAutomatedReasoningPolicyTestResult(
|
|
1142
|
+
args: GetAutomatedReasoningPolicyTestResultCommandInput,
|
|
1143
|
+
options?: HttpHandlerOptions,
|
|
1144
|
+
): Effect.Effect<
|
|
1145
|
+
GetAutomatedReasoningPolicyTestResultCommandOutput,
|
|
1146
|
+
| Cause.TimeoutException
|
|
1147
|
+
| SdkError
|
|
1148
|
+
| AccessDeniedError
|
|
1149
|
+
| InternalServerError
|
|
1150
|
+
| ResourceNotFoundError
|
|
1151
|
+
| ThrottlingError
|
|
1152
|
+
| ValidationError
|
|
1153
|
+
>;
|
|
1154
|
+
|
|
652
1155
|
/**
|
|
653
1156
|
* @see {@link GetCustomModelCommand}
|
|
654
1157
|
*/
|
|
@@ -666,6 +1169,23 @@ interface BedrockService$ {
|
|
|
666
1169
|
| ValidationError
|
|
667
1170
|
>;
|
|
668
1171
|
|
|
1172
|
+
/**
|
|
1173
|
+
* @see {@link GetCustomModelDeploymentCommand}
|
|
1174
|
+
*/
|
|
1175
|
+
getCustomModelDeployment(
|
|
1176
|
+
args: GetCustomModelDeploymentCommandInput,
|
|
1177
|
+
options?: HttpHandlerOptions,
|
|
1178
|
+
): Effect.Effect<
|
|
1179
|
+
GetCustomModelDeploymentCommandOutput,
|
|
1180
|
+
| Cause.TimeoutException
|
|
1181
|
+
| SdkError
|
|
1182
|
+
| AccessDeniedError
|
|
1183
|
+
| InternalServerError
|
|
1184
|
+
| ResourceNotFoundError
|
|
1185
|
+
| ThrottlingError
|
|
1186
|
+
| ValidationError
|
|
1187
|
+
>;
|
|
1188
|
+
|
|
669
1189
|
/**
|
|
670
1190
|
* @see {@link GetEvaluationJobCommand}
|
|
671
1191
|
*/
|
|
@@ -700,6 +1220,23 @@ interface BedrockService$ {
|
|
|
700
1220
|
| ValidationError
|
|
701
1221
|
>;
|
|
702
1222
|
|
|
1223
|
+
/**
|
|
1224
|
+
* @see {@link GetFoundationModelAvailabilityCommand}
|
|
1225
|
+
*/
|
|
1226
|
+
getFoundationModelAvailability(
|
|
1227
|
+
args: GetFoundationModelAvailabilityCommandInput,
|
|
1228
|
+
options?: HttpHandlerOptions,
|
|
1229
|
+
): Effect.Effect<
|
|
1230
|
+
GetFoundationModelAvailabilityCommandOutput,
|
|
1231
|
+
| Cause.TimeoutException
|
|
1232
|
+
| SdkError
|
|
1233
|
+
| AccessDeniedError
|
|
1234
|
+
| InternalServerError
|
|
1235
|
+
| ResourceNotFoundError
|
|
1236
|
+
| ThrottlingError
|
|
1237
|
+
| ValidationError
|
|
1238
|
+
>;
|
|
1239
|
+
|
|
703
1240
|
/**
|
|
704
1241
|
* @see {@link GetGuardrailCommand}
|
|
705
1242
|
*/
|
|
@@ -881,6 +1418,97 @@ interface BedrockService$ {
|
|
|
881
1418
|
| ValidationError
|
|
882
1419
|
>;
|
|
883
1420
|
|
|
1421
|
+
/**
|
|
1422
|
+
* @see {@link GetUseCaseForModelAccessCommand}
|
|
1423
|
+
*/
|
|
1424
|
+
getUseCaseForModelAccess(
|
|
1425
|
+
args: GetUseCaseForModelAccessCommandInput,
|
|
1426
|
+
options?: HttpHandlerOptions,
|
|
1427
|
+
): Effect.Effect<
|
|
1428
|
+
GetUseCaseForModelAccessCommandOutput,
|
|
1429
|
+
Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
|
|
1430
|
+
>;
|
|
1431
|
+
|
|
1432
|
+
/**
|
|
1433
|
+
* @see {@link ListAutomatedReasoningPoliciesCommand}
|
|
1434
|
+
*/
|
|
1435
|
+
listAutomatedReasoningPolicies(
|
|
1436
|
+
args: ListAutomatedReasoningPoliciesCommandInput,
|
|
1437
|
+
options?: HttpHandlerOptions,
|
|
1438
|
+
): Effect.Effect<
|
|
1439
|
+
ListAutomatedReasoningPoliciesCommandOutput,
|
|
1440
|
+
| Cause.TimeoutException
|
|
1441
|
+
| SdkError
|
|
1442
|
+
| AccessDeniedError
|
|
1443
|
+
| InternalServerError
|
|
1444
|
+
| ResourceNotFoundError
|
|
1445
|
+
| ThrottlingError
|
|
1446
|
+
| ValidationError
|
|
1447
|
+
>;
|
|
1448
|
+
|
|
1449
|
+
/**
|
|
1450
|
+
* @see {@link ListAutomatedReasoningPolicyBuildWorkflowsCommand}
|
|
1451
|
+
*/
|
|
1452
|
+
listAutomatedReasoningPolicyBuildWorkflows(
|
|
1453
|
+
args: ListAutomatedReasoningPolicyBuildWorkflowsCommandInput,
|
|
1454
|
+
options?: HttpHandlerOptions,
|
|
1455
|
+
): Effect.Effect<
|
|
1456
|
+
ListAutomatedReasoningPolicyBuildWorkflowsCommandOutput,
|
|
1457
|
+
| Cause.TimeoutException
|
|
1458
|
+
| SdkError
|
|
1459
|
+
| AccessDeniedError
|
|
1460
|
+
| InternalServerError
|
|
1461
|
+
| ResourceNotFoundError
|
|
1462
|
+
| ThrottlingError
|
|
1463
|
+
| ValidationError
|
|
1464
|
+
>;
|
|
1465
|
+
|
|
1466
|
+
/**
|
|
1467
|
+
* @see {@link ListAutomatedReasoningPolicyTestCasesCommand}
|
|
1468
|
+
*/
|
|
1469
|
+
listAutomatedReasoningPolicyTestCases(
|
|
1470
|
+
args: ListAutomatedReasoningPolicyTestCasesCommandInput,
|
|
1471
|
+
options?: HttpHandlerOptions,
|
|
1472
|
+
): Effect.Effect<
|
|
1473
|
+
ListAutomatedReasoningPolicyTestCasesCommandOutput,
|
|
1474
|
+
| Cause.TimeoutException
|
|
1475
|
+
| SdkError
|
|
1476
|
+
| AccessDeniedError
|
|
1477
|
+
| InternalServerError
|
|
1478
|
+
| ResourceNotFoundError
|
|
1479
|
+
| ThrottlingError
|
|
1480
|
+
| ValidationError
|
|
1481
|
+
>;
|
|
1482
|
+
|
|
1483
|
+
/**
|
|
1484
|
+
* @see {@link ListAutomatedReasoningPolicyTestResultsCommand}
|
|
1485
|
+
*/
|
|
1486
|
+
listAutomatedReasoningPolicyTestResults(
|
|
1487
|
+
args: ListAutomatedReasoningPolicyTestResultsCommandInput,
|
|
1488
|
+
options?: HttpHandlerOptions,
|
|
1489
|
+
): Effect.Effect<
|
|
1490
|
+
ListAutomatedReasoningPolicyTestResultsCommandOutput,
|
|
1491
|
+
| Cause.TimeoutException
|
|
1492
|
+
| SdkError
|
|
1493
|
+
| AccessDeniedError
|
|
1494
|
+
| InternalServerError
|
|
1495
|
+
| ResourceNotFoundError
|
|
1496
|
+
| ServiceQuotaExceededError
|
|
1497
|
+
| ThrottlingError
|
|
1498
|
+
| ValidationError
|
|
1499
|
+
>;
|
|
1500
|
+
|
|
1501
|
+
/**
|
|
1502
|
+
* @see {@link ListCustomModelDeploymentsCommand}
|
|
1503
|
+
*/
|
|
1504
|
+
listCustomModelDeployments(
|
|
1505
|
+
args: ListCustomModelDeploymentsCommandInput,
|
|
1506
|
+
options?: HttpHandlerOptions,
|
|
1507
|
+
): Effect.Effect<
|
|
1508
|
+
ListCustomModelDeploymentsCommandOutput,
|
|
1509
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1510
|
+
>;
|
|
1511
|
+
|
|
884
1512
|
/**
|
|
885
1513
|
* @see {@link ListCustomModelsCommand}
|
|
886
1514
|
*/
|
|
@@ -903,6 +1531,23 @@ interface BedrockService$ {
|
|
|
903
1531
|
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
904
1532
|
>;
|
|
905
1533
|
|
|
1534
|
+
/**
|
|
1535
|
+
* @see {@link ListFoundationModelAgreementOffersCommand}
|
|
1536
|
+
*/
|
|
1537
|
+
listFoundationModelAgreementOffers(
|
|
1538
|
+
args: ListFoundationModelAgreementOffersCommandInput,
|
|
1539
|
+
options?: HttpHandlerOptions,
|
|
1540
|
+
): Effect.Effect<
|
|
1541
|
+
ListFoundationModelAgreementOffersCommandOutput,
|
|
1542
|
+
| Cause.TimeoutException
|
|
1543
|
+
| SdkError
|
|
1544
|
+
| AccessDeniedError
|
|
1545
|
+
| InternalServerError
|
|
1546
|
+
| ResourceNotFoundError
|
|
1547
|
+
| ThrottlingError
|
|
1548
|
+
| ValidationError
|
|
1549
|
+
>;
|
|
1550
|
+
|
|
906
1551
|
/**
|
|
907
1552
|
* @see {@link ListFoundationModelsCommand}
|
|
908
1553
|
*/
|
|
@@ -1070,6 +1715,17 @@ interface BedrockService$ {
|
|
|
1070
1715
|
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1071
1716
|
>;
|
|
1072
1717
|
|
|
1718
|
+
/**
|
|
1719
|
+
* @see {@link PutUseCaseForModelAccessCommand}
|
|
1720
|
+
*/
|
|
1721
|
+
putUseCaseForModelAccess(
|
|
1722
|
+
args: PutUseCaseForModelAccessCommandInput,
|
|
1723
|
+
options?: HttpHandlerOptions,
|
|
1724
|
+
): Effect.Effect<
|
|
1725
|
+
PutUseCaseForModelAccessCommandOutput,
|
|
1726
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
1727
|
+
>;
|
|
1728
|
+
|
|
1073
1729
|
/**
|
|
1074
1730
|
* @see {@link RegisterMarketplaceModelEndpointCommand}
|
|
1075
1731
|
*/
|
|
@@ -1088,6 +1744,44 @@ interface BedrockService$ {
|
|
|
1088
1744
|
| ValidationError
|
|
1089
1745
|
>;
|
|
1090
1746
|
|
|
1747
|
+
/**
|
|
1748
|
+
* @see {@link StartAutomatedReasoningPolicyBuildWorkflowCommand}
|
|
1749
|
+
*/
|
|
1750
|
+
startAutomatedReasoningPolicyBuildWorkflow(
|
|
1751
|
+
args: StartAutomatedReasoningPolicyBuildWorkflowCommandInput,
|
|
1752
|
+
options?: HttpHandlerOptions,
|
|
1753
|
+
): Effect.Effect<
|
|
1754
|
+
StartAutomatedReasoningPolicyBuildWorkflowCommandOutput,
|
|
1755
|
+
| Cause.TimeoutException
|
|
1756
|
+
| SdkError
|
|
1757
|
+
| AccessDeniedError
|
|
1758
|
+
| ConflictError
|
|
1759
|
+
| InternalServerError
|
|
1760
|
+
| ResourceInUseError
|
|
1761
|
+
| ResourceNotFoundError
|
|
1762
|
+
| ServiceQuotaExceededError
|
|
1763
|
+
| ThrottlingError
|
|
1764
|
+
| ValidationError
|
|
1765
|
+
>;
|
|
1766
|
+
|
|
1767
|
+
/**
|
|
1768
|
+
* @see {@link StartAutomatedReasoningPolicyTestWorkflowCommand}
|
|
1769
|
+
*/
|
|
1770
|
+
startAutomatedReasoningPolicyTestWorkflow(
|
|
1771
|
+
args: StartAutomatedReasoningPolicyTestWorkflowCommandInput,
|
|
1772
|
+
options?: HttpHandlerOptions,
|
|
1773
|
+
): Effect.Effect<
|
|
1774
|
+
StartAutomatedReasoningPolicyTestWorkflowCommandOutput,
|
|
1775
|
+
| Cause.TimeoutException
|
|
1776
|
+
| SdkError
|
|
1777
|
+
| AccessDeniedError
|
|
1778
|
+
| InternalServerError
|
|
1779
|
+
| ResourceInUseError
|
|
1780
|
+
| ResourceNotFoundError
|
|
1781
|
+
| ThrottlingError
|
|
1782
|
+
| ValidationError
|
|
1783
|
+
>;
|
|
1784
|
+
|
|
1091
1785
|
/**
|
|
1092
1786
|
* @see {@link StopEvaluationJobCommand}
|
|
1093
1787
|
*/
|
|
@@ -1177,6 +1871,62 @@ interface BedrockService$ {
|
|
|
1177
1871
|
| ValidationError
|
|
1178
1872
|
>;
|
|
1179
1873
|
|
|
1874
|
+
/**
|
|
1875
|
+
* @see {@link UpdateAutomatedReasoningPolicyCommand}
|
|
1876
|
+
*/
|
|
1877
|
+
updateAutomatedReasoningPolicy(
|
|
1878
|
+
args: UpdateAutomatedReasoningPolicyCommandInput,
|
|
1879
|
+
options?: HttpHandlerOptions,
|
|
1880
|
+
): Effect.Effect<
|
|
1881
|
+
UpdateAutomatedReasoningPolicyCommandOutput,
|
|
1882
|
+
| Cause.TimeoutException
|
|
1883
|
+
| SdkError
|
|
1884
|
+
| AccessDeniedError
|
|
1885
|
+
| ConflictError
|
|
1886
|
+
| InternalServerError
|
|
1887
|
+
| ResourceNotFoundError
|
|
1888
|
+
| ThrottlingError
|
|
1889
|
+
| TooManyTagsError
|
|
1890
|
+
| ValidationError
|
|
1891
|
+
>;
|
|
1892
|
+
|
|
1893
|
+
/**
|
|
1894
|
+
* @see {@link UpdateAutomatedReasoningPolicyAnnotationsCommand}
|
|
1895
|
+
*/
|
|
1896
|
+
updateAutomatedReasoningPolicyAnnotations(
|
|
1897
|
+
args: UpdateAutomatedReasoningPolicyAnnotationsCommandInput,
|
|
1898
|
+
options?: HttpHandlerOptions,
|
|
1899
|
+
): Effect.Effect<
|
|
1900
|
+
UpdateAutomatedReasoningPolicyAnnotationsCommandOutput,
|
|
1901
|
+
| Cause.TimeoutException
|
|
1902
|
+
| SdkError
|
|
1903
|
+
| AccessDeniedError
|
|
1904
|
+
| ConflictError
|
|
1905
|
+
| InternalServerError
|
|
1906
|
+
| ResourceNotFoundError
|
|
1907
|
+
| ThrottlingError
|
|
1908
|
+
| ValidationError
|
|
1909
|
+
>;
|
|
1910
|
+
|
|
1911
|
+
/**
|
|
1912
|
+
* @see {@link UpdateAutomatedReasoningPolicyTestCaseCommand}
|
|
1913
|
+
*/
|
|
1914
|
+
updateAutomatedReasoningPolicyTestCase(
|
|
1915
|
+
args: UpdateAutomatedReasoningPolicyTestCaseCommandInput,
|
|
1916
|
+
options?: HttpHandlerOptions,
|
|
1917
|
+
): Effect.Effect<
|
|
1918
|
+
UpdateAutomatedReasoningPolicyTestCaseCommandOutput,
|
|
1919
|
+
| Cause.TimeoutException
|
|
1920
|
+
| SdkError
|
|
1921
|
+
| AccessDeniedError
|
|
1922
|
+
| ConflictError
|
|
1923
|
+
| InternalServerError
|
|
1924
|
+
| ResourceInUseError
|
|
1925
|
+
| ResourceNotFoundError
|
|
1926
|
+
| ThrottlingError
|
|
1927
|
+
| ValidationError
|
|
1928
|
+
>;
|
|
1929
|
+
|
|
1180
1930
|
/**
|
|
1181
1931
|
* @see {@link UpdateGuardrailCommand}
|
|
1182
1932
|
*/
|
|
@@ -1287,4 +2037,9 @@ export declare namespace BedrockService {
|
|
|
1287
2037
|
export interface Config extends Omit<BedrockClientConfig, "logger"> {
|
|
1288
2038
|
readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
|
|
1289
2039
|
}
|
|
2040
|
+
|
|
2041
|
+
/**
|
|
2042
|
+
* @since 1.0.0
|
|
2043
|
+
*/
|
|
2044
|
+
export type Type = BedrockService$;
|
|
1290
2045
|
}
|