@aws-sdk/client-bedrock-agentcore 3.1038.0 → 3.1040.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 +105 -7
- package/dist-cjs/index.js +275 -0
- package/dist-cjs/schemas/schemas_0.js +851 -99
- package/dist-es/BedrockAgentCore.js +34 -0
- package/dist-es/commands/CreateABTestCommand.js +16 -0
- package/dist-es/commands/DeleteABTestCommand.js +16 -0
- package/dist-es/commands/DeleteBatchEvaluationCommand.js +16 -0
- package/dist-es/commands/DeleteRecommendationCommand.js +16 -0
- package/dist-es/commands/GetABTestCommand.js +16 -0
- package/dist-es/commands/GetBatchEvaluationCommand.js +16 -0
- package/dist-es/commands/GetRecommendationCommand.js +16 -0
- package/dist-es/commands/ListABTestsCommand.js +16 -0
- package/dist-es/commands/ListBatchEvaluationsCommand.js +16 -0
- package/dist-es/commands/ListRecommendationsCommand.js +16 -0
- package/dist-es/commands/StartBatchEvaluationCommand.js +16 -0
- package/dist-es/commands/StartRecommendationCommand.js +16 -0
- package/dist-es/commands/StopBatchEvaluationCommand.js +16 -0
- package/dist-es/commands/UpdateABTestCommand.js +16 -0
- package/dist-es/commands/index.js +14 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +60 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListABTestsPaginator.js +4 -0
- package/dist-es/pagination/ListBatchEvaluationsPaginator.js +4 -0
- package/dist-es/pagination/ListRecommendationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +843 -93
- package/dist-types/BedrockAgentCore.d.ts +122 -0
- package/dist-types/BedrockAgentCoreClient.d.ts +16 -2
- package/dist-types/commands/BatchCreateMemoryRecordsCommand.d.ts +10 -0
- package/dist-types/commands/BatchUpdateMemoryRecordsCommand.d.ts +10 -0
- package/dist-types/commands/CreateABTestCommand.d.ts +134 -0
- package/dist-types/commands/DeleteABTestCommand.d.ts +97 -0
- package/dist-types/commands/DeleteBatchEvaluationCommand.d.ts +97 -0
- package/dist-types/commands/DeleteRecommendationCommand.d.ts +93 -0
- package/dist-types/commands/GetABTestCommand.d.ts +165 -0
- package/dist-types/commands/GetBatchEvaluationCommand.d.ts +148 -0
- package/dist-types/commands/GetMemoryRecordCommand.d.ts +7 -2
- package/dist-types/commands/GetRecommendationCommand.d.ts +220 -0
- package/dist-types/commands/GetResourceOauth2TokenCommand.d.ts +7 -1
- package/dist-types/commands/ListABTestsCommand.d.ts +103 -0
- package/dist-types/commands/ListBatchEvaluationsCommand.d.ts +126 -0
- package/dist-types/commands/ListMemoryRecordsCommand.d.ts +25 -2
- package/dist-types/commands/ListRecommendationsCommand.d.ts +100 -0
- package/dist-types/commands/RetrieveMemoryRecordsCommand.d.ts +16 -6
- package/dist-types/commands/SearchRegistryRecordsCommand.d.ts +2 -1
- package/dist-types/commands/StartBatchEvaluationCommand.d.ts +172 -0
- package/dist-types/commands/StartRecommendationCommand.d.ts +300 -0
- package/dist-types/commands/StopBatchEvaluationCommand.d.ts +98 -0
- package/dist-types/commands/UpdateABTestCommand.d.ts +136 -0
- package/dist-types/commands/index.d.ts +14 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +116 -0
- package/dist-types/models/models_0.d.ts +2595 -386
- package/dist-types/models/models_1.d.ts +147 -0
- package/dist-types/pagination/ListABTestsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBatchEvaluationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommendationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +99 -0
- package/dist-types/ts3.4/BedrockAgentCore.d.ts +262 -0
- package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +84 -0
- package/dist-types/ts3.4/commands/CreateABTestCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteABTestCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteBatchEvaluationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetABTestCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetBatchEvaluationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListABTestsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListBatchEvaluationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SearchRegistryRecordsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartBatchEvaluationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopBatchEvaluationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateABTestCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +14 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +73 -0
- package/dist-types/ts3.4/models/models_0.d.ts +801 -43
- package/dist-types/ts3.4/models/models_1.d.ts +40 -0
- package/dist-types/ts3.4/pagination/ListABTestsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBatchEvaluationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +99 -0
- package/package.json +7 -7
|
@@ -2,15 +2,22 @@ export * from "./BatchCreateMemoryRecordsCommand";
|
|
|
2
2
|
export * from "./BatchDeleteMemoryRecordsCommand";
|
|
3
3
|
export * from "./BatchUpdateMemoryRecordsCommand";
|
|
4
4
|
export * from "./CompleteResourceTokenAuthCommand";
|
|
5
|
+
export * from "./CreateABTestCommand";
|
|
5
6
|
export * from "./CreateEventCommand";
|
|
7
|
+
export * from "./DeleteABTestCommand";
|
|
8
|
+
export * from "./DeleteBatchEvaluationCommand";
|
|
6
9
|
export * from "./DeleteEventCommand";
|
|
7
10
|
export * from "./DeleteMemoryRecordCommand";
|
|
11
|
+
export * from "./DeleteRecommendationCommand";
|
|
8
12
|
export * from "./EvaluateCommand";
|
|
13
|
+
export * from "./GetABTestCommand";
|
|
9
14
|
export * from "./GetAgentCardCommand";
|
|
15
|
+
export * from "./GetBatchEvaluationCommand";
|
|
10
16
|
export * from "./GetBrowserSessionCommand";
|
|
11
17
|
export * from "./GetCodeInterpreterSessionCommand";
|
|
12
18
|
export * from "./GetEventCommand";
|
|
13
19
|
export * from "./GetMemoryRecordCommand";
|
|
20
|
+
export * from "./GetRecommendationCommand";
|
|
14
21
|
export * from "./GetResourceApiKeyCommand";
|
|
15
22
|
export * from "./GetResourceOauth2TokenCommand";
|
|
16
23
|
export * from "./GetWorkloadAccessTokenCommand";
|
|
@@ -21,20 +28,27 @@ export * from "./InvokeAgentRuntimeCommandCommand";
|
|
|
21
28
|
export * from "./InvokeBrowserCommand";
|
|
22
29
|
export * from "./InvokeCodeInterpreterCommand";
|
|
23
30
|
export * from "./InvokeHarnessCommand";
|
|
31
|
+
export * from "./ListABTestsCommand";
|
|
24
32
|
export * from "./ListActorsCommand";
|
|
33
|
+
export * from "./ListBatchEvaluationsCommand";
|
|
25
34
|
export * from "./ListBrowserSessionsCommand";
|
|
26
35
|
export * from "./ListCodeInterpreterSessionsCommand";
|
|
27
36
|
export * from "./ListEventsCommand";
|
|
28
37
|
export * from "./ListMemoryExtractionJobsCommand";
|
|
29
38
|
export * from "./ListMemoryRecordsCommand";
|
|
39
|
+
export * from "./ListRecommendationsCommand";
|
|
30
40
|
export * from "./ListSessionsCommand";
|
|
31
41
|
export * from "./RetrieveMemoryRecordsCommand";
|
|
32
42
|
export * from "./SaveBrowserSessionProfileCommand";
|
|
33
43
|
export * from "./SearchRegistryRecordsCommand";
|
|
44
|
+
export * from "./StartBatchEvaluationCommand";
|
|
34
45
|
export * from "./StartBrowserSessionCommand";
|
|
35
46
|
export * from "./StartCodeInterpreterSessionCommand";
|
|
36
47
|
export * from "./StartMemoryExtractionJobCommand";
|
|
48
|
+
export * from "./StartRecommendationCommand";
|
|
49
|
+
export * from "./StopBatchEvaluationCommand";
|
|
37
50
|
export * from "./StopBrowserSessionCommand";
|
|
38
51
|
export * from "./StopCodeInterpreterSessionCommand";
|
|
39
52
|
export * from "./StopRuntimeSessionCommand";
|
|
53
|
+
export * from "./UpdateABTestCommand";
|
|
40
54
|
export * from "./UpdateBrowserStreamCommand";
|
|
@@ -9,4 +9,5 @@ export * from "./pagination";
|
|
|
9
9
|
export * from "./models/enums";
|
|
10
10
|
export * from "./models/errors";
|
|
11
11
|
export * from "./models/models_0";
|
|
12
|
+
export * from "./models/models_1";
|
|
12
13
|
export { BedrockAgentCoreServiceException } from "./models/BedrockAgentCoreServiceException";
|
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
export declare const ABTestExecutionStatus: {
|
|
2
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
3
|
+
readonly PAUSED: "PAUSED";
|
|
4
|
+
readonly RUNNING: "RUNNING";
|
|
5
|
+
readonly STOPPED: "STOPPED";
|
|
6
|
+
};
|
|
7
|
+
export type ABTestExecutionStatus =
|
|
8
|
+
(typeof ABTestExecutionStatus)[keyof typeof ABTestExecutionStatus];
|
|
9
|
+
export declare const ABTestStatus: {
|
|
10
|
+
readonly ACTIVE: "ACTIVE";
|
|
11
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
12
|
+
readonly CREATING: "CREATING";
|
|
13
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
14
|
+
readonly DELETING: "DELETING";
|
|
15
|
+
readonly FAILED: "FAILED";
|
|
16
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
17
|
+
readonly UPDATING: "UPDATING";
|
|
18
|
+
};
|
|
19
|
+
export type ABTestStatus = (typeof ABTestStatus)[keyof typeof ABTestStatus];
|
|
1
20
|
export declare const ValidationExceptionReason: {
|
|
2
21
|
readonly CANNOT_PARSE: "CannotParse";
|
|
3
22
|
readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
|
|
@@ -13,6 +32,18 @@ export declare const CommandExecutionStatus: {
|
|
|
13
32
|
};
|
|
14
33
|
export type CommandExecutionStatus =
|
|
15
34
|
(typeof CommandExecutionStatus)[keyof typeof CommandExecutionStatus];
|
|
35
|
+
export declare const CloudWatchLogsFilterOperator: {
|
|
36
|
+
readonly CONTAINS: "Contains";
|
|
37
|
+
readonly EQUALS: "Equals";
|
|
38
|
+
readonly GREATER_THAN: "GreaterThan";
|
|
39
|
+
readonly GREATER_THAN_OR_EQUAL: "GreaterThanOrEqual";
|
|
40
|
+
readonly LESS_THAN: "LessThan";
|
|
41
|
+
readonly LESS_THAN_OR_EQUAL: "LessThanOrEqual";
|
|
42
|
+
readonly NOT_CONTAINS: "NotContains";
|
|
43
|
+
readonly NOT_EQUALS: "NotEquals";
|
|
44
|
+
};
|
|
45
|
+
export type CloudWatchLogsFilterOperator =
|
|
46
|
+
(typeof CloudWatchLogsFilterOperator)[keyof typeof CloudWatchLogsFilterOperator];
|
|
16
47
|
export declare const BrowserEnterprisePolicyType: {
|
|
17
48
|
readonly MANAGED: "MANAGED";
|
|
18
49
|
readonly RECOMMENDED: "RECOMMENDED";
|
|
@@ -54,8 +85,36 @@ export declare const CodeInterpreterSessionStatus: {
|
|
|
54
85
|
};
|
|
55
86
|
export type CodeInterpreterSessionStatus =
|
|
56
87
|
(typeof CodeInterpreterSessionStatus)[keyof typeof CodeInterpreterSessionStatus];
|
|
88
|
+
export declare const BatchEvaluationStatus: {
|
|
89
|
+
readonly COMPLETED: "COMPLETED";
|
|
90
|
+
readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
|
|
91
|
+
readonly DELETING: "DELETING";
|
|
92
|
+
readonly FAILED: "FAILED";
|
|
93
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
94
|
+
readonly PENDING: "PENDING";
|
|
95
|
+
readonly STOPPED: "STOPPED";
|
|
96
|
+
readonly STOPPING: "STOPPING";
|
|
97
|
+
};
|
|
98
|
+
export type BatchEvaluationStatus =
|
|
99
|
+
(typeof BatchEvaluationStatus)[keyof typeof BatchEvaluationStatus];
|
|
100
|
+
export declare const RecommendationStatus: {
|
|
101
|
+
readonly COMPLETED: "COMPLETED";
|
|
102
|
+
readonly DELETING: "DELETING";
|
|
103
|
+
readonly FAILED: "FAILED";
|
|
104
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
105
|
+
readonly PENDING: "PENDING";
|
|
106
|
+
};
|
|
107
|
+
export type RecommendationStatus =
|
|
108
|
+
(typeof RecommendationStatus)[keyof typeof RecommendationStatus];
|
|
109
|
+
export declare const RecommendationType: {
|
|
110
|
+
readonly SYSTEM_PROMPT_RECOMMENDATION: "SYSTEM_PROMPT_RECOMMENDATION";
|
|
111
|
+
readonly TOOL_DESCRIPTION_RECOMMENDATION: "TOOL_DESCRIPTION_RECOMMENDATION";
|
|
112
|
+
};
|
|
113
|
+
export type RecommendationType =
|
|
114
|
+
(typeof RecommendationType)[keyof typeof RecommendationType];
|
|
57
115
|
export declare const Oauth2FlowType: {
|
|
58
116
|
readonly M2M: "M2M";
|
|
117
|
+
readonly ON_BEHALF_OF_TOKEN_EXCHANGE: "ON_BEHALF_OF_TOKEN_EXCHANGE";
|
|
59
118
|
readonly USER_FEDERATION: "USER_FEDERATION";
|
|
60
119
|
};
|
|
61
120
|
export type Oauth2FlowType =
|
|
@@ -189,6 +248,20 @@ export declare const ExtractionJobStatus: {
|
|
|
189
248
|
};
|
|
190
249
|
export type ExtractionJobStatus =
|
|
191
250
|
(typeof ExtractionJobStatus)[keyof typeof ExtractionJobStatus];
|
|
251
|
+
export declare const MemoryRecordOperatorType: {
|
|
252
|
+
readonly AFTER: "AFTER";
|
|
253
|
+
readonly BEFORE: "BEFORE";
|
|
254
|
+
readonly CONTAINS: "CONTAINS";
|
|
255
|
+
readonly EQUALS_TO: "EQUALS_TO";
|
|
256
|
+
readonly EXISTS: "EXISTS";
|
|
257
|
+
readonly GREATER_THAN: "GREATER_THAN";
|
|
258
|
+
readonly GREATER_THAN_OR_EQUALS: "GREATER_THAN_OR_EQUALS";
|
|
259
|
+
readonly LESS_THAN: "LESS_THAN";
|
|
260
|
+
readonly LESS_THAN_OR_EQUALS: "LESS_THAN_OR_EQUALS";
|
|
261
|
+
readonly NOT_EXISTS: "NOT_EXISTS";
|
|
262
|
+
};
|
|
263
|
+
export type MemoryRecordOperatorType =
|
|
264
|
+
(typeof MemoryRecordOperatorType)[keyof typeof MemoryRecordOperatorType];
|
|
192
265
|
export declare const EventFilterCondition: {
|
|
193
266
|
readonly HAS_EVENTS: "HAS_EVENTS";
|
|
194
267
|
};
|