@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,883 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import { BedrockAgentCoreControlClient } from "./BedrockAgentCoreControlClient";
3
+ import {
4
+ CreateAgentRuntimeCommandInput,
5
+ CreateAgentRuntimeCommandOutput,
6
+ } from "./commands/CreateAgentRuntimeCommand";
7
+ import {
8
+ CreateAgentRuntimeEndpointCommandInput,
9
+ CreateAgentRuntimeEndpointCommandOutput,
10
+ } from "./commands/CreateAgentRuntimeEndpointCommand";
11
+ import {
12
+ CreateApiKeyCredentialProviderCommandInput,
13
+ CreateApiKeyCredentialProviderCommandOutput,
14
+ } from "./commands/CreateApiKeyCredentialProviderCommand";
15
+ import {
16
+ CreateBrowserCommandInput,
17
+ CreateBrowserCommandOutput,
18
+ } from "./commands/CreateBrowserCommand";
19
+ import {
20
+ CreateCodeInterpreterCommandInput,
21
+ CreateCodeInterpreterCommandOutput,
22
+ } from "./commands/CreateCodeInterpreterCommand";
23
+ import {
24
+ CreateGatewayCommandInput,
25
+ CreateGatewayCommandOutput,
26
+ } from "./commands/CreateGatewayCommand";
27
+ import {
28
+ CreateGatewayTargetCommandInput,
29
+ CreateGatewayTargetCommandOutput,
30
+ } from "./commands/CreateGatewayTargetCommand";
31
+ import {
32
+ CreateMemoryCommandInput,
33
+ CreateMemoryCommandOutput,
34
+ } from "./commands/CreateMemoryCommand";
35
+ import {
36
+ CreateOauth2CredentialProviderCommandInput,
37
+ CreateOauth2CredentialProviderCommandOutput,
38
+ } from "./commands/CreateOauth2CredentialProviderCommand";
39
+ import {
40
+ CreateWorkloadIdentityCommandInput,
41
+ CreateWorkloadIdentityCommandOutput,
42
+ } from "./commands/CreateWorkloadIdentityCommand";
43
+ import {
44
+ DeleteAgentRuntimeCommandInput,
45
+ DeleteAgentRuntimeCommandOutput,
46
+ } from "./commands/DeleteAgentRuntimeCommand";
47
+ import {
48
+ DeleteAgentRuntimeEndpointCommandInput,
49
+ DeleteAgentRuntimeEndpointCommandOutput,
50
+ } from "./commands/DeleteAgentRuntimeEndpointCommand";
51
+ import {
52
+ DeleteApiKeyCredentialProviderCommandInput,
53
+ DeleteApiKeyCredentialProviderCommandOutput,
54
+ } from "./commands/DeleteApiKeyCredentialProviderCommand";
55
+ import {
56
+ DeleteBrowserCommandInput,
57
+ DeleteBrowserCommandOutput,
58
+ } from "./commands/DeleteBrowserCommand";
59
+ import {
60
+ DeleteCodeInterpreterCommandInput,
61
+ DeleteCodeInterpreterCommandOutput,
62
+ } from "./commands/DeleteCodeInterpreterCommand";
63
+ import {
64
+ DeleteGatewayCommandInput,
65
+ DeleteGatewayCommandOutput,
66
+ } from "./commands/DeleteGatewayCommand";
67
+ import {
68
+ DeleteGatewayTargetCommandInput,
69
+ DeleteGatewayTargetCommandOutput,
70
+ } from "./commands/DeleteGatewayTargetCommand";
71
+ import {
72
+ DeleteMemoryCommandInput,
73
+ DeleteMemoryCommandOutput,
74
+ } from "./commands/DeleteMemoryCommand";
75
+ import {
76
+ DeleteOauth2CredentialProviderCommandInput,
77
+ DeleteOauth2CredentialProviderCommandOutput,
78
+ } from "./commands/DeleteOauth2CredentialProviderCommand";
79
+ import {
80
+ DeleteWorkloadIdentityCommandInput,
81
+ DeleteWorkloadIdentityCommandOutput,
82
+ } from "./commands/DeleteWorkloadIdentityCommand";
83
+ import {
84
+ GetAgentRuntimeCommandInput,
85
+ GetAgentRuntimeCommandOutput,
86
+ } from "./commands/GetAgentRuntimeCommand";
87
+ import {
88
+ GetAgentRuntimeEndpointCommandInput,
89
+ GetAgentRuntimeEndpointCommandOutput,
90
+ } from "./commands/GetAgentRuntimeEndpointCommand";
91
+ import {
92
+ GetApiKeyCredentialProviderCommandInput,
93
+ GetApiKeyCredentialProviderCommandOutput,
94
+ } from "./commands/GetApiKeyCredentialProviderCommand";
95
+ import {
96
+ GetBrowserCommandInput,
97
+ GetBrowserCommandOutput,
98
+ } from "./commands/GetBrowserCommand";
99
+ import {
100
+ GetCodeInterpreterCommandInput,
101
+ GetCodeInterpreterCommandOutput,
102
+ } from "./commands/GetCodeInterpreterCommand";
103
+ import {
104
+ GetGatewayCommandInput,
105
+ GetGatewayCommandOutput,
106
+ } from "./commands/GetGatewayCommand";
107
+ import {
108
+ GetGatewayTargetCommandInput,
109
+ GetGatewayTargetCommandOutput,
110
+ } from "./commands/GetGatewayTargetCommand";
111
+ import {
112
+ GetMemoryCommandInput,
113
+ GetMemoryCommandOutput,
114
+ } from "./commands/GetMemoryCommand";
115
+ import {
116
+ GetOauth2CredentialProviderCommandInput,
117
+ GetOauth2CredentialProviderCommandOutput,
118
+ } from "./commands/GetOauth2CredentialProviderCommand";
119
+ import {
120
+ GetTokenVaultCommandInput,
121
+ GetTokenVaultCommandOutput,
122
+ } from "./commands/GetTokenVaultCommand";
123
+ import {
124
+ GetWorkloadIdentityCommandInput,
125
+ GetWorkloadIdentityCommandOutput,
126
+ } from "./commands/GetWorkloadIdentityCommand";
127
+ import {
128
+ ListAgentRuntimeEndpointsCommandInput,
129
+ ListAgentRuntimeEndpointsCommandOutput,
130
+ } from "./commands/ListAgentRuntimeEndpointsCommand";
131
+ import {
132
+ ListAgentRuntimesCommandInput,
133
+ ListAgentRuntimesCommandOutput,
134
+ } from "./commands/ListAgentRuntimesCommand";
135
+ import {
136
+ ListAgentRuntimeVersionsCommandInput,
137
+ ListAgentRuntimeVersionsCommandOutput,
138
+ } from "./commands/ListAgentRuntimeVersionsCommand";
139
+ import {
140
+ ListApiKeyCredentialProvidersCommandInput,
141
+ ListApiKeyCredentialProvidersCommandOutput,
142
+ } from "./commands/ListApiKeyCredentialProvidersCommand";
143
+ import {
144
+ ListBrowsersCommandInput,
145
+ ListBrowsersCommandOutput,
146
+ } from "./commands/ListBrowsersCommand";
147
+ import {
148
+ ListCodeInterpretersCommandInput,
149
+ ListCodeInterpretersCommandOutput,
150
+ } from "./commands/ListCodeInterpretersCommand";
151
+ import {
152
+ ListGatewaysCommandInput,
153
+ ListGatewaysCommandOutput,
154
+ } from "./commands/ListGatewaysCommand";
155
+ import {
156
+ ListGatewayTargetsCommandInput,
157
+ ListGatewayTargetsCommandOutput,
158
+ } from "./commands/ListGatewayTargetsCommand";
159
+ import {
160
+ ListMemoriesCommandInput,
161
+ ListMemoriesCommandOutput,
162
+ } from "./commands/ListMemoriesCommand";
163
+ import {
164
+ ListOauth2CredentialProvidersCommandInput,
165
+ ListOauth2CredentialProvidersCommandOutput,
166
+ } from "./commands/ListOauth2CredentialProvidersCommand";
167
+ import {
168
+ ListWorkloadIdentitiesCommandInput,
169
+ ListWorkloadIdentitiesCommandOutput,
170
+ } from "./commands/ListWorkloadIdentitiesCommand";
171
+ import {
172
+ SetTokenVaultCMKCommandInput,
173
+ SetTokenVaultCMKCommandOutput,
174
+ } from "./commands/SetTokenVaultCMKCommand";
175
+ import {
176
+ UpdateAgentRuntimeCommandInput,
177
+ UpdateAgentRuntimeCommandOutput,
178
+ } from "./commands/UpdateAgentRuntimeCommand";
179
+ import {
180
+ UpdateAgentRuntimeEndpointCommandInput,
181
+ UpdateAgentRuntimeEndpointCommandOutput,
182
+ } from "./commands/UpdateAgentRuntimeEndpointCommand";
183
+ import {
184
+ UpdateApiKeyCredentialProviderCommandInput,
185
+ UpdateApiKeyCredentialProviderCommandOutput,
186
+ } from "./commands/UpdateApiKeyCredentialProviderCommand";
187
+ import {
188
+ UpdateGatewayCommandInput,
189
+ UpdateGatewayCommandOutput,
190
+ } from "./commands/UpdateGatewayCommand";
191
+ import {
192
+ UpdateGatewayTargetCommandInput,
193
+ UpdateGatewayTargetCommandOutput,
194
+ } from "./commands/UpdateGatewayTargetCommand";
195
+ import {
196
+ UpdateMemoryCommandInput,
197
+ UpdateMemoryCommandOutput,
198
+ } from "./commands/UpdateMemoryCommand";
199
+ import {
200
+ UpdateOauth2CredentialProviderCommandInput,
201
+ UpdateOauth2CredentialProviderCommandOutput,
202
+ } from "./commands/UpdateOauth2CredentialProviderCommand";
203
+ import {
204
+ UpdateWorkloadIdentityCommandInput,
205
+ UpdateWorkloadIdentityCommandOutput,
206
+ } from "./commands/UpdateWorkloadIdentityCommand";
207
+ export interface BedrockAgentCoreControl {
208
+ createAgentRuntime(
209
+ args: CreateAgentRuntimeCommandInput,
210
+ options?: __HttpHandlerOptions
211
+ ): Promise<CreateAgentRuntimeCommandOutput>;
212
+ createAgentRuntime(
213
+ args: CreateAgentRuntimeCommandInput,
214
+ cb: (err: any, data?: CreateAgentRuntimeCommandOutput) => void
215
+ ): void;
216
+ createAgentRuntime(
217
+ args: CreateAgentRuntimeCommandInput,
218
+ options: __HttpHandlerOptions,
219
+ cb: (err: any, data?: CreateAgentRuntimeCommandOutput) => void
220
+ ): void;
221
+ createAgentRuntimeEndpoint(
222
+ args: CreateAgentRuntimeEndpointCommandInput,
223
+ options?: __HttpHandlerOptions
224
+ ): Promise<CreateAgentRuntimeEndpointCommandOutput>;
225
+ createAgentRuntimeEndpoint(
226
+ args: CreateAgentRuntimeEndpointCommandInput,
227
+ cb: (err: any, data?: CreateAgentRuntimeEndpointCommandOutput) => void
228
+ ): void;
229
+ createAgentRuntimeEndpoint(
230
+ args: CreateAgentRuntimeEndpointCommandInput,
231
+ options: __HttpHandlerOptions,
232
+ cb: (err: any, data?: CreateAgentRuntimeEndpointCommandOutput) => void
233
+ ): void;
234
+ createApiKeyCredentialProvider(
235
+ args: CreateApiKeyCredentialProviderCommandInput,
236
+ options?: __HttpHandlerOptions
237
+ ): Promise<CreateApiKeyCredentialProviderCommandOutput>;
238
+ createApiKeyCredentialProvider(
239
+ args: CreateApiKeyCredentialProviderCommandInput,
240
+ cb: (err: any, data?: CreateApiKeyCredentialProviderCommandOutput) => void
241
+ ): void;
242
+ createApiKeyCredentialProvider(
243
+ args: CreateApiKeyCredentialProviderCommandInput,
244
+ options: __HttpHandlerOptions,
245
+ cb: (err: any, data?: CreateApiKeyCredentialProviderCommandOutput) => void
246
+ ): void;
247
+ createBrowser(
248
+ args: CreateBrowserCommandInput,
249
+ options?: __HttpHandlerOptions
250
+ ): Promise<CreateBrowserCommandOutput>;
251
+ createBrowser(
252
+ args: CreateBrowserCommandInput,
253
+ cb: (err: any, data?: CreateBrowserCommandOutput) => void
254
+ ): void;
255
+ createBrowser(
256
+ args: CreateBrowserCommandInput,
257
+ options: __HttpHandlerOptions,
258
+ cb: (err: any, data?: CreateBrowserCommandOutput) => void
259
+ ): void;
260
+ createCodeInterpreter(
261
+ args: CreateCodeInterpreterCommandInput,
262
+ options?: __HttpHandlerOptions
263
+ ): Promise<CreateCodeInterpreterCommandOutput>;
264
+ createCodeInterpreter(
265
+ args: CreateCodeInterpreterCommandInput,
266
+ cb: (err: any, data?: CreateCodeInterpreterCommandOutput) => void
267
+ ): void;
268
+ createCodeInterpreter(
269
+ args: CreateCodeInterpreterCommandInput,
270
+ options: __HttpHandlerOptions,
271
+ cb: (err: any, data?: CreateCodeInterpreterCommandOutput) => void
272
+ ): void;
273
+ createGateway(
274
+ args: CreateGatewayCommandInput,
275
+ options?: __HttpHandlerOptions
276
+ ): Promise<CreateGatewayCommandOutput>;
277
+ createGateway(
278
+ args: CreateGatewayCommandInput,
279
+ cb: (err: any, data?: CreateGatewayCommandOutput) => void
280
+ ): void;
281
+ createGateway(
282
+ args: CreateGatewayCommandInput,
283
+ options: __HttpHandlerOptions,
284
+ cb: (err: any, data?: CreateGatewayCommandOutput) => void
285
+ ): void;
286
+ createGatewayTarget(
287
+ args: CreateGatewayTargetCommandInput,
288
+ options?: __HttpHandlerOptions
289
+ ): Promise<CreateGatewayTargetCommandOutput>;
290
+ createGatewayTarget(
291
+ args: CreateGatewayTargetCommandInput,
292
+ cb: (err: any, data?: CreateGatewayTargetCommandOutput) => void
293
+ ): void;
294
+ createGatewayTarget(
295
+ args: CreateGatewayTargetCommandInput,
296
+ options: __HttpHandlerOptions,
297
+ cb: (err: any, data?: CreateGatewayTargetCommandOutput) => void
298
+ ): void;
299
+ createMemory(
300
+ args: CreateMemoryCommandInput,
301
+ options?: __HttpHandlerOptions
302
+ ): Promise<CreateMemoryCommandOutput>;
303
+ createMemory(
304
+ args: CreateMemoryCommandInput,
305
+ cb: (err: any, data?: CreateMemoryCommandOutput) => void
306
+ ): void;
307
+ createMemory(
308
+ args: CreateMemoryCommandInput,
309
+ options: __HttpHandlerOptions,
310
+ cb: (err: any, data?: CreateMemoryCommandOutput) => void
311
+ ): void;
312
+ createOauth2CredentialProvider(
313
+ args: CreateOauth2CredentialProviderCommandInput,
314
+ options?: __HttpHandlerOptions
315
+ ): Promise<CreateOauth2CredentialProviderCommandOutput>;
316
+ createOauth2CredentialProvider(
317
+ args: CreateOauth2CredentialProviderCommandInput,
318
+ cb: (err: any, data?: CreateOauth2CredentialProviderCommandOutput) => void
319
+ ): void;
320
+ createOauth2CredentialProvider(
321
+ args: CreateOauth2CredentialProviderCommandInput,
322
+ options: __HttpHandlerOptions,
323
+ cb: (err: any, data?: CreateOauth2CredentialProviderCommandOutput) => void
324
+ ): void;
325
+ createWorkloadIdentity(
326
+ args: CreateWorkloadIdentityCommandInput,
327
+ options?: __HttpHandlerOptions
328
+ ): Promise<CreateWorkloadIdentityCommandOutput>;
329
+ createWorkloadIdentity(
330
+ args: CreateWorkloadIdentityCommandInput,
331
+ cb: (err: any, data?: CreateWorkloadIdentityCommandOutput) => void
332
+ ): void;
333
+ createWorkloadIdentity(
334
+ args: CreateWorkloadIdentityCommandInput,
335
+ options: __HttpHandlerOptions,
336
+ cb: (err: any, data?: CreateWorkloadIdentityCommandOutput) => void
337
+ ): void;
338
+ deleteAgentRuntime(
339
+ args: DeleteAgentRuntimeCommandInput,
340
+ options?: __HttpHandlerOptions
341
+ ): Promise<DeleteAgentRuntimeCommandOutput>;
342
+ deleteAgentRuntime(
343
+ args: DeleteAgentRuntimeCommandInput,
344
+ cb: (err: any, data?: DeleteAgentRuntimeCommandOutput) => void
345
+ ): void;
346
+ deleteAgentRuntime(
347
+ args: DeleteAgentRuntimeCommandInput,
348
+ options: __HttpHandlerOptions,
349
+ cb: (err: any, data?: DeleteAgentRuntimeCommandOutput) => void
350
+ ): void;
351
+ deleteAgentRuntimeEndpoint(
352
+ args: DeleteAgentRuntimeEndpointCommandInput,
353
+ options?: __HttpHandlerOptions
354
+ ): Promise<DeleteAgentRuntimeEndpointCommandOutput>;
355
+ deleteAgentRuntimeEndpoint(
356
+ args: DeleteAgentRuntimeEndpointCommandInput,
357
+ cb: (err: any, data?: DeleteAgentRuntimeEndpointCommandOutput) => void
358
+ ): void;
359
+ deleteAgentRuntimeEndpoint(
360
+ args: DeleteAgentRuntimeEndpointCommandInput,
361
+ options: __HttpHandlerOptions,
362
+ cb: (err: any, data?: DeleteAgentRuntimeEndpointCommandOutput) => void
363
+ ): void;
364
+ deleteApiKeyCredentialProvider(
365
+ args: DeleteApiKeyCredentialProviderCommandInput,
366
+ options?: __HttpHandlerOptions
367
+ ): Promise<DeleteApiKeyCredentialProviderCommandOutput>;
368
+ deleteApiKeyCredentialProvider(
369
+ args: DeleteApiKeyCredentialProviderCommandInput,
370
+ cb: (err: any, data?: DeleteApiKeyCredentialProviderCommandOutput) => void
371
+ ): void;
372
+ deleteApiKeyCredentialProvider(
373
+ args: DeleteApiKeyCredentialProviderCommandInput,
374
+ options: __HttpHandlerOptions,
375
+ cb: (err: any, data?: DeleteApiKeyCredentialProviderCommandOutput) => void
376
+ ): void;
377
+ deleteBrowser(
378
+ args: DeleteBrowserCommandInput,
379
+ options?: __HttpHandlerOptions
380
+ ): Promise<DeleteBrowserCommandOutput>;
381
+ deleteBrowser(
382
+ args: DeleteBrowserCommandInput,
383
+ cb: (err: any, data?: DeleteBrowserCommandOutput) => void
384
+ ): void;
385
+ deleteBrowser(
386
+ args: DeleteBrowserCommandInput,
387
+ options: __HttpHandlerOptions,
388
+ cb: (err: any, data?: DeleteBrowserCommandOutput) => void
389
+ ): void;
390
+ deleteCodeInterpreter(
391
+ args: DeleteCodeInterpreterCommandInput,
392
+ options?: __HttpHandlerOptions
393
+ ): Promise<DeleteCodeInterpreterCommandOutput>;
394
+ deleteCodeInterpreter(
395
+ args: DeleteCodeInterpreterCommandInput,
396
+ cb: (err: any, data?: DeleteCodeInterpreterCommandOutput) => void
397
+ ): void;
398
+ deleteCodeInterpreter(
399
+ args: DeleteCodeInterpreterCommandInput,
400
+ options: __HttpHandlerOptions,
401
+ cb: (err: any, data?: DeleteCodeInterpreterCommandOutput) => void
402
+ ): void;
403
+ deleteGateway(
404
+ args: DeleteGatewayCommandInput,
405
+ options?: __HttpHandlerOptions
406
+ ): Promise<DeleteGatewayCommandOutput>;
407
+ deleteGateway(
408
+ args: DeleteGatewayCommandInput,
409
+ cb: (err: any, data?: DeleteGatewayCommandOutput) => void
410
+ ): void;
411
+ deleteGateway(
412
+ args: DeleteGatewayCommandInput,
413
+ options: __HttpHandlerOptions,
414
+ cb: (err: any, data?: DeleteGatewayCommandOutput) => void
415
+ ): void;
416
+ deleteGatewayTarget(
417
+ args: DeleteGatewayTargetCommandInput,
418
+ options?: __HttpHandlerOptions
419
+ ): Promise<DeleteGatewayTargetCommandOutput>;
420
+ deleteGatewayTarget(
421
+ args: DeleteGatewayTargetCommandInput,
422
+ cb: (err: any, data?: DeleteGatewayTargetCommandOutput) => void
423
+ ): void;
424
+ deleteGatewayTarget(
425
+ args: DeleteGatewayTargetCommandInput,
426
+ options: __HttpHandlerOptions,
427
+ cb: (err: any, data?: DeleteGatewayTargetCommandOutput) => void
428
+ ): void;
429
+ deleteMemory(
430
+ args: DeleteMemoryCommandInput,
431
+ options?: __HttpHandlerOptions
432
+ ): Promise<DeleteMemoryCommandOutput>;
433
+ deleteMemory(
434
+ args: DeleteMemoryCommandInput,
435
+ cb: (err: any, data?: DeleteMemoryCommandOutput) => void
436
+ ): void;
437
+ deleteMemory(
438
+ args: DeleteMemoryCommandInput,
439
+ options: __HttpHandlerOptions,
440
+ cb: (err: any, data?: DeleteMemoryCommandOutput) => void
441
+ ): void;
442
+ deleteOauth2CredentialProvider(
443
+ args: DeleteOauth2CredentialProviderCommandInput,
444
+ options?: __HttpHandlerOptions
445
+ ): Promise<DeleteOauth2CredentialProviderCommandOutput>;
446
+ deleteOauth2CredentialProvider(
447
+ args: DeleteOauth2CredentialProviderCommandInput,
448
+ cb: (err: any, data?: DeleteOauth2CredentialProviderCommandOutput) => void
449
+ ): void;
450
+ deleteOauth2CredentialProvider(
451
+ args: DeleteOauth2CredentialProviderCommandInput,
452
+ options: __HttpHandlerOptions,
453
+ cb: (err: any, data?: DeleteOauth2CredentialProviderCommandOutput) => void
454
+ ): void;
455
+ deleteWorkloadIdentity(
456
+ args: DeleteWorkloadIdentityCommandInput,
457
+ options?: __HttpHandlerOptions
458
+ ): Promise<DeleteWorkloadIdentityCommandOutput>;
459
+ deleteWorkloadIdentity(
460
+ args: DeleteWorkloadIdentityCommandInput,
461
+ cb: (err: any, data?: DeleteWorkloadIdentityCommandOutput) => void
462
+ ): void;
463
+ deleteWorkloadIdentity(
464
+ args: DeleteWorkloadIdentityCommandInput,
465
+ options: __HttpHandlerOptions,
466
+ cb: (err: any, data?: DeleteWorkloadIdentityCommandOutput) => void
467
+ ): void;
468
+ getAgentRuntime(
469
+ args: GetAgentRuntimeCommandInput,
470
+ options?: __HttpHandlerOptions
471
+ ): Promise<GetAgentRuntimeCommandOutput>;
472
+ getAgentRuntime(
473
+ args: GetAgentRuntimeCommandInput,
474
+ cb: (err: any, data?: GetAgentRuntimeCommandOutput) => void
475
+ ): void;
476
+ getAgentRuntime(
477
+ args: GetAgentRuntimeCommandInput,
478
+ options: __HttpHandlerOptions,
479
+ cb: (err: any, data?: GetAgentRuntimeCommandOutput) => void
480
+ ): void;
481
+ getAgentRuntimeEndpoint(
482
+ args: GetAgentRuntimeEndpointCommandInput,
483
+ options?: __HttpHandlerOptions
484
+ ): Promise<GetAgentRuntimeEndpointCommandOutput>;
485
+ getAgentRuntimeEndpoint(
486
+ args: GetAgentRuntimeEndpointCommandInput,
487
+ cb: (err: any, data?: GetAgentRuntimeEndpointCommandOutput) => void
488
+ ): void;
489
+ getAgentRuntimeEndpoint(
490
+ args: GetAgentRuntimeEndpointCommandInput,
491
+ options: __HttpHandlerOptions,
492
+ cb: (err: any, data?: GetAgentRuntimeEndpointCommandOutput) => void
493
+ ): void;
494
+ getApiKeyCredentialProvider(
495
+ args: GetApiKeyCredentialProviderCommandInput,
496
+ options?: __HttpHandlerOptions
497
+ ): Promise<GetApiKeyCredentialProviderCommandOutput>;
498
+ getApiKeyCredentialProvider(
499
+ args: GetApiKeyCredentialProviderCommandInput,
500
+ cb: (err: any, data?: GetApiKeyCredentialProviderCommandOutput) => void
501
+ ): void;
502
+ getApiKeyCredentialProvider(
503
+ args: GetApiKeyCredentialProviderCommandInput,
504
+ options: __HttpHandlerOptions,
505
+ cb: (err: any, data?: GetApiKeyCredentialProviderCommandOutput) => void
506
+ ): void;
507
+ getBrowser(
508
+ args: GetBrowserCommandInput,
509
+ options?: __HttpHandlerOptions
510
+ ): Promise<GetBrowserCommandOutput>;
511
+ getBrowser(
512
+ args: GetBrowserCommandInput,
513
+ cb: (err: any, data?: GetBrowserCommandOutput) => void
514
+ ): void;
515
+ getBrowser(
516
+ args: GetBrowserCommandInput,
517
+ options: __HttpHandlerOptions,
518
+ cb: (err: any, data?: GetBrowserCommandOutput) => void
519
+ ): void;
520
+ getCodeInterpreter(
521
+ args: GetCodeInterpreterCommandInput,
522
+ options?: __HttpHandlerOptions
523
+ ): Promise<GetCodeInterpreterCommandOutput>;
524
+ getCodeInterpreter(
525
+ args: GetCodeInterpreterCommandInput,
526
+ cb: (err: any, data?: GetCodeInterpreterCommandOutput) => void
527
+ ): void;
528
+ getCodeInterpreter(
529
+ args: GetCodeInterpreterCommandInput,
530
+ options: __HttpHandlerOptions,
531
+ cb: (err: any, data?: GetCodeInterpreterCommandOutput) => void
532
+ ): void;
533
+ getGateway(
534
+ args: GetGatewayCommandInput,
535
+ options?: __HttpHandlerOptions
536
+ ): Promise<GetGatewayCommandOutput>;
537
+ getGateway(
538
+ args: GetGatewayCommandInput,
539
+ cb: (err: any, data?: GetGatewayCommandOutput) => void
540
+ ): void;
541
+ getGateway(
542
+ args: GetGatewayCommandInput,
543
+ options: __HttpHandlerOptions,
544
+ cb: (err: any, data?: GetGatewayCommandOutput) => void
545
+ ): void;
546
+ getGatewayTarget(
547
+ args: GetGatewayTargetCommandInput,
548
+ options?: __HttpHandlerOptions
549
+ ): Promise<GetGatewayTargetCommandOutput>;
550
+ getGatewayTarget(
551
+ args: GetGatewayTargetCommandInput,
552
+ cb: (err: any, data?: GetGatewayTargetCommandOutput) => void
553
+ ): void;
554
+ getGatewayTarget(
555
+ args: GetGatewayTargetCommandInput,
556
+ options: __HttpHandlerOptions,
557
+ cb: (err: any, data?: GetGatewayTargetCommandOutput) => void
558
+ ): void;
559
+ getMemory(
560
+ args: GetMemoryCommandInput,
561
+ options?: __HttpHandlerOptions
562
+ ): Promise<GetMemoryCommandOutput>;
563
+ getMemory(
564
+ args: GetMemoryCommandInput,
565
+ cb: (err: any, data?: GetMemoryCommandOutput) => void
566
+ ): void;
567
+ getMemory(
568
+ args: GetMemoryCommandInput,
569
+ options: __HttpHandlerOptions,
570
+ cb: (err: any, data?: GetMemoryCommandOutput) => void
571
+ ): void;
572
+ getOauth2CredentialProvider(
573
+ args: GetOauth2CredentialProviderCommandInput,
574
+ options?: __HttpHandlerOptions
575
+ ): Promise<GetOauth2CredentialProviderCommandOutput>;
576
+ getOauth2CredentialProvider(
577
+ args: GetOauth2CredentialProviderCommandInput,
578
+ cb: (err: any, data?: GetOauth2CredentialProviderCommandOutput) => void
579
+ ): void;
580
+ getOauth2CredentialProvider(
581
+ args: GetOauth2CredentialProviderCommandInput,
582
+ options: __HttpHandlerOptions,
583
+ cb: (err: any, data?: GetOauth2CredentialProviderCommandOutput) => void
584
+ ): void;
585
+ getTokenVault(): Promise<GetTokenVaultCommandOutput>;
586
+ getTokenVault(
587
+ args: GetTokenVaultCommandInput,
588
+ options?: __HttpHandlerOptions
589
+ ): Promise<GetTokenVaultCommandOutput>;
590
+ getTokenVault(
591
+ args: GetTokenVaultCommandInput,
592
+ cb: (err: any, data?: GetTokenVaultCommandOutput) => void
593
+ ): void;
594
+ getTokenVault(
595
+ args: GetTokenVaultCommandInput,
596
+ options: __HttpHandlerOptions,
597
+ cb: (err: any, data?: GetTokenVaultCommandOutput) => void
598
+ ): void;
599
+ getWorkloadIdentity(
600
+ args: GetWorkloadIdentityCommandInput,
601
+ options?: __HttpHandlerOptions
602
+ ): Promise<GetWorkloadIdentityCommandOutput>;
603
+ getWorkloadIdentity(
604
+ args: GetWorkloadIdentityCommandInput,
605
+ cb: (err: any, data?: GetWorkloadIdentityCommandOutput) => void
606
+ ): void;
607
+ getWorkloadIdentity(
608
+ args: GetWorkloadIdentityCommandInput,
609
+ options: __HttpHandlerOptions,
610
+ cb: (err: any, data?: GetWorkloadIdentityCommandOutput) => void
611
+ ): void;
612
+ listAgentRuntimeEndpoints(
613
+ args: ListAgentRuntimeEndpointsCommandInput,
614
+ options?: __HttpHandlerOptions
615
+ ): Promise<ListAgentRuntimeEndpointsCommandOutput>;
616
+ listAgentRuntimeEndpoints(
617
+ args: ListAgentRuntimeEndpointsCommandInput,
618
+ cb: (err: any, data?: ListAgentRuntimeEndpointsCommandOutput) => void
619
+ ): void;
620
+ listAgentRuntimeEndpoints(
621
+ args: ListAgentRuntimeEndpointsCommandInput,
622
+ options: __HttpHandlerOptions,
623
+ cb: (err: any, data?: ListAgentRuntimeEndpointsCommandOutput) => void
624
+ ): void;
625
+ listAgentRuntimes(): Promise<ListAgentRuntimesCommandOutput>;
626
+ listAgentRuntimes(
627
+ args: ListAgentRuntimesCommandInput,
628
+ options?: __HttpHandlerOptions
629
+ ): Promise<ListAgentRuntimesCommandOutput>;
630
+ listAgentRuntimes(
631
+ args: ListAgentRuntimesCommandInput,
632
+ cb: (err: any, data?: ListAgentRuntimesCommandOutput) => void
633
+ ): void;
634
+ listAgentRuntimes(
635
+ args: ListAgentRuntimesCommandInput,
636
+ options: __HttpHandlerOptions,
637
+ cb: (err: any, data?: ListAgentRuntimesCommandOutput) => void
638
+ ): void;
639
+ listAgentRuntimeVersions(
640
+ args: ListAgentRuntimeVersionsCommandInput,
641
+ options?: __HttpHandlerOptions
642
+ ): Promise<ListAgentRuntimeVersionsCommandOutput>;
643
+ listAgentRuntimeVersions(
644
+ args: ListAgentRuntimeVersionsCommandInput,
645
+ cb: (err: any, data?: ListAgentRuntimeVersionsCommandOutput) => void
646
+ ): void;
647
+ listAgentRuntimeVersions(
648
+ args: ListAgentRuntimeVersionsCommandInput,
649
+ options: __HttpHandlerOptions,
650
+ cb: (err: any, data?: ListAgentRuntimeVersionsCommandOutput) => void
651
+ ): void;
652
+ listApiKeyCredentialProviders(): Promise<ListApiKeyCredentialProvidersCommandOutput>;
653
+ listApiKeyCredentialProviders(
654
+ args: ListApiKeyCredentialProvidersCommandInput,
655
+ options?: __HttpHandlerOptions
656
+ ): Promise<ListApiKeyCredentialProvidersCommandOutput>;
657
+ listApiKeyCredentialProviders(
658
+ args: ListApiKeyCredentialProvidersCommandInput,
659
+ cb: (err: any, data?: ListApiKeyCredentialProvidersCommandOutput) => void
660
+ ): void;
661
+ listApiKeyCredentialProviders(
662
+ args: ListApiKeyCredentialProvidersCommandInput,
663
+ options: __HttpHandlerOptions,
664
+ cb: (err: any, data?: ListApiKeyCredentialProvidersCommandOutput) => void
665
+ ): void;
666
+ listBrowsers(): Promise<ListBrowsersCommandOutput>;
667
+ listBrowsers(
668
+ args: ListBrowsersCommandInput,
669
+ options?: __HttpHandlerOptions
670
+ ): Promise<ListBrowsersCommandOutput>;
671
+ listBrowsers(
672
+ args: ListBrowsersCommandInput,
673
+ cb: (err: any, data?: ListBrowsersCommandOutput) => void
674
+ ): void;
675
+ listBrowsers(
676
+ args: ListBrowsersCommandInput,
677
+ options: __HttpHandlerOptions,
678
+ cb: (err: any, data?: ListBrowsersCommandOutput) => void
679
+ ): void;
680
+ listCodeInterpreters(): Promise<ListCodeInterpretersCommandOutput>;
681
+ listCodeInterpreters(
682
+ args: ListCodeInterpretersCommandInput,
683
+ options?: __HttpHandlerOptions
684
+ ): Promise<ListCodeInterpretersCommandOutput>;
685
+ listCodeInterpreters(
686
+ args: ListCodeInterpretersCommandInput,
687
+ cb: (err: any, data?: ListCodeInterpretersCommandOutput) => void
688
+ ): void;
689
+ listCodeInterpreters(
690
+ args: ListCodeInterpretersCommandInput,
691
+ options: __HttpHandlerOptions,
692
+ cb: (err: any, data?: ListCodeInterpretersCommandOutput) => void
693
+ ): void;
694
+ listGateways(): Promise<ListGatewaysCommandOutput>;
695
+ listGateways(
696
+ args: ListGatewaysCommandInput,
697
+ options?: __HttpHandlerOptions
698
+ ): Promise<ListGatewaysCommandOutput>;
699
+ listGateways(
700
+ args: ListGatewaysCommandInput,
701
+ cb: (err: any, data?: ListGatewaysCommandOutput) => void
702
+ ): void;
703
+ listGateways(
704
+ args: ListGatewaysCommandInput,
705
+ options: __HttpHandlerOptions,
706
+ cb: (err: any, data?: ListGatewaysCommandOutput) => void
707
+ ): void;
708
+ listGatewayTargets(
709
+ args: ListGatewayTargetsCommandInput,
710
+ options?: __HttpHandlerOptions
711
+ ): Promise<ListGatewayTargetsCommandOutput>;
712
+ listGatewayTargets(
713
+ args: ListGatewayTargetsCommandInput,
714
+ cb: (err: any, data?: ListGatewayTargetsCommandOutput) => void
715
+ ): void;
716
+ listGatewayTargets(
717
+ args: ListGatewayTargetsCommandInput,
718
+ options: __HttpHandlerOptions,
719
+ cb: (err: any, data?: ListGatewayTargetsCommandOutput) => void
720
+ ): void;
721
+ listMemories(): Promise<ListMemoriesCommandOutput>;
722
+ listMemories(
723
+ args: ListMemoriesCommandInput,
724
+ options?: __HttpHandlerOptions
725
+ ): Promise<ListMemoriesCommandOutput>;
726
+ listMemories(
727
+ args: ListMemoriesCommandInput,
728
+ cb: (err: any, data?: ListMemoriesCommandOutput) => void
729
+ ): void;
730
+ listMemories(
731
+ args: ListMemoriesCommandInput,
732
+ options: __HttpHandlerOptions,
733
+ cb: (err: any, data?: ListMemoriesCommandOutput) => void
734
+ ): void;
735
+ listOauth2CredentialProviders(): Promise<ListOauth2CredentialProvidersCommandOutput>;
736
+ listOauth2CredentialProviders(
737
+ args: ListOauth2CredentialProvidersCommandInput,
738
+ options?: __HttpHandlerOptions
739
+ ): Promise<ListOauth2CredentialProvidersCommandOutput>;
740
+ listOauth2CredentialProviders(
741
+ args: ListOauth2CredentialProvidersCommandInput,
742
+ cb: (err: any, data?: ListOauth2CredentialProvidersCommandOutput) => void
743
+ ): void;
744
+ listOauth2CredentialProviders(
745
+ args: ListOauth2CredentialProvidersCommandInput,
746
+ options: __HttpHandlerOptions,
747
+ cb: (err: any, data?: ListOauth2CredentialProvidersCommandOutput) => void
748
+ ): void;
749
+ listWorkloadIdentities(): Promise<ListWorkloadIdentitiesCommandOutput>;
750
+ listWorkloadIdentities(
751
+ args: ListWorkloadIdentitiesCommandInput,
752
+ options?: __HttpHandlerOptions
753
+ ): Promise<ListWorkloadIdentitiesCommandOutput>;
754
+ listWorkloadIdentities(
755
+ args: ListWorkloadIdentitiesCommandInput,
756
+ cb: (err: any, data?: ListWorkloadIdentitiesCommandOutput) => void
757
+ ): void;
758
+ listWorkloadIdentities(
759
+ args: ListWorkloadIdentitiesCommandInput,
760
+ options: __HttpHandlerOptions,
761
+ cb: (err: any, data?: ListWorkloadIdentitiesCommandOutput) => void
762
+ ): void;
763
+ setTokenVaultCMK(
764
+ args: SetTokenVaultCMKCommandInput,
765
+ options?: __HttpHandlerOptions
766
+ ): Promise<SetTokenVaultCMKCommandOutput>;
767
+ setTokenVaultCMK(
768
+ args: SetTokenVaultCMKCommandInput,
769
+ cb: (err: any, data?: SetTokenVaultCMKCommandOutput) => void
770
+ ): void;
771
+ setTokenVaultCMK(
772
+ args: SetTokenVaultCMKCommandInput,
773
+ options: __HttpHandlerOptions,
774
+ cb: (err: any, data?: SetTokenVaultCMKCommandOutput) => void
775
+ ): void;
776
+ updateAgentRuntime(
777
+ args: UpdateAgentRuntimeCommandInput,
778
+ options?: __HttpHandlerOptions
779
+ ): Promise<UpdateAgentRuntimeCommandOutput>;
780
+ updateAgentRuntime(
781
+ args: UpdateAgentRuntimeCommandInput,
782
+ cb: (err: any, data?: UpdateAgentRuntimeCommandOutput) => void
783
+ ): void;
784
+ updateAgentRuntime(
785
+ args: UpdateAgentRuntimeCommandInput,
786
+ options: __HttpHandlerOptions,
787
+ cb: (err: any, data?: UpdateAgentRuntimeCommandOutput) => void
788
+ ): void;
789
+ updateAgentRuntimeEndpoint(
790
+ args: UpdateAgentRuntimeEndpointCommandInput,
791
+ options?: __HttpHandlerOptions
792
+ ): Promise<UpdateAgentRuntimeEndpointCommandOutput>;
793
+ updateAgentRuntimeEndpoint(
794
+ args: UpdateAgentRuntimeEndpointCommandInput,
795
+ cb: (err: any, data?: UpdateAgentRuntimeEndpointCommandOutput) => void
796
+ ): void;
797
+ updateAgentRuntimeEndpoint(
798
+ args: UpdateAgentRuntimeEndpointCommandInput,
799
+ options: __HttpHandlerOptions,
800
+ cb: (err: any, data?: UpdateAgentRuntimeEndpointCommandOutput) => void
801
+ ): void;
802
+ updateApiKeyCredentialProvider(
803
+ args: UpdateApiKeyCredentialProviderCommandInput,
804
+ options?: __HttpHandlerOptions
805
+ ): Promise<UpdateApiKeyCredentialProviderCommandOutput>;
806
+ updateApiKeyCredentialProvider(
807
+ args: UpdateApiKeyCredentialProviderCommandInput,
808
+ cb: (err: any, data?: UpdateApiKeyCredentialProviderCommandOutput) => void
809
+ ): void;
810
+ updateApiKeyCredentialProvider(
811
+ args: UpdateApiKeyCredentialProviderCommandInput,
812
+ options: __HttpHandlerOptions,
813
+ cb: (err: any, data?: UpdateApiKeyCredentialProviderCommandOutput) => void
814
+ ): void;
815
+ updateGateway(
816
+ args: UpdateGatewayCommandInput,
817
+ options?: __HttpHandlerOptions
818
+ ): Promise<UpdateGatewayCommandOutput>;
819
+ updateGateway(
820
+ args: UpdateGatewayCommandInput,
821
+ cb: (err: any, data?: UpdateGatewayCommandOutput) => void
822
+ ): void;
823
+ updateGateway(
824
+ args: UpdateGatewayCommandInput,
825
+ options: __HttpHandlerOptions,
826
+ cb: (err: any, data?: UpdateGatewayCommandOutput) => void
827
+ ): void;
828
+ updateGatewayTarget(
829
+ args: UpdateGatewayTargetCommandInput,
830
+ options?: __HttpHandlerOptions
831
+ ): Promise<UpdateGatewayTargetCommandOutput>;
832
+ updateGatewayTarget(
833
+ args: UpdateGatewayTargetCommandInput,
834
+ cb: (err: any, data?: UpdateGatewayTargetCommandOutput) => void
835
+ ): void;
836
+ updateGatewayTarget(
837
+ args: UpdateGatewayTargetCommandInput,
838
+ options: __HttpHandlerOptions,
839
+ cb: (err: any, data?: UpdateGatewayTargetCommandOutput) => void
840
+ ): void;
841
+ updateMemory(
842
+ args: UpdateMemoryCommandInput,
843
+ options?: __HttpHandlerOptions
844
+ ): Promise<UpdateMemoryCommandOutput>;
845
+ updateMemory(
846
+ args: UpdateMemoryCommandInput,
847
+ cb: (err: any, data?: UpdateMemoryCommandOutput) => void
848
+ ): void;
849
+ updateMemory(
850
+ args: UpdateMemoryCommandInput,
851
+ options: __HttpHandlerOptions,
852
+ cb: (err: any, data?: UpdateMemoryCommandOutput) => void
853
+ ): void;
854
+ updateOauth2CredentialProvider(
855
+ args: UpdateOauth2CredentialProviderCommandInput,
856
+ options?: __HttpHandlerOptions
857
+ ): Promise<UpdateOauth2CredentialProviderCommandOutput>;
858
+ updateOauth2CredentialProvider(
859
+ args: UpdateOauth2CredentialProviderCommandInput,
860
+ cb: (err: any, data?: UpdateOauth2CredentialProviderCommandOutput) => void
861
+ ): void;
862
+ updateOauth2CredentialProvider(
863
+ args: UpdateOauth2CredentialProviderCommandInput,
864
+ options: __HttpHandlerOptions,
865
+ cb: (err: any, data?: UpdateOauth2CredentialProviderCommandOutput) => void
866
+ ): void;
867
+ updateWorkloadIdentity(
868
+ args: UpdateWorkloadIdentityCommandInput,
869
+ options?: __HttpHandlerOptions
870
+ ): Promise<UpdateWorkloadIdentityCommandOutput>;
871
+ updateWorkloadIdentity(
872
+ args: UpdateWorkloadIdentityCommandInput,
873
+ cb: (err: any, data?: UpdateWorkloadIdentityCommandOutput) => void
874
+ ): void;
875
+ updateWorkloadIdentity(
876
+ args: UpdateWorkloadIdentityCommandInput,
877
+ options: __HttpHandlerOptions,
878
+ cb: (err: any, data?: UpdateWorkloadIdentityCommandOutput) => void
879
+ ): void;
880
+ }
881
+ export declare class BedrockAgentCoreControl
882
+ extends BedrockAgentCoreControlClient
883
+ implements BedrockAgentCoreControl {}