@aws-sdk/client-bedrock-agentcore 3.847.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 (211) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +413 -0
  3. package/dist-cjs/BedrockAgentCore.js +63 -0
  4. package/dist-cjs/BedrockAgentCoreClient.js +54 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateEventCommand.js +27 -0
  8. package/dist-cjs/commands/DeleteEventCommand.js +26 -0
  9. package/dist-cjs/commands/DeleteMemoryRecordCommand.js +26 -0
  10. package/dist-cjs/commands/GetBrowserSessionCommand.js +26 -0
  11. package/dist-cjs/commands/GetCodeInterpreterSessionCommand.js +26 -0
  12. package/dist-cjs/commands/GetEventCommand.js +27 -0
  13. package/dist-cjs/commands/GetMemoryRecordCommand.js +27 -0
  14. package/dist-cjs/commands/GetResourceApiKeyCommand.js +27 -0
  15. package/dist-cjs/commands/GetResourceOauth2TokenCommand.js +27 -0
  16. package/dist-cjs/commands/GetWorkloadAccessTokenCommand.js +27 -0
  17. package/dist-cjs/commands/GetWorkloadAccessTokenForJWTCommand.js +27 -0
  18. package/dist-cjs/commands/GetWorkloadAccessTokenForUserIdCommand.js +27 -0
  19. package/dist-cjs/commands/InvokeAgentRuntimeCommand.js +27 -0
  20. package/dist-cjs/commands/InvokeCodeInterpreterCommand.js +31 -0
  21. package/dist-cjs/commands/ListActorsCommand.js +26 -0
  22. package/dist-cjs/commands/ListBrowserSessionsCommand.js +26 -0
  23. package/dist-cjs/commands/ListCodeInterpreterSessionsCommand.js +26 -0
  24. package/dist-cjs/commands/ListEventsCommand.js +27 -0
  25. package/dist-cjs/commands/ListMemoryRecordsCommand.js +27 -0
  26. package/dist-cjs/commands/ListSessionsCommand.js +26 -0
  27. package/dist-cjs/commands/RetrieveMemoryRecordsCommand.js +27 -0
  28. package/dist-cjs/commands/StartBrowserSessionCommand.js +26 -0
  29. package/dist-cjs/commands/StartCodeInterpreterSessionCommand.js +26 -0
  30. package/dist-cjs/commands/StopBrowserSessionCommand.js +26 -0
  31. package/dist-cjs/commands/StopCodeInterpreterSessionCommand.js +26 -0
  32. package/dist-cjs/commands/UpdateBrowserStreamCommand.js +26 -0
  33. package/dist-cjs/commands/index.js +29 -0
  34. package/dist-cjs/endpoint/EndpointParameters.js +17 -0
  35. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  36. package/dist-cjs/endpoint/ruleset.js +7 -0
  37. package/dist-cjs/extensionConfiguration.js +2 -0
  38. package/dist-cjs/index.js +11 -0
  39. package/dist-cjs/models/BedrockAgentCoreServiceException.js +12 -0
  40. package/dist-cjs/models/index.js +4 -0
  41. package/dist-cjs/models/models_0.js +468 -0
  42. package/dist-cjs/pagination/Interfaces.js +2 -0
  43. package/dist-cjs/pagination/ListActorsPaginator.js +7 -0
  44. package/dist-cjs/pagination/ListEventsPaginator.js +7 -0
  45. package/dist-cjs/pagination/ListMemoryRecordsPaginator.js +7 -0
  46. package/dist-cjs/pagination/ListSessionsPaginator.js +7 -0
  47. package/dist-cjs/pagination/RetrieveMemoryRecordsPaginator.js +7 -0
  48. package/dist-cjs/pagination/index.js +9 -0
  49. package/dist-cjs/protocols/Aws_restJson1.js +1423 -0
  50. package/dist-cjs/runtimeConfig.browser.js +41 -0
  51. package/dist-cjs/runtimeConfig.js +58 -0
  52. package/dist-cjs/runtimeConfig.native.js +15 -0
  53. package/dist-cjs/runtimeConfig.shared.js +36 -0
  54. package/dist-cjs/runtimeExtensions.js +13 -0
  55. package/dist-es/BedrockAgentCore.js +59 -0
  56. package/dist-es/BedrockAgentCoreClient.js +50 -0
  57. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  58. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  59. package/dist-es/commands/CreateEventCommand.js +23 -0
  60. package/dist-es/commands/DeleteEventCommand.js +22 -0
  61. package/dist-es/commands/DeleteMemoryRecordCommand.js +22 -0
  62. package/dist-es/commands/GetBrowserSessionCommand.js +22 -0
  63. package/dist-es/commands/GetCodeInterpreterSessionCommand.js +22 -0
  64. package/dist-es/commands/GetEventCommand.js +23 -0
  65. package/dist-es/commands/GetMemoryRecordCommand.js +23 -0
  66. package/dist-es/commands/GetResourceApiKeyCommand.js +23 -0
  67. package/dist-es/commands/GetResourceOauth2TokenCommand.js +23 -0
  68. package/dist-es/commands/GetWorkloadAccessTokenCommand.js +23 -0
  69. package/dist-es/commands/GetWorkloadAccessTokenForJWTCommand.js +23 -0
  70. package/dist-es/commands/GetWorkloadAccessTokenForUserIdCommand.js +23 -0
  71. package/dist-es/commands/InvokeAgentRuntimeCommand.js +23 -0
  72. package/dist-es/commands/InvokeCodeInterpreterCommand.js +27 -0
  73. package/dist-es/commands/ListActorsCommand.js +22 -0
  74. package/dist-es/commands/ListBrowserSessionsCommand.js +22 -0
  75. package/dist-es/commands/ListCodeInterpreterSessionsCommand.js +22 -0
  76. package/dist-es/commands/ListEventsCommand.js +23 -0
  77. package/dist-es/commands/ListMemoryRecordsCommand.js +23 -0
  78. package/dist-es/commands/ListSessionsCommand.js +22 -0
  79. package/dist-es/commands/RetrieveMemoryRecordsCommand.js +23 -0
  80. package/dist-es/commands/StartBrowserSessionCommand.js +22 -0
  81. package/dist-es/commands/StartCodeInterpreterSessionCommand.js +22 -0
  82. package/dist-es/commands/StopBrowserSessionCommand.js +22 -0
  83. package/dist-es/commands/StopCodeInterpreterSessionCommand.js +22 -0
  84. package/dist-es/commands/UpdateBrowserStreamCommand.js +22 -0
  85. package/dist-es/commands/index.js +26 -0
  86. package/dist-es/endpoint/EndpointParameters.js +13 -0
  87. package/dist-es/endpoint/endpointResolver.js +14 -0
  88. package/dist-es/endpoint/ruleset.js +4 -0
  89. package/dist-es/extensionConfiguration.js +1 -0
  90. package/dist-es/index.js +6 -0
  91. package/dist-es/models/BedrockAgentCoreServiceException.js +8 -0
  92. package/dist-es/models/index.js +1 -0
  93. package/dist-es/models/models_0.js +421 -0
  94. package/dist-es/pagination/Interfaces.js +1 -0
  95. package/dist-es/pagination/ListActorsPaginator.js +4 -0
  96. package/dist-es/pagination/ListEventsPaginator.js +4 -0
  97. package/dist-es/pagination/ListMemoryRecordsPaginator.js +4 -0
  98. package/dist-es/pagination/ListSessionsPaginator.js +4 -0
  99. package/dist-es/pagination/RetrieveMemoryRecordsPaginator.js +4 -0
  100. package/dist-es/pagination/index.js +6 -0
  101. package/dist-es/protocols/Aws_restJson1.js +1367 -0
  102. package/dist-es/runtimeConfig.browser.js +36 -0
  103. package/dist-es/runtimeConfig.js +53 -0
  104. package/dist-es/runtimeConfig.native.js +11 -0
  105. package/dist-es/runtimeConfig.shared.js +32 -0
  106. package/dist-es/runtimeExtensions.js +9 -0
  107. package/dist-types/BedrockAgentCore.d.ts +192 -0
  108. package/dist-types/BedrockAgentCoreClient.d.ts +223 -0
  109. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  110. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  111. package/dist-types/commands/CreateEventCommand.d.ts +133 -0
  112. package/dist-types/commands/DeleteEventCommand.d.ts +96 -0
  113. package/dist-types/commands/DeleteMemoryRecordCommand.d.ts +94 -0
  114. package/dist-types/commands/GetBrowserSessionCommand.d.ts +108 -0
  115. package/dist-types/commands/GetCodeInterpreterSessionCommand.d.ts +93 -0
  116. package/dist-types/commands/GetEventCommand.d.ts +117 -0
  117. package/dist-types/commands/GetMemoryRecordCommand.d.ts +104 -0
  118. package/dist-types/commands/GetResourceApiKeyCommand.d.ts +91 -0
  119. package/dist-types/commands/GetResourceOauth2TokenCommand.d.ts +102 -0
  120. package/dist-types/commands/GetWorkloadAccessTokenCommand.d.ts +90 -0
  121. package/dist-types/commands/GetWorkloadAccessTokenForJWTCommand.d.ts +91 -0
  122. package/dist-types/commands/GetWorkloadAccessTokenForUserIdCommand.d.ts +91 -0
  123. package/dist-types/commands/InvokeAgentRuntimeCommand.d.ts +126 -0
  124. package/dist-types/commands/InvokeCodeInterpreterCommand.d.ts +174 -0
  125. package/dist-types/commands/ListActorsCommand.d.ts +100 -0
  126. package/dist-types/commands/ListBrowserSessionsCommand.d.ts +100 -0
  127. package/dist-types/commands/ListCodeInterpreterSessionsCommand.d.ts +100 -0
  128. package/dist-types/commands/ListEventsCommand.d.ts +128 -0
  129. package/dist-types/commands/ListMemoryRecordsCommand.d.ts +111 -0
  130. package/dist-types/commands/ListSessionsCommand.d.ts +103 -0
  131. package/dist-types/commands/RetrieveMemoryRecordsCommand.d.ts +115 -0
  132. package/dist-types/commands/StartBrowserSessionCommand.d.ts +111 -0
  133. package/dist-types/commands/StartCodeInterpreterSessionCommand.d.ts +98 -0
  134. package/dist-types/commands/StopBrowserSessionCommand.d.ts +97 -0
  135. package/dist-types/commands/StopCodeInterpreterSessionCommand.d.ts +97 -0
  136. package/dist-types/commands/UpdateBrowserStreamCommand.d.ts +111 -0
  137. package/dist-types/commands/index.d.ts +26 -0
  138. package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
  139. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  140. package/dist-types/endpoint/ruleset.d.ts +2 -0
  141. package/dist-types/extensionConfiguration.d.ts +9 -0
  142. package/dist-types/index.d.ts +14 -0
  143. package/dist-types/models/BedrockAgentCoreServiceException.d.ts +14 -0
  144. package/dist-types/models/index.d.ts +1 -0
  145. package/dist-types/models/models_0.d.ts +2440 -0
  146. package/dist-types/pagination/Interfaces.d.ts +8 -0
  147. package/dist-types/pagination/ListActorsPaginator.d.ts +7 -0
  148. package/dist-types/pagination/ListEventsPaginator.d.ts +7 -0
  149. package/dist-types/pagination/ListMemoryRecordsPaginator.d.ts +7 -0
  150. package/dist-types/pagination/ListSessionsPaginator.d.ts +7 -0
  151. package/dist-types/pagination/RetrieveMemoryRecordsPaginator.d.ts +7 -0
  152. package/dist-types/pagination/index.d.ts +6 -0
  153. package/dist-types/protocols/Aws_restJson1.d.ts +236 -0
  154. package/dist-types/runtimeConfig.browser.d.ts +52 -0
  155. package/dist-types/runtimeConfig.d.ts +52 -0
  156. package/dist-types/runtimeConfig.native.d.ts +51 -0
  157. package/dist-types/runtimeConfig.shared.d.ts +22 -0
  158. package/dist-types/runtimeExtensions.d.ts +17 -0
  159. package/dist-types/ts3.4/BedrockAgentCore.d.ts +449 -0
  160. package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +288 -0
  161. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  162. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  163. package/dist-types/ts3.4/commands/CreateEventCommand.d.ts +47 -0
  164. package/dist-types/ts3.4/commands/DeleteEventCommand.d.ts +47 -0
  165. package/dist-types/ts3.4/commands/DeleteMemoryRecordCommand.d.ts +51 -0
  166. package/dist-types/ts3.4/commands/GetBrowserSessionCommand.d.ts +51 -0
  167. package/dist-types/ts3.4/commands/GetCodeInterpreterSessionCommand.d.ts +51 -0
  168. package/dist-types/ts3.4/commands/GetEventCommand.d.ts +47 -0
  169. package/dist-types/ts3.4/commands/GetMemoryRecordCommand.d.ts +50 -0
  170. package/dist-types/ts3.4/commands/GetResourceApiKeyCommand.d.ts +51 -0
  171. package/dist-types/ts3.4/commands/GetResourceOauth2TokenCommand.d.ts +51 -0
  172. package/dist-types/ts3.4/commands/GetWorkloadAccessTokenCommand.d.ts +51 -0
  173. package/dist-types/ts3.4/commands/GetWorkloadAccessTokenForJWTCommand.d.ts +51 -0
  174. package/dist-types/ts3.4/commands/GetWorkloadAccessTokenForUserIdCommand.d.ts +51 -0
  175. package/dist-types/ts3.4/commands/InvokeAgentRuntimeCommand.d.ts +66 -0
  176. package/dist-types/ts3.4/commands/InvokeCodeInterpreterCommand.d.ts +51 -0
  177. package/dist-types/ts3.4/commands/ListActorsCommand.d.ts +47 -0
  178. package/dist-types/ts3.4/commands/ListBrowserSessionsCommand.d.ts +51 -0
  179. package/dist-types/ts3.4/commands/ListCodeInterpreterSessionsCommand.d.ts +51 -0
  180. package/dist-types/ts3.4/commands/ListEventsCommand.d.ts +47 -0
  181. package/dist-types/ts3.4/commands/ListMemoryRecordsCommand.d.ts +50 -0
  182. package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +47 -0
  183. package/dist-types/ts3.4/commands/RetrieveMemoryRecordsCommand.d.ts +51 -0
  184. package/dist-types/ts3.4/commands/StartBrowserSessionCommand.d.ts +51 -0
  185. package/dist-types/ts3.4/commands/StartCodeInterpreterSessionCommand.d.ts +51 -0
  186. package/dist-types/ts3.4/commands/StopBrowserSessionCommand.d.ts +51 -0
  187. package/dist-types/ts3.4/commands/StopCodeInterpreterSessionCommand.d.ts +51 -0
  188. package/dist-types/ts3.4/commands/UpdateBrowserStreamCommand.d.ts +51 -0
  189. package/dist-types/ts3.4/commands/index.d.ts +26 -0
  190. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  191. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  192. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  193. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  194. package/dist-types/ts3.4/index.d.ts +9 -0
  195. package/dist-types/ts3.4/models/BedrockAgentCoreServiceException.d.ts +9 -0
  196. package/dist-types/ts3.4/models/index.d.ts +1 -0
  197. package/dist-types/ts3.4/models/models_0.d.ts +872 -0
  198. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  199. package/dist-types/ts3.4/pagination/ListActorsPaginator.d.ts +11 -0
  200. package/dist-types/ts3.4/pagination/ListEventsPaginator.d.ts +11 -0
  201. package/dist-types/ts3.4/pagination/ListMemoryRecordsPaginator.d.ts +11 -0
  202. package/dist-types/ts3.4/pagination/ListSessionsPaginator.d.ts +11 -0
  203. package/dist-types/ts3.4/pagination/RetrieveMemoryRecordsPaginator.d.ts +11 -0
  204. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  205. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +321 -0
  206. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +96 -0
  207. package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
  208. package/dist-types/ts3.4/runtimeConfig.native.d.ts +100 -0
  209. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +24 -0
  210. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  211. package/package.json +105 -0
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ GetMemoryRecordInput,
10
+ GetMemoryRecordOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetMemoryRecordCommandInput extends GetMemoryRecordInput {}
15
+ export interface GetMemoryRecordCommandOutput
16
+ extends GetMemoryRecordOutput,
17
+ __MetadataBearer {}
18
+ declare const GetMemoryRecordCommand_base: {
19
+ new (
20
+ input: GetMemoryRecordCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetMemoryRecordCommandInput,
23
+ GetMemoryRecordCommandOutput,
24
+ BedrockAgentCoreClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: GetMemoryRecordCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetMemoryRecordCommandInput,
32
+ GetMemoryRecordCommandOutput,
33
+ BedrockAgentCoreClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetMemoryRecordCommand extends GetMemoryRecordCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetMemoryRecordInput;
43
+ output: GetMemoryRecordOutput;
44
+ };
45
+ sdk: {
46
+ input: GetMemoryRecordCommandInput;
47
+ output: GetMemoryRecordCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ GetResourceApiKeyRequest,
10
+ GetResourceApiKeyResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetResourceApiKeyCommandInput
15
+ extends GetResourceApiKeyRequest {}
16
+ export interface GetResourceApiKeyCommandOutput
17
+ extends GetResourceApiKeyResponse,
18
+ __MetadataBearer {}
19
+ declare const GetResourceApiKeyCommand_base: {
20
+ new (
21
+ input: GetResourceApiKeyCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetResourceApiKeyCommandInput,
24
+ GetResourceApiKeyCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetResourceApiKeyCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetResourceApiKeyCommandInput,
33
+ GetResourceApiKeyCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetResourceApiKeyCommand extends GetResourceApiKeyCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetResourceApiKeyRequest;
44
+ output: GetResourceApiKeyResponse;
45
+ };
46
+ sdk: {
47
+ input: GetResourceApiKeyCommandInput;
48
+ output: GetResourceApiKeyCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ GetResourceOauth2TokenRequest,
10
+ GetResourceOauth2TokenResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetResourceOauth2TokenCommandInput
15
+ extends GetResourceOauth2TokenRequest {}
16
+ export interface GetResourceOauth2TokenCommandOutput
17
+ extends GetResourceOauth2TokenResponse,
18
+ __MetadataBearer {}
19
+ declare const GetResourceOauth2TokenCommand_base: {
20
+ new (
21
+ input: GetResourceOauth2TokenCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetResourceOauth2TokenCommandInput,
24
+ GetResourceOauth2TokenCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetResourceOauth2TokenCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetResourceOauth2TokenCommandInput,
33
+ GetResourceOauth2TokenCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetResourceOauth2TokenCommand extends GetResourceOauth2TokenCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetResourceOauth2TokenRequest;
44
+ output: GetResourceOauth2TokenResponse;
45
+ };
46
+ sdk: {
47
+ input: GetResourceOauth2TokenCommandInput;
48
+ output: GetResourceOauth2TokenCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ GetWorkloadAccessTokenRequest,
10
+ GetWorkloadAccessTokenResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetWorkloadAccessTokenCommandInput
15
+ extends GetWorkloadAccessTokenRequest {}
16
+ export interface GetWorkloadAccessTokenCommandOutput
17
+ extends GetWorkloadAccessTokenResponse,
18
+ __MetadataBearer {}
19
+ declare const GetWorkloadAccessTokenCommand_base: {
20
+ new (
21
+ input: GetWorkloadAccessTokenCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetWorkloadAccessTokenCommandInput,
24
+ GetWorkloadAccessTokenCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetWorkloadAccessTokenCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetWorkloadAccessTokenCommandInput,
33
+ GetWorkloadAccessTokenCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetWorkloadAccessTokenCommand extends GetWorkloadAccessTokenCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetWorkloadAccessTokenRequest;
44
+ output: GetWorkloadAccessTokenResponse;
45
+ };
46
+ sdk: {
47
+ input: GetWorkloadAccessTokenCommandInput;
48
+ output: GetWorkloadAccessTokenCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ GetWorkloadAccessTokenForJWTRequest,
10
+ GetWorkloadAccessTokenForJWTResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetWorkloadAccessTokenForJWTCommandInput
15
+ extends GetWorkloadAccessTokenForJWTRequest {}
16
+ export interface GetWorkloadAccessTokenForJWTCommandOutput
17
+ extends GetWorkloadAccessTokenForJWTResponse,
18
+ __MetadataBearer {}
19
+ declare const GetWorkloadAccessTokenForJWTCommand_base: {
20
+ new (
21
+ input: GetWorkloadAccessTokenForJWTCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetWorkloadAccessTokenForJWTCommandInput,
24
+ GetWorkloadAccessTokenForJWTCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetWorkloadAccessTokenForJWTCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetWorkloadAccessTokenForJWTCommandInput,
33
+ GetWorkloadAccessTokenForJWTCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetWorkloadAccessTokenForJWTCommand extends GetWorkloadAccessTokenForJWTCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetWorkloadAccessTokenForJWTRequest;
44
+ output: GetWorkloadAccessTokenForJWTResponse;
45
+ };
46
+ sdk: {
47
+ input: GetWorkloadAccessTokenForJWTCommandInput;
48
+ output: GetWorkloadAccessTokenForJWTCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ GetWorkloadAccessTokenForUserIdRequest,
10
+ GetWorkloadAccessTokenForUserIdResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetWorkloadAccessTokenForUserIdCommandInput
15
+ extends GetWorkloadAccessTokenForUserIdRequest {}
16
+ export interface GetWorkloadAccessTokenForUserIdCommandOutput
17
+ extends GetWorkloadAccessTokenForUserIdResponse,
18
+ __MetadataBearer {}
19
+ declare const GetWorkloadAccessTokenForUserIdCommand_base: {
20
+ new (
21
+ input: GetWorkloadAccessTokenForUserIdCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetWorkloadAccessTokenForUserIdCommandInput,
24
+ GetWorkloadAccessTokenForUserIdCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetWorkloadAccessTokenForUserIdCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetWorkloadAccessTokenForUserIdCommandInput,
33
+ GetWorkloadAccessTokenForUserIdCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetWorkloadAccessTokenForUserIdCommand extends GetWorkloadAccessTokenForUserIdCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetWorkloadAccessTokenForUserIdRequest;
44
+ output: GetWorkloadAccessTokenForUserIdResponse;
45
+ };
46
+ sdk: {
47
+ input: GetWorkloadAccessTokenForUserIdCommandInput;
48
+ output: GetWorkloadAccessTokenForUserIdCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,66 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import {
3
+ BlobPayloadInputTypes,
4
+ MetadataBearer as __MetadataBearer,
5
+ StreamingBlobPayloadOutputTypes,
6
+ } from "@smithy/types";
7
+ import {
8
+ BedrockAgentCoreClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../BedrockAgentCoreClient";
12
+ import {
13
+ InvokeAgentRuntimeRequest,
14
+ InvokeAgentRuntimeResponse,
15
+ } from "../models/models_0";
16
+ export { __MetadataBearer };
17
+ export { $Command };
18
+ export type InvokeAgentRuntimeCommandInputType = Pick<
19
+ InvokeAgentRuntimeRequest,
20
+ Exclude<keyof InvokeAgentRuntimeRequest, "payload">
21
+ > & {
22
+ payload: BlobPayloadInputTypes;
23
+ };
24
+ export interface InvokeAgentRuntimeCommandInput
25
+ extends InvokeAgentRuntimeCommandInputType {}
26
+ export interface InvokeAgentRuntimeCommandOutput
27
+ extends Pick<
28
+ InvokeAgentRuntimeResponse,
29
+ Exclude<keyof InvokeAgentRuntimeResponse, "response">
30
+ >,
31
+ __MetadataBearer {
32
+ response?: StreamingBlobPayloadOutputTypes;
33
+ }
34
+ declare const InvokeAgentRuntimeCommand_base: {
35
+ new (
36
+ input: InvokeAgentRuntimeCommandInput
37
+ ): import("@smithy/smithy-client").CommandImpl<
38
+ InvokeAgentRuntimeCommandInput,
39
+ InvokeAgentRuntimeCommandOutput,
40
+ BedrockAgentCoreClientResolvedConfig,
41
+ ServiceInputTypes,
42
+ ServiceOutputTypes
43
+ >;
44
+ new (
45
+ input: InvokeAgentRuntimeCommandInput
46
+ ): import("@smithy/smithy-client").CommandImpl<
47
+ InvokeAgentRuntimeCommandInput,
48
+ InvokeAgentRuntimeCommandOutput,
49
+ BedrockAgentCoreClientResolvedConfig,
50
+ ServiceInputTypes,
51
+ ServiceOutputTypes
52
+ >;
53
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
54
+ };
55
+ export declare class InvokeAgentRuntimeCommand extends InvokeAgentRuntimeCommand_base {
56
+ protected static __types: {
57
+ api: {
58
+ input: InvokeAgentRuntimeRequest;
59
+ output: InvokeAgentRuntimeResponse;
60
+ };
61
+ sdk: {
62
+ input: InvokeAgentRuntimeCommandInput;
63
+ output: InvokeAgentRuntimeCommandOutput;
64
+ };
65
+ };
66
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ InvokeCodeInterpreterRequest,
10
+ InvokeCodeInterpreterResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface InvokeCodeInterpreterCommandInput
15
+ extends InvokeCodeInterpreterRequest {}
16
+ export interface InvokeCodeInterpreterCommandOutput
17
+ extends InvokeCodeInterpreterResponse,
18
+ __MetadataBearer {}
19
+ declare const InvokeCodeInterpreterCommand_base: {
20
+ new (
21
+ input: InvokeCodeInterpreterCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ InvokeCodeInterpreterCommandInput,
24
+ InvokeCodeInterpreterCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: InvokeCodeInterpreterCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ InvokeCodeInterpreterCommandInput,
33
+ InvokeCodeInterpreterCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class InvokeCodeInterpreterCommand extends InvokeCodeInterpreterCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: InvokeCodeInterpreterRequest;
44
+ output: InvokeCodeInterpreterResponse;
45
+ };
46
+ sdk: {
47
+ input: InvokeCodeInterpreterCommandInput;
48
+ output: InvokeCodeInterpreterCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import { ListActorsInput, ListActorsOutput } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListActorsCommandInput extends ListActorsInput {}
12
+ export interface ListActorsCommandOutput
13
+ extends ListActorsOutput,
14
+ __MetadataBearer {}
15
+ declare const ListActorsCommand_base: {
16
+ new (
17
+ input: ListActorsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListActorsCommandInput,
20
+ ListActorsCommandOutput,
21
+ BedrockAgentCoreClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: ListActorsCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListActorsCommandInput,
29
+ ListActorsCommandOutput,
30
+ BedrockAgentCoreClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListActorsCommand extends ListActorsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListActorsInput;
40
+ output: ListActorsOutput;
41
+ };
42
+ sdk: {
43
+ input: ListActorsCommandInput;
44
+ output: ListActorsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ ListBrowserSessionsRequest,
10
+ ListBrowserSessionsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListBrowserSessionsCommandInput
15
+ extends ListBrowserSessionsRequest {}
16
+ export interface ListBrowserSessionsCommandOutput
17
+ extends ListBrowserSessionsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListBrowserSessionsCommand_base: {
20
+ new (
21
+ input: ListBrowserSessionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListBrowserSessionsCommandInput,
24
+ ListBrowserSessionsCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListBrowserSessionsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListBrowserSessionsCommandInput,
33
+ ListBrowserSessionsCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListBrowserSessionsCommand extends ListBrowserSessionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListBrowserSessionsRequest;
44
+ output: ListBrowserSessionsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListBrowserSessionsCommandInput;
48
+ output: ListBrowserSessionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ ListCodeInterpreterSessionsRequest,
10
+ ListCodeInterpreterSessionsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListCodeInterpreterSessionsCommandInput
15
+ extends ListCodeInterpreterSessionsRequest {}
16
+ export interface ListCodeInterpreterSessionsCommandOutput
17
+ extends ListCodeInterpreterSessionsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListCodeInterpreterSessionsCommand_base: {
20
+ new (
21
+ input: ListCodeInterpreterSessionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListCodeInterpreterSessionsCommandInput,
24
+ ListCodeInterpreterSessionsCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListCodeInterpreterSessionsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListCodeInterpreterSessionsCommandInput,
33
+ ListCodeInterpreterSessionsCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListCodeInterpreterSessionsCommand extends ListCodeInterpreterSessionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListCodeInterpreterSessionsRequest;
44
+ output: ListCodeInterpreterSessionsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListCodeInterpreterSessionsCommandInput;
48
+ output: ListCodeInterpreterSessionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import { ListEventsInput, ListEventsOutput } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListEventsCommandInput extends ListEventsInput {}
12
+ export interface ListEventsCommandOutput
13
+ extends ListEventsOutput,
14
+ __MetadataBearer {}
15
+ declare const ListEventsCommand_base: {
16
+ new (
17
+ input: ListEventsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListEventsCommandInput,
20
+ ListEventsCommandOutput,
21
+ BedrockAgentCoreClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: ListEventsCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListEventsCommandInput,
29
+ ListEventsCommandOutput,
30
+ BedrockAgentCoreClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListEventsCommand extends ListEventsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListEventsInput;
40
+ output: ListEventsOutput;
41
+ };
42
+ sdk: {
43
+ input: ListEventsCommandInput;
44
+ output: ListEventsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ ListMemoryRecordsInput,
10
+ ListMemoryRecordsOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListMemoryRecordsCommandInput extends ListMemoryRecordsInput {}
15
+ export interface ListMemoryRecordsCommandOutput
16
+ extends ListMemoryRecordsOutput,
17
+ __MetadataBearer {}
18
+ declare const ListMemoryRecordsCommand_base: {
19
+ new (
20
+ input: ListMemoryRecordsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListMemoryRecordsCommandInput,
23
+ ListMemoryRecordsCommandOutput,
24
+ BedrockAgentCoreClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: ListMemoryRecordsCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListMemoryRecordsCommandInput,
32
+ ListMemoryRecordsCommandOutput,
33
+ BedrockAgentCoreClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListMemoryRecordsCommand extends ListMemoryRecordsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListMemoryRecordsInput;
43
+ output: ListMemoryRecordsOutput;
44
+ };
45
+ sdk: {
46
+ input: ListMemoryRecordsCommandInput;
47
+ output: ListMemoryRecordsCommandOutput;
48
+ };
49
+ };
50
+ }