@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,449 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import { BedrockAgentCoreClient } from "./BedrockAgentCoreClient";
3
+ import {
4
+ CreateEventCommandInput,
5
+ CreateEventCommandOutput,
6
+ } from "./commands/CreateEventCommand";
7
+ import {
8
+ DeleteEventCommandInput,
9
+ DeleteEventCommandOutput,
10
+ } from "./commands/DeleteEventCommand";
11
+ import {
12
+ DeleteMemoryRecordCommandInput,
13
+ DeleteMemoryRecordCommandOutput,
14
+ } from "./commands/DeleteMemoryRecordCommand";
15
+ import {
16
+ GetBrowserSessionCommandInput,
17
+ GetBrowserSessionCommandOutput,
18
+ } from "./commands/GetBrowserSessionCommand";
19
+ import {
20
+ GetCodeInterpreterSessionCommandInput,
21
+ GetCodeInterpreterSessionCommandOutput,
22
+ } from "./commands/GetCodeInterpreterSessionCommand";
23
+ import {
24
+ GetEventCommandInput,
25
+ GetEventCommandOutput,
26
+ } from "./commands/GetEventCommand";
27
+ import {
28
+ GetMemoryRecordCommandInput,
29
+ GetMemoryRecordCommandOutput,
30
+ } from "./commands/GetMemoryRecordCommand";
31
+ import {
32
+ GetResourceApiKeyCommandInput,
33
+ GetResourceApiKeyCommandOutput,
34
+ } from "./commands/GetResourceApiKeyCommand";
35
+ import {
36
+ GetResourceOauth2TokenCommandInput,
37
+ GetResourceOauth2TokenCommandOutput,
38
+ } from "./commands/GetResourceOauth2TokenCommand";
39
+ import {
40
+ GetWorkloadAccessTokenCommandInput,
41
+ GetWorkloadAccessTokenCommandOutput,
42
+ } from "./commands/GetWorkloadAccessTokenCommand";
43
+ import {
44
+ GetWorkloadAccessTokenForJWTCommandInput,
45
+ GetWorkloadAccessTokenForJWTCommandOutput,
46
+ } from "./commands/GetWorkloadAccessTokenForJWTCommand";
47
+ import {
48
+ GetWorkloadAccessTokenForUserIdCommandInput,
49
+ GetWorkloadAccessTokenForUserIdCommandOutput,
50
+ } from "./commands/GetWorkloadAccessTokenForUserIdCommand";
51
+ import {
52
+ InvokeAgentRuntimeCommandInput,
53
+ InvokeAgentRuntimeCommandOutput,
54
+ } from "./commands/InvokeAgentRuntimeCommand";
55
+ import {
56
+ InvokeCodeInterpreterCommandInput,
57
+ InvokeCodeInterpreterCommandOutput,
58
+ } from "./commands/InvokeCodeInterpreterCommand";
59
+ import {
60
+ ListActorsCommandInput,
61
+ ListActorsCommandOutput,
62
+ } from "./commands/ListActorsCommand";
63
+ import {
64
+ ListBrowserSessionsCommandInput,
65
+ ListBrowserSessionsCommandOutput,
66
+ } from "./commands/ListBrowserSessionsCommand";
67
+ import {
68
+ ListCodeInterpreterSessionsCommandInput,
69
+ ListCodeInterpreterSessionsCommandOutput,
70
+ } from "./commands/ListCodeInterpreterSessionsCommand";
71
+ import {
72
+ ListEventsCommandInput,
73
+ ListEventsCommandOutput,
74
+ } from "./commands/ListEventsCommand";
75
+ import {
76
+ ListMemoryRecordsCommandInput,
77
+ ListMemoryRecordsCommandOutput,
78
+ } from "./commands/ListMemoryRecordsCommand";
79
+ import {
80
+ ListSessionsCommandInput,
81
+ ListSessionsCommandOutput,
82
+ } from "./commands/ListSessionsCommand";
83
+ import {
84
+ RetrieveMemoryRecordsCommandInput,
85
+ RetrieveMemoryRecordsCommandOutput,
86
+ } from "./commands/RetrieveMemoryRecordsCommand";
87
+ import {
88
+ StartBrowserSessionCommandInput,
89
+ StartBrowserSessionCommandOutput,
90
+ } from "./commands/StartBrowserSessionCommand";
91
+ import {
92
+ StartCodeInterpreterSessionCommandInput,
93
+ StartCodeInterpreterSessionCommandOutput,
94
+ } from "./commands/StartCodeInterpreterSessionCommand";
95
+ import {
96
+ StopBrowserSessionCommandInput,
97
+ StopBrowserSessionCommandOutput,
98
+ } from "./commands/StopBrowserSessionCommand";
99
+ import {
100
+ StopCodeInterpreterSessionCommandInput,
101
+ StopCodeInterpreterSessionCommandOutput,
102
+ } from "./commands/StopCodeInterpreterSessionCommand";
103
+ import {
104
+ UpdateBrowserStreamCommandInput,
105
+ UpdateBrowserStreamCommandOutput,
106
+ } from "./commands/UpdateBrowserStreamCommand";
107
+ export interface BedrockAgentCore {
108
+ createEvent(
109
+ args: CreateEventCommandInput,
110
+ options?: __HttpHandlerOptions
111
+ ): Promise<CreateEventCommandOutput>;
112
+ createEvent(
113
+ args: CreateEventCommandInput,
114
+ cb: (err: any, data?: CreateEventCommandOutput) => void
115
+ ): void;
116
+ createEvent(
117
+ args: CreateEventCommandInput,
118
+ options: __HttpHandlerOptions,
119
+ cb: (err: any, data?: CreateEventCommandOutput) => void
120
+ ): void;
121
+ deleteEvent(
122
+ args: DeleteEventCommandInput,
123
+ options?: __HttpHandlerOptions
124
+ ): Promise<DeleteEventCommandOutput>;
125
+ deleteEvent(
126
+ args: DeleteEventCommandInput,
127
+ cb: (err: any, data?: DeleteEventCommandOutput) => void
128
+ ): void;
129
+ deleteEvent(
130
+ args: DeleteEventCommandInput,
131
+ options: __HttpHandlerOptions,
132
+ cb: (err: any, data?: DeleteEventCommandOutput) => void
133
+ ): void;
134
+ deleteMemoryRecord(
135
+ args: DeleteMemoryRecordCommandInput,
136
+ options?: __HttpHandlerOptions
137
+ ): Promise<DeleteMemoryRecordCommandOutput>;
138
+ deleteMemoryRecord(
139
+ args: DeleteMemoryRecordCommandInput,
140
+ cb: (err: any, data?: DeleteMemoryRecordCommandOutput) => void
141
+ ): void;
142
+ deleteMemoryRecord(
143
+ args: DeleteMemoryRecordCommandInput,
144
+ options: __HttpHandlerOptions,
145
+ cb: (err: any, data?: DeleteMemoryRecordCommandOutput) => void
146
+ ): void;
147
+ getBrowserSession(
148
+ args: GetBrowserSessionCommandInput,
149
+ options?: __HttpHandlerOptions
150
+ ): Promise<GetBrowserSessionCommandOutput>;
151
+ getBrowserSession(
152
+ args: GetBrowserSessionCommandInput,
153
+ cb: (err: any, data?: GetBrowserSessionCommandOutput) => void
154
+ ): void;
155
+ getBrowserSession(
156
+ args: GetBrowserSessionCommandInput,
157
+ options: __HttpHandlerOptions,
158
+ cb: (err: any, data?: GetBrowserSessionCommandOutput) => void
159
+ ): void;
160
+ getCodeInterpreterSession(
161
+ args: GetCodeInterpreterSessionCommandInput,
162
+ options?: __HttpHandlerOptions
163
+ ): Promise<GetCodeInterpreterSessionCommandOutput>;
164
+ getCodeInterpreterSession(
165
+ args: GetCodeInterpreterSessionCommandInput,
166
+ cb: (err: any, data?: GetCodeInterpreterSessionCommandOutput) => void
167
+ ): void;
168
+ getCodeInterpreterSession(
169
+ args: GetCodeInterpreterSessionCommandInput,
170
+ options: __HttpHandlerOptions,
171
+ cb: (err: any, data?: GetCodeInterpreterSessionCommandOutput) => void
172
+ ): void;
173
+ getEvent(
174
+ args: GetEventCommandInput,
175
+ options?: __HttpHandlerOptions
176
+ ): Promise<GetEventCommandOutput>;
177
+ getEvent(
178
+ args: GetEventCommandInput,
179
+ cb: (err: any, data?: GetEventCommandOutput) => void
180
+ ): void;
181
+ getEvent(
182
+ args: GetEventCommandInput,
183
+ options: __HttpHandlerOptions,
184
+ cb: (err: any, data?: GetEventCommandOutput) => void
185
+ ): void;
186
+ getMemoryRecord(
187
+ args: GetMemoryRecordCommandInput,
188
+ options?: __HttpHandlerOptions
189
+ ): Promise<GetMemoryRecordCommandOutput>;
190
+ getMemoryRecord(
191
+ args: GetMemoryRecordCommandInput,
192
+ cb: (err: any, data?: GetMemoryRecordCommandOutput) => void
193
+ ): void;
194
+ getMemoryRecord(
195
+ args: GetMemoryRecordCommandInput,
196
+ options: __HttpHandlerOptions,
197
+ cb: (err: any, data?: GetMemoryRecordCommandOutput) => void
198
+ ): void;
199
+ getResourceApiKey(
200
+ args: GetResourceApiKeyCommandInput,
201
+ options?: __HttpHandlerOptions
202
+ ): Promise<GetResourceApiKeyCommandOutput>;
203
+ getResourceApiKey(
204
+ args: GetResourceApiKeyCommandInput,
205
+ cb: (err: any, data?: GetResourceApiKeyCommandOutput) => void
206
+ ): void;
207
+ getResourceApiKey(
208
+ args: GetResourceApiKeyCommandInput,
209
+ options: __HttpHandlerOptions,
210
+ cb: (err: any, data?: GetResourceApiKeyCommandOutput) => void
211
+ ): void;
212
+ getResourceOauth2Token(
213
+ args: GetResourceOauth2TokenCommandInput,
214
+ options?: __HttpHandlerOptions
215
+ ): Promise<GetResourceOauth2TokenCommandOutput>;
216
+ getResourceOauth2Token(
217
+ args: GetResourceOauth2TokenCommandInput,
218
+ cb: (err: any, data?: GetResourceOauth2TokenCommandOutput) => void
219
+ ): void;
220
+ getResourceOauth2Token(
221
+ args: GetResourceOauth2TokenCommandInput,
222
+ options: __HttpHandlerOptions,
223
+ cb: (err: any, data?: GetResourceOauth2TokenCommandOutput) => void
224
+ ): void;
225
+ getWorkloadAccessToken(
226
+ args: GetWorkloadAccessTokenCommandInput,
227
+ options?: __HttpHandlerOptions
228
+ ): Promise<GetWorkloadAccessTokenCommandOutput>;
229
+ getWorkloadAccessToken(
230
+ args: GetWorkloadAccessTokenCommandInput,
231
+ cb: (err: any, data?: GetWorkloadAccessTokenCommandOutput) => void
232
+ ): void;
233
+ getWorkloadAccessToken(
234
+ args: GetWorkloadAccessTokenCommandInput,
235
+ options: __HttpHandlerOptions,
236
+ cb: (err: any, data?: GetWorkloadAccessTokenCommandOutput) => void
237
+ ): void;
238
+ getWorkloadAccessTokenForJWT(
239
+ args: GetWorkloadAccessTokenForJWTCommandInput,
240
+ options?: __HttpHandlerOptions
241
+ ): Promise<GetWorkloadAccessTokenForJWTCommandOutput>;
242
+ getWorkloadAccessTokenForJWT(
243
+ args: GetWorkloadAccessTokenForJWTCommandInput,
244
+ cb: (err: any, data?: GetWorkloadAccessTokenForJWTCommandOutput) => void
245
+ ): void;
246
+ getWorkloadAccessTokenForJWT(
247
+ args: GetWorkloadAccessTokenForJWTCommandInput,
248
+ options: __HttpHandlerOptions,
249
+ cb: (err: any, data?: GetWorkloadAccessTokenForJWTCommandOutput) => void
250
+ ): void;
251
+ getWorkloadAccessTokenForUserId(
252
+ args: GetWorkloadAccessTokenForUserIdCommandInput,
253
+ options?: __HttpHandlerOptions
254
+ ): Promise<GetWorkloadAccessTokenForUserIdCommandOutput>;
255
+ getWorkloadAccessTokenForUserId(
256
+ args: GetWorkloadAccessTokenForUserIdCommandInput,
257
+ cb: (err: any, data?: GetWorkloadAccessTokenForUserIdCommandOutput) => void
258
+ ): void;
259
+ getWorkloadAccessTokenForUserId(
260
+ args: GetWorkloadAccessTokenForUserIdCommandInput,
261
+ options: __HttpHandlerOptions,
262
+ cb: (err: any, data?: GetWorkloadAccessTokenForUserIdCommandOutput) => void
263
+ ): void;
264
+ invokeAgentRuntime(
265
+ args: InvokeAgentRuntimeCommandInput,
266
+ options?: __HttpHandlerOptions
267
+ ): Promise<InvokeAgentRuntimeCommandOutput>;
268
+ invokeAgentRuntime(
269
+ args: InvokeAgentRuntimeCommandInput,
270
+ cb: (err: any, data?: InvokeAgentRuntimeCommandOutput) => void
271
+ ): void;
272
+ invokeAgentRuntime(
273
+ args: InvokeAgentRuntimeCommandInput,
274
+ options: __HttpHandlerOptions,
275
+ cb: (err: any, data?: InvokeAgentRuntimeCommandOutput) => void
276
+ ): void;
277
+ invokeCodeInterpreter(
278
+ args: InvokeCodeInterpreterCommandInput,
279
+ options?: __HttpHandlerOptions
280
+ ): Promise<InvokeCodeInterpreterCommandOutput>;
281
+ invokeCodeInterpreter(
282
+ args: InvokeCodeInterpreterCommandInput,
283
+ cb: (err: any, data?: InvokeCodeInterpreterCommandOutput) => void
284
+ ): void;
285
+ invokeCodeInterpreter(
286
+ args: InvokeCodeInterpreterCommandInput,
287
+ options: __HttpHandlerOptions,
288
+ cb: (err: any, data?: InvokeCodeInterpreterCommandOutput) => void
289
+ ): void;
290
+ listActors(
291
+ args: ListActorsCommandInput,
292
+ options?: __HttpHandlerOptions
293
+ ): Promise<ListActorsCommandOutput>;
294
+ listActors(
295
+ args: ListActorsCommandInput,
296
+ cb: (err: any, data?: ListActorsCommandOutput) => void
297
+ ): void;
298
+ listActors(
299
+ args: ListActorsCommandInput,
300
+ options: __HttpHandlerOptions,
301
+ cb: (err: any, data?: ListActorsCommandOutput) => void
302
+ ): void;
303
+ listBrowserSessions(
304
+ args: ListBrowserSessionsCommandInput,
305
+ options?: __HttpHandlerOptions
306
+ ): Promise<ListBrowserSessionsCommandOutput>;
307
+ listBrowserSessions(
308
+ args: ListBrowserSessionsCommandInput,
309
+ cb: (err: any, data?: ListBrowserSessionsCommandOutput) => void
310
+ ): void;
311
+ listBrowserSessions(
312
+ args: ListBrowserSessionsCommandInput,
313
+ options: __HttpHandlerOptions,
314
+ cb: (err: any, data?: ListBrowserSessionsCommandOutput) => void
315
+ ): void;
316
+ listCodeInterpreterSessions(
317
+ args: ListCodeInterpreterSessionsCommandInput,
318
+ options?: __HttpHandlerOptions
319
+ ): Promise<ListCodeInterpreterSessionsCommandOutput>;
320
+ listCodeInterpreterSessions(
321
+ args: ListCodeInterpreterSessionsCommandInput,
322
+ cb: (err: any, data?: ListCodeInterpreterSessionsCommandOutput) => void
323
+ ): void;
324
+ listCodeInterpreterSessions(
325
+ args: ListCodeInterpreterSessionsCommandInput,
326
+ options: __HttpHandlerOptions,
327
+ cb: (err: any, data?: ListCodeInterpreterSessionsCommandOutput) => void
328
+ ): void;
329
+ listEvents(
330
+ args: ListEventsCommandInput,
331
+ options?: __HttpHandlerOptions
332
+ ): Promise<ListEventsCommandOutput>;
333
+ listEvents(
334
+ args: ListEventsCommandInput,
335
+ cb: (err: any, data?: ListEventsCommandOutput) => void
336
+ ): void;
337
+ listEvents(
338
+ args: ListEventsCommandInput,
339
+ options: __HttpHandlerOptions,
340
+ cb: (err: any, data?: ListEventsCommandOutput) => void
341
+ ): void;
342
+ listMemoryRecords(
343
+ args: ListMemoryRecordsCommandInput,
344
+ options?: __HttpHandlerOptions
345
+ ): Promise<ListMemoryRecordsCommandOutput>;
346
+ listMemoryRecords(
347
+ args: ListMemoryRecordsCommandInput,
348
+ cb: (err: any, data?: ListMemoryRecordsCommandOutput) => void
349
+ ): void;
350
+ listMemoryRecords(
351
+ args: ListMemoryRecordsCommandInput,
352
+ options: __HttpHandlerOptions,
353
+ cb: (err: any, data?: ListMemoryRecordsCommandOutput) => void
354
+ ): void;
355
+ listSessions(
356
+ args: ListSessionsCommandInput,
357
+ options?: __HttpHandlerOptions
358
+ ): Promise<ListSessionsCommandOutput>;
359
+ listSessions(
360
+ args: ListSessionsCommandInput,
361
+ cb: (err: any, data?: ListSessionsCommandOutput) => void
362
+ ): void;
363
+ listSessions(
364
+ args: ListSessionsCommandInput,
365
+ options: __HttpHandlerOptions,
366
+ cb: (err: any, data?: ListSessionsCommandOutput) => void
367
+ ): void;
368
+ retrieveMemoryRecords(
369
+ args: RetrieveMemoryRecordsCommandInput,
370
+ options?: __HttpHandlerOptions
371
+ ): Promise<RetrieveMemoryRecordsCommandOutput>;
372
+ retrieveMemoryRecords(
373
+ args: RetrieveMemoryRecordsCommandInput,
374
+ cb: (err: any, data?: RetrieveMemoryRecordsCommandOutput) => void
375
+ ): void;
376
+ retrieveMemoryRecords(
377
+ args: RetrieveMemoryRecordsCommandInput,
378
+ options: __HttpHandlerOptions,
379
+ cb: (err: any, data?: RetrieveMemoryRecordsCommandOutput) => void
380
+ ): void;
381
+ startBrowserSession(
382
+ args: StartBrowserSessionCommandInput,
383
+ options?: __HttpHandlerOptions
384
+ ): Promise<StartBrowserSessionCommandOutput>;
385
+ startBrowserSession(
386
+ args: StartBrowserSessionCommandInput,
387
+ cb: (err: any, data?: StartBrowserSessionCommandOutput) => void
388
+ ): void;
389
+ startBrowserSession(
390
+ args: StartBrowserSessionCommandInput,
391
+ options: __HttpHandlerOptions,
392
+ cb: (err: any, data?: StartBrowserSessionCommandOutput) => void
393
+ ): void;
394
+ startCodeInterpreterSession(
395
+ args: StartCodeInterpreterSessionCommandInput,
396
+ options?: __HttpHandlerOptions
397
+ ): Promise<StartCodeInterpreterSessionCommandOutput>;
398
+ startCodeInterpreterSession(
399
+ args: StartCodeInterpreterSessionCommandInput,
400
+ cb: (err: any, data?: StartCodeInterpreterSessionCommandOutput) => void
401
+ ): void;
402
+ startCodeInterpreterSession(
403
+ args: StartCodeInterpreterSessionCommandInput,
404
+ options: __HttpHandlerOptions,
405
+ cb: (err: any, data?: StartCodeInterpreterSessionCommandOutput) => void
406
+ ): void;
407
+ stopBrowserSession(
408
+ args: StopBrowserSessionCommandInput,
409
+ options?: __HttpHandlerOptions
410
+ ): Promise<StopBrowserSessionCommandOutput>;
411
+ stopBrowserSession(
412
+ args: StopBrowserSessionCommandInput,
413
+ cb: (err: any, data?: StopBrowserSessionCommandOutput) => void
414
+ ): void;
415
+ stopBrowserSession(
416
+ args: StopBrowserSessionCommandInput,
417
+ options: __HttpHandlerOptions,
418
+ cb: (err: any, data?: StopBrowserSessionCommandOutput) => void
419
+ ): void;
420
+ stopCodeInterpreterSession(
421
+ args: StopCodeInterpreterSessionCommandInput,
422
+ options?: __HttpHandlerOptions
423
+ ): Promise<StopCodeInterpreterSessionCommandOutput>;
424
+ stopCodeInterpreterSession(
425
+ args: StopCodeInterpreterSessionCommandInput,
426
+ cb: (err: any, data?: StopCodeInterpreterSessionCommandOutput) => void
427
+ ): void;
428
+ stopCodeInterpreterSession(
429
+ args: StopCodeInterpreterSessionCommandInput,
430
+ options: __HttpHandlerOptions,
431
+ cb: (err: any, data?: StopCodeInterpreterSessionCommandOutput) => void
432
+ ): void;
433
+ updateBrowserStream(
434
+ args: UpdateBrowserStreamCommandInput,
435
+ options?: __HttpHandlerOptions
436
+ ): Promise<UpdateBrowserStreamCommandOutput>;
437
+ updateBrowserStream(
438
+ args: UpdateBrowserStreamCommandInput,
439
+ cb: (err: any, data?: UpdateBrowserStreamCommandOutput) => void
440
+ ): void;
441
+ updateBrowserStream(
442
+ args: UpdateBrowserStreamCommandInput,
443
+ options: __HttpHandlerOptions,
444
+ cb: (err: any, data?: UpdateBrowserStreamCommandOutput) => void
445
+ ): void;
446
+ }
447
+ export declare class BedrockAgentCore
448
+ extends BedrockAgentCoreClient
449
+ implements BedrockAgentCore {}