@aws-sdk/client-bedrock-agentcore-control 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 (343) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +616 -0
  3. package/dist-cjs/BedrockAgentCoreControl.js +113 -0
  4. package/dist-cjs/BedrockAgentCoreControlClient.js +52 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateAgentRuntimeCommand.js +27 -0
  8. package/dist-cjs/commands/CreateAgentRuntimeEndpointCommand.js +27 -0
  9. package/dist-cjs/commands/CreateApiKeyCredentialProviderCommand.js +27 -0
  10. package/dist-cjs/commands/CreateBrowserCommand.js +27 -0
  11. package/dist-cjs/commands/CreateCodeInterpreterCommand.js +27 -0
  12. package/dist-cjs/commands/CreateGatewayCommand.js +27 -0
  13. package/dist-cjs/commands/CreateGatewayTargetCommand.js +27 -0
  14. package/dist-cjs/commands/CreateMemoryCommand.js +27 -0
  15. package/dist-cjs/commands/CreateOauth2CredentialProviderCommand.js +27 -0
  16. package/dist-cjs/commands/CreateWorkloadIdentityCommand.js +26 -0
  17. package/dist-cjs/commands/DeleteAgentRuntimeCommand.js +26 -0
  18. package/dist-cjs/commands/DeleteAgentRuntimeEndpointCommand.js +27 -0
  19. package/dist-cjs/commands/DeleteApiKeyCredentialProviderCommand.js +26 -0
  20. package/dist-cjs/commands/DeleteBrowserCommand.js +26 -0
  21. package/dist-cjs/commands/DeleteCodeInterpreterCommand.js +26 -0
  22. package/dist-cjs/commands/DeleteGatewayCommand.js +26 -0
  23. package/dist-cjs/commands/DeleteGatewayTargetCommand.js +26 -0
  24. package/dist-cjs/commands/DeleteMemoryCommand.js +26 -0
  25. package/dist-cjs/commands/DeleteOauth2CredentialProviderCommand.js +26 -0
  26. package/dist-cjs/commands/DeleteWorkloadIdentityCommand.js +26 -0
  27. package/dist-cjs/commands/GetAgentRuntimeCommand.js +27 -0
  28. package/dist-cjs/commands/GetAgentRuntimeEndpointCommand.js +27 -0
  29. package/dist-cjs/commands/GetApiKeyCredentialProviderCommand.js +26 -0
  30. package/dist-cjs/commands/GetBrowserCommand.js +27 -0
  31. package/dist-cjs/commands/GetCodeInterpreterCommand.js +27 -0
  32. package/dist-cjs/commands/GetGatewayCommand.js +27 -0
  33. package/dist-cjs/commands/GetGatewayTargetCommand.js +27 -0
  34. package/dist-cjs/commands/GetMemoryCommand.js +27 -0
  35. package/dist-cjs/commands/GetOauth2CredentialProviderCommand.js +26 -0
  36. package/dist-cjs/commands/GetTokenVaultCommand.js +26 -0
  37. package/dist-cjs/commands/GetWorkloadIdentityCommand.js +26 -0
  38. package/dist-cjs/commands/ListAgentRuntimeEndpointsCommand.js +27 -0
  39. package/dist-cjs/commands/ListAgentRuntimeVersionsCommand.js +27 -0
  40. package/dist-cjs/commands/ListAgentRuntimesCommand.js +27 -0
  41. package/dist-cjs/commands/ListApiKeyCredentialProvidersCommand.js +26 -0
  42. package/dist-cjs/commands/ListBrowsersCommand.js +27 -0
  43. package/dist-cjs/commands/ListCodeInterpretersCommand.js +27 -0
  44. package/dist-cjs/commands/ListGatewayTargetsCommand.js +27 -0
  45. package/dist-cjs/commands/ListGatewaysCommand.js +27 -0
  46. package/dist-cjs/commands/ListMemoriesCommand.js +26 -0
  47. package/dist-cjs/commands/ListOauth2CredentialProvidersCommand.js +26 -0
  48. package/dist-cjs/commands/ListWorkloadIdentitiesCommand.js +26 -0
  49. package/dist-cjs/commands/SetTokenVaultCMKCommand.js +26 -0
  50. package/dist-cjs/commands/UpdateAgentRuntimeCommand.js +27 -0
  51. package/dist-cjs/commands/UpdateAgentRuntimeEndpointCommand.js +27 -0
  52. package/dist-cjs/commands/UpdateApiKeyCredentialProviderCommand.js +27 -0
  53. package/dist-cjs/commands/UpdateGatewayCommand.js +27 -0
  54. package/dist-cjs/commands/UpdateGatewayTargetCommand.js +27 -0
  55. package/dist-cjs/commands/UpdateMemoryCommand.js +27 -0
  56. package/dist-cjs/commands/UpdateOauth2CredentialProviderCommand.js +27 -0
  57. package/dist-cjs/commands/UpdateWorkloadIdentityCommand.js +26 -0
  58. package/dist-cjs/commands/index.js +54 -0
  59. package/dist-cjs/endpoint/EndpointParameters.js +17 -0
  60. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  61. package/dist-cjs/endpoint/ruleset.js +7 -0
  62. package/dist-cjs/extensionConfiguration.js +2 -0
  63. package/dist-cjs/index.js +12 -0
  64. package/dist-cjs/models/BedrockAgentCoreControlServiceException.js +12 -0
  65. package/dist-cjs/models/index.js +4 -0
  66. package/dist-cjs/models/models_0.js +1213 -0
  67. package/dist-cjs/pagination/Interfaces.js +2 -0
  68. package/dist-cjs/pagination/ListAgentRuntimeEndpointsPaginator.js +7 -0
  69. package/dist-cjs/pagination/ListAgentRuntimeVersionsPaginator.js +7 -0
  70. package/dist-cjs/pagination/ListAgentRuntimesPaginator.js +7 -0
  71. package/dist-cjs/pagination/ListApiKeyCredentialProvidersPaginator.js +7 -0
  72. package/dist-cjs/pagination/ListBrowsersPaginator.js +7 -0
  73. package/dist-cjs/pagination/ListCodeInterpretersPaginator.js +7 -0
  74. package/dist-cjs/pagination/ListGatewayTargetsPaginator.js +7 -0
  75. package/dist-cjs/pagination/ListGatewaysPaginator.js +7 -0
  76. package/dist-cjs/pagination/ListMemoriesPaginator.js +7 -0
  77. package/dist-cjs/pagination/ListOauth2CredentialProvidersPaginator.js +7 -0
  78. package/dist-cjs/pagination/ListWorkloadIdentitiesPaginator.js +7 -0
  79. package/dist-cjs/pagination/index.js +15 -0
  80. package/dist-cjs/protocols/Aws_restJson1.js +2325 -0
  81. package/dist-cjs/runtimeConfig.browser.js +39 -0
  82. package/dist-cjs/runtimeConfig.js +56 -0
  83. package/dist-cjs/runtimeConfig.native.js +15 -0
  84. package/dist-cjs/runtimeConfig.shared.js +34 -0
  85. package/dist-cjs/runtimeExtensions.js +13 -0
  86. package/dist-cjs/waiters/index.js +4 -0
  87. package/dist-cjs/waiters/waitForMemoryCreated.js +54 -0
  88. package/dist-es/BedrockAgentCoreControl.js +109 -0
  89. package/dist-es/BedrockAgentCoreControlClient.js +48 -0
  90. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  91. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  92. package/dist-es/commands/CreateAgentRuntimeCommand.js +23 -0
  93. package/dist-es/commands/CreateAgentRuntimeEndpointCommand.js +23 -0
  94. package/dist-es/commands/CreateApiKeyCredentialProviderCommand.js +23 -0
  95. package/dist-es/commands/CreateBrowserCommand.js +23 -0
  96. package/dist-es/commands/CreateCodeInterpreterCommand.js +23 -0
  97. package/dist-es/commands/CreateGatewayCommand.js +23 -0
  98. package/dist-es/commands/CreateGatewayTargetCommand.js +23 -0
  99. package/dist-es/commands/CreateMemoryCommand.js +23 -0
  100. package/dist-es/commands/CreateOauth2CredentialProviderCommand.js +23 -0
  101. package/dist-es/commands/CreateWorkloadIdentityCommand.js +22 -0
  102. package/dist-es/commands/DeleteAgentRuntimeCommand.js +22 -0
  103. package/dist-es/commands/DeleteAgentRuntimeEndpointCommand.js +23 -0
  104. package/dist-es/commands/DeleteApiKeyCredentialProviderCommand.js +22 -0
  105. package/dist-es/commands/DeleteBrowserCommand.js +22 -0
  106. package/dist-es/commands/DeleteCodeInterpreterCommand.js +22 -0
  107. package/dist-es/commands/DeleteGatewayCommand.js +22 -0
  108. package/dist-es/commands/DeleteGatewayTargetCommand.js +22 -0
  109. package/dist-es/commands/DeleteMemoryCommand.js +22 -0
  110. package/dist-es/commands/DeleteOauth2CredentialProviderCommand.js +22 -0
  111. package/dist-es/commands/DeleteWorkloadIdentityCommand.js +22 -0
  112. package/dist-es/commands/GetAgentRuntimeCommand.js +23 -0
  113. package/dist-es/commands/GetAgentRuntimeEndpointCommand.js +23 -0
  114. package/dist-es/commands/GetApiKeyCredentialProviderCommand.js +22 -0
  115. package/dist-es/commands/GetBrowserCommand.js +23 -0
  116. package/dist-es/commands/GetCodeInterpreterCommand.js +23 -0
  117. package/dist-es/commands/GetGatewayCommand.js +23 -0
  118. package/dist-es/commands/GetGatewayTargetCommand.js +23 -0
  119. package/dist-es/commands/GetMemoryCommand.js +23 -0
  120. package/dist-es/commands/GetOauth2CredentialProviderCommand.js +22 -0
  121. package/dist-es/commands/GetTokenVaultCommand.js +22 -0
  122. package/dist-es/commands/GetWorkloadIdentityCommand.js +22 -0
  123. package/dist-es/commands/ListAgentRuntimeEndpointsCommand.js +23 -0
  124. package/dist-es/commands/ListAgentRuntimeVersionsCommand.js +23 -0
  125. package/dist-es/commands/ListAgentRuntimesCommand.js +23 -0
  126. package/dist-es/commands/ListApiKeyCredentialProvidersCommand.js +22 -0
  127. package/dist-es/commands/ListBrowsersCommand.js +23 -0
  128. package/dist-es/commands/ListCodeInterpretersCommand.js +23 -0
  129. package/dist-es/commands/ListGatewayTargetsCommand.js +23 -0
  130. package/dist-es/commands/ListGatewaysCommand.js +23 -0
  131. package/dist-es/commands/ListMemoriesCommand.js +22 -0
  132. package/dist-es/commands/ListOauth2CredentialProvidersCommand.js +22 -0
  133. package/dist-es/commands/ListWorkloadIdentitiesCommand.js +22 -0
  134. package/dist-es/commands/SetTokenVaultCMKCommand.js +22 -0
  135. package/dist-es/commands/UpdateAgentRuntimeCommand.js +23 -0
  136. package/dist-es/commands/UpdateAgentRuntimeEndpointCommand.js +23 -0
  137. package/dist-es/commands/UpdateApiKeyCredentialProviderCommand.js +23 -0
  138. package/dist-es/commands/UpdateGatewayCommand.js +23 -0
  139. package/dist-es/commands/UpdateGatewayTargetCommand.js +23 -0
  140. package/dist-es/commands/UpdateMemoryCommand.js +23 -0
  141. package/dist-es/commands/UpdateOauth2CredentialProviderCommand.js +23 -0
  142. package/dist-es/commands/UpdateWorkloadIdentityCommand.js +22 -0
  143. package/dist-es/commands/index.js +51 -0
  144. package/dist-es/endpoint/EndpointParameters.js +13 -0
  145. package/dist-es/endpoint/endpointResolver.js +14 -0
  146. package/dist-es/endpoint/ruleset.js +4 -0
  147. package/dist-es/extensionConfiguration.js +1 -0
  148. package/dist-es/index.js +7 -0
  149. package/dist-es/models/BedrockAgentCoreControlServiceException.js +8 -0
  150. package/dist-es/models/index.js +1 -0
  151. package/dist-es/models/models_0.js +1104 -0
  152. package/dist-es/pagination/Interfaces.js +1 -0
  153. package/dist-es/pagination/ListAgentRuntimeEndpointsPaginator.js +4 -0
  154. package/dist-es/pagination/ListAgentRuntimeVersionsPaginator.js +4 -0
  155. package/dist-es/pagination/ListAgentRuntimesPaginator.js +4 -0
  156. package/dist-es/pagination/ListApiKeyCredentialProvidersPaginator.js +4 -0
  157. package/dist-es/pagination/ListBrowsersPaginator.js +4 -0
  158. package/dist-es/pagination/ListCodeInterpretersPaginator.js +4 -0
  159. package/dist-es/pagination/ListGatewayTargetsPaginator.js +4 -0
  160. package/dist-es/pagination/ListGatewaysPaginator.js +4 -0
  161. package/dist-es/pagination/ListMemoriesPaginator.js +4 -0
  162. package/dist-es/pagination/ListOauth2CredentialProvidersPaginator.js +4 -0
  163. package/dist-es/pagination/ListWorkloadIdentitiesPaginator.js +4 -0
  164. package/dist-es/pagination/index.js +12 -0
  165. package/dist-es/protocols/Aws_restJson1.js +2218 -0
  166. package/dist-es/runtimeConfig.browser.js +34 -0
  167. package/dist-es/runtimeConfig.js +51 -0
  168. package/dist-es/runtimeConfig.native.js +11 -0
  169. package/dist-es/runtimeConfig.shared.js +30 -0
  170. package/dist-es/runtimeExtensions.js +9 -0
  171. package/dist-es/waiters/index.js +1 -0
  172. package/dist-es/waiters/waitForMemoryCreated.js +49 -0
  173. package/dist-types/BedrockAgentCoreControl.d.ts +376 -0
  174. package/dist-types/BedrockAgentCoreControlClient.d.ts +238 -0
  175. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  176. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  177. package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +125 -0
  178. package/dist-types/commands/CreateAgentRuntimeEndpointCommand.d.ts +101 -0
  179. package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +110 -0
  180. package/dist-types/commands/CreateBrowserCommand.d.ts +106 -0
  181. package/dist-types/commands/CreateCodeInterpreterCommand.d.ts +99 -0
  182. package/dist-types/commands/CreateGatewayCommand.d.ts +155 -0
  183. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +259 -0
  184. package/dist-types/commands/CreateMemoryCommand.d.ts +215 -0
  185. package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +147 -0
  186. package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +97 -0
  187. package/dist-types/commands/DeleteAgentRuntimeCommand.d.ts +87 -0
  188. package/dist-types/commands/DeleteAgentRuntimeEndpointCommand.d.ts +89 -0
  189. package/dist-types/commands/DeleteApiKeyCredentialProviderCommand.d.ts +88 -0
  190. package/dist-types/commands/DeleteBrowserCommand.d.ts +96 -0
  191. package/dist-types/commands/DeleteCodeInterpreterCommand.d.ts +96 -0
  192. package/dist-types/commands/DeleteGatewayCommand.d.ts +94 -0
  193. package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +96 -0
  194. package/dist-types/commands/DeleteMemoryCommand.d.ts +89 -0
  195. package/dist-types/commands/DeleteOauth2CredentialProviderCommand.d.ts +88 -0
  196. package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +88 -0
  197. package/dist-types/commands/GetAgentRuntimeCommand.d.ts +124 -0
  198. package/dist-types/commands/GetAgentRuntimeEndpointCommand.d.ts +98 -0
  199. package/dist-types/commands/GetApiKeyCredentialProviderCommand.d.ts +99 -0
  200. package/dist-types/commands/GetBrowserCommand.d.ts +104 -0
  201. package/dist-types/commands/GetCodeInterpreterCommand.d.ts +97 -0
  202. package/dist-types/commands/GetGatewayCommand.d.ts +125 -0
  203. package/dist-types/commands/GetGatewayTargetCommand.d.ts +174 -0
  204. package/dist-types/commands/GetMemoryCommand.d.ts +144 -0
  205. package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +170 -0
  206. package/dist-types/commands/GetTokenVaultCommand.d.ts +95 -0
  207. package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +96 -0
  208. package/dist-types/commands/ListAgentRuntimeEndpointsCommand.d.ts +100 -0
  209. package/dist-types/commands/ListAgentRuntimeVersionsCommand.d.ts +100 -0
  210. package/dist-types/commands/ListAgentRuntimesCommand.d.ts +96 -0
  211. package/dist-types/commands/ListApiKeyCredentialProvidersCommand.d.ts +99 -0
  212. package/dist-types/commands/ListBrowsersCommand.d.ts +97 -0
  213. package/dist-types/commands/ListCodeInterpretersCommand.d.ts +97 -0
  214. package/dist-types/commands/ListGatewayTargetsCommand.d.ts +96 -0
  215. package/dist-types/commands/ListGatewaysCommand.d.ts +97 -0
  216. package/dist-types/commands/ListMemoriesCommand.d.ts +97 -0
  217. package/dist-types/commands/ListOauth2CredentialProvidersCommand.d.ts +100 -0
  218. package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +97 -0
  219. package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +102 -0
  220. package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +129 -0
  221. package/dist-types/commands/UpdateAgentRuntimeEndpointCommand.d.ts +103 -0
  222. package/dist-types/commands/UpdateApiKeyCredentialProviderCommand.d.ts +109 -0
  223. package/dist-types/commands/UpdateGatewayCommand.d.ts +158 -0
  224. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +259 -0
  225. package/dist-types/commands/UpdateMemoryCommand.d.ts +260 -0
  226. package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +217 -0
  227. package/dist-types/commands/UpdateWorkloadIdentityCommand.d.ts +99 -0
  228. package/dist-types/commands/index.d.ts +51 -0
  229. package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
  230. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  231. package/dist-types/endpoint/ruleset.d.ts +2 -0
  232. package/dist-types/extensionConfiguration.d.ts +9 -0
  233. package/dist-types/index.d.ts +15 -0
  234. package/dist-types/models/BedrockAgentCoreControlServiceException.d.ts +14 -0
  235. package/dist-types/models/index.d.ts +1 -0
  236. package/dist-types/models/models_0.d.ts +5821 -0
  237. package/dist-types/pagination/Interfaces.d.ts +8 -0
  238. package/dist-types/pagination/ListAgentRuntimeEndpointsPaginator.d.ts +7 -0
  239. package/dist-types/pagination/ListAgentRuntimeVersionsPaginator.d.ts +7 -0
  240. package/dist-types/pagination/ListAgentRuntimesPaginator.d.ts +7 -0
  241. package/dist-types/pagination/ListApiKeyCredentialProvidersPaginator.d.ts +7 -0
  242. package/dist-types/pagination/ListBrowsersPaginator.d.ts +7 -0
  243. package/dist-types/pagination/ListCodeInterpretersPaginator.d.ts +7 -0
  244. package/dist-types/pagination/ListGatewayTargetsPaginator.d.ts +7 -0
  245. package/dist-types/pagination/ListGatewaysPaginator.d.ts +7 -0
  246. package/dist-types/pagination/ListMemoriesPaginator.d.ts +7 -0
  247. package/dist-types/pagination/ListOauth2CredentialProvidersPaginator.d.ts +7 -0
  248. package/dist-types/pagination/ListWorkloadIdentitiesPaginator.d.ts +7 -0
  249. package/dist-types/pagination/index.d.ts +12 -0
  250. package/dist-types/protocols/Aws_restJson1.d.ts +461 -0
  251. package/dist-types/runtimeConfig.browser.d.ts +50 -0
  252. package/dist-types/runtimeConfig.d.ts +50 -0
  253. package/dist-types/runtimeConfig.native.d.ts +49 -0
  254. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  255. package/dist-types/runtimeExtensions.d.ts +17 -0
  256. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +883 -0
  257. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +428 -0
  258. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  259. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  260. package/dist-types/ts3.4/commands/CreateAgentRuntimeCommand.d.ts +51 -0
  261. package/dist-types/ts3.4/commands/CreateAgentRuntimeEndpointCommand.d.ts +51 -0
  262. package/dist-types/ts3.4/commands/CreateApiKeyCredentialProviderCommand.d.ts +51 -0
  263. package/dist-types/ts3.4/commands/CreateBrowserCommand.d.ts +50 -0
  264. package/dist-types/ts3.4/commands/CreateCodeInterpreterCommand.d.ts +51 -0
  265. package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +50 -0
  266. package/dist-types/ts3.4/commands/CreateGatewayTargetCommand.d.ts +51 -0
  267. package/dist-types/ts3.4/commands/CreateMemoryCommand.d.ts +47 -0
  268. package/dist-types/ts3.4/commands/CreateOauth2CredentialProviderCommand.d.ts +51 -0
  269. package/dist-types/ts3.4/commands/CreateWorkloadIdentityCommand.d.ts +51 -0
  270. package/dist-types/ts3.4/commands/DeleteAgentRuntimeCommand.d.ts +51 -0
  271. package/dist-types/ts3.4/commands/DeleteAgentRuntimeEndpointCommand.d.ts +51 -0
  272. package/dist-types/ts3.4/commands/DeleteApiKeyCredentialProviderCommand.d.ts +51 -0
  273. package/dist-types/ts3.4/commands/DeleteBrowserCommand.d.ts +50 -0
  274. package/dist-types/ts3.4/commands/DeleteCodeInterpreterCommand.d.ts +51 -0
  275. package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +50 -0
  276. package/dist-types/ts3.4/commands/DeleteGatewayTargetCommand.d.ts +51 -0
  277. package/dist-types/ts3.4/commands/DeleteMemoryCommand.d.ts +47 -0
  278. package/dist-types/ts3.4/commands/DeleteOauth2CredentialProviderCommand.d.ts +51 -0
  279. package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +51 -0
  280. package/dist-types/ts3.4/commands/GetAgentRuntimeCommand.d.ts +50 -0
  281. package/dist-types/ts3.4/commands/GetAgentRuntimeEndpointCommand.d.ts +51 -0
  282. package/dist-types/ts3.4/commands/GetApiKeyCredentialProviderCommand.d.ts +51 -0
  283. package/dist-types/ts3.4/commands/GetBrowserCommand.d.ts +47 -0
  284. package/dist-types/ts3.4/commands/GetCodeInterpreterCommand.d.ts +51 -0
  285. package/dist-types/ts3.4/commands/GetGatewayCommand.d.ts +47 -0
  286. package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +50 -0
  287. package/dist-types/ts3.4/commands/GetMemoryCommand.d.ts +47 -0
  288. package/dist-types/ts3.4/commands/GetOauth2CredentialProviderCommand.d.ts +51 -0
  289. package/dist-types/ts3.4/commands/GetTokenVaultCommand.d.ts +50 -0
  290. package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +51 -0
  291. package/dist-types/ts3.4/commands/ListAgentRuntimeEndpointsCommand.d.ts +51 -0
  292. package/dist-types/ts3.4/commands/ListAgentRuntimeVersionsCommand.d.ts +51 -0
  293. package/dist-types/ts3.4/commands/ListAgentRuntimesCommand.d.ts +51 -0
  294. package/dist-types/ts3.4/commands/ListApiKeyCredentialProvidersCommand.d.ts +51 -0
  295. package/dist-types/ts3.4/commands/ListBrowsersCommand.d.ts +47 -0
  296. package/dist-types/ts3.4/commands/ListCodeInterpretersCommand.d.ts +51 -0
  297. package/dist-types/ts3.4/commands/ListGatewayTargetsCommand.d.ts +51 -0
  298. package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +47 -0
  299. package/dist-types/ts3.4/commands/ListMemoriesCommand.d.ts +47 -0
  300. package/dist-types/ts3.4/commands/ListOauth2CredentialProvidersCommand.d.ts +51 -0
  301. package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +51 -0
  302. package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +50 -0
  303. package/dist-types/ts3.4/commands/UpdateAgentRuntimeCommand.d.ts +51 -0
  304. package/dist-types/ts3.4/commands/UpdateAgentRuntimeEndpointCommand.d.ts +51 -0
  305. package/dist-types/ts3.4/commands/UpdateApiKeyCredentialProviderCommand.d.ts +51 -0
  306. package/dist-types/ts3.4/commands/UpdateGatewayCommand.d.ts +50 -0
  307. package/dist-types/ts3.4/commands/UpdateGatewayTargetCommand.d.ts +51 -0
  308. package/dist-types/ts3.4/commands/UpdateMemoryCommand.d.ts +47 -0
  309. package/dist-types/ts3.4/commands/UpdateOauth2CredentialProviderCommand.d.ts +51 -0
  310. package/dist-types/ts3.4/commands/UpdateWorkloadIdentityCommand.d.ts +51 -0
  311. package/dist-types/ts3.4/commands/index.d.ts +51 -0
  312. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  313. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  314. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  315. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  316. package/dist-types/ts3.4/index.d.ts +10 -0
  317. package/dist-types/ts3.4/models/BedrockAgentCoreControlServiceException.d.ts +9 -0
  318. package/dist-types/ts3.4/models/index.d.ts +1 -0
  319. package/dist-types/ts3.4/models/models_0.d.ts +2222 -0
  320. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  321. package/dist-types/ts3.4/pagination/ListAgentRuntimeEndpointsPaginator.d.ts +11 -0
  322. package/dist-types/ts3.4/pagination/ListAgentRuntimeVersionsPaginator.d.ts +11 -0
  323. package/dist-types/ts3.4/pagination/ListAgentRuntimesPaginator.d.ts +11 -0
  324. package/dist-types/ts3.4/pagination/ListApiKeyCredentialProvidersPaginator.d.ts +11 -0
  325. package/dist-types/ts3.4/pagination/ListBrowsersPaginator.d.ts +11 -0
  326. package/dist-types/ts3.4/pagination/ListCodeInterpretersPaginator.d.ts +11 -0
  327. package/dist-types/ts3.4/pagination/ListGatewayTargetsPaginator.d.ts +11 -0
  328. package/dist-types/ts3.4/pagination/ListGatewaysPaginator.d.ts +11 -0
  329. package/dist-types/ts3.4/pagination/ListMemoriesPaginator.d.ts +11 -0
  330. package/dist-types/ts3.4/pagination/ListOauth2CredentialProvidersPaginator.d.ts +11 -0
  331. package/dist-types/ts3.4/pagination/ListWorkloadIdentitiesPaginator.d.ts +11 -0
  332. package/dist-types/ts3.4/pagination/index.d.ts +12 -0
  333. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +617 -0
  334. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +94 -0
  335. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  336. package/dist-types/ts3.4/runtimeConfig.native.d.ts +98 -0
  337. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  338. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  339. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  340. package/dist-types/ts3.4/waiters/waitForMemoryCreated.d.ts +11 -0
  341. package/dist-types/waiters/index.d.ts +1 -0
  342. package/dist-types/waiters/waitForMemoryCreated.d.ts +14 -0
  343. package/package.json +102 -0
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import {
9
+ DeleteGatewayTargetRequest,
10
+ DeleteGatewayTargetResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteGatewayTargetCommandInput
15
+ extends DeleteGatewayTargetRequest {}
16
+ export interface DeleteGatewayTargetCommandOutput
17
+ extends DeleteGatewayTargetResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteGatewayTargetCommand_base: {
20
+ new (
21
+ input: DeleteGatewayTargetCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteGatewayTargetCommandInput,
24
+ DeleteGatewayTargetCommandOutput,
25
+ BedrockAgentCoreControlClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteGatewayTargetCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteGatewayTargetCommandInput,
33
+ DeleteGatewayTargetCommandOutput,
34
+ BedrockAgentCoreControlClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteGatewayTargetCommand extends DeleteGatewayTargetCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteGatewayTargetRequest;
44
+ output: DeleteGatewayTargetResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteGatewayTargetCommandInput;
48
+ output: DeleteGatewayTargetCommandOutput;
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
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import { DeleteMemoryInput, DeleteMemoryOutput } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteMemoryCommandInput extends DeleteMemoryInput {}
12
+ export interface DeleteMemoryCommandOutput
13
+ extends DeleteMemoryOutput,
14
+ __MetadataBearer {}
15
+ declare const DeleteMemoryCommand_base: {
16
+ new (
17
+ input: DeleteMemoryCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteMemoryCommandInput,
20
+ DeleteMemoryCommandOutput,
21
+ BedrockAgentCoreControlClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: DeleteMemoryCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteMemoryCommandInput,
29
+ DeleteMemoryCommandOutput,
30
+ BedrockAgentCoreControlClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteMemoryCommand extends DeleteMemoryCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteMemoryInput;
40
+ output: DeleteMemoryOutput;
41
+ };
42
+ sdk: {
43
+ input: DeleteMemoryCommandInput;
44
+ output: DeleteMemoryCommandOutput;
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
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import {
9
+ DeleteOauth2CredentialProviderRequest,
10
+ DeleteOauth2CredentialProviderResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteOauth2CredentialProviderCommandInput
15
+ extends DeleteOauth2CredentialProviderRequest {}
16
+ export interface DeleteOauth2CredentialProviderCommandOutput
17
+ extends DeleteOauth2CredentialProviderResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteOauth2CredentialProviderCommand_base: {
20
+ new (
21
+ input: DeleteOauth2CredentialProviderCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteOauth2CredentialProviderCommandInput,
24
+ DeleteOauth2CredentialProviderCommandOutput,
25
+ BedrockAgentCoreControlClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteOauth2CredentialProviderCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteOauth2CredentialProviderCommandInput,
33
+ DeleteOauth2CredentialProviderCommandOutput,
34
+ BedrockAgentCoreControlClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteOauth2CredentialProviderCommand extends DeleteOauth2CredentialProviderCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteOauth2CredentialProviderRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DeleteOauth2CredentialProviderCommandInput;
48
+ output: DeleteOauth2CredentialProviderCommandOutput;
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
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import {
9
+ DeleteWorkloadIdentityRequest,
10
+ DeleteWorkloadIdentityResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteWorkloadIdentityCommandInput
15
+ extends DeleteWorkloadIdentityRequest {}
16
+ export interface DeleteWorkloadIdentityCommandOutput
17
+ extends DeleteWorkloadIdentityResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteWorkloadIdentityCommand_base: {
20
+ new (
21
+ input: DeleteWorkloadIdentityCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteWorkloadIdentityCommandInput,
24
+ DeleteWorkloadIdentityCommandOutput,
25
+ BedrockAgentCoreControlClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteWorkloadIdentityCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteWorkloadIdentityCommandInput,
33
+ DeleteWorkloadIdentityCommandOutput,
34
+ BedrockAgentCoreControlClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteWorkloadIdentityCommand extends DeleteWorkloadIdentityCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteWorkloadIdentityRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DeleteWorkloadIdentityCommandInput;
48
+ output: DeleteWorkloadIdentityCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import {
9
+ GetAgentRuntimeRequest,
10
+ GetAgentRuntimeResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetAgentRuntimeCommandInput extends GetAgentRuntimeRequest {}
15
+ export interface GetAgentRuntimeCommandOutput
16
+ extends GetAgentRuntimeResponse,
17
+ __MetadataBearer {}
18
+ declare const GetAgentRuntimeCommand_base: {
19
+ new (
20
+ input: GetAgentRuntimeCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetAgentRuntimeCommandInput,
23
+ GetAgentRuntimeCommandOutput,
24
+ BedrockAgentCoreControlClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: GetAgentRuntimeCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetAgentRuntimeCommandInput,
32
+ GetAgentRuntimeCommandOutput,
33
+ BedrockAgentCoreControlClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetAgentRuntimeCommand extends GetAgentRuntimeCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetAgentRuntimeRequest;
43
+ output: GetAgentRuntimeResponse;
44
+ };
45
+ sdk: {
46
+ input: GetAgentRuntimeCommandInput;
47
+ output: GetAgentRuntimeCommandOutput;
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
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import {
9
+ GetAgentRuntimeEndpointRequest,
10
+ GetAgentRuntimeEndpointResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetAgentRuntimeEndpointCommandInput
15
+ extends GetAgentRuntimeEndpointRequest {}
16
+ export interface GetAgentRuntimeEndpointCommandOutput
17
+ extends GetAgentRuntimeEndpointResponse,
18
+ __MetadataBearer {}
19
+ declare const GetAgentRuntimeEndpointCommand_base: {
20
+ new (
21
+ input: GetAgentRuntimeEndpointCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetAgentRuntimeEndpointCommandInput,
24
+ GetAgentRuntimeEndpointCommandOutput,
25
+ BedrockAgentCoreControlClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetAgentRuntimeEndpointCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetAgentRuntimeEndpointCommandInput,
33
+ GetAgentRuntimeEndpointCommandOutput,
34
+ BedrockAgentCoreControlClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetAgentRuntimeEndpointCommand extends GetAgentRuntimeEndpointCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetAgentRuntimeEndpointRequest;
44
+ output: GetAgentRuntimeEndpointResponse;
45
+ };
46
+ sdk: {
47
+ input: GetAgentRuntimeEndpointCommandInput;
48
+ output: GetAgentRuntimeEndpointCommandOutput;
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
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import {
9
+ GetApiKeyCredentialProviderRequest,
10
+ GetApiKeyCredentialProviderResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetApiKeyCredentialProviderCommandInput
15
+ extends GetApiKeyCredentialProviderRequest {}
16
+ export interface GetApiKeyCredentialProviderCommandOutput
17
+ extends GetApiKeyCredentialProviderResponse,
18
+ __MetadataBearer {}
19
+ declare const GetApiKeyCredentialProviderCommand_base: {
20
+ new (
21
+ input: GetApiKeyCredentialProviderCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetApiKeyCredentialProviderCommandInput,
24
+ GetApiKeyCredentialProviderCommandOutput,
25
+ BedrockAgentCoreControlClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetApiKeyCredentialProviderCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetApiKeyCredentialProviderCommandInput,
33
+ GetApiKeyCredentialProviderCommandOutput,
34
+ BedrockAgentCoreControlClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetApiKeyCredentialProviderCommand extends GetApiKeyCredentialProviderCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetApiKeyCredentialProviderRequest;
44
+ output: GetApiKeyCredentialProviderResponse;
45
+ };
46
+ sdk: {
47
+ input: GetApiKeyCredentialProviderCommandInput;
48
+ output: GetApiKeyCredentialProviderCommandOutput;
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
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import { GetBrowserRequest, GetBrowserResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetBrowserCommandInput extends GetBrowserRequest {}
12
+ export interface GetBrowserCommandOutput
13
+ extends GetBrowserResponse,
14
+ __MetadataBearer {}
15
+ declare const GetBrowserCommand_base: {
16
+ new (
17
+ input: GetBrowserCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetBrowserCommandInput,
20
+ GetBrowserCommandOutput,
21
+ BedrockAgentCoreControlClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetBrowserCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetBrowserCommandInput,
29
+ GetBrowserCommandOutput,
30
+ BedrockAgentCoreControlClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetBrowserCommand extends GetBrowserCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetBrowserRequest;
40
+ output: GetBrowserResponse;
41
+ };
42
+ sdk: {
43
+ input: GetBrowserCommandInput;
44
+ output: GetBrowserCommandOutput;
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
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import {
9
+ GetCodeInterpreterRequest,
10
+ GetCodeInterpreterResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetCodeInterpreterCommandInput
15
+ extends GetCodeInterpreterRequest {}
16
+ export interface GetCodeInterpreterCommandOutput
17
+ extends GetCodeInterpreterResponse,
18
+ __MetadataBearer {}
19
+ declare const GetCodeInterpreterCommand_base: {
20
+ new (
21
+ input: GetCodeInterpreterCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetCodeInterpreterCommandInput,
24
+ GetCodeInterpreterCommandOutput,
25
+ BedrockAgentCoreControlClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetCodeInterpreterCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetCodeInterpreterCommandInput,
33
+ GetCodeInterpreterCommandOutput,
34
+ BedrockAgentCoreControlClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetCodeInterpreterCommand extends GetCodeInterpreterCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetCodeInterpreterRequest;
44
+ output: GetCodeInterpreterResponse;
45
+ };
46
+ sdk: {
47
+ input: GetCodeInterpreterCommandInput;
48
+ output: GetCodeInterpreterCommandOutput;
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
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import { GetGatewayRequest, GetGatewayResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetGatewayCommandInput extends GetGatewayRequest {}
12
+ export interface GetGatewayCommandOutput
13
+ extends GetGatewayResponse,
14
+ __MetadataBearer {}
15
+ declare const GetGatewayCommand_base: {
16
+ new (
17
+ input: GetGatewayCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetGatewayCommandInput,
20
+ GetGatewayCommandOutput,
21
+ BedrockAgentCoreControlClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetGatewayCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetGatewayCommandInput,
29
+ GetGatewayCommandOutput,
30
+ BedrockAgentCoreControlClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetGatewayCommand extends GetGatewayCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetGatewayRequest;
40
+ output: GetGatewayResponse;
41
+ };
42
+ sdk: {
43
+ input: GetGatewayCommandInput;
44
+ output: GetGatewayCommandOutput;
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
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import {
9
+ GetGatewayTargetRequest,
10
+ GetGatewayTargetResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetGatewayTargetCommandInput extends GetGatewayTargetRequest {}
15
+ export interface GetGatewayTargetCommandOutput
16
+ extends GetGatewayTargetResponse,
17
+ __MetadataBearer {}
18
+ declare const GetGatewayTargetCommand_base: {
19
+ new (
20
+ input: GetGatewayTargetCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetGatewayTargetCommandInput,
23
+ GetGatewayTargetCommandOutput,
24
+ BedrockAgentCoreControlClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: GetGatewayTargetCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetGatewayTargetCommandInput,
32
+ GetGatewayTargetCommandOutput,
33
+ BedrockAgentCoreControlClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetGatewayTargetCommand extends GetGatewayTargetCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetGatewayTargetRequest;
43
+ output: GetGatewayTargetResponse;
44
+ };
45
+ sdk: {
46
+ input: GetGatewayTargetCommandInput;
47
+ output: GetGatewayTargetCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import { GetMemoryInput, GetMemoryOutput } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetMemoryCommandInput extends GetMemoryInput {}
12
+ export interface GetMemoryCommandOutput
13
+ extends GetMemoryOutput,
14
+ __MetadataBearer {}
15
+ declare const GetMemoryCommand_base: {
16
+ new (
17
+ input: GetMemoryCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetMemoryCommandInput,
20
+ GetMemoryCommandOutput,
21
+ BedrockAgentCoreControlClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetMemoryCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetMemoryCommandInput,
29
+ GetMemoryCommandOutput,
30
+ BedrockAgentCoreControlClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetMemoryCommand extends GetMemoryCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetMemoryInput;
40
+ output: GetMemoryOutput;
41
+ };
42
+ sdk: {
43
+ input: GetMemoryCommandInput;
44
+ output: GetMemoryCommandOutput;
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
+ BedrockAgentCoreControlClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreControlClient";
8
+ import {
9
+ GetOauth2CredentialProviderRequest,
10
+ GetOauth2CredentialProviderResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetOauth2CredentialProviderCommandInput
15
+ extends GetOauth2CredentialProviderRequest {}
16
+ export interface GetOauth2CredentialProviderCommandOutput
17
+ extends GetOauth2CredentialProviderResponse,
18
+ __MetadataBearer {}
19
+ declare const GetOauth2CredentialProviderCommand_base: {
20
+ new (
21
+ input: GetOauth2CredentialProviderCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetOauth2CredentialProviderCommandInput,
24
+ GetOauth2CredentialProviderCommandOutput,
25
+ BedrockAgentCoreControlClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetOauth2CredentialProviderCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetOauth2CredentialProviderCommandInput,
33
+ GetOauth2CredentialProviderCommandOutput,
34
+ BedrockAgentCoreControlClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetOauth2CredentialProviderCommand extends GetOauth2CredentialProviderCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetOauth2CredentialProviderRequest;
44
+ output: GetOauth2CredentialProviderResponse;
45
+ };
46
+ sdk: {
47
+ input: GetOauth2CredentialProviderCommandInput;
48
+ output: GetOauth2CredentialProviderCommandOutput;
49
+ };
50
+ };
51
+ }