@aws-sdk/client-odb 3.841.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 (291) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +525 -0
  3. package/dist-cjs/Odb.js +91 -0
  4. package/dist-cjs/OdbClient.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/AcceptMarketplaceRegistrationCommand.js +26 -0
  8. package/dist-cjs/commands/CreateCloudAutonomousVmClusterCommand.js +26 -0
  9. package/dist-cjs/commands/CreateCloudExadataInfrastructureCommand.js +27 -0
  10. package/dist-cjs/commands/CreateCloudVmClusterCommand.js +26 -0
  11. package/dist-cjs/commands/CreateOdbNetworkCommand.js +26 -0
  12. package/dist-cjs/commands/CreateOdbPeeringConnectionCommand.js +26 -0
  13. package/dist-cjs/commands/DeleteCloudAutonomousVmClusterCommand.js +26 -0
  14. package/dist-cjs/commands/DeleteCloudExadataInfrastructureCommand.js +26 -0
  15. package/dist-cjs/commands/DeleteCloudVmClusterCommand.js +26 -0
  16. package/dist-cjs/commands/DeleteOdbNetworkCommand.js +26 -0
  17. package/dist-cjs/commands/DeleteOdbPeeringConnectionCommand.js +26 -0
  18. package/dist-cjs/commands/GetCloudAutonomousVmClusterCommand.js +26 -0
  19. package/dist-cjs/commands/GetCloudExadataInfrastructureCommand.js +27 -0
  20. package/dist-cjs/commands/GetCloudExadataInfrastructureUnallocatedResourcesCommand.js +26 -0
  21. package/dist-cjs/commands/GetCloudVmClusterCommand.js +27 -0
  22. package/dist-cjs/commands/GetDbNodeCommand.js +26 -0
  23. package/dist-cjs/commands/GetDbServerCommand.js +26 -0
  24. package/dist-cjs/commands/GetOciOnboardingStatusCommand.js +26 -0
  25. package/dist-cjs/commands/GetOdbNetworkCommand.js +26 -0
  26. package/dist-cjs/commands/GetOdbPeeringConnectionCommand.js +26 -0
  27. package/dist-cjs/commands/InitializeServiceCommand.js +26 -0
  28. package/dist-cjs/commands/ListAutonomousVirtualMachinesCommand.js +26 -0
  29. package/dist-cjs/commands/ListCloudAutonomousVmClustersCommand.js +26 -0
  30. package/dist-cjs/commands/ListCloudExadataInfrastructuresCommand.js +27 -0
  31. package/dist-cjs/commands/ListCloudVmClustersCommand.js +27 -0
  32. package/dist-cjs/commands/ListDbNodesCommand.js +26 -0
  33. package/dist-cjs/commands/ListDbServersCommand.js +26 -0
  34. package/dist-cjs/commands/ListDbSystemShapesCommand.js +26 -0
  35. package/dist-cjs/commands/ListGiVersionsCommand.js +26 -0
  36. package/dist-cjs/commands/ListOdbNetworksCommand.js +26 -0
  37. package/dist-cjs/commands/ListOdbPeeringConnectionsCommand.js +26 -0
  38. package/dist-cjs/commands/ListSystemVersionsCommand.js +26 -0
  39. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  40. package/dist-cjs/commands/RebootDbNodeCommand.js +26 -0
  41. package/dist-cjs/commands/StartDbNodeCommand.js +26 -0
  42. package/dist-cjs/commands/StopDbNodeCommand.js +26 -0
  43. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  44. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  45. package/dist-cjs/commands/UpdateCloudExadataInfrastructureCommand.js +26 -0
  46. package/dist-cjs/commands/UpdateOdbNetworkCommand.js +26 -0
  47. package/dist-cjs/commands/index.js +43 -0
  48. package/dist-cjs/endpoint/EndpointParameters.js +17 -0
  49. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  50. package/dist-cjs/endpoint/ruleset.js +7 -0
  51. package/dist-cjs/extensionConfiguration.js +2 -0
  52. package/dist-cjs/index.js +11 -0
  53. package/dist-cjs/models/OdbServiceException.js +12 -0
  54. package/dist-cjs/models/index.js +4 -0
  55. package/dist-cjs/models/models_0.js +303 -0
  56. package/dist-cjs/pagination/Interfaces.js +2 -0
  57. package/dist-cjs/pagination/ListAutonomousVirtualMachinesPaginator.js +7 -0
  58. package/dist-cjs/pagination/ListCloudAutonomousVmClustersPaginator.js +7 -0
  59. package/dist-cjs/pagination/ListCloudExadataInfrastructuresPaginator.js +7 -0
  60. package/dist-cjs/pagination/ListCloudVmClustersPaginator.js +7 -0
  61. package/dist-cjs/pagination/ListDbNodesPaginator.js +7 -0
  62. package/dist-cjs/pagination/ListDbServersPaginator.js +7 -0
  63. package/dist-cjs/pagination/ListDbSystemShapesPaginator.js +7 -0
  64. package/dist-cjs/pagination/ListGiVersionsPaginator.js +7 -0
  65. package/dist-cjs/pagination/ListOdbNetworksPaginator.js +7 -0
  66. package/dist-cjs/pagination/ListOdbPeeringConnectionsPaginator.js +7 -0
  67. package/dist-cjs/pagination/ListSystemVersionsPaginator.js +7 -0
  68. package/dist-cjs/pagination/index.js +15 -0
  69. package/dist-cjs/protocols/Aws_json1_0.js +1698 -0
  70. package/dist-cjs/runtimeConfig.browser.js +39 -0
  71. package/dist-cjs/runtimeConfig.js +56 -0
  72. package/dist-cjs/runtimeConfig.native.js +15 -0
  73. package/dist-cjs/runtimeConfig.shared.js +34 -0
  74. package/dist-cjs/runtimeExtensions.js +13 -0
  75. package/dist-es/Odb.js +87 -0
  76. package/dist-es/OdbClient.js +48 -0
  77. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  78. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  79. package/dist-es/commands/AcceptMarketplaceRegistrationCommand.js +22 -0
  80. package/dist-es/commands/CreateCloudAutonomousVmClusterCommand.js +22 -0
  81. package/dist-es/commands/CreateCloudExadataInfrastructureCommand.js +23 -0
  82. package/dist-es/commands/CreateCloudVmClusterCommand.js +22 -0
  83. package/dist-es/commands/CreateOdbNetworkCommand.js +22 -0
  84. package/dist-es/commands/CreateOdbPeeringConnectionCommand.js +22 -0
  85. package/dist-es/commands/DeleteCloudAutonomousVmClusterCommand.js +22 -0
  86. package/dist-es/commands/DeleteCloudExadataInfrastructureCommand.js +22 -0
  87. package/dist-es/commands/DeleteCloudVmClusterCommand.js +22 -0
  88. package/dist-es/commands/DeleteOdbNetworkCommand.js +22 -0
  89. package/dist-es/commands/DeleteOdbPeeringConnectionCommand.js +22 -0
  90. package/dist-es/commands/GetCloudAutonomousVmClusterCommand.js +22 -0
  91. package/dist-es/commands/GetCloudExadataInfrastructureCommand.js +23 -0
  92. package/dist-es/commands/GetCloudExadataInfrastructureUnallocatedResourcesCommand.js +22 -0
  93. package/dist-es/commands/GetCloudVmClusterCommand.js +23 -0
  94. package/dist-es/commands/GetDbNodeCommand.js +22 -0
  95. package/dist-es/commands/GetDbServerCommand.js +22 -0
  96. package/dist-es/commands/GetOciOnboardingStatusCommand.js +22 -0
  97. package/dist-es/commands/GetOdbNetworkCommand.js +22 -0
  98. package/dist-es/commands/GetOdbPeeringConnectionCommand.js +22 -0
  99. package/dist-es/commands/InitializeServiceCommand.js +22 -0
  100. package/dist-es/commands/ListAutonomousVirtualMachinesCommand.js +22 -0
  101. package/dist-es/commands/ListCloudAutonomousVmClustersCommand.js +22 -0
  102. package/dist-es/commands/ListCloudExadataInfrastructuresCommand.js +23 -0
  103. package/dist-es/commands/ListCloudVmClustersCommand.js +23 -0
  104. package/dist-es/commands/ListDbNodesCommand.js +22 -0
  105. package/dist-es/commands/ListDbServersCommand.js +22 -0
  106. package/dist-es/commands/ListDbSystemShapesCommand.js +22 -0
  107. package/dist-es/commands/ListGiVersionsCommand.js +22 -0
  108. package/dist-es/commands/ListOdbNetworksCommand.js +22 -0
  109. package/dist-es/commands/ListOdbPeeringConnectionsCommand.js +22 -0
  110. package/dist-es/commands/ListSystemVersionsCommand.js +22 -0
  111. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  112. package/dist-es/commands/RebootDbNodeCommand.js +22 -0
  113. package/dist-es/commands/StartDbNodeCommand.js +22 -0
  114. package/dist-es/commands/StopDbNodeCommand.js +22 -0
  115. package/dist-es/commands/TagResourceCommand.js +22 -0
  116. package/dist-es/commands/UntagResourceCommand.js +22 -0
  117. package/dist-es/commands/UpdateCloudExadataInfrastructureCommand.js +22 -0
  118. package/dist-es/commands/UpdateOdbNetworkCommand.js +22 -0
  119. package/dist-es/commands/index.js +40 -0
  120. package/dist-es/endpoint/EndpointParameters.js +13 -0
  121. package/dist-es/endpoint/endpointResolver.js +14 -0
  122. package/dist-es/endpoint/ruleset.js +4 -0
  123. package/dist-es/extensionConfiguration.js +1 -0
  124. package/dist-es/index.js +6 -0
  125. package/dist-es/models/OdbServiceException.js +8 -0
  126. package/dist-es/models/index.js +1 -0
  127. package/dist-es/models/models_0.js +283 -0
  128. package/dist-es/pagination/Interfaces.js +1 -0
  129. package/dist-es/pagination/ListAutonomousVirtualMachinesPaginator.js +4 -0
  130. package/dist-es/pagination/ListCloudAutonomousVmClustersPaginator.js +4 -0
  131. package/dist-es/pagination/ListCloudExadataInfrastructuresPaginator.js +4 -0
  132. package/dist-es/pagination/ListCloudVmClustersPaginator.js +4 -0
  133. package/dist-es/pagination/ListDbNodesPaginator.js +4 -0
  134. package/dist-es/pagination/ListDbServersPaginator.js +4 -0
  135. package/dist-es/pagination/ListDbSystemShapesPaginator.js +4 -0
  136. package/dist-es/pagination/ListGiVersionsPaginator.js +4 -0
  137. package/dist-es/pagination/ListOdbNetworksPaginator.js +4 -0
  138. package/dist-es/pagination/ListOdbPeeringConnectionsPaginator.js +4 -0
  139. package/dist-es/pagination/ListSystemVersionsPaginator.js +4 -0
  140. package/dist-es/pagination/index.js +12 -0
  141. package/dist-es/protocols/Aws_json1_0.js +1614 -0
  142. package/dist-es/runtimeConfig.browser.js +34 -0
  143. package/dist-es/runtimeConfig.js +51 -0
  144. package/dist-es/runtimeConfig.native.js +11 -0
  145. package/dist-es/runtimeConfig.shared.js +30 -0
  146. package/dist-es/runtimeExtensions.js +9 -0
  147. package/dist-types/Odb.d.ts +299 -0
  148. package/dist-types/OdbClient.d.ts +227 -0
  149. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  150. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  151. package/dist-types/commands/AcceptMarketplaceRegistrationCommand.d.ts +85 -0
  152. package/dist-types/commands/CreateCloudAutonomousVmClusterCommand.d.ts +139 -0
  153. package/dist-types/commands/CreateCloudExadataInfrastructureCommand.d.ts +133 -0
  154. package/dist-types/commands/CreateCloudVmClusterCommand.d.ts +126 -0
  155. package/dist-types/commands/CreateOdbNetworkCommand.d.ts +106 -0
  156. package/dist-types/commands/CreateOdbPeeringConnectionCommand.d.ts +99 -0
  157. package/dist-types/commands/DeleteCloudAutonomousVmClusterCommand.d.ts +85 -0
  158. package/dist-types/commands/DeleteCloudExadataInfrastructureCommand.d.ts +88 -0
  159. package/dist-types/commands/DeleteCloudVmClusterCommand.d.ts +85 -0
  160. package/dist-types/commands/DeleteOdbNetworkCommand.d.ts +86 -0
  161. package/dist-types/commands/DeleteOdbPeeringConnectionCommand.d.ts +85 -0
  162. package/dist-types/commands/GetCloudAutonomousVmClusterCommand.d.ts +162 -0
  163. package/dist-types/commands/GetCloudExadataInfrastructureCommand.d.ts +153 -0
  164. package/dist-types/commands/GetCloudExadataInfrastructureUnallocatedResourcesCommand.d.ts +103 -0
  165. package/dist-types/commands/GetCloudVmClusterCommand.d.ts +151 -0
  166. package/dist-types/commands/GetDbNodeCommand.d.ts +117 -0
  167. package/dist-types/commands/GetDbServerCommand.d.ts +120 -0
  168. package/dist-types/commands/GetOciOnboardingStatusCommand.d.ts +84 -0
  169. package/dist-types/commands/GetOdbNetworkCommand.d.ts +140 -0
  170. package/dist-types/commands/GetOdbPeeringConnectionCommand.d.ts +98 -0
  171. package/dist-types/commands/InitializeServiceCommand.d.ts +80 -0
  172. package/dist-types/commands/ListAutonomousVirtualMachinesCommand.d.ts +106 -0
  173. package/dist-types/commands/ListCloudAutonomousVmClustersCommand.d.ts +167 -0
  174. package/dist-types/commands/ListCloudExadataInfrastructuresCommand.d.ts +154 -0
  175. package/dist-types/commands/ListCloudVmClustersCommand.d.ts +156 -0
  176. package/dist-types/commands/ListDbNodesCommand.d.ts +119 -0
  177. package/dist-types/commands/ListDbServersCommand.d.ts +124 -0
  178. package/dist-types/commands/ListDbSystemShapesCommand.d.ts +115 -0
  179. package/dist-types/commands/ListGiVersionsCommand.d.ts +91 -0
  180. package/dist-types/commands/ListOdbNetworksCommand.d.ts +141 -0
  181. package/dist-types/commands/ListOdbPeeringConnectionsCommand.d.ts +103 -0
  182. package/dist-types/commands/ListSystemVersionsCommand.d.ts +99 -0
  183. package/dist-types/commands/ListTagsForResourceCommand.d.ts +77 -0
  184. package/dist-types/commands/RebootDbNodeCommand.d.ts +90 -0
  185. package/dist-types/commands/StartDbNodeCommand.d.ts +90 -0
  186. package/dist-types/commands/StopDbNodeCommand.d.ts +90 -0
  187. package/dist-types/commands/TagResourceCommand.d.ts +79 -0
  188. package/dist-types/commands/UntagResourceCommand.d.ts +76 -0
  189. package/dist-types/commands/UpdateCloudExadataInfrastructureCommand.d.ts +117 -0
  190. package/dist-types/commands/UpdateOdbNetworkCommand.d.ts +103 -0
  191. package/dist-types/commands/index.d.ts +40 -0
  192. package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
  193. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  194. package/dist-types/endpoint/ruleset.d.ts +2 -0
  195. package/dist-types/extensionConfiguration.d.ts +9 -0
  196. package/dist-types/index.d.ts +14 -0
  197. package/dist-types/models/OdbServiceException.d.ts +14 -0
  198. package/dist-types/models/index.d.ts +1 -0
  199. package/dist-types/models/models_0.d.ts +4654 -0
  200. package/dist-types/pagination/Interfaces.d.ts +8 -0
  201. package/dist-types/pagination/ListAutonomousVirtualMachinesPaginator.d.ts +7 -0
  202. package/dist-types/pagination/ListCloudAutonomousVmClustersPaginator.d.ts +7 -0
  203. package/dist-types/pagination/ListCloudExadataInfrastructuresPaginator.d.ts +7 -0
  204. package/dist-types/pagination/ListCloudVmClustersPaginator.d.ts +7 -0
  205. package/dist-types/pagination/ListDbNodesPaginator.d.ts +7 -0
  206. package/dist-types/pagination/ListDbServersPaginator.d.ts +7 -0
  207. package/dist-types/pagination/ListDbSystemShapesPaginator.d.ts +7 -0
  208. package/dist-types/pagination/ListGiVersionsPaginator.d.ts +7 -0
  209. package/dist-types/pagination/ListOdbNetworksPaginator.d.ts +7 -0
  210. package/dist-types/pagination/ListOdbPeeringConnectionsPaginator.d.ts +7 -0
  211. package/dist-types/pagination/ListSystemVersionsPaginator.d.ts +7 -0
  212. package/dist-types/pagination/index.d.ts +12 -0
  213. package/dist-types/protocols/Aws_json1_0.d.ts +362 -0
  214. package/dist-types/runtimeConfig.browser.d.ts +50 -0
  215. package/dist-types/runtimeConfig.d.ts +50 -0
  216. package/dist-types/runtimeConfig.native.d.ts +49 -0
  217. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  218. package/dist-types/runtimeExtensions.d.ts +17 -0
  219. package/dist-types/ts3.4/Odb.d.ts +700 -0
  220. package/dist-types/ts3.4/OdbClient.d.ts +356 -0
  221. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  222. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +46 -0
  223. package/dist-types/ts3.4/commands/AcceptMarketplaceRegistrationCommand.d.ts +51 -0
  224. package/dist-types/ts3.4/commands/CreateCloudAutonomousVmClusterCommand.d.ts +51 -0
  225. package/dist-types/ts3.4/commands/CreateCloudExadataInfrastructureCommand.d.ts +51 -0
  226. package/dist-types/ts3.4/commands/CreateCloudVmClusterCommand.d.ts +51 -0
  227. package/dist-types/ts3.4/commands/CreateOdbNetworkCommand.d.ts +50 -0
  228. package/dist-types/ts3.4/commands/CreateOdbPeeringConnectionCommand.d.ts +51 -0
  229. package/dist-types/ts3.4/commands/DeleteCloudAutonomousVmClusterCommand.d.ts +51 -0
  230. package/dist-types/ts3.4/commands/DeleteCloudExadataInfrastructureCommand.d.ts +51 -0
  231. package/dist-types/ts3.4/commands/DeleteCloudVmClusterCommand.d.ts +51 -0
  232. package/dist-types/ts3.4/commands/DeleteOdbNetworkCommand.d.ts +50 -0
  233. package/dist-types/ts3.4/commands/DeleteOdbPeeringConnectionCommand.d.ts +51 -0
  234. package/dist-types/ts3.4/commands/GetCloudAutonomousVmClusterCommand.d.ts +51 -0
  235. package/dist-types/ts3.4/commands/GetCloudExadataInfrastructureCommand.d.ts +51 -0
  236. package/dist-types/ts3.4/commands/GetCloudExadataInfrastructureUnallocatedResourcesCommand.d.ts +51 -0
  237. package/dist-types/ts3.4/commands/GetCloudVmClusterCommand.d.ts +50 -0
  238. package/dist-types/ts3.4/commands/GetDbNodeCommand.d.ts +47 -0
  239. package/dist-types/ts3.4/commands/GetDbServerCommand.d.ts +47 -0
  240. package/dist-types/ts3.4/commands/GetOciOnboardingStatusCommand.d.ts +51 -0
  241. package/dist-types/ts3.4/commands/GetOdbNetworkCommand.d.ts +47 -0
  242. package/dist-types/ts3.4/commands/GetOdbPeeringConnectionCommand.d.ts +51 -0
  243. package/dist-types/ts3.4/commands/InitializeServiceCommand.d.ts +50 -0
  244. package/dist-types/ts3.4/commands/ListAutonomousVirtualMachinesCommand.d.ts +51 -0
  245. package/dist-types/ts3.4/commands/ListCloudAutonomousVmClustersCommand.d.ts +51 -0
  246. package/dist-types/ts3.4/commands/ListCloudExadataInfrastructuresCommand.d.ts +51 -0
  247. package/dist-types/ts3.4/commands/ListCloudVmClustersCommand.d.ts +51 -0
  248. package/dist-types/ts3.4/commands/ListDbNodesCommand.d.ts +47 -0
  249. package/dist-types/ts3.4/commands/ListDbServersCommand.d.ts +47 -0
  250. package/dist-types/ts3.4/commands/ListDbSystemShapesCommand.d.ts +51 -0
  251. package/dist-types/ts3.4/commands/ListGiVersionsCommand.d.ts +47 -0
  252. package/dist-types/ts3.4/commands/ListOdbNetworksCommand.d.ts +50 -0
  253. package/dist-types/ts3.4/commands/ListOdbPeeringConnectionsCommand.d.ts +51 -0
  254. package/dist-types/ts3.4/commands/ListSystemVersionsCommand.d.ts +51 -0
  255. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  256. package/dist-types/ts3.4/commands/RebootDbNodeCommand.d.ts +47 -0
  257. package/dist-types/ts3.4/commands/StartDbNodeCommand.d.ts +47 -0
  258. package/dist-types/ts3.4/commands/StopDbNodeCommand.d.ts +47 -0
  259. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  260. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  261. package/dist-types/ts3.4/commands/UpdateCloudExadataInfrastructureCommand.d.ts +51 -0
  262. package/dist-types/ts3.4/commands/UpdateOdbNetworkCommand.d.ts +50 -0
  263. package/dist-types/ts3.4/commands/index.d.ts +40 -0
  264. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  265. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  266. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  267. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  268. package/dist-types/ts3.4/index.d.ts +9 -0
  269. package/dist-types/ts3.4/models/OdbServiceException.d.ts +9 -0
  270. package/dist-types/ts3.4/models/index.d.ts +1 -0
  271. package/dist-types/ts3.4/models/models_0.d.ts +1187 -0
  272. package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  273. package/dist-types/ts3.4/pagination/ListAutonomousVirtualMachinesPaginator.d.ts +11 -0
  274. package/dist-types/ts3.4/pagination/ListCloudAutonomousVmClustersPaginator.d.ts +11 -0
  275. package/dist-types/ts3.4/pagination/ListCloudExadataInfrastructuresPaginator.d.ts +11 -0
  276. package/dist-types/ts3.4/pagination/ListCloudVmClustersPaginator.d.ts +11 -0
  277. package/dist-types/ts3.4/pagination/ListDbNodesPaginator.d.ts +11 -0
  278. package/dist-types/ts3.4/pagination/ListDbServersPaginator.d.ts +11 -0
  279. package/dist-types/ts3.4/pagination/ListDbSystemShapesPaginator.d.ts +11 -0
  280. package/dist-types/ts3.4/pagination/ListGiVersionsPaginator.d.ts +11 -0
  281. package/dist-types/ts3.4/pagination/ListOdbNetworksPaginator.d.ts +11 -0
  282. package/dist-types/ts3.4/pagination/ListOdbPeeringConnectionsPaginator.d.ts +11 -0
  283. package/dist-types/ts3.4/pagination/ListSystemVersionsPaginator.d.ts +11 -0
  284. package/dist-types/ts3.4/pagination/index.d.ts +12 -0
  285. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +485 -0
  286. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +92 -0
  287. package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
  288. package/dist-types/ts3.4/runtimeConfig.native.d.ts +96 -0
  289. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  290. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  291. package/package.json +101 -0
@@ -0,0 +1,92 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { OdbClientConfig } from "./OdbClient";
3
+ export declare const getRuntimeConfig: (config: OdbClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ _: unknown
13
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
14
+ defaultUserAgentProvider: (
15
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
16
+ ) => Promise<import("@smithy/types").UserAgent>;
17
+ maxAttempts: number | import("@smithy/types").Provider<number>;
18
+ region: string | import("@smithy/types").Provider<any>;
19
+ requestHandler:
20
+ | import("@smithy/protocol-http").HttpHandler<any>
21
+ | RequestHandler;
22
+ retryMode: string | import("@smithy/types").Provider<string>;
23
+ sha256: import("@smithy/types").HashConstructor;
24
+ streamCollector: import("@smithy/types").StreamCollector;
25
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
26
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
27
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
28
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
29
+ apiVersion: string;
30
+ cacheMiddleware?: boolean | undefined;
31
+ urlParser: import("@smithy/types").UrlParser;
32
+ base64Decoder: import("@smithy/types").Decoder;
33
+ base64Encoder: (_input: Uint8Array | string) => string;
34
+ utf8Decoder: import("@smithy/types").Decoder;
35
+ utf8Encoder: (input: Uint8Array | string) => string;
36
+ disableHostPrefix: boolean;
37
+ serviceId: string;
38
+ profile?: string;
39
+ logger: import("@smithy/types").Logger;
40
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ customUserAgent?: string | import("@smithy/types").UserAgent;
42
+ userAgentAppId?:
43
+ | string
44
+ | undefined
45
+ | import("@smithy/types").Provider<string | undefined>;
46
+ retryStrategy?:
47
+ | import("@smithy/types").RetryStrategy
48
+ | import("@smithy/types").RetryStrategyV2;
49
+ endpoint?:
50
+ | ((
51
+ | string
52
+ | import("@smithy/types").Endpoint
53
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
54
+ | import("@smithy/types").EndpointV2
55
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
56
+ ) &
57
+ (
58
+ | string
59
+ | import("@smithy/types").Provider<string>
60
+ | import("@smithy/types").Endpoint
61
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
62
+ | import("@smithy/types").EndpointV2
63
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
64
+ ))
65
+ | undefined;
66
+ endpointProvider: (
67
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
68
+ context?: {
69
+ logger?: import("@smithy/types").Logger;
70
+ }
71
+ ) => import("@smithy/types").EndpointV2;
72
+ tls?: boolean;
73
+ serviceConfiguredEndpoint?: never;
74
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
75
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
76
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").OdbHttpAuthSchemeProvider;
77
+ credentials?:
78
+ | import("@smithy/types").AwsCredentialIdentity
79
+ | import("@smithy/types").AwsCredentialIdentityProvider;
80
+ signer?:
81
+ | import("@smithy/types").RequestSigner
82
+ | ((
83
+ authScheme?: import("@smithy/types").AuthScheme
84
+ ) => Promise<import("@smithy/types").RequestSigner>);
85
+ signingEscapePath?: boolean;
86
+ systemClockOffset?: number;
87
+ signingRegion?: string;
88
+ signerConstructor?: new (
89
+ options: import("@smithy/signature-v4").SignatureV4Init &
90
+ import("@smithy/signature-v4").SignatureV4CryptoInit
91
+ ) => import("@smithy/types").RequestSigner;
92
+ };
@@ -0,0 +1,89 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { OdbClientConfig } from "./OdbClient";
3
+ export declare const getRuntimeConfig: (config: OdbClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider:
11
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
12
+ | ((
13
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
14
+ ) => import("@smithy/types").MemoizedProvider<
15
+ import("@smithy/types").AwsCredentialIdentity
16
+ >);
17
+ defaultUserAgentProvider: (
18
+ config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
19
+ ) => Promise<import("@smithy/types").UserAgent>;
20
+ maxAttempts: number | import("@smithy/types").Provider<number>;
21
+ region: string | import("@smithy/types").Provider<string>;
22
+ requestHandler:
23
+ | RequestHandler
24
+ | import("@smithy/protocol-http").HttpHandler<any>;
25
+ retryMode: string | import("@smithy/types").Provider<string>;
26
+ sha256: import("@smithy/types").HashConstructor;
27
+ streamCollector: import("@smithy/types").StreamCollector;
28
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
29
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
30
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
31
+ apiVersion: string;
32
+ cacheMiddleware?: boolean | undefined;
33
+ urlParser: import("@smithy/types").UrlParser;
34
+ base64Decoder: import("@smithy/types").Decoder;
35
+ base64Encoder: (_input: Uint8Array | string) => string;
36
+ utf8Decoder: import("@smithy/types").Decoder;
37
+ utf8Encoder: (input: Uint8Array | string) => string;
38
+ disableHostPrefix: boolean;
39
+ serviceId: string;
40
+ profile?: string;
41
+ logger: import("@smithy/types").Logger;
42
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ customUserAgent?: string | import("@smithy/types").UserAgent;
44
+ retryStrategy?:
45
+ | import("@smithy/types").RetryStrategy
46
+ | import("@smithy/types").RetryStrategyV2;
47
+ endpoint?:
48
+ | ((
49
+ | string
50
+ | import("@smithy/types").Endpoint
51
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
52
+ | import("@smithy/types").EndpointV2
53
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
54
+ ) &
55
+ (
56
+ | string
57
+ | import("@smithy/types").Provider<string>
58
+ | import("@smithy/types").Endpoint
59
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
60
+ | import("@smithy/types").EndpointV2
61
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
62
+ ))
63
+ | undefined;
64
+ endpointProvider: (
65
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
66
+ context?: {
67
+ logger?: import("@smithy/types").Logger;
68
+ }
69
+ ) => import("@smithy/types").EndpointV2;
70
+ tls?: boolean;
71
+ serviceConfiguredEndpoint?: never;
72
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
73
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").OdbHttpAuthSchemeProvider;
74
+ credentials?:
75
+ | import("@smithy/types").AwsCredentialIdentity
76
+ | import("@smithy/types").AwsCredentialIdentityProvider;
77
+ signer?:
78
+ | import("@smithy/types").RequestSigner
79
+ | ((
80
+ authScheme?: import("@smithy/types").AuthScheme
81
+ ) => Promise<import("@smithy/types").RequestSigner>);
82
+ signingEscapePath?: boolean;
83
+ systemClockOffset?: number;
84
+ signingRegion?: string;
85
+ signerConstructor?: new (
86
+ options: import("@smithy/signature-v4").SignatureV4Init &
87
+ import("@smithy/signature-v4").SignatureV4CryptoInit
88
+ ) => import("@smithy/types").RequestSigner;
89
+ };
@@ -0,0 +1,96 @@
1
+ import { OdbClientConfig } from "./OdbClient";
2
+ export declare const getRuntimeConfig: (config: OdbClientConfig) => {
3
+ runtime: string;
4
+ sha256: import("@smithy/types").HashConstructor;
5
+ requestHandler:
6
+ | import("@smithy/types").NodeHttpHandlerOptions
7
+ | import("@smithy/types").FetchHttpHandlerOptions
8
+ | Record<string, unknown>
9
+ | import("@smithy/protocol-http").HttpHandler<any>
10
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
11
+ apiVersion: string;
12
+ cacheMiddleware?: boolean;
13
+ urlParser: import("@smithy/types").UrlParser;
14
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
15
+ streamCollector: import("@smithy/types").StreamCollector;
16
+ base64Decoder: import("@smithy/types").Decoder;
17
+ base64Encoder: (_input: Uint8Array | string) => string;
18
+ utf8Decoder: import("@smithy/types").Decoder;
19
+ utf8Encoder: (input: Uint8Array | string) => string;
20
+ disableHostPrefix: boolean;
21
+ serviceId: string;
22
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
23
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
24
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
25
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
26
+ region: string | import("@smithy/types").Provider<any>;
27
+ profile?: string;
28
+ defaultUserAgentProvider: (
29
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
30
+ ) => Promise<import("@smithy/types").UserAgent>;
31
+ credentialDefaultProvider:
32
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
33
+ | ((
34
+ _: unknown
35
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
36
+ maxAttempts: number | import("@smithy/types").Provider<number>;
37
+ retryMode: string | import("@smithy/types").Provider<string>;
38
+ logger: import("@smithy/types").Logger;
39
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
40
+ defaultsMode:
41
+ | import("@smithy/smithy-client").DefaultsMode
42
+ | import("@smithy/types").Provider<
43
+ import("@smithy/smithy-client").DefaultsMode
44
+ >;
45
+ customUserAgent?: string | import("@smithy/types").UserAgent;
46
+ userAgentAppId?:
47
+ | string
48
+ | undefined
49
+ | import("@smithy/types").Provider<string | undefined>;
50
+ retryStrategy?:
51
+ | import("@smithy/types").RetryStrategy
52
+ | import("@smithy/types").RetryStrategyV2;
53
+ endpoint?:
54
+ | ((
55
+ | string
56
+ | import("@smithy/types").Endpoint
57
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
58
+ | import("@smithy/types").EndpointV2
59
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
60
+ ) &
61
+ (
62
+ | string
63
+ | import("@smithy/types").Provider<string>
64
+ | import("@smithy/types").Endpoint
65
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
66
+ | import("@smithy/types").EndpointV2
67
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
68
+ ))
69
+ | undefined;
70
+ endpointProvider: (
71
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
72
+ context?: {
73
+ logger?: import("@smithy/types").Logger;
74
+ }
75
+ ) => import("@smithy/types").EndpointV2;
76
+ tls?: boolean;
77
+ serviceConfiguredEndpoint?: never;
78
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
79
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
80
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").OdbHttpAuthSchemeProvider;
81
+ credentials?:
82
+ | import("@smithy/types").AwsCredentialIdentity
83
+ | import("@smithy/types").AwsCredentialIdentityProvider;
84
+ signer?:
85
+ | import("@smithy/types").RequestSigner
86
+ | ((
87
+ authScheme?: import("@smithy/types").AuthScheme
88
+ ) => Promise<import("@smithy/types").RequestSigner>);
89
+ signingEscapePath?: boolean;
90
+ systemClockOffset?: number;
91
+ signingRegion?: string;
92
+ signerConstructor?: new (
93
+ options: import("@smithy/signature-v4").SignatureV4Init &
94
+ import("@smithy/signature-v4").SignatureV4CryptoInit
95
+ ) => import("@smithy/types").RequestSigner;
96
+ };
@@ -0,0 +1,21 @@
1
+ import { OdbClientConfig } from "./OdbClient";
2
+ export declare const getRuntimeConfig: (config: OdbClientConfig) => {
3
+ apiVersion: string;
4
+ base64Decoder: import("@smithy/types").Decoder;
5
+ base64Encoder: (_input: Uint8Array | string) => string;
6
+ disableHostPrefix: boolean;
7
+ endpointProvider: (
8
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
9
+ context?: {
10
+ logger?: import("@smithy/types").Logger;
11
+ }
12
+ ) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").OdbHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ serviceId: string;
18
+ urlParser: import("@smithy/types").UrlParser;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: Uint8Array | string) => string;
21
+ };
@@ -0,0 +1,11 @@
1
+ import { OdbExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(extensionConfiguration: OdbExtensionConfiguration): void;
4
+ }
5
+ export interface RuntimeExtensionsConfig {
6
+ extensions: RuntimeExtension[];
7
+ }
8
+ export declare const resolveRuntimeExtensions: (
9
+ runtimeConfig: any,
10
+ extensions: RuntimeExtension[]
11
+ ) => any;
package/package.json ADDED
@@ -0,0 +1,101 @@
1
+ {
2
+ "name": "@aws-sdk/client-odb",
3
+ "description": "AWS SDK for JavaScript Odb Client for Node.js, Browser and React Native",
4
+ "version": "3.841.0",
5
+ "scripts": {
6
+ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
+ "build:cjs": "tsc -p tsconfig.cjs.json",
8
+ "build:es": "tsc -p tsconfig.es.json",
9
+ "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
10
+ "build:types": "tsc -p tsconfig.types.json",
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
13
+ "extract:docs": "api-extractor run --local",
14
+ "generate:client": "node ../../scripts/generate-clients/single-service --solo odb"
15
+ },
16
+ "main": "./dist-cjs/index.js",
17
+ "types": "./dist-types/index.d.ts",
18
+ "module": "./dist-es/index.js",
19
+ "sideEffects": false,
20
+ "dependencies": {
21
+ "@aws-crypto/sha256-browser": "5.2.0",
22
+ "@aws-crypto/sha256-js": "5.2.0",
23
+ "@aws-sdk/core": "3.840.0",
24
+ "@aws-sdk/credential-provider-node": "3.840.0",
25
+ "@aws-sdk/middleware-host-header": "3.840.0",
26
+ "@aws-sdk/middleware-logger": "3.840.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.840.0",
28
+ "@aws-sdk/middleware-user-agent": "3.840.0",
29
+ "@aws-sdk/region-config-resolver": "3.840.0",
30
+ "@aws-sdk/types": "3.840.0",
31
+ "@aws-sdk/util-endpoints": "3.840.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.840.0",
33
+ "@aws-sdk/util-user-agent-node": "3.840.0",
34
+ "@smithy/config-resolver": "^4.1.4",
35
+ "@smithy/core": "^3.6.0",
36
+ "@smithy/fetch-http-handler": "^5.0.4",
37
+ "@smithy/hash-node": "^4.0.4",
38
+ "@smithy/invalid-dependency": "^4.0.4",
39
+ "@smithy/middleware-content-length": "^4.0.4",
40
+ "@smithy/middleware-endpoint": "^4.1.13",
41
+ "@smithy/middleware-retry": "^4.1.14",
42
+ "@smithy/middleware-serde": "^4.0.8",
43
+ "@smithy/middleware-stack": "^4.0.4",
44
+ "@smithy/node-config-provider": "^4.1.3",
45
+ "@smithy/node-http-handler": "^4.0.6",
46
+ "@smithy/protocol-http": "^5.1.2",
47
+ "@smithy/smithy-client": "^4.4.5",
48
+ "@smithy/types": "^4.3.1",
49
+ "@smithy/url-parser": "^4.0.4",
50
+ "@smithy/util-base64": "^4.0.0",
51
+ "@smithy/util-body-length-browser": "^4.0.0",
52
+ "@smithy/util-body-length-node": "^4.0.0",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.21",
54
+ "@smithy/util-defaults-mode-node": "^4.0.21",
55
+ "@smithy/util-endpoints": "^3.0.6",
56
+ "@smithy/util-middleware": "^4.0.4",
57
+ "@smithy/util-retry": "^4.0.6",
58
+ "@smithy/util-utf8": "^4.0.0",
59
+ "@types/uuid": "^9.0.1",
60
+ "tslib": "^2.6.2",
61
+ "uuid": "^9.0.1"
62
+ },
63
+ "devDependencies": {
64
+ "@tsconfig/node18": "18.2.4",
65
+ "@types/node": "^18.19.69",
66
+ "concurrently": "7.0.0",
67
+ "downlevel-dts": "0.10.1",
68
+ "rimraf": "3.0.2",
69
+ "typescript": "~5.8.3"
70
+ },
71
+ "engines": {
72
+ "node": ">=18.0.0"
73
+ },
74
+ "typesVersions": {
75
+ "<4.0": {
76
+ "dist-types/*": [
77
+ "dist-types/ts3.4/*"
78
+ ]
79
+ }
80
+ },
81
+ "files": [
82
+ "dist-*/**"
83
+ ],
84
+ "author": {
85
+ "name": "AWS SDK for JavaScript Team",
86
+ "url": "https://aws.amazon.com/javascript/"
87
+ },
88
+ "license": "Apache-2.0",
89
+ "browser": {
90
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
91
+ },
92
+ "react-native": {
93
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
94
+ },
95
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-odb",
96
+ "repository": {
97
+ "type": "git",
98
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
99
+ "directory": "clients/client-odb"
100
+ }
101
+ }