@effect-aws/client-bedrock-agentcore-control 1.11.2 → 1.11.3
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/BedrockAgentCoreControlService.d.ts +104 -4
- package/dist/cjs/BedrockAgentCoreControlService.d.ts.map +1 -1
- package/dist/cjs/BedrockAgentCoreControlService.js +31 -0
- package/dist/cjs/BedrockAgentCoreControlService.js.map +1 -1
- package/dist/dts/BedrockAgentCoreControlService.d.ts +104 -4
- package/dist/dts/BedrockAgentCoreControlService.d.ts.map +1 -1
- package/dist/esm/BedrockAgentCoreControlService.js +32 -1
- package/dist/esm/BedrockAgentCoreControlService.js.map +1 -1
- package/package.json +1 -1
- package/src/BedrockAgentCoreControlService.ts +620 -2
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
4
|
import {
|
|
5
|
+
AddDatasetExamplesCommand,
|
|
6
|
+
type AddDatasetExamplesCommandInput,
|
|
7
|
+
type AddDatasetExamplesCommandOutput,
|
|
5
8
|
type BedrockAgentCoreControlClient,
|
|
6
9
|
type BedrockAgentCoreControlClientConfig,
|
|
7
10
|
CreateAgentRuntimeCommand,
|
|
@@ -25,6 +28,12 @@ import {
|
|
|
25
28
|
CreateConfigurationBundleCommand,
|
|
26
29
|
type CreateConfigurationBundleCommandInput,
|
|
27
30
|
type CreateConfigurationBundleCommandOutput,
|
|
31
|
+
CreateDatasetCommand,
|
|
32
|
+
type CreateDatasetCommandInput,
|
|
33
|
+
type CreateDatasetCommandOutput,
|
|
34
|
+
CreateDatasetVersionCommand,
|
|
35
|
+
type CreateDatasetVersionCommandInput,
|
|
36
|
+
type CreateDatasetVersionCommandOutput,
|
|
28
37
|
CreateEvaluatorCommand,
|
|
29
38
|
type CreateEvaluatorCommandInput,
|
|
30
39
|
type CreateEvaluatorCommandOutput,
|
|
@@ -40,6 +49,9 @@ import {
|
|
|
40
49
|
CreateHarnessCommand,
|
|
41
50
|
type CreateHarnessCommandInput,
|
|
42
51
|
type CreateHarnessCommandOutput,
|
|
52
|
+
CreateHarnessEndpointCommand,
|
|
53
|
+
type CreateHarnessEndpointCommandInput,
|
|
54
|
+
type CreateHarnessEndpointCommandOutput,
|
|
43
55
|
CreateMemoryCommand,
|
|
44
56
|
type CreateMemoryCommandInput,
|
|
45
57
|
type CreateMemoryCommandOutput,
|
|
@@ -94,6 +106,12 @@ import {
|
|
|
94
106
|
DeleteConfigurationBundleCommand,
|
|
95
107
|
type DeleteConfigurationBundleCommandInput,
|
|
96
108
|
type DeleteConfigurationBundleCommandOutput,
|
|
109
|
+
DeleteDatasetCommand,
|
|
110
|
+
type DeleteDatasetCommandInput,
|
|
111
|
+
type DeleteDatasetCommandOutput,
|
|
112
|
+
DeleteDatasetExamplesCommand,
|
|
113
|
+
type DeleteDatasetExamplesCommandInput,
|
|
114
|
+
type DeleteDatasetExamplesCommandOutput,
|
|
97
115
|
DeleteEvaluatorCommand,
|
|
98
116
|
type DeleteEvaluatorCommandInput,
|
|
99
117
|
type DeleteEvaluatorCommandOutput,
|
|
@@ -109,6 +127,9 @@ import {
|
|
|
109
127
|
DeleteHarnessCommand,
|
|
110
128
|
type DeleteHarnessCommandInput,
|
|
111
129
|
type DeleteHarnessCommandOutput,
|
|
130
|
+
DeleteHarnessEndpointCommand,
|
|
131
|
+
type DeleteHarnessEndpointCommandInput,
|
|
132
|
+
type DeleteHarnessEndpointCommandOutput,
|
|
112
133
|
DeleteMemoryCommand,
|
|
113
134
|
type DeleteMemoryCommandInput,
|
|
114
135
|
type DeleteMemoryCommandOutput,
|
|
@@ -169,6 +190,9 @@ import {
|
|
|
169
190
|
GetConfigurationBundleVersionCommand,
|
|
170
191
|
type GetConfigurationBundleVersionCommandInput,
|
|
171
192
|
type GetConfigurationBundleVersionCommandOutput,
|
|
193
|
+
GetDatasetCommand,
|
|
194
|
+
type GetDatasetCommandInput,
|
|
195
|
+
type GetDatasetCommandOutput,
|
|
172
196
|
GetEvaluatorCommand,
|
|
173
197
|
type GetEvaluatorCommandInput,
|
|
174
198
|
type GetEvaluatorCommandOutput,
|
|
@@ -184,6 +208,9 @@ import {
|
|
|
184
208
|
GetHarnessCommand,
|
|
185
209
|
type GetHarnessCommandInput,
|
|
186
210
|
type GetHarnessCommandOutput,
|
|
211
|
+
GetHarnessEndpointCommand,
|
|
212
|
+
type GetHarnessEndpointCommandInput,
|
|
213
|
+
type GetHarnessEndpointCommandOutput,
|
|
187
214
|
GetMemoryCommand,
|
|
188
215
|
type GetMemoryCommandInput,
|
|
189
216
|
type GetMemoryCommandOutput,
|
|
@@ -208,9 +235,18 @@ import {
|
|
|
208
235
|
GetPolicyEngineCommand,
|
|
209
236
|
type GetPolicyEngineCommandInput,
|
|
210
237
|
type GetPolicyEngineCommandOutput,
|
|
238
|
+
GetPolicyEngineSummaryCommand,
|
|
239
|
+
type GetPolicyEngineSummaryCommandInput,
|
|
240
|
+
type GetPolicyEngineSummaryCommandOutput,
|
|
211
241
|
GetPolicyGenerationCommand,
|
|
212
242
|
type GetPolicyGenerationCommandInput,
|
|
213
243
|
type GetPolicyGenerationCommandOutput,
|
|
244
|
+
GetPolicyGenerationSummaryCommand,
|
|
245
|
+
type GetPolicyGenerationSummaryCommandInput,
|
|
246
|
+
type GetPolicyGenerationSummaryCommandOutput,
|
|
247
|
+
GetPolicySummaryCommand,
|
|
248
|
+
type GetPolicySummaryCommandInput,
|
|
249
|
+
type GetPolicySummaryCommandOutput,
|
|
214
250
|
GetRegistryCommand,
|
|
215
251
|
type GetRegistryCommandInput,
|
|
216
252
|
type GetRegistryCommandOutput,
|
|
@@ -253,6 +289,15 @@ import {
|
|
|
253
289
|
ListConfigurationBundleVersionsCommand,
|
|
254
290
|
type ListConfigurationBundleVersionsCommandInput,
|
|
255
291
|
type ListConfigurationBundleVersionsCommandOutput,
|
|
292
|
+
ListDatasetExamplesCommand,
|
|
293
|
+
type ListDatasetExamplesCommandInput,
|
|
294
|
+
type ListDatasetExamplesCommandOutput,
|
|
295
|
+
ListDatasetsCommand,
|
|
296
|
+
type ListDatasetsCommandInput,
|
|
297
|
+
type ListDatasetsCommandOutput,
|
|
298
|
+
ListDatasetVersionsCommand,
|
|
299
|
+
type ListDatasetVersionsCommandInput,
|
|
300
|
+
type ListDatasetVersionsCommandOutput,
|
|
256
301
|
ListEvaluatorsCommand,
|
|
257
302
|
type ListEvaluatorsCommandInput,
|
|
258
303
|
type ListEvaluatorsCommandOutput,
|
|
@@ -265,9 +310,15 @@ import {
|
|
|
265
310
|
ListGatewayTargetsCommand,
|
|
266
311
|
type ListGatewayTargetsCommandInput,
|
|
267
312
|
type ListGatewayTargetsCommandOutput,
|
|
313
|
+
ListHarnessEndpointsCommand,
|
|
314
|
+
type ListHarnessEndpointsCommandInput,
|
|
315
|
+
type ListHarnessEndpointsCommandOutput,
|
|
268
316
|
ListHarnessesCommand,
|
|
269
317
|
type ListHarnessesCommandInput,
|
|
270
318
|
type ListHarnessesCommandOutput,
|
|
319
|
+
ListHarnessVersionsCommand,
|
|
320
|
+
type ListHarnessVersionsCommandInput,
|
|
321
|
+
type ListHarnessVersionsCommandOutput,
|
|
271
322
|
ListMemoriesCommand,
|
|
272
323
|
type ListMemoriesCommandInput,
|
|
273
324
|
type ListMemoriesCommandOutput,
|
|
@@ -292,12 +343,21 @@ import {
|
|
|
292
343
|
ListPolicyEnginesCommand,
|
|
293
344
|
type ListPolicyEnginesCommandInput,
|
|
294
345
|
type ListPolicyEnginesCommandOutput,
|
|
346
|
+
ListPolicyEngineSummariesCommand,
|
|
347
|
+
type ListPolicyEngineSummariesCommandInput,
|
|
348
|
+
type ListPolicyEngineSummariesCommandOutput,
|
|
295
349
|
ListPolicyGenerationAssetsCommand,
|
|
296
350
|
type ListPolicyGenerationAssetsCommandInput,
|
|
297
351
|
type ListPolicyGenerationAssetsCommandOutput,
|
|
298
352
|
ListPolicyGenerationsCommand,
|
|
299
353
|
type ListPolicyGenerationsCommandInput,
|
|
300
354
|
type ListPolicyGenerationsCommandOutput,
|
|
355
|
+
ListPolicyGenerationSummariesCommand,
|
|
356
|
+
type ListPolicyGenerationSummariesCommandInput,
|
|
357
|
+
type ListPolicyGenerationSummariesCommandOutput,
|
|
358
|
+
ListPolicySummariesCommand,
|
|
359
|
+
type ListPolicySummariesCommandInput,
|
|
360
|
+
type ListPolicySummariesCommandOutput,
|
|
301
361
|
ListRegistriesCommand,
|
|
302
362
|
type ListRegistriesCommandInput,
|
|
303
363
|
type ListRegistriesCommandOutput,
|
|
@@ -319,11 +379,16 @@ import {
|
|
|
319
379
|
paginateListCodeInterpreters,
|
|
320
380
|
paginateListConfigurationBundles,
|
|
321
381
|
paginateListConfigurationBundleVersions,
|
|
382
|
+
paginateListDatasetExamples,
|
|
383
|
+
paginateListDatasets,
|
|
384
|
+
paginateListDatasetVersions,
|
|
322
385
|
paginateListEvaluators,
|
|
323
386
|
paginateListGatewayRules,
|
|
324
387
|
paginateListGateways,
|
|
325
388
|
paginateListGatewayTargets,
|
|
389
|
+
paginateListHarnessEndpoints,
|
|
326
390
|
paginateListHarnesses,
|
|
391
|
+
paginateListHarnessVersions,
|
|
327
392
|
paginateListMemories,
|
|
328
393
|
paginateListOauth2CredentialProviders,
|
|
329
394
|
paginateListOnlineEvaluationConfigs,
|
|
@@ -332,8 +397,11 @@ import {
|
|
|
332
397
|
paginateListPaymentManagers,
|
|
333
398
|
paginateListPolicies,
|
|
334
399
|
paginateListPolicyEngines,
|
|
400
|
+
paginateListPolicyEngineSummaries,
|
|
335
401
|
paginateListPolicyGenerationAssets,
|
|
336
402
|
paginateListPolicyGenerations,
|
|
403
|
+
paginateListPolicyGenerationSummaries,
|
|
404
|
+
paginateListPolicySummaries,
|
|
337
405
|
paginateListRegistries,
|
|
338
406
|
paginateListRegistryRecords,
|
|
339
407
|
paginateListWorkloadIdentities,
|
|
@@ -370,6 +438,12 @@ import {
|
|
|
370
438
|
UpdateConfigurationBundleCommand,
|
|
371
439
|
type UpdateConfigurationBundleCommandInput,
|
|
372
440
|
type UpdateConfigurationBundleCommandOutput,
|
|
441
|
+
UpdateDatasetCommand,
|
|
442
|
+
type UpdateDatasetCommandInput,
|
|
443
|
+
type UpdateDatasetCommandOutput,
|
|
444
|
+
UpdateDatasetExamplesCommand,
|
|
445
|
+
type UpdateDatasetExamplesCommandInput,
|
|
446
|
+
type UpdateDatasetExamplesCommandOutput,
|
|
373
447
|
UpdateEvaluatorCommand,
|
|
374
448
|
type UpdateEvaluatorCommandInput,
|
|
375
449
|
type UpdateEvaluatorCommandOutput,
|
|
@@ -385,6 +459,9 @@ import {
|
|
|
385
459
|
UpdateHarnessCommand,
|
|
386
460
|
type UpdateHarnessCommandInput,
|
|
387
461
|
type UpdateHarnessCommandOutput,
|
|
462
|
+
UpdateHarnessEndpointCommand,
|
|
463
|
+
type UpdateHarnessEndpointCommandInput,
|
|
464
|
+
type UpdateHarnessEndpointCommandOutput,
|
|
388
465
|
UpdateMemoryCommand,
|
|
389
466
|
type UpdateMemoryCommandInput,
|
|
390
467
|
type UpdateMemoryCommandOutput,
|
|
@@ -451,6 +528,7 @@ import type {
|
|
|
451
528
|
import { AllServiceErrors } from "./Errors.js";
|
|
452
529
|
|
|
453
530
|
const commands = {
|
|
531
|
+
AddDatasetExamplesCommand,
|
|
454
532
|
CreateAgentRuntimeCommand,
|
|
455
533
|
CreateAgentRuntimeEndpointCommand,
|
|
456
534
|
CreateApiKeyCredentialProviderCommand,
|
|
@@ -458,11 +536,14 @@ const commands = {
|
|
|
458
536
|
CreateBrowserProfileCommand,
|
|
459
537
|
CreateCodeInterpreterCommand,
|
|
460
538
|
CreateConfigurationBundleCommand,
|
|
539
|
+
CreateDatasetCommand,
|
|
540
|
+
CreateDatasetVersionCommand,
|
|
461
541
|
CreateEvaluatorCommand,
|
|
462
542
|
CreateGatewayCommand,
|
|
463
543
|
CreateGatewayRuleCommand,
|
|
464
544
|
CreateGatewayTargetCommand,
|
|
465
545
|
CreateHarnessCommand,
|
|
546
|
+
CreateHarnessEndpointCommand,
|
|
466
547
|
CreateMemoryCommand,
|
|
467
548
|
CreateOauth2CredentialProviderCommand,
|
|
468
549
|
CreateOnlineEvaluationConfigCommand,
|
|
@@ -481,11 +562,14 @@ const commands = {
|
|
|
481
562
|
DeleteBrowserProfileCommand,
|
|
482
563
|
DeleteCodeInterpreterCommand,
|
|
483
564
|
DeleteConfigurationBundleCommand,
|
|
565
|
+
DeleteDatasetCommand,
|
|
566
|
+
DeleteDatasetExamplesCommand,
|
|
484
567
|
DeleteEvaluatorCommand,
|
|
485
568
|
DeleteGatewayCommand,
|
|
486
569
|
DeleteGatewayRuleCommand,
|
|
487
570
|
DeleteGatewayTargetCommand,
|
|
488
571
|
DeleteHarnessCommand,
|
|
572
|
+
DeleteHarnessEndpointCommand,
|
|
489
573
|
DeleteMemoryCommand,
|
|
490
574
|
DeleteOauth2CredentialProviderCommand,
|
|
491
575
|
DeleteOnlineEvaluationConfigCommand,
|
|
@@ -506,11 +590,13 @@ const commands = {
|
|
|
506
590
|
GetCodeInterpreterCommand,
|
|
507
591
|
GetConfigurationBundleCommand,
|
|
508
592
|
GetConfigurationBundleVersionCommand,
|
|
593
|
+
GetDatasetCommand,
|
|
509
594
|
GetEvaluatorCommand,
|
|
510
595
|
GetGatewayCommand,
|
|
511
596
|
GetGatewayRuleCommand,
|
|
512
597
|
GetGatewayTargetCommand,
|
|
513
598
|
GetHarnessCommand,
|
|
599
|
+
GetHarnessEndpointCommand,
|
|
514
600
|
GetMemoryCommand,
|
|
515
601
|
GetOauth2CredentialProviderCommand,
|
|
516
602
|
GetOnlineEvaluationConfigCommand,
|
|
@@ -519,7 +605,10 @@ const commands = {
|
|
|
519
605
|
GetPaymentManagerCommand,
|
|
520
606
|
GetPolicyCommand,
|
|
521
607
|
GetPolicyEngineCommand,
|
|
608
|
+
GetPolicyEngineSummaryCommand,
|
|
522
609
|
GetPolicyGenerationCommand,
|
|
610
|
+
GetPolicyGenerationSummaryCommand,
|
|
611
|
+
GetPolicySummaryCommand,
|
|
523
612
|
GetRegistryCommand,
|
|
524
613
|
GetRegistryRecordCommand,
|
|
525
614
|
GetResourcePolicyCommand,
|
|
@@ -534,10 +623,15 @@ const commands = {
|
|
|
534
623
|
ListCodeInterpretersCommand,
|
|
535
624
|
ListConfigurationBundleVersionsCommand,
|
|
536
625
|
ListConfigurationBundlesCommand,
|
|
626
|
+
ListDatasetExamplesCommand,
|
|
627
|
+
ListDatasetVersionsCommand,
|
|
628
|
+
ListDatasetsCommand,
|
|
537
629
|
ListEvaluatorsCommand,
|
|
538
630
|
ListGatewayRulesCommand,
|
|
539
631
|
ListGatewayTargetsCommand,
|
|
540
632
|
ListGatewaysCommand,
|
|
633
|
+
ListHarnessEndpointsCommand,
|
|
634
|
+
ListHarnessVersionsCommand,
|
|
541
635
|
ListHarnessesCommand,
|
|
542
636
|
ListMemoriesCommand,
|
|
543
637
|
ListOauth2CredentialProvidersCommand,
|
|
@@ -546,9 +640,12 @@ const commands = {
|
|
|
546
640
|
ListPaymentCredentialProvidersCommand,
|
|
547
641
|
ListPaymentManagersCommand,
|
|
548
642
|
ListPoliciesCommand,
|
|
643
|
+
ListPolicyEngineSummariesCommand,
|
|
549
644
|
ListPolicyEnginesCommand,
|
|
550
645
|
ListPolicyGenerationAssetsCommand,
|
|
646
|
+
ListPolicyGenerationSummariesCommand,
|
|
551
647
|
ListPolicyGenerationsCommand,
|
|
648
|
+
ListPolicySummariesCommand,
|
|
552
649
|
ListRegistriesCommand,
|
|
553
650
|
ListRegistryRecordsCommand,
|
|
554
651
|
ListTagsForResourceCommand,
|
|
@@ -564,11 +661,14 @@ const commands = {
|
|
|
564
661
|
UpdateAgentRuntimeEndpointCommand,
|
|
565
662
|
UpdateApiKeyCredentialProviderCommand,
|
|
566
663
|
UpdateConfigurationBundleCommand,
|
|
664
|
+
UpdateDatasetCommand,
|
|
665
|
+
UpdateDatasetExamplesCommand,
|
|
567
666
|
UpdateEvaluatorCommand,
|
|
568
667
|
UpdateGatewayCommand,
|
|
569
668
|
UpdateGatewayRuleCommand,
|
|
570
669
|
UpdateGatewayTargetCommand,
|
|
571
670
|
UpdateHarnessCommand,
|
|
671
|
+
UpdateHarnessEndpointCommand,
|
|
572
672
|
UpdateMemoryCommand,
|
|
573
673
|
UpdateOauth2CredentialProviderCommand,
|
|
574
674
|
UpdateOnlineEvaluationConfigCommand,
|
|
@@ -593,10 +693,15 @@ const paginators = {
|
|
|
593
693
|
paginateListCodeInterpreters,
|
|
594
694
|
paginateListConfigurationBundleVersions,
|
|
595
695
|
paginateListConfigurationBundles,
|
|
696
|
+
paginateListDatasetExamples,
|
|
697
|
+
paginateListDatasetVersions,
|
|
698
|
+
paginateListDatasets,
|
|
596
699
|
paginateListEvaluators,
|
|
597
700
|
paginateListGatewayRules,
|
|
598
701
|
paginateListGatewayTargets,
|
|
599
702
|
paginateListGateways,
|
|
703
|
+
paginateListHarnessEndpoints,
|
|
704
|
+
paginateListHarnessVersions,
|
|
600
705
|
paginateListHarnesses,
|
|
601
706
|
paginateListMemories,
|
|
602
707
|
paginateListOauth2CredentialProviders,
|
|
@@ -605,9 +710,12 @@ const paginators = {
|
|
|
605
710
|
paginateListPaymentCredentialProviders,
|
|
606
711
|
paginateListPaymentManagers,
|
|
607
712
|
paginateListPolicies,
|
|
713
|
+
paginateListPolicyEngineSummaries,
|
|
608
714
|
paginateListPolicyEngines,
|
|
609
715
|
paginateListPolicyGenerationAssets,
|
|
716
|
+
paginateListPolicyGenerationSummaries,
|
|
610
717
|
paginateListPolicyGenerations,
|
|
718
|
+
paginateListPolicySummaries,
|
|
611
719
|
paginateListRegistries,
|
|
612
720
|
paginateListRegistryRecords,
|
|
613
721
|
paginateListWorkloadIdentities,
|
|
@@ -616,6 +724,25 @@ const paginators = {
|
|
|
616
724
|
interface BedrockAgentCoreControlService$ {
|
|
617
725
|
readonly _: unique symbol;
|
|
618
726
|
|
|
727
|
+
/**
|
|
728
|
+
* @see {@link AddDatasetExamplesCommand}
|
|
729
|
+
*/
|
|
730
|
+
addDatasetExamples(
|
|
731
|
+
args: AddDatasetExamplesCommandInput,
|
|
732
|
+
options?: HttpHandlerOptions,
|
|
733
|
+
): Effect.Effect<
|
|
734
|
+
AddDatasetExamplesCommandOutput,
|
|
735
|
+
| Cause.TimeoutException
|
|
736
|
+
| SdkError
|
|
737
|
+
| AccessDeniedError
|
|
738
|
+
| ConflictError
|
|
739
|
+
| InternalServerError
|
|
740
|
+
| ResourceNotFoundError
|
|
741
|
+
| ServiceQuotaExceededError
|
|
742
|
+
| ThrottlingError
|
|
743
|
+
| ValidationError
|
|
744
|
+
>;
|
|
745
|
+
|
|
619
746
|
/**
|
|
620
747
|
* @see {@link CreateAgentRuntimeCommand}
|
|
621
748
|
*/
|
|
@@ -748,6 +875,43 @@ interface BedrockAgentCoreControlService$ {
|
|
|
748
875
|
| ValidationError
|
|
749
876
|
>;
|
|
750
877
|
|
|
878
|
+
/**
|
|
879
|
+
* @see {@link CreateDatasetCommand}
|
|
880
|
+
*/
|
|
881
|
+
createDataset(
|
|
882
|
+
args: CreateDatasetCommandInput,
|
|
883
|
+
options?: HttpHandlerOptions,
|
|
884
|
+
): Effect.Effect<
|
|
885
|
+
CreateDatasetCommandOutput,
|
|
886
|
+
| Cause.TimeoutException
|
|
887
|
+
| SdkError
|
|
888
|
+
| AccessDeniedError
|
|
889
|
+
| ConflictError
|
|
890
|
+
| InternalServerError
|
|
891
|
+
| ServiceQuotaExceededError
|
|
892
|
+
| ThrottlingError
|
|
893
|
+
| ValidationError
|
|
894
|
+
>;
|
|
895
|
+
|
|
896
|
+
/**
|
|
897
|
+
* @see {@link CreateDatasetVersionCommand}
|
|
898
|
+
*/
|
|
899
|
+
createDatasetVersion(
|
|
900
|
+
args: CreateDatasetVersionCommandInput,
|
|
901
|
+
options?: HttpHandlerOptions,
|
|
902
|
+
): Effect.Effect<
|
|
903
|
+
CreateDatasetVersionCommandOutput,
|
|
904
|
+
| Cause.TimeoutException
|
|
905
|
+
| SdkError
|
|
906
|
+
| AccessDeniedError
|
|
907
|
+
| ConflictError
|
|
908
|
+
| InternalServerError
|
|
909
|
+
| ResourceNotFoundError
|
|
910
|
+
| ServiceQuotaExceededError
|
|
911
|
+
| ThrottlingError
|
|
912
|
+
| ValidationError
|
|
913
|
+
>;
|
|
914
|
+
|
|
751
915
|
/**
|
|
752
916
|
* @see {@link CreateEvaluatorCommand}
|
|
753
917
|
*/
|
|
@@ -840,6 +1004,25 @@ interface BedrockAgentCoreControlService$ {
|
|
|
840
1004
|
| ValidationError
|
|
841
1005
|
>;
|
|
842
1006
|
|
|
1007
|
+
/**
|
|
1008
|
+
* @see {@link CreateHarnessEndpointCommand}
|
|
1009
|
+
*/
|
|
1010
|
+
createHarnessEndpoint(
|
|
1011
|
+
args: CreateHarnessEndpointCommandInput,
|
|
1012
|
+
options?: HttpHandlerOptions,
|
|
1013
|
+
): Effect.Effect<
|
|
1014
|
+
CreateHarnessEndpointCommandOutput,
|
|
1015
|
+
| Cause.TimeoutException
|
|
1016
|
+
| SdkError
|
|
1017
|
+
| AccessDeniedError
|
|
1018
|
+
| ConflictError
|
|
1019
|
+
| InternalServerError
|
|
1020
|
+
| ResourceNotFoundError
|
|
1021
|
+
| ServiceQuotaExceededError
|
|
1022
|
+
| ThrottlingError
|
|
1023
|
+
| ValidationError
|
|
1024
|
+
>;
|
|
1025
|
+
|
|
843
1026
|
/**
|
|
844
1027
|
* @see {@link CreateMemoryCommand}
|
|
845
1028
|
*/
|
|
@@ -1178,6 +1361,42 @@ interface BedrockAgentCoreControlService$ {
|
|
|
1178
1361
|
| ValidationError
|
|
1179
1362
|
>;
|
|
1180
1363
|
|
|
1364
|
+
/**
|
|
1365
|
+
* @see {@link DeleteDatasetCommand}
|
|
1366
|
+
*/
|
|
1367
|
+
deleteDataset(
|
|
1368
|
+
args: DeleteDatasetCommandInput,
|
|
1369
|
+
options?: HttpHandlerOptions,
|
|
1370
|
+
): Effect.Effect<
|
|
1371
|
+
DeleteDatasetCommandOutput,
|
|
1372
|
+
| Cause.TimeoutException
|
|
1373
|
+
| SdkError
|
|
1374
|
+
| AccessDeniedError
|
|
1375
|
+
| ConflictError
|
|
1376
|
+
| InternalServerError
|
|
1377
|
+
| ResourceNotFoundError
|
|
1378
|
+
| ThrottlingError
|
|
1379
|
+
| ValidationError
|
|
1380
|
+
>;
|
|
1381
|
+
|
|
1382
|
+
/**
|
|
1383
|
+
* @see {@link DeleteDatasetExamplesCommand}
|
|
1384
|
+
*/
|
|
1385
|
+
deleteDatasetExamples(
|
|
1386
|
+
args: DeleteDatasetExamplesCommandInput,
|
|
1387
|
+
options?: HttpHandlerOptions,
|
|
1388
|
+
): Effect.Effect<
|
|
1389
|
+
DeleteDatasetExamplesCommandOutput,
|
|
1390
|
+
| Cause.TimeoutException
|
|
1391
|
+
| SdkError
|
|
1392
|
+
| AccessDeniedError
|
|
1393
|
+
| ConflictError
|
|
1394
|
+
| InternalServerError
|
|
1395
|
+
| ResourceNotFoundError
|
|
1396
|
+
| ThrottlingError
|
|
1397
|
+
| ValidationError
|
|
1398
|
+
>;
|
|
1399
|
+
|
|
1181
1400
|
/**
|
|
1182
1401
|
* @see {@link DeleteEvaluatorCommand}
|
|
1183
1402
|
*/
|
|
@@ -1268,6 +1487,24 @@ interface BedrockAgentCoreControlService$ {
|
|
|
1268
1487
|
| ValidationError
|
|
1269
1488
|
>;
|
|
1270
1489
|
|
|
1490
|
+
/**
|
|
1491
|
+
* @see {@link DeleteHarnessEndpointCommand}
|
|
1492
|
+
*/
|
|
1493
|
+
deleteHarnessEndpoint(
|
|
1494
|
+
args: DeleteHarnessEndpointCommandInput,
|
|
1495
|
+
options?: HttpHandlerOptions,
|
|
1496
|
+
): Effect.Effect<
|
|
1497
|
+
DeleteHarnessEndpointCommandOutput,
|
|
1498
|
+
| Cause.TimeoutException
|
|
1499
|
+
| SdkError
|
|
1500
|
+
| AccessDeniedError
|
|
1501
|
+
| ConflictError
|
|
1502
|
+
| InternalServerError
|
|
1503
|
+
| ResourceNotFoundError
|
|
1504
|
+
| ThrottlingError
|
|
1505
|
+
| ValidationError
|
|
1506
|
+
>;
|
|
1507
|
+
|
|
1271
1508
|
/**
|
|
1272
1509
|
* @see {@link DeleteMemoryCommand}
|
|
1273
1510
|
*/
|
|
@@ -1620,6 +1857,24 @@ interface BedrockAgentCoreControlService$ {
|
|
|
1620
1857
|
| ValidationError
|
|
1621
1858
|
>;
|
|
1622
1859
|
|
|
1860
|
+
/**
|
|
1861
|
+
* @see {@link GetDatasetCommand}
|
|
1862
|
+
*/
|
|
1863
|
+
getDataset(
|
|
1864
|
+
args: GetDatasetCommandInput,
|
|
1865
|
+
options?: HttpHandlerOptions,
|
|
1866
|
+
): Effect.Effect<
|
|
1867
|
+
GetDatasetCommandOutput,
|
|
1868
|
+
| Cause.TimeoutException
|
|
1869
|
+
| SdkError
|
|
1870
|
+
| AccessDeniedError
|
|
1871
|
+
| ConflictError
|
|
1872
|
+
| InternalServerError
|
|
1873
|
+
| ResourceNotFoundError
|
|
1874
|
+
| ThrottlingError
|
|
1875
|
+
| ValidationError
|
|
1876
|
+
>;
|
|
1877
|
+
|
|
1623
1878
|
/**
|
|
1624
1879
|
* @see {@link GetEvaluatorCommand}
|
|
1625
1880
|
*/
|
|
@@ -1705,6 +1960,23 @@ interface BedrockAgentCoreControlService$ {
|
|
|
1705
1960
|
| ValidationError
|
|
1706
1961
|
>;
|
|
1707
1962
|
|
|
1963
|
+
/**
|
|
1964
|
+
* @see {@link GetHarnessEndpointCommand}
|
|
1965
|
+
*/
|
|
1966
|
+
getHarnessEndpoint(
|
|
1967
|
+
args: GetHarnessEndpointCommandInput,
|
|
1968
|
+
options?: HttpHandlerOptions,
|
|
1969
|
+
): Effect.Effect<
|
|
1970
|
+
GetHarnessEndpointCommandOutput,
|
|
1971
|
+
| Cause.TimeoutException
|
|
1972
|
+
| SdkError
|
|
1973
|
+
| AccessDeniedError
|
|
1974
|
+
| InternalServerError
|
|
1975
|
+
| ResourceNotFoundError
|
|
1976
|
+
| ThrottlingError
|
|
1977
|
+
| ValidationError
|
|
1978
|
+
>;
|
|
1979
|
+
|
|
1708
1980
|
/**
|
|
1709
1981
|
* @see {@link GetMemoryCommand}
|
|
1710
1982
|
*/
|
|
@@ -1845,6 +2117,23 @@ interface BedrockAgentCoreControlService$ {
|
|
|
1845
2117
|
| ValidationError
|
|
1846
2118
|
>;
|
|
1847
2119
|
|
|
2120
|
+
/**
|
|
2121
|
+
* @see {@link GetPolicyEngineSummaryCommand}
|
|
2122
|
+
*/
|
|
2123
|
+
getPolicyEngineSummary(
|
|
2124
|
+
args: GetPolicyEngineSummaryCommandInput,
|
|
2125
|
+
options?: HttpHandlerOptions,
|
|
2126
|
+
): Effect.Effect<
|
|
2127
|
+
GetPolicyEngineSummaryCommandOutput,
|
|
2128
|
+
| Cause.TimeoutException
|
|
2129
|
+
| SdkError
|
|
2130
|
+
| AccessDeniedError
|
|
2131
|
+
| InternalServerError
|
|
2132
|
+
| ResourceNotFoundError
|
|
2133
|
+
| ThrottlingError
|
|
2134
|
+
| ValidationError
|
|
2135
|
+
>;
|
|
2136
|
+
|
|
1848
2137
|
/**
|
|
1849
2138
|
* @see {@link GetPolicyGenerationCommand}
|
|
1850
2139
|
*/
|
|
@@ -1862,6 +2151,40 @@ interface BedrockAgentCoreControlService$ {
|
|
|
1862
2151
|
| ValidationError
|
|
1863
2152
|
>;
|
|
1864
2153
|
|
|
2154
|
+
/**
|
|
2155
|
+
* @see {@link GetPolicyGenerationSummaryCommand}
|
|
2156
|
+
*/
|
|
2157
|
+
getPolicyGenerationSummary(
|
|
2158
|
+
args: GetPolicyGenerationSummaryCommandInput,
|
|
2159
|
+
options?: HttpHandlerOptions,
|
|
2160
|
+
): Effect.Effect<
|
|
2161
|
+
GetPolicyGenerationSummaryCommandOutput,
|
|
2162
|
+
| Cause.TimeoutException
|
|
2163
|
+
| SdkError
|
|
2164
|
+
| AccessDeniedError
|
|
2165
|
+
| InternalServerError
|
|
2166
|
+
| ResourceNotFoundError
|
|
2167
|
+
| ThrottlingError
|
|
2168
|
+
| ValidationError
|
|
2169
|
+
>;
|
|
2170
|
+
|
|
2171
|
+
/**
|
|
2172
|
+
* @see {@link GetPolicySummaryCommand}
|
|
2173
|
+
*/
|
|
2174
|
+
getPolicySummary(
|
|
2175
|
+
args: GetPolicySummaryCommandInput,
|
|
2176
|
+
options?: HttpHandlerOptions,
|
|
2177
|
+
): Effect.Effect<
|
|
2178
|
+
GetPolicySummaryCommandOutput,
|
|
2179
|
+
| Cause.TimeoutException
|
|
2180
|
+
| SdkError
|
|
2181
|
+
| AccessDeniedError
|
|
2182
|
+
| InternalServerError
|
|
2183
|
+
| ResourceNotFoundError
|
|
2184
|
+
| ThrottlingError
|
|
2185
|
+
| ValidationError
|
|
2186
|
+
>;
|
|
2187
|
+
|
|
1865
2188
|
/**
|
|
1866
2189
|
* @see {@link GetRegistryCommand}
|
|
1867
2190
|
*/
|
|
@@ -2159,6 +2482,89 @@ interface BedrockAgentCoreControlService$ {
|
|
|
2159
2482
|
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
2160
2483
|
>;
|
|
2161
2484
|
|
|
2485
|
+
/**
|
|
2486
|
+
* @see {@link ListDatasetExamplesCommand}
|
|
2487
|
+
*/
|
|
2488
|
+
listDatasetExamples(
|
|
2489
|
+
args: ListDatasetExamplesCommandInput,
|
|
2490
|
+
options?: HttpHandlerOptions,
|
|
2491
|
+
): Effect.Effect<
|
|
2492
|
+
ListDatasetExamplesCommandOutput,
|
|
2493
|
+
| Cause.TimeoutException
|
|
2494
|
+
| SdkError
|
|
2495
|
+
| AccessDeniedError
|
|
2496
|
+
| ConflictError
|
|
2497
|
+
| InternalServerError
|
|
2498
|
+
| ResourceNotFoundError
|
|
2499
|
+
| ThrottlingError
|
|
2500
|
+
| ValidationError
|
|
2501
|
+
>;
|
|
2502
|
+
|
|
2503
|
+
listDatasetExamplesStream(
|
|
2504
|
+
args: ListDatasetExamplesCommandInput,
|
|
2505
|
+
options?: HttpHandlerOptions,
|
|
2506
|
+
): Stream.Stream<
|
|
2507
|
+
ListDatasetExamplesCommandOutput,
|
|
2508
|
+
| Cause.TimeoutException
|
|
2509
|
+
| SdkError
|
|
2510
|
+
| AccessDeniedError
|
|
2511
|
+
| ConflictError
|
|
2512
|
+
| InternalServerError
|
|
2513
|
+
| ResourceNotFoundError
|
|
2514
|
+
| ThrottlingError
|
|
2515
|
+
| ValidationError
|
|
2516
|
+
>;
|
|
2517
|
+
|
|
2518
|
+
/**
|
|
2519
|
+
* @see {@link ListDatasetVersionsCommand}
|
|
2520
|
+
*/
|
|
2521
|
+
listDatasetVersions(
|
|
2522
|
+
args: ListDatasetVersionsCommandInput,
|
|
2523
|
+
options?: HttpHandlerOptions,
|
|
2524
|
+
): Effect.Effect<
|
|
2525
|
+
ListDatasetVersionsCommandOutput,
|
|
2526
|
+
| Cause.TimeoutException
|
|
2527
|
+
| SdkError
|
|
2528
|
+
| AccessDeniedError
|
|
2529
|
+
| InternalServerError
|
|
2530
|
+
| ResourceNotFoundError
|
|
2531
|
+
| ThrottlingError
|
|
2532
|
+
| ValidationError
|
|
2533
|
+
>;
|
|
2534
|
+
|
|
2535
|
+
listDatasetVersionsStream(
|
|
2536
|
+
args: ListDatasetVersionsCommandInput,
|
|
2537
|
+
options?: HttpHandlerOptions,
|
|
2538
|
+
): Stream.Stream<
|
|
2539
|
+
ListDatasetVersionsCommandOutput,
|
|
2540
|
+
| Cause.TimeoutException
|
|
2541
|
+
| SdkError
|
|
2542
|
+
| AccessDeniedError
|
|
2543
|
+
| InternalServerError
|
|
2544
|
+
| ResourceNotFoundError
|
|
2545
|
+
| ThrottlingError
|
|
2546
|
+
| ValidationError
|
|
2547
|
+
>;
|
|
2548
|
+
|
|
2549
|
+
/**
|
|
2550
|
+
* @see {@link ListDatasetsCommand}
|
|
2551
|
+
*/
|
|
2552
|
+
listDatasets(
|
|
2553
|
+
args: ListDatasetsCommandInput,
|
|
2554
|
+
options?: HttpHandlerOptions,
|
|
2555
|
+
): Effect.Effect<
|
|
2556
|
+
ListDatasetsCommandOutput,
|
|
2557
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
2558
|
+
>;
|
|
2559
|
+
|
|
2560
|
+
listDatasetsStream(
|
|
2561
|
+
args: ListDatasetsCommandInput,
|
|
2562
|
+
options?: HttpHandlerOptions,
|
|
2563
|
+
): Stream.Stream<
|
|
2564
|
+
ListDatasetsCommandOutput,
|
|
2565
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
2566
|
+
>;
|
|
2567
|
+
|
|
2162
2568
|
/**
|
|
2163
2569
|
* @see {@link ListEvaluatorsCommand}
|
|
2164
2570
|
*/
|
|
@@ -2217,7 +2623,13 @@ interface BedrockAgentCoreControlService$ {
|
|
|
2217
2623
|
options?: HttpHandlerOptions,
|
|
2218
2624
|
): Effect.Effect<
|
|
2219
2625
|
ListGatewayTargetsCommandOutput,
|
|
2220
|
-
Cause.TimeoutException
|
|
2626
|
+
| Cause.TimeoutException
|
|
2627
|
+
| SdkError
|
|
2628
|
+
| AccessDeniedError
|
|
2629
|
+
| InternalServerError
|
|
2630
|
+
| ResourceNotFoundError
|
|
2631
|
+
| ThrottlingError
|
|
2632
|
+
| ValidationError
|
|
2221
2633
|
>;
|
|
2222
2634
|
|
|
2223
2635
|
listGatewayTargetsStream(
|
|
@@ -2225,7 +2637,13 @@ interface BedrockAgentCoreControlService$ {
|
|
|
2225
2637
|
options?: HttpHandlerOptions,
|
|
2226
2638
|
): Stream.Stream<
|
|
2227
2639
|
ListGatewayTargetsCommandOutput,
|
|
2228
|
-
Cause.TimeoutException
|
|
2640
|
+
| Cause.TimeoutException
|
|
2641
|
+
| SdkError
|
|
2642
|
+
| AccessDeniedError
|
|
2643
|
+
| InternalServerError
|
|
2644
|
+
| ResourceNotFoundError
|
|
2645
|
+
| ThrottlingError
|
|
2646
|
+
| ValidationError
|
|
2229
2647
|
>;
|
|
2230
2648
|
|
|
2231
2649
|
/**
|
|
@@ -2247,6 +2665,68 @@ interface BedrockAgentCoreControlService$ {
|
|
|
2247
2665
|
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
2248
2666
|
>;
|
|
2249
2667
|
|
|
2668
|
+
/**
|
|
2669
|
+
* @see {@link ListHarnessEndpointsCommand}
|
|
2670
|
+
*/
|
|
2671
|
+
listHarnessEndpoints(
|
|
2672
|
+
args: ListHarnessEndpointsCommandInput,
|
|
2673
|
+
options?: HttpHandlerOptions,
|
|
2674
|
+
): Effect.Effect<
|
|
2675
|
+
ListHarnessEndpointsCommandOutput,
|
|
2676
|
+
| Cause.TimeoutException
|
|
2677
|
+
| SdkError
|
|
2678
|
+
| AccessDeniedError
|
|
2679
|
+
| InternalServerError
|
|
2680
|
+
| ResourceNotFoundError
|
|
2681
|
+
| ThrottlingError
|
|
2682
|
+
| ValidationError
|
|
2683
|
+
>;
|
|
2684
|
+
|
|
2685
|
+
listHarnessEndpointsStream(
|
|
2686
|
+
args: ListHarnessEndpointsCommandInput,
|
|
2687
|
+
options?: HttpHandlerOptions,
|
|
2688
|
+
): Stream.Stream<
|
|
2689
|
+
ListHarnessEndpointsCommandOutput,
|
|
2690
|
+
| Cause.TimeoutException
|
|
2691
|
+
| SdkError
|
|
2692
|
+
| AccessDeniedError
|
|
2693
|
+
| InternalServerError
|
|
2694
|
+
| ResourceNotFoundError
|
|
2695
|
+
| ThrottlingError
|
|
2696
|
+
| ValidationError
|
|
2697
|
+
>;
|
|
2698
|
+
|
|
2699
|
+
/**
|
|
2700
|
+
* @see {@link ListHarnessVersionsCommand}
|
|
2701
|
+
*/
|
|
2702
|
+
listHarnessVersions(
|
|
2703
|
+
args: ListHarnessVersionsCommandInput,
|
|
2704
|
+
options?: HttpHandlerOptions,
|
|
2705
|
+
): Effect.Effect<
|
|
2706
|
+
ListHarnessVersionsCommandOutput,
|
|
2707
|
+
| Cause.TimeoutException
|
|
2708
|
+
| SdkError
|
|
2709
|
+
| AccessDeniedError
|
|
2710
|
+
| InternalServerError
|
|
2711
|
+
| ResourceNotFoundError
|
|
2712
|
+
| ThrottlingError
|
|
2713
|
+
| ValidationError
|
|
2714
|
+
>;
|
|
2715
|
+
|
|
2716
|
+
listHarnessVersionsStream(
|
|
2717
|
+
args: ListHarnessVersionsCommandInput,
|
|
2718
|
+
options?: HttpHandlerOptions,
|
|
2719
|
+
): Stream.Stream<
|
|
2720
|
+
ListHarnessVersionsCommandOutput,
|
|
2721
|
+
| Cause.TimeoutException
|
|
2722
|
+
| SdkError
|
|
2723
|
+
| AccessDeniedError
|
|
2724
|
+
| InternalServerError
|
|
2725
|
+
| ResourceNotFoundError
|
|
2726
|
+
| ThrottlingError
|
|
2727
|
+
| ValidationError
|
|
2728
|
+
>;
|
|
2729
|
+
|
|
2250
2730
|
/**
|
|
2251
2731
|
* @see {@link ListHarnessesCommand}
|
|
2252
2732
|
*/
|
|
@@ -2451,6 +2931,25 @@ interface BedrockAgentCoreControlService$ {
|
|
|
2451
2931
|
| ValidationError
|
|
2452
2932
|
>;
|
|
2453
2933
|
|
|
2934
|
+
/**
|
|
2935
|
+
* @see {@link ListPolicyEngineSummariesCommand}
|
|
2936
|
+
*/
|
|
2937
|
+
listPolicyEngineSummaries(
|
|
2938
|
+
args: ListPolicyEngineSummariesCommandInput,
|
|
2939
|
+
options?: HttpHandlerOptions,
|
|
2940
|
+
): Effect.Effect<
|
|
2941
|
+
ListPolicyEngineSummariesCommandOutput,
|
|
2942
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
2943
|
+
>;
|
|
2944
|
+
|
|
2945
|
+
listPolicyEngineSummariesStream(
|
|
2946
|
+
args: ListPolicyEngineSummariesCommandInput,
|
|
2947
|
+
options?: HttpHandlerOptions,
|
|
2948
|
+
): Stream.Stream<
|
|
2949
|
+
ListPolicyEngineSummariesCommandOutput,
|
|
2950
|
+
Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
|
|
2951
|
+
>;
|
|
2952
|
+
|
|
2454
2953
|
/**
|
|
2455
2954
|
* @see {@link ListPolicyEnginesCommand}
|
|
2456
2955
|
*/
|
|
@@ -2501,6 +3000,37 @@ interface BedrockAgentCoreControlService$ {
|
|
|
2501
3000
|
| ValidationError
|
|
2502
3001
|
>;
|
|
2503
3002
|
|
|
3003
|
+
/**
|
|
3004
|
+
* @see {@link ListPolicyGenerationSummariesCommand}
|
|
3005
|
+
*/
|
|
3006
|
+
listPolicyGenerationSummaries(
|
|
3007
|
+
args: ListPolicyGenerationSummariesCommandInput,
|
|
3008
|
+
options?: HttpHandlerOptions,
|
|
3009
|
+
): Effect.Effect<
|
|
3010
|
+
ListPolicyGenerationSummariesCommandOutput,
|
|
3011
|
+
| Cause.TimeoutException
|
|
3012
|
+
| SdkError
|
|
3013
|
+
| AccessDeniedError
|
|
3014
|
+
| InternalServerError
|
|
3015
|
+
| ResourceNotFoundError
|
|
3016
|
+
| ThrottlingError
|
|
3017
|
+
| ValidationError
|
|
3018
|
+
>;
|
|
3019
|
+
|
|
3020
|
+
listPolicyGenerationSummariesStream(
|
|
3021
|
+
args: ListPolicyGenerationSummariesCommandInput,
|
|
3022
|
+
options?: HttpHandlerOptions,
|
|
3023
|
+
): Stream.Stream<
|
|
3024
|
+
ListPolicyGenerationSummariesCommandOutput,
|
|
3025
|
+
| Cause.TimeoutException
|
|
3026
|
+
| SdkError
|
|
3027
|
+
| AccessDeniedError
|
|
3028
|
+
| InternalServerError
|
|
3029
|
+
| ResourceNotFoundError
|
|
3030
|
+
| ThrottlingError
|
|
3031
|
+
| ValidationError
|
|
3032
|
+
>;
|
|
3033
|
+
|
|
2504
3034
|
/**
|
|
2505
3035
|
* @see {@link ListPolicyGenerationsCommand}
|
|
2506
3036
|
*/
|
|
@@ -2532,6 +3062,37 @@ interface BedrockAgentCoreControlService$ {
|
|
|
2532
3062
|
| ValidationError
|
|
2533
3063
|
>;
|
|
2534
3064
|
|
|
3065
|
+
/**
|
|
3066
|
+
* @see {@link ListPolicySummariesCommand}
|
|
3067
|
+
*/
|
|
3068
|
+
listPolicySummaries(
|
|
3069
|
+
args: ListPolicySummariesCommandInput,
|
|
3070
|
+
options?: HttpHandlerOptions,
|
|
3071
|
+
): Effect.Effect<
|
|
3072
|
+
ListPolicySummariesCommandOutput,
|
|
3073
|
+
| Cause.TimeoutException
|
|
3074
|
+
| SdkError
|
|
3075
|
+
| AccessDeniedError
|
|
3076
|
+
| InternalServerError
|
|
3077
|
+
| ResourceNotFoundError
|
|
3078
|
+
| ThrottlingError
|
|
3079
|
+
| ValidationError
|
|
3080
|
+
>;
|
|
3081
|
+
|
|
3082
|
+
listPolicySummariesStream(
|
|
3083
|
+
args: ListPolicySummariesCommandInput,
|
|
3084
|
+
options?: HttpHandlerOptions,
|
|
3085
|
+
): Stream.Stream<
|
|
3086
|
+
ListPolicySummariesCommandOutput,
|
|
3087
|
+
| Cause.TimeoutException
|
|
3088
|
+
| SdkError
|
|
3089
|
+
| AccessDeniedError
|
|
3090
|
+
| InternalServerError
|
|
3091
|
+
| ResourceNotFoundError
|
|
3092
|
+
| ThrottlingError
|
|
3093
|
+
| ValidationError
|
|
3094
|
+
>;
|
|
3095
|
+
|
|
2535
3096
|
/**
|
|
2536
3097
|
* @see {@link ListRegistriesCommand}
|
|
2537
3098
|
*/
|
|
@@ -2839,6 +3400,43 @@ interface BedrockAgentCoreControlService$ {
|
|
|
2839
3400
|
| ValidationError
|
|
2840
3401
|
>;
|
|
2841
3402
|
|
|
3403
|
+
/**
|
|
3404
|
+
* @see {@link UpdateDatasetCommand}
|
|
3405
|
+
*/
|
|
3406
|
+
updateDataset(
|
|
3407
|
+
args: UpdateDatasetCommandInput,
|
|
3408
|
+
options?: HttpHandlerOptions,
|
|
3409
|
+
): Effect.Effect<
|
|
3410
|
+
UpdateDatasetCommandOutput,
|
|
3411
|
+
| Cause.TimeoutException
|
|
3412
|
+
| SdkError
|
|
3413
|
+
| AccessDeniedError
|
|
3414
|
+
| ConflictError
|
|
3415
|
+
| InternalServerError
|
|
3416
|
+
| ResourceNotFoundError
|
|
3417
|
+
| ThrottlingError
|
|
3418
|
+
| ValidationError
|
|
3419
|
+
>;
|
|
3420
|
+
|
|
3421
|
+
/**
|
|
3422
|
+
* @see {@link UpdateDatasetExamplesCommand}
|
|
3423
|
+
*/
|
|
3424
|
+
updateDatasetExamples(
|
|
3425
|
+
args: UpdateDatasetExamplesCommandInput,
|
|
3426
|
+
options?: HttpHandlerOptions,
|
|
3427
|
+
): Effect.Effect<
|
|
3428
|
+
UpdateDatasetExamplesCommandOutput,
|
|
3429
|
+
| Cause.TimeoutException
|
|
3430
|
+
| SdkError
|
|
3431
|
+
| AccessDeniedError
|
|
3432
|
+
| ConflictError
|
|
3433
|
+
| InternalServerError
|
|
3434
|
+
| ResourceNotFoundError
|
|
3435
|
+
| ServiceQuotaExceededError
|
|
3436
|
+
| ThrottlingError
|
|
3437
|
+
| ValidationError
|
|
3438
|
+
>;
|
|
3439
|
+
|
|
2842
3440
|
/**
|
|
2843
3441
|
* @see {@link UpdateEvaluatorCommand}
|
|
2844
3442
|
*/
|
|
@@ -2932,6 +3530,25 @@ interface BedrockAgentCoreControlService$ {
|
|
|
2932
3530
|
| ValidationError
|
|
2933
3531
|
>;
|
|
2934
3532
|
|
|
3533
|
+
/**
|
|
3534
|
+
* @see {@link UpdateHarnessEndpointCommand}
|
|
3535
|
+
*/
|
|
3536
|
+
updateHarnessEndpoint(
|
|
3537
|
+
args: UpdateHarnessEndpointCommandInput,
|
|
3538
|
+
options?: HttpHandlerOptions,
|
|
3539
|
+
): Effect.Effect<
|
|
3540
|
+
UpdateHarnessEndpointCommandOutput,
|
|
3541
|
+
| Cause.TimeoutException
|
|
3542
|
+
| SdkError
|
|
3543
|
+
| AccessDeniedError
|
|
3544
|
+
| ConflictError
|
|
3545
|
+
| InternalServerError
|
|
3546
|
+
| ResourceNotFoundError
|
|
3547
|
+
| ServiceQuotaExceededError
|
|
3548
|
+
| ThrottlingError
|
|
3549
|
+
| ValidationError
|
|
3550
|
+
>;
|
|
3551
|
+
|
|
2935
3552
|
/**
|
|
2936
3553
|
* @see {@link UpdateMemoryCommand}
|
|
2937
3554
|
*/
|
|
@@ -3066,6 +3683,7 @@ interface BedrockAgentCoreControlService$ {
|
|
|
3066
3683
|
| ConflictError
|
|
3067
3684
|
| InternalServerError
|
|
3068
3685
|
| ResourceNotFoundError
|
|
3686
|
+
| ServiceQuotaExceededError
|
|
3069
3687
|
| ThrottlingError
|
|
3070
3688
|
| ValidationError
|
|
3071
3689
|
>;
|