@aws-sdk/client-bedrock-agentcore-control 3.1033.0 → 3.1035.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.
- package/README.md +35 -0
- package/dist-cjs/index.js +99 -0
- package/dist-cjs/schemas/schemas_0.js +473 -133
- package/dist-es/BedrockAgentCoreControl.js +12 -0
- package/dist-es/commands/CreateHarnessCommand.js +16 -0
- package/dist-es/commands/DeleteHarnessCommand.js +16 -0
- package/dist-es/commands/GetHarnessCommand.js +16 -0
- package/dist-es/commands/ListHarnessesCommand.js +16 -0
- package/dist-es/commands/UpdateHarnessCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +22 -0
- package/dist-es/pagination/ListHarnessesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +462 -123
- package/dist-types/BedrockAgentCoreControl.d.ts +43 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +7 -2
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +2 -0
- package/dist-types/commands/CreateHarnessCommand.d.ts +451 -0
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/commands/CreateOnlineEvaluationConfigCommand.d.ts +2 -2
- package/dist-types/commands/DeleteHarnessCommand.d.ts +276 -0
- package/dist-types/commands/DeleteOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/commands/DeleteOnlineEvaluationConfigCommand.d.ts +2 -2
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +1 -0
- package/dist-types/commands/GetHarnessCommand.d.ts +272 -0
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/commands/GetOnlineEvaluationConfigCommand.d.ts +2 -2
- package/dist-types/commands/ListGatewayTargetsCommand.d.ts +1 -0
- package/dist-types/commands/ListHarnessesCommand.d.ts +97 -0
- package/dist-types/commands/ListOauth2CredentialProvidersCommand.d.ts +1 -1
- package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +2 -3
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +2 -0
- package/dist-types/commands/UpdateHarnessCommand.d.ts +454 -0
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +46 -0
- package/dist-types/models/models_0.d.ts +1952 -1926
- package/dist-types/models/models_1.d.ts +1246 -13
- package/dist-types/pagination/ListHarnessesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +45 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +93 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateHarnessCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateOnlineEvaluationConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteHarnessCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteOnlineEvaluationConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetHarnessCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOnlineEvaluationConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListHarnessesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListOauth2CredentialProvidersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateHarnessCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +27 -0
- package/dist-types/ts3.4/models/models_0.d.ts +470 -566
- package/dist-types/ts3.4/models/models_1.d.ts +574 -6
- package/dist-types/ts3.4/pagination/ListHarnessesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +45 -0
- package/package.json +18 -18
|
@@ -7,6 +7,7 @@ export * from "./CreateCodeInterpreterCommand";
|
|
|
7
7
|
export * from "./CreateEvaluatorCommand";
|
|
8
8
|
export * from "./CreateGatewayCommand";
|
|
9
9
|
export * from "./CreateGatewayTargetCommand";
|
|
10
|
+
export * from "./CreateHarnessCommand";
|
|
10
11
|
export * from "./CreateMemoryCommand";
|
|
11
12
|
export * from "./CreateOauth2CredentialProviderCommand";
|
|
12
13
|
export * from "./CreateOnlineEvaluationConfigCommand";
|
|
@@ -24,6 +25,7 @@ export * from "./DeleteCodeInterpreterCommand";
|
|
|
24
25
|
export * from "./DeleteEvaluatorCommand";
|
|
25
26
|
export * from "./DeleteGatewayCommand";
|
|
26
27
|
export * from "./DeleteGatewayTargetCommand";
|
|
28
|
+
export * from "./DeleteHarnessCommand";
|
|
27
29
|
export * from "./DeleteMemoryCommand";
|
|
28
30
|
export * from "./DeleteOauth2CredentialProviderCommand";
|
|
29
31
|
export * from "./DeleteOnlineEvaluationConfigCommand";
|
|
@@ -42,6 +44,7 @@ export * from "./GetCodeInterpreterCommand";
|
|
|
42
44
|
export * from "./GetEvaluatorCommand";
|
|
43
45
|
export * from "./GetGatewayCommand";
|
|
44
46
|
export * from "./GetGatewayTargetCommand";
|
|
47
|
+
export * from "./GetHarnessCommand";
|
|
45
48
|
export * from "./GetMemoryCommand";
|
|
46
49
|
export * from "./GetOauth2CredentialProviderCommand";
|
|
47
50
|
export * from "./GetOnlineEvaluationConfigCommand";
|
|
@@ -63,6 +66,7 @@ export * from "./ListCodeInterpretersCommand";
|
|
|
63
66
|
export * from "./ListEvaluatorsCommand";
|
|
64
67
|
export * from "./ListGatewayTargetsCommand";
|
|
65
68
|
export * from "./ListGatewaysCommand";
|
|
69
|
+
export * from "./ListHarnessesCommand";
|
|
66
70
|
export * from "./ListMemoriesCommand";
|
|
67
71
|
export * from "./ListOauth2CredentialProvidersCommand";
|
|
68
72
|
export * from "./ListOnlineEvaluationConfigsCommand";
|
|
@@ -87,6 +91,7 @@ export * from "./UpdateApiKeyCredentialProviderCommand";
|
|
|
87
91
|
export * from "./UpdateEvaluatorCommand";
|
|
88
92
|
export * from "./UpdateGatewayCommand";
|
|
89
93
|
export * from "./UpdateGatewayTargetCommand";
|
|
94
|
+
export * from "./UpdateHarnessCommand";
|
|
90
95
|
export * from "./UpdateMemoryCommand";
|
|
91
96
|
export * from "./UpdateOauth2CredentialProviderCommand";
|
|
92
97
|
export * from "./UpdateOnlineEvaluationConfigCommand";
|
|
@@ -461,6 +461,51 @@ export declare const KeyType: {
|
|
|
461
461
|
* @public
|
|
462
462
|
*/
|
|
463
463
|
export type KeyType = (typeof KeyType)[keyof typeof KeyType];
|
|
464
|
+
/**
|
|
465
|
+
* @public
|
|
466
|
+
* @enum
|
|
467
|
+
*/
|
|
468
|
+
export declare const HarnessToolType: {
|
|
469
|
+
readonly AGENTCORE_BROWSER: "agentcore_browser";
|
|
470
|
+
readonly AGENTCORE_CODE_INTERPRETER: "agentcore_code_interpreter";
|
|
471
|
+
readonly AGENTCORE_GATEWAY: "agentcore_gateway";
|
|
472
|
+
readonly INLINE_FUNCTION: "inline_function";
|
|
473
|
+
readonly REMOTE_MCP: "remote_mcp";
|
|
474
|
+
};
|
|
475
|
+
/**
|
|
476
|
+
* @public
|
|
477
|
+
*/
|
|
478
|
+
export type HarnessToolType = (typeof HarnessToolType)[keyof typeof HarnessToolType];
|
|
479
|
+
/**
|
|
480
|
+
* @public
|
|
481
|
+
* @enum
|
|
482
|
+
*/
|
|
483
|
+
export declare const HarnessTruncationStrategy: {
|
|
484
|
+
readonly NONE: "none";
|
|
485
|
+
readonly SLIDING_WINDOW: "sliding_window";
|
|
486
|
+
readonly SUMMARIZATION: "summarization";
|
|
487
|
+
};
|
|
488
|
+
/**
|
|
489
|
+
* @public
|
|
490
|
+
*/
|
|
491
|
+
export type HarnessTruncationStrategy = (typeof HarnessTruncationStrategy)[keyof typeof HarnessTruncationStrategy];
|
|
492
|
+
/**
|
|
493
|
+
* @public
|
|
494
|
+
* @enum
|
|
495
|
+
*/
|
|
496
|
+
export declare const HarnessStatus: {
|
|
497
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
498
|
+
readonly CREATING: "CREATING";
|
|
499
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
500
|
+
readonly DELETING: "DELETING";
|
|
501
|
+
readonly READY: "READY";
|
|
502
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
503
|
+
readonly UPDATING: "UPDATING";
|
|
504
|
+
};
|
|
505
|
+
/**
|
|
506
|
+
* @public
|
|
507
|
+
*/
|
|
508
|
+
export type HarnessStatus = (typeof HarnessStatus)[keyof typeof HarnessStatus];
|
|
464
509
|
/**
|
|
465
510
|
* @public
|
|
466
511
|
* @enum
|
|
@@ -628,6 +673,7 @@ export declare const OnlineEvaluationConfigStatus: {
|
|
|
628
673
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
629
674
|
readonly CREATING: "CREATING";
|
|
630
675
|
readonly DELETING: "DELETING";
|
|
676
|
+
readonly ERROR: "ERROR";
|
|
631
677
|
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
632
678
|
readonly UPDATING: "UPDATING";
|
|
633
679
|
};
|