@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,260 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
+ import { UpdateMemoryInput, UpdateMemoryOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateMemoryCommand}.
14
+ */
15
+ export interface UpdateMemoryCommandInput extends UpdateMemoryInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateMemoryCommand}.
21
+ */
22
+ export interface UpdateMemoryCommandOutput extends UpdateMemoryOutput, __MetadataBearer {
23
+ }
24
+ declare const UpdateMemoryCommand_base: {
25
+ new (input: UpdateMemoryCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateMemoryCommandInput, UpdateMemoryCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdateMemoryCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateMemoryCommandInput, UpdateMemoryCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Update memory.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { BedrockAgentCoreControlClient, UpdateMemoryCommand } from "@aws-sdk/client-bedrock-agentcore-control"; // ES Modules import
35
+ * // const { BedrockAgentCoreControlClient, UpdateMemoryCommand } = require("@aws-sdk/client-bedrock-agentcore-control"); // CommonJS import
36
+ * const client = new BedrockAgentCoreControlClient(config);
37
+ * const input = { // UpdateMemoryInput
38
+ * clientToken: "STRING_VALUE",
39
+ * memoryId: "STRING_VALUE", // required
40
+ * description: "STRING_VALUE",
41
+ * eventExpiryDuration: Number("int"),
42
+ * memoryExecutionRoleArn: "STRING_VALUE",
43
+ * memoryStrategies: { // ModifyMemoryStrategies
44
+ * addMemoryStrategies: [ // MemoryStrategyInputList
45
+ * { // MemoryStrategyInput Union: only one key present
46
+ * semanticMemoryStrategy: { // SemanticMemoryStrategyInput
47
+ * name: "STRING_VALUE", // required
48
+ * description: "STRING_VALUE",
49
+ * namespaces: [ // NamespacesList
50
+ * "STRING_VALUE",
51
+ * ],
52
+ * },
53
+ * summaryMemoryStrategy: { // SummaryMemoryStrategyInput
54
+ * name: "STRING_VALUE", // required
55
+ * description: "STRING_VALUE",
56
+ * namespaces: [
57
+ * "STRING_VALUE",
58
+ * ],
59
+ * },
60
+ * userPreferenceMemoryStrategy: { // UserPreferenceMemoryStrategyInput
61
+ * name: "STRING_VALUE", // required
62
+ * description: "STRING_VALUE",
63
+ * namespaces: [
64
+ * "STRING_VALUE",
65
+ * ],
66
+ * },
67
+ * customMemoryStrategy: { // CustomMemoryStrategyInput
68
+ * name: "STRING_VALUE", // required
69
+ * description: "STRING_VALUE",
70
+ * namespaces: [
71
+ * "STRING_VALUE",
72
+ * ],
73
+ * configuration: { // CustomConfigurationInput Union: only one key present
74
+ * semanticOverride: { // SemanticOverrideConfigurationInput
75
+ * extraction: { // SemanticOverrideExtractionConfigurationInput
76
+ * appendToPrompt: "STRING_VALUE", // required
77
+ * modelId: "STRING_VALUE", // required
78
+ * },
79
+ * consolidation: { // SemanticOverrideConsolidationConfigurationInput
80
+ * appendToPrompt: "STRING_VALUE", // required
81
+ * modelId: "STRING_VALUE", // required
82
+ * },
83
+ * },
84
+ * summaryOverride: { // SummaryOverrideConfigurationInput
85
+ * consolidation: { // SummaryOverrideConsolidationConfigurationInput
86
+ * appendToPrompt: "STRING_VALUE", // required
87
+ * modelId: "STRING_VALUE", // required
88
+ * },
89
+ * },
90
+ * userPreferenceOverride: { // UserPreferenceOverrideConfigurationInput
91
+ * extraction: { // UserPreferenceOverrideExtractionConfigurationInput
92
+ * appendToPrompt: "STRING_VALUE", // required
93
+ * modelId: "STRING_VALUE", // required
94
+ * },
95
+ * consolidation: { // UserPreferenceOverrideConsolidationConfigurationInput
96
+ * appendToPrompt: "STRING_VALUE", // required
97
+ * modelId: "STRING_VALUE", // required
98
+ * },
99
+ * },
100
+ * },
101
+ * },
102
+ * },
103
+ * ],
104
+ * modifyMemoryStrategies: [ // ModifyMemoryStrategiesList
105
+ * { // ModifyMemoryStrategyInput
106
+ * memoryStrategyId: "STRING_VALUE", // required
107
+ * description: "STRING_VALUE",
108
+ * namespaces: [
109
+ * "STRING_VALUE",
110
+ * ],
111
+ * configuration: { // ModifyStrategyConfiguration
112
+ * extraction: { // ModifyExtractionConfiguration Union: only one key present
113
+ * customExtractionConfiguration: { // CustomExtractionConfigurationInput Union: only one key present
114
+ * semanticExtractionOverride: {
115
+ * appendToPrompt: "STRING_VALUE", // required
116
+ * modelId: "STRING_VALUE", // required
117
+ * },
118
+ * userPreferenceExtractionOverride: {
119
+ * appendToPrompt: "STRING_VALUE", // required
120
+ * modelId: "STRING_VALUE", // required
121
+ * },
122
+ * },
123
+ * },
124
+ * consolidation: { // ModifyConsolidationConfiguration Union: only one key present
125
+ * customConsolidationConfiguration: { // CustomConsolidationConfigurationInput Union: only one key present
126
+ * semanticConsolidationOverride: {
127
+ * appendToPrompt: "STRING_VALUE", // required
128
+ * modelId: "STRING_VALUE", // required
129
+ * },
130
+ * summaryConsolidationOverride: {
131
+ * appendToPrompt: "STRING_VALUE", // required
132
+ * modelId: "STRING_VALUE", // required
133
+ * },
134
+ * userPreferenceConsolidationOverride: {
135
+ * appendToPrompt: "STRING_VALUE", // required
136
+ * modelId: "STRING_VALUE", // required
137
+ * },
138
+ * },
139
+ * },
140
+ * },
141
+ * },
142
+ * ],
143
+ * deleteMemoryStrategies: [ // DeleteMemoryStrategiesList
144
+ * { // DeleteMemoryStrategyInput
145
+ * memoryStrategyId: "STRING_VALUE", // required
146
+ * },
147
+ * ],
148
+ * },
149
+ * };
150
+ * const command = new UpdateMemoryCommand(input);
151
+ * const response = await client.send(command);
152
+ * // { // UpdateMemoryOutput
153
+ * // memory: { // Memory
154
+ * // arn: "STRING_VALUE", // required
155
+ * // id: "STRING_VALUE", // required
156
+ * // name: "STRING_VALUE", // required
157
+ * // description: "STRING_VALUE",
158
+ * // encryptionKeyArn: "STRING_VALUE",
159
+ * // memoryExecutionRoleArn: "STRING_VALUE",
160
+ * // eventExpiryDuration: Number("int"), // required
161
+ * // status: "CREATING" || "ACTIVE" || "FAILED" || "DELETING", // required
162
+ * // failureReason: "STRING_VALUE",
163
+ * // createdAt: new Date("TIMESTAMP"), // required
164
+ * // updatedAt: new Date("TIMESTAMP"), // required
165
+ * // strategies: [ // MemoryStrategyList
166
+ * // { // MemoryStrategy
167
+ * // strategyId: "STRING_VALUE", // required
168
+ * // name: "STRING_VALUE", // required
169
+ * // description: "STRING_VALUE",
170
+ * // configuration: { // StrategyConfiguration
171
+ * // type: "SEMANTIC_OVERRIDE" || "SUMMARY_OVERRIDE" || "USER_PREFERENCE_OVERRIDE",
172
+ * // extraction: { // ExtractionConfiguration Union: only one key present
173
+ * // customExtractionConfiguration: { // CustomExtractionConfiguration Union: only one key present
174
+ * // semanticExtractionOverride: { // SemanticExtractionOverride
175
+ * // appendToPrompt: "STRING_VALUE", // required
176
+ * // modelId: "STRING_VALUE", // required
177
+ * // },
178
+ * // userPreferenceExtractionOverride: { // UserPreferenceExtractionOverride
179
+ * // appendToPrompt: "STRING_VALUE", // required
180
+ * // modelId: "STRING_VALUE", // required
181
+ * // },
182
+ * // },
183
+ * // },
184
+ * // consolidation: { // ConsolidationConfiguration Union: only one key present
185
+ * // customConsolidationConfiguration: { // CustomConsolidationConfiguration Union: only one key present
186
+ * // semanticConsolidationOverride: { // SemanticConsolidationOverride
187
+ * // appendToPrompt: "STRING_VALUE", // required
188
+ * // modelId: "STRING_VALUE", // required
189
+ * // },
190
+ * // summaryConsolidationOverride: { // SummaryConsolidationOverride
191
+ * // appendToPrompt: "STRING_VALUE", // required
192
+ * // modelId: "STRING_VALUE", // required
193
+ * // },
194
+ * // userPreferenceConsolidationOverride: { // UserPreferenceConsolidationOverride
195
+ * // appendToPrompt: "STRING_VALUE", // required
196
+ * // modelId: "STRING_VALUE", // required
197
+ * // },
198
+ * // },
199
+ * // },
200
+ * // },
201
+ * // type: "SEMANTIC" || "SUMMARIZATION" || "USER_PREFERENCE" || "CUSTOM", // required
202
+ * // namespaces: [ // NamespacesList // required
203
+ * // "STRING_VALUE",
204
+ * // ],
205
+ * // createdAt: new Date("TIMESTAMP"),
206
+ * // updatedAt: new Date("TIMESTAMP"),
207
+ * // status: "CREATING" || "ACTIVE" || "DELETING" || "FAILED",
208
+ * // },
209
+ * // ],
210
+ * // },
211
+ * // };
212
+ *
213
+ * ```
214
+ *
215
+ * @param UpdateMemoryCommandInput - {@link UpdateMemoryCommandInput}
216
+ * @returns {@link UpdateMemoryCommandOutput}
217
+ * @see {@link UpdateMemoryCommandInput} for command's `input` shape.
218
+ * @see {@link UpdateMemoryCommandOutput} for command's `response` shape.
219
+ * @see {@link BedrockAgentCoreControlClientResolvedConfig | config} for BedrockAgentCoreControlClient's `config` shape.
220
+ *
221
+ * @throws {@link AccessDeniedException} (client fault)
222
+ * <p>This exception is thrown when a request is denied per access permissions</p>
223
+ *
224
+ * @throws {@link ConflictException} (client fault)
225
+ * <p>This exception is thrown when there is a conflict performing an operation</p>
226
+ *
227
+ * @throws {@link ResourceNotFoundException} (client fault)
228
+ * <p>This exception is thrown when a resource referenced by the operation does not exist</p>
229
+ *
230
+ * @throws {@link ServiceException} (server fault)
231
+ * <p>An internal error occurred.</p>
232
+ *
233
+ * @throws {@link ServiceQuotaExceededException} (client fault)
234
+ * <p>This exception is thrown when a request is made beyond the service quota</p>
235
+ *
236
+ * @throws {@link ThrottledException} (client fault)
237
+ * <p>API rate limit has been exceeded.</p>
238
+ *
239
+ * @throws {@link ValidationException} (client fault)
240
+ * <p>The input fails to satisfy the constraints specified by the service.</p>
241
+ *
242
+ * @throws {@link BedrockAgentCoreControlServiceException}
243
+ * <p>Base exception class for all service exceptions from BedrockAgentCoreControl service.</p>
244
+ *
245
+ *
246
+ * @public
247
+ */
248
+ export declare class UpdateMemoryCommand extends UpdateMemoryCommand_base {
249
+ /** @internal type navigation helper, not in runtime. */
250
+ protected static __types: {
251
+ api: {
252
+ input: UpdateMemoryInput;
253
+ output: UpdateMemoryOutput;
254
+ };
255
+ sdk: {
256
+ input: UpdateMemoryCommandInput;
257
+ output: UpdateMemoryCommandOutput;
258
+ };
259
+ };
260
+ }
@@ -0,0 +1,217 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
+ import { UpdateOauth2CredentialProviderRequest, UpdateOauth2CredentialProviderResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateOauth2CredentialProviderCommand}.
14
+ */
15
+ export interface UpdateOauth2CredentialProviderCommandInput extends UpdateOauth2CredentialProviderRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateOauth2CredentialProviderCommand}.
21
+ */
22
+ export interface UpdateOauth2CredentialProviderCommandOutput extends UpdateOauth2CredentialProviderResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdateOauth2CredentialProviderCommand_base: {
25
+ new (input: UpdateOauth2CredentialProviderCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateOauth2CredentialProviderCommandInput, UpdateOauth2CredentialProviderCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdateOauth2CredentialProviderCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateOauth2CredentialProviderCommandInput, UpdateOauth2CredentialProviderCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates an existing OAuth2 credential provider.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { BedrockAgentCoreControlClient, UpdateOauth2CredentialProviderCommand } from "@aws-sdk/client-bedrock-agentcore-control"; // ES Modules import
35
+ * // const { BedrockAgentCoreControlClient, UpdateOauth2CredentialProviderCommand } = require("@aws-sdk/client-bedrock-agentcore-control"); // CommonJS import
36
+ * const client = new BedrockAgentCoreControlClient(config);
37
+ * const input = { // UpdateOauth2CredentialProviderRequest
38
+ * name: "STRING_VALUE", // required
39
+ * credentialProviderVendor: "GoogleOauth2" || "GithubOauth2" || "SlackOauth2" || "SalesforceOauth2" || "MicrosoftOauth2" || "CustomOauth2", // required
40
+ * oauth2ProviderConfigInput: { // Oauth2ProviderConfigInput Union: only one key present
41
+ * customOauth2ProviderConfig: { // CustomOauth2ProviderConfigInput
42
+ * oauthDiscovery: { // Oauth2Discovery Union: only one key present
43
+ * discoveryUrl: "STRING_VALUE",
44
+ * authorizationServerMetadata: { // Oauth2AuthorizationServerMetadata
45
+ * issuer: "STRING_VALUE", // required
46
+ * authorizationEndpoint: "STRING_VALUE", // required
47
+ * tokenEndpoint: "STRING_VALUE", // required
48
+ * responseTypes: [ // ResponseListType
49
+ * "STRING_VALUE",
50
+ * ],
51
+ * },
52
+ * },
53
+ * clientId: "STRING_VALUE", // required
54
+ * clientSecret: "STRING_VALUE", // required
55
+ * },
56
+ * googleOauth2ProviderConfig: { // GoogleOauth2ProviderConfigInput
57
+ * clientId: "STRING_VALUE", // required
58
+ * clientSecret: "STRING_VALUE", // required
59
+ * },
60
+ * githubOauth2ProviderConfig: { // GithubOauth2ProviderConfigInput
61
+ * clientId: "STRING_VALUE", // required
62
+ * clientSecret: "STRING_VALUE", // required
63
+ * },
64
+ * slackOauth2ProviderConfig: { // SlackOauth2ProviderConfigInput
65
+ * clientId: "STRING_VALUE", // required
66
+ * clientSecret: "STRING_VALUE", // required
67
+ * },
68
+ * salesforceOauth2ProviderConfig: { // SalesforceOauth2ProviderConfigInput
69
+ * clientId: "STRING_VALUE", // required
70
+ * clientSecret: "STRING_VALUE", // required
71
+ * },
72
+ * microsoftOauth2ProviderConfig: { // MicrosoftOauth2ProviderConfigInput
73
+ * clientId: "STRING_VALUE", // required
74
+ * clientSecret: "STRING_VALUE", // required
75
+ * },
76
+ * },
77
+ * };
78
+ * const command = new UpdateOauth2CredentialProviderCommand(input);
79
+ * const response = await client.send(command);
80
+ * // { // UpdateOauth2CredentialProviderResponse
81
+ * // clientSecretArn: { // Secret
82
+ * // secretArn: "STRING_VALUE", // required
83
+ * // },
84
+ * // name: "STRING_VALUE", // required
85
+ * // credentialProviderVendor: "GoogleOauth2" || "GithubOauth2" || "SlackOauth2" || "SalesforceOauth2" || "MicrosoftOauth2" || "CustomOauth2", // required
86
+ * // credentialProviderArn: "STRING_VALUE", // required
87
+ * // oauth2ProviderConfigOutput: { // Oauth2ProviderConfigOutput Union: only one key present
88
+ * // customOauth2ProviderConfig: { // CustomOauth2ProviderConfigOutput
89
+ * // oauthDiscovery: { // Oauth2Discovery Union: only one key present
90
+ * // discoveryUrl: "STRING_VALUE",
91
+ * // authorizationServerMetadata: { // Oauth2AuthorizationServerMetadata
92
+ * // issuer: "STRING_VALUE", // required
93
+ * // authorizationEndpoint: "STRING_VALUE", // required
94
+ * // tokenEndpoint: "STRING_VALUE", // required
95
+ * // responseTypes: [ // ResponseListType
96
+ * // "STRING_VALUE",
97
+ * // ],
98
+ * // },
99
+ * // },
100
+ * // },
101
+ * // googleOauth2ProviderConfig: { // GoogleOauth2ProviderConfigOutput
102
+ * // oauthDiscovery: {// Union: only one key present
103
+ * // discoveryUrl: "STRING_VALUE",
104
+ * // authorizationServerMetadata: {
105
+ * // issuer: "STRING_VALUE", // required
106
+ * // authorizationEndpoint: "STRING_VALUE", // required
107
+ * // tokenEndpoint: "STRING_VALUE", // required
108
+ * // responseTypes: [
109
+ * // "STRING_VALUE",
110
+ * // ],
111
+ * // },
112
+ * // },
113
+ * // },
114
+ * // githubOauth2ProviderConfig: { // GithubOauth2ProviderConfigOutput
115
+ * // oauthDiscovery: {// Union: only one key present
116
+ * // discoveryUrl: "STRING_VALUE",
117
+ * // authorizationServerMetadata: {
118
+ * // issuer: "STRING_VALUE", // required
119
+ * // authorizationEndpoint: "STRING_VALUE", // required
120
+ * // tokenEndpoint: "STRING_VALUE", // required
121
+ * // responseTypes: [
122
+ * // "STRING_VALUE",
123
+ * // ],
124
+ * // },
125
+ * // },
126
+ * // },
127
+ * // slackOauth2ProviderConfig: { // SlackOauth2ProviderConfigOutput
128
+ * // oauthDiscovery: {// Union: only one key present
129
+ * // discoveryUrl: "STRING_VALUE",
130
+ * // authorizationServerMetadata: {
131
+ * // issuer: "STRING_VALUE", // required
132
+ * // authorizationEndpoint: "STRING_VALUE", // required
133
+ * // tokenEndpoint: "STRING_VALUE", // required
134
+ * // responseTypes: [
135
+ * // "STRING_VALUE",
136
+ * // ],
137
+ * // },
138
+ * // },
139
+ * // },
140
+ * // salesforceOauth2ProviderConfig: { // SalesforceOauth2ProviderConfigOutput
141
+ * // oauthDiscovery: {// Union: only one key present
142
+ * // discoveryUrl: "STRING_VALUE",
143
+ * // authorizationServerMetadata: {
144
+ * // issuer: "STRING_VALUE", // required
145
+ * // authorizationEndpoint: "STRING_VALUE", // required
146
+ * // tokenEndpoint: "STRING_VALUE", // required
147
+ * // responseTypes: [
148
+ * // "STRING_VALUE",
149
+ * // ],
150
+ * // },
151
+ * // },
152
+ * // },
153
+ * // microsoftOauth2ProviderConfig: { // MicrosoftOauth2ProviderConfigOutput
154
+ * // oauthDiscovery: "<Oauth2Discovery>", // required
155
+ * // },
156
+ * // },
157
+ * // createdTime: new Date("TIMESTAMP"), // required
158
+ * // lastUpdatedTime: new Date("TIMESTAMP"), // required
159
+ * // };
160
+ *
161
+ * ```
162
+ *
163
+ * @param UpdateOauth2CredentialProviderCommandInput - {@link UpdateOauth2CredentialProviderCommandInput}
164
+ * @returns {@link UpdateOauth2CredentialProviderCommandOutput}
165
+ * @see {@link UpdateOauth2CredentialProviderCommandInput} for command's `input` shape.
166
+ * @see {@link UpdateOauth2CredentialProviderCommandOutput} for command's `response` shape.
167
+ * @see {@link BedrockAgentCoreControlClientResolvedConfig | config} for BedrockAgentCoreControlClient's `config` shape.
168
+ *
169
+ * @throws {@link AccessDeniedException} (client fault)
170
+ * <p>This exception is thrown when a request is denied per access permissions</p>
171
+ *
172
+ * @throws {@link ConflictException} (client fault)
173
+ * <p>This exception is thrown when there is a conflict performing an operation</p>
174
+ *
175
+ * @throws {@link DecryptionFailure} (client fault)
176
+ * <p>Exception thrown when decryption of a secret fails.</p>
177
+ *
178
+ * @throws {@link EncryptionFailure} (client fault)
179
+ * <p>Exception thrown when encryption of a secret fails.</p>
180
+ *
181
+ * @throws {@link InternalServerException} (server fault)
182
+ * <p>This exception is thrown if there was an unexpected error during processing of request</p>
183
+ *
184
+ * @throws {@link ResourceNotFoundException} (client fault)
185
+ * <p>This exception is thrown when a resource referenced by the operation does not exist</p>
186
+ *
187
+ * @throws {@link ServiceQuotaExceededException} (client fault)
188
+ * <p>This exception is thrown when a request is made beyond the service quota</p>
189
+ *
190
+ * @throws {@link ThrottlingException} (client fault)
191
+ * <p>This exception is thrown when the number of requests exceeds the limit</p>
192
+ *
193
+ * @throws {@link UnauthorizedException} (client fault)
194
+ * <p>This exception is thrown when the JWT bearer token is invalid or not found for OAuth bearer token based access</p>
195
+ *
196
+ * @throws {@link ValidationException} (client fault)
197
+ * <p>The input fails to satisfy the constraints specified by the service.</p>
198
+ *
199
+ * @throws {@link BedrockAgentCoreControlServiceException}
200
+ * <p>Base exception class for all service exceptions from BedrockAgentCoreControl service.</p>
201
+ *
202
+ *
203
+ * @public
204
+ */
205
+ export declare class UpdateOauth2CredentialProviderCommand extends UpdateOauth2CredentialProviderCommand_base {
206
+ /** @internal type navigation helper, not in runtime. */
207
+ protected static __types: {
208
+ api: {
209
+ input: UpdateOauth2CredentialProviderRequest;
210
+ output: UpdateOauth2CredentialProviderResponse;
211
+ };
212
+ sdk: {
213
+ input: UpdateOauth2CredentialProviderCommandInput;
214
+ output: UpdateOauth2CredentialProviderCommandOutput;
215
+ };
216
+ };
217
+ }
@@ -0,0 +1,99 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
+ import { UpdateWorkloadIdentityRequest, UpdateWorkloadIdentityResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateWorkloadIdentityCommand}.
14
+ */
15
+ export interface UpdateWorkloadIdentityCommandInput extends UpdateWorkloadIdentityRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateWorkloadIdentityCommand}.
21
+ */
22
+ export interface UpdateWorkloadIdentityCommandOutput extends UpdateWorkloadIdentityResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdateWorkloadIdentityCommand_base: {
25
+ new (input: UpdateWorkloadIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateWorkloadIdentityCommandInput, UpdateWorkloadIdentityCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: UpdateWorkloadIdentityCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateWorkloadIdentityCommandInput, UpdateWorkloadIdentityCommandOutput, BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates an existing workload identity.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { BedrockAgentCoreControlClient, UpdateWorkloadIdentityCommand } from "@aws-sdk/client-bedrock-agentcore-control"; // ES Modules import
35
+ * // const { BedrockAgentCoreControlClient, UpdateWorkloadIdentityCommand } = require("@aws-sdk/client-bedrock-agentcore-control"); // CommonJS import
36
+ * const client = new BedrockAgentCoreControlClient(config);
37
+ * const input = { // UpdateWorkloadIdentityRequest
38
+ * name: "STRING_VALUE", // required
39
+ * allowedResourceOauth2ReturnUrls: [ // ResourceOauth2ReturnUrlListType
40
+ * "STRING_VALUE",
41
+ * ],
42
+ * };
43
+ * const command = new UpdateWorkloadIdentityCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // UpdateWorkloadIdentityResponse
46
+ * // name: "STRING_VALUE", // required
47
+ * // workloadIdentityArn: "STRING_VALUE", // required
48
+ * // allowedResourceOauth2ReturnUrls: [ // ResourceOauth2ReturnUrlListType
49
+ * // "STRING_VALUE",
50
+ * // ],
51
+ * // createdTime: new Date("TIMESTAMP"), // required
52
+ * // lastUpdatedTime: new Date("TIMESTAMP"), // required
53
+ * // };
54
+ *
55
+ * ```
56
+ *
57
+ * @param UpdateWorkloadIdentityCommandInput - {@link UpdateWorkloadIdentityCommandInput}
58
+ * @returns {@link UpdateWorkloadIdentityCommandOutput}
59
+ * @see {@link UpdateWorkloadIdentityCommandInput} for command's `input` shape.
60
+ * @see {@link UpdateWorkloadIdentityCommandOutput} for command's `response` shape.
61
+ * @see {@link BedrockAgentCoreControlClientResolvedConfig | config} for BedrockAgentCoreControlClient's `config` shape.
62
+ *
63
+ * @throws {@link AccessDeniedException} (client fault)
64
+ * <p>This exception is thrown when a request is denied per access permissions</p>
65
+ *
66
+ * @throws {@link InternalServerException} (server fault)
67
+ * <p>This exception is thrown if there was an unexpected error during processing of request</p>
68
+ *
69
+ * @throws {@link ResourceNotFoundException} (client fault)
70
+ * <p>This exception is thrown when a resource referenced by the operation does not exist</p>
71
+ *
72
+ * @throws {@link ThrottlingException} (client fault)
73
+ * <p>This exception is thrown when the number of requests exceeds the limit</p>
74
+ *
75
+ * @throws {@link UnauthorizedException} (client fault)
76
+ * <p>This exception is thrown when the JWT bearer token is invalid or not found for OAuth bearer token based access</p>
77
+ *
78
+ * @throws {@link ValidationException} (client fault)
79
+ * <p>The input fails to satisfy the constraints specified by the service.</p>
80
+ *
81
+ * @throws {@link BedrockAgentCoreControlServiceException}
82
+ * <p>Base exception class for all service exceptions from BedrockAgentCoreControl service.</p>
83
+ *
84
+ *
85
+ * @public
86
+ */
87
+ export declare class UpdateWorkloadIdentityCommand extends UpdateWorkloadIdentityCommand_base {
88
+ /** @internal type navigation helper, not in runtime. */
89
+ protected static __types: {
90
+ api: {
91
+ input: UpdateWorkloadIdentityRequest;
92
+ output: UpdateWorkloadIdentityResponse;
93
+ };
94
+ sdk: {
95
+ input: UpdateWorkloadIdentityCommandInput;
96
+ output: UpdateWorkloadIdentityCommandOutput;
97
+ };
98
+ };
99
+ }
@@ -0,0 +1,51 @@
1
+ export * from "./CreateAgentRuntimeCommand";
2
+ export * from "./CreateAgentRuntimeEndpointCommand";
3
+ export * from "./CreateApiKeyCredentialProviderCommand";
4
+ export * from "./CreateBrowserCommand";
5
+ export * from "./CreateCodeInterpreterCommand";
6
+ export * from "./CreateGatewayCommand";
7
+ export * from "./CreateGatewayTargetCommand";
8
+ export * from "./CreateMemoryCommand";
9
+ export * from "./CreateOauth2CredentialProviderCommand";
10
+ export * from "./CreateWorkloadIdentityCommand";
11
+ export * from "./DeleteAgentRuntimeCommand";
12
+ export * from "./DeleteAgentRuntimeEndpointCommand";
13
+ export * from "./DeleteApiKeyCredentialProviderCommand";
14
+ export * from "./DeleteBrowserCommand";
15
+ export * from "./DeleteCodeInterpreterCommand";
16
+ export * from "./DeleteGatewayCommand";
17
+ export * from "./DeleteGatewayTargetCommand";
18
+ export * from "./DeleteMemoryCommand";
19
+ export * from "./DeleteOauth2CredentialProviderCommand";
20
+ export * from "./DeleteWorkloadIdentityCommand";
21
+ export * from "./GetAgentRuntimeCommand";
22
+ export * from "./GetAgentRuntimeEndpointCommand";
23
+ export * from "./GetApiKeyCredentialProviderCommand";
24
+ export * from "./GetBrowserCommand";
25
+ export * from "./GetCodeInterpreterCommand";
26
+ export * from "./GetGatewayCommand";
27
+ export * from "./GetGatewayTargetCommand";
28
+ export * from "./GetMemoryCommand";
29
+ export * from "./GetOauth2CredentialProviderCommand";
30
+ export * from "./GetTokenVaultCommand";
31
+ export * from "./GetWorkloadIdentityCommand";
32
+ export * from "./ListAgentRuntimeEndpointsCommand";
33
+ export * from "./ListAgentRuntimeVersionsCommand";
34
+ export * from "./ListAgentRuntimesCommand";
35
+ export * from "./ListApiKeyCredentialProvidersCommand";
36
+ export * from "./ListBrowsersCommand";
37
+ export * from "./ListCodeInterpretersCommand";
38
+ export * from "./ListGatewayTargetsCommand";
39
+ export * from "./ListGatewaysCommand";
40
+ export * from "./ListMemoriesCommand";
41
+ export * from "./ListOauth2CredentialProvidersCommand";
42
+ export * from "./ListWorkloadIdentitiesCommand";
43
+ export * from "./SetTokenVaultCMKCommand";
44
+ export * from "./UpdateAgentRuntimeCommand";
45
+ export * from "./UpdateAgentRuntimeEndpointCommand";
46
+ export * from "./UpdateApiKeyCredentialProviderCommand";
47
+ export * from "./UpdateGatewayCommand";
48
+ export * from "./UpdateGatewayTargetCommand";
49
+ export * from "./UpdateMemoryCommand";
50
+ export * from "./UpdateOauth2CredentialProviderCommand";
51
+ export * from "./UpdateWorkloadIdentityCommand";
@@ -0,0 +1,38 @@
1
+ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface ClientInputEndpointParameters {
6
+ region?: string | undefined | Provider<string | undefined>;
7
+ useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
8
+ useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
9
+ endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
10
+ }
11
+ export type ClientResolvedEndpointParameters = Omit<ClientInputEndpointParameters, "endpoint"> & {
12
+ defaultSigningName: string;
13
+ };
14
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientResolvedEndpointParameters;
15
+ export declare const commonParams: {
16
+ readonly UseFIPS: {
17
+ readonly type: "builtInParams";
18
+ readonly name: "useFipsEndpoint";
19
+ };
20
+ readonly Endpoint: {
21
+ readonly type: "builtInParams";
22
+ readonly name: "endpoint";
23
+ };
24
+ readonly Region: {
25
+ readonly type: "builtInParams";
26
+ readonly name: "region";
27
+ };
28
+ readonly UseDualStack: {
29
+ readonly type: "builtInParams";
30
+ readonly name: "useDualstackEndpoint";
31
+ };
32
+ };
33
+ export interface EndpointParameters extends __EndpointParameters {
34
+ Region?: string | undefined;
35
+ UseDualStack?: boolean | undefined;
36
+ UseFIPS?: boolean | undefined;
37
+ Endpoint?: string | undefined;
38
+ }