@aws-sdk/client-bedrock-agentcore 3.1037.0 → 3.1039.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/README.md +105 -7
  2. package/dist-cjs/index.js +261 -0
  3. package/dist-cjs/schemas/schemas_0.js +812 -90
  4. package/dist-es/BedrockAgentCore.js +34 -0
  5. package/dist-es/commands/CreateABTestCommand.js +16 -0
  6. package/dist-es/commands/DeleteABTestCommand.js +16 -0
  7. package/dist-es/commands/DeleteBatchEvaluationCommand.js +16 -0
  8. package/dist-es/commands/DeleteRecommendationCommand.js +16 -0
  9. package/dist-es/commands/GetABTestCommand.js +16 -0
  10. package/dist-es/commands/GetBatchEvaluationCommand.js +16 -0
  11. package/dist-es/commands/GetRecommendationCommand.js +16 -0
  12. package/dist-es/commands/ListABTestsCommand.js +16 -0
  13. package/dist-es/commands/ListBatchEvaluationsCommand.js +16 -0
  14. package/dist-es/commands/ListRecommendationsCommand.js +16 -0
  15. package/dist-es/commands/StartBatchEvaluationCommand.js +16 -0
  16. package/dist-es/commands/StartRecommendationCommand.js +16 -0
  17. package/dist-es/commands/StopBatchEvaluationCommand.js +16 -0
  18. package/dist-es/commands/UpdateABTestCommand.js +16 -0
  19. package/dist-es/commands/index.js +14 -0
  20. package/dist-es/index.js +1 -0
  21. package/dist-es/models/enums.js +47 -0
  22. package/dist-es/models/models_1.js +1 -0
  23. package/dist-es/pagination/ListABTestsPaginator.js +4 -0
  24. package/dist-es/pagination/ListBatchEvaluationsPaginator.js +4 -0
  25. package/dist-es/pagination/ListRecommendationsPaginator.js +4 -0
  26. package/dist-es/pagination/index.js +3 -0
  27. package/dist-es/schemas/schemas_0.js +804 -84
  28. package/dist-types/BedrockAgentCore.d.ts +122 -0
  29. package/dist-types/BedrockAgentCoreClient.d.ts +16 -2
  30. package/dist-types/commands/CreateABTestCommand.d.ts +134 -0
  31. package/dist-types/commands/DeleteABTestCommand.d.ts +97 -0
  32. package/dist-types/commands/DeleteBatchEvaluationCommand.d.ts +97 -0
  33. package/dist-types/commands/DeleteRecommendationCommand.d.ts +93 -0
  34. package/dist-types/commands/GetABTestCommand.d.ts +165 -0
  35. package/dist-types/commands/GetBatchEvaluationCommand.d.ts +148 -0
  36. package/dist-types/commands/GetRecommendationCommand.d.ts +220 -0
  37. package/dist-types/commands/ListABTestsCommand.d.ts +103 -0
  38. package/dist-types/commands/ListBatchEvaluationsCommand.d.ts +126 -0
  39. package/dist-types/commands/ListRecommendationsCommand.d.ts +100 -0
  40. package/dist-types/commands/SearchRegistryRecordsCommand.d.ts +2 -1
  41. package/dist-types/commands/StartBatchEvaluationCommand.d.ts +172 -0
  42. package/dist-types/commands/StartRecommendationCommand.d.ts +300 -0
  43. package/dist-types/commands/StopBatchEvaluationCommand.d.ts +98 -0
  44. package/dist-types/commands/UpdateABTestCommand.d.ts +136 -0
  45. package/dist-types/commands/index.d.ts +14 -0
  46. package/dist-types/index.d.ts +1 -0
  47. package/dist-types/models/enums.d.ts +95 -0
  48. package/dist-types/models/models_0.d.ts +2390 -299
  49. package/dist-types/models/models_1.d.ts +99 -0
  50. package/dist-types/pagination/ListABTestsPaginator.d.ts +7 -0
  51. package/dist-types/pagination/ListBatchEvaluationsPaginator.d.ts +7 -0
  52. package/dist-types/pagination/ListRecommendationsPaginator.d.ts +7 -0
  53. package/dist-types/pagination/index.d.ts +3 -0
  54. package/dist-types/schemas/schemas_0.d.ts +96 -0
  55. package/dist-types/ts3.4/BedrockAgentCore.d.ts +262 -0
  56. package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +84 -0
  57. package/dist-types/ts3.4/commands/CreateABTestCommand.d.ts +47 -0
  58. package/dist-types/ts3.4/commands/DeleteABTestCommand.d.ts +47 -0
  59. package/dist-types/ts3.4/commands/DeleteBatchEvaluationCommand.d.ts +51 -0
  60. package/dist-types/ts3.4/commands/DeleteRecommendationCommand.d.ts +51 -0
  61. package/dist-types/ts3.4/commands/GetABTestCommand.d.ts +47 -0
  62. package/dist-types/ts3.4/commands/GetBatchEvaluationCommand.d.ts +51 -0
  63. package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +51 -0
  64. package/dist-types/ts3.4/commands/ListABTestsCommand.d.ts +47 -0
  65. package/dist-types/ts3.4/commands/ListBatchEvaluationsCommand.d.ts +51 -0
  66. package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +51 -0
  67. package/dist-types/ts3.4/commands/SearchRegistryRecordsCommand.d.ts +2 -4
  68. package/dist-types/ts3.4/commands/StartBatchEvaluationCommand.d.ts +51 -0
  69. package/dist-types/ts3.4/commands/StartRecommendationCommand.d.ts +51 -0
  70. package/dist-types/ts3.4/commands/StopBatchEvaluationCommand.d.ts +51 -0
  71. package/dist-types/ts3.4/commands/UpdateABTestCommand.d.ts +47 -0
  72. package/dist-types/ts3.4/commands/index.d.ts +14 -0
  73. package/dist-types/ts3.4/index.d.ts +1 -0
  74. package/dist-types/ts3.4/models/enums.d.ts +58 -0
  75. package/dist-types/ts3.4/models/models_0.d.ts +704 -24
  76. package/dist-types/ts3.4/models/models_1.d.ts +29 -0
  77. package/dist-types/ts3.4/pagination/ListABTestsPaginator.d.ts +11 -0
  78. package/dist-types/ts3.4/pagination/ListBatchEvaluationsPaginator.d.ts +11 -0
  79. package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -0
  80. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  81. package/dist-types/ts3.4/schemas/schemas_0.d.ts +96 -0
  82. 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,6 +85,33 @@ 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";
59
117
  readonly USER_FEDERATION: "USER_FEDERATION";