@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,34 @@
1
+ import packageInfo from "../package.json";
2
+ import { Sha256 } from "@aws-crypto/sha256-browser";
3
+ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser";
4
+ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver";
5
+ import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler";
6
+ import { invalidProvider } from "@smithy/invalid-dependency";
7
+ import { calculateBodyLength } from "@smithy/util-body-length-browser";
8
+ import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry";
9
+ import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
10
+ import { loadConfigsForDefaultMode } from "@smithy/smithy-client";
11
+ import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser";
12
+ export const getRuntimeConfig = (config) => {
13
+ const defaultsMode = resolveDefaultsModeConfig(config);
14
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
15
+ const clientSharedValues = getSharedRuntimeConfig(config);
16
+ return {
17
+ ...clientSharedValues,
18
+ ...config,
19
+ runtime: "browser",
20
+ defaultsMode,
21
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
22
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
23
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ??
24
+ createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
25
+ maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
26
+ region: config?.region ?? invalidProvider("Region is missing"),
27
+ requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
28
+ retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
29
+ sha256: config?.sha256 ?? Sha256,
30
+ streamCollector: config?.streamCollector ?? streamCollector,
31
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
32
+ useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
33
+ };
34
+ };
@@ -0,0 +1,51 @@
1
+ import packageInfo from "../package.json";
2
+ import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core";
3
+ import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
4
+ import { NODE_APP_ID_CONFIG_OPTIONS, createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-node";
5
+ import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
6
+ import { Hash } from "@smithy/hash-node";
7
+ import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry";
8
+ import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider";
9
+ import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler";
10
+ import { calculateBodyLength } from "@smithy/util-body-length-node";
11
+ import { DEFAULT_RETRY_MODE } from "@smithy/util-retry";
12
+ import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
13
+ import { loadConfigsForDefaultMode } from "@smithy/smithy-client";
14
+ import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node";
15
+ import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client";
16
+ export const getRuntimeConfig = (config) => {
17
+ emitWarningIfUnsupportedVersion(process.version);
18
+ const defaultsMode = resolveDefaultsModeConfig(config);
19
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
20
+ const clientSharedValues = getSharedRuntimeConfig(config);
21
+ awsCheckVersion(process.version);
22
+ const loaderConfig = {
23
+ profile: config?.profile,
24
+ logger: clientSharedValues.logger,
25
+ };
26
+ return {
27
+ ...clientSharedValues,
28
+ ...config,
29
+ runtime: "node",
30
+ defaultsMode,
31
+ authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
32
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
33
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
34
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ??
35
+ createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
36
+ maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
37
+ region: config?.region ??
38
+ loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
39
+ requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
40
+ retryMode: config?.retryMode ??
41
+ loadNodeConfig({
42
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
43
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
44
+ }, config),
45
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
46
+ streamCollector: config?.streamCollector ?? streamCollector,
47
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
48
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
49
+ userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
50
+ };
51
+ };
@@ -0,0 +1,11 @@
1
+ import { Sha256 } from "@aws-crypto/sha256-js";
2
+ import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
3
+ export const getRuntimeConfig = (config) => {
4
+ const browserDefaults = getBrowserRuntimeConfig(config);
5
+ return {
6
+ ...browserDefaults,
7
+ ...config,
8
+ runtime: "react-native",
9
+ sha256: config?.sha256 ?? Sha256,
10
+ };
11
+ };
@@ -0,0 +1,30 @@
1
+ import { AwsSdkSigV4Signer } from "@aws-sdk/core";
2
+ import { NoOpLogger } from "@smithy/smithy-client";
3
+ import { parseUrl } from "@smithy/url-parser";
4
+ import { fromBase64, toBase64 } from "@smithy/util-base64";
5
+ import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
6
+ import { defaultOdbHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
7
+ import { defaultEndpointResolver } from "./endpoint/endpointResolver";
8
+ export const getRuntimeConfig = (config) => {
9
+ return {
10
+ apiVersion: "2024-08-20",
11
+ base64Decoder: config?.base64Decoder ?? fromBase64,
12
+ base64Encoder: config?.base64Encoder ?? toBase64,
13
+ disableHostPrefix: config?.disableHostPrefix ?? false,
14
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
15
+ extensions: config?.extensions ?? [],
16
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultOdbHttpAuthSchemeProvider,
17
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
18
+ {
19
+ schemeId: "aws.auth#sigv4",
20
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
21
+ signer: new AwsSdkSigV4Signer(),
22
+ },
23
+ ],
24
+ logger: config?.logger ?? new NoOpLogger(),
25
+ serviceId: config?.serviceId ?? "odb",
26
+ urlParser: config?.urlParser ?? parseUrl,
27
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
28
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
29
+ };
30
+ };
@@ -0,0 +1,9 @@
1
+ import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, } from "@aws-sdk/region-config-resolver";
2
+ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
3
+ import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
4
+ import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
5
+ export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
6
+ const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
7
+ extensions.forEach((extension) => extension.configure(extensionConfiguration));
8
+ return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
9
+ };
@@ -0,0 +1,299 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import { AcceptMarketplaceRegistrationCommandInput, AcceptMarketplaceRegistrationCommandOutput } from "./commands/AcceptMarketplaceRegistrationCommand";
3
+ import { CreateCloudAutonomousVmClusterCommandInput, CreateCloudAutonomousVmClusterCommandOutput } from "./commands/CreateCloudAutonomousVmClusterCommand";
4
+ import { CreateCloudExadataInfrastructureCommandInput, CreateCloudExadataInfrastructureCommandOutput } from "./commands/CreateCloudExadataInfrastructureCommand";
5
+ import { CreateCloudVmClusterCommandInput, CreateCloudVmClusterCommandOutput } from "./commands/CreateCloudVmClusterCommand";
6
+ import { CreateOdbNetworkCommandInput, CreateOdbNetworkCommandOutput } from "./commands/CreateOdbNetworkCommand";
7
+ import { CreateOdbPeeringConnectionCommandInput, CreateOdbPeeringConnectionCommandOutput } from "./commands/CreateOdbPeeringConnectionCommand";
8
+ import { DeleteCloudAutonomousVmClusterCommandInput, DeleteCloudAutonomousVmClusterCommandOutput } from "./commands/DeleteCloudAutonomousVmClusterCommand";
9
+ import { DeleteCloudExadataInfrastructureCommandInput, DeleteCloudExadataInfrastructureCommandOutput } from "./commands/DeleteCloudExadataInfrastructureCommand";
10
+ import { DeleteCloudVmClusterCommandInput, DeleteCloudVmClusterCommandOutput } from "./commands/DeleteCloudVmClusterCommand";
11
+ import { DeleteOdbNetworkCommandInput, DeleteOdbNetworkCommandOutput } from "./commands/DeleteOdbNetworkCommand";
12
+ import { DeleteOdbPeeringConnectionCommandInput, DeleteOdbPeeringConnectionCommandOutput } from "./commands/DeleteOdbPeeringConnectionCommand";
13
+ import { GetCloudAutonomousVmClusterCommandInput, GetCloudAutonomousVmClusterCommandOutput } from "./commands/GetCloudAutonomousVmClusterCommand";
14
+ import { GetCloudExadataInfrastructureCommandInput, GetCloudExadataInfrastructureCommandOutput } from "./commands/GetCloudExadataInfrastructureCommand";
15
+ import { GetCloudExadataInfrastructureUnallocatedResourcesCommandInput, GetCloudExadataInfrastructureUnallocatedResourcesCommandOutput } from "./commands/GetCloudExadataInfrastructureUnallocatedResourcesCommand";
16
+ import { GetCloudVmClusterCommandInput, GetCloudVmClusterCommandOutput } from "./commands/GetCloudVmClusterCommand";
17
+ import { GetDbNodeCommandInput, GetDbNodeCommandOutput } from "./commands/GetDbNodeCommand";
18
+ import { GetDbServerCommandInput, GetDbServerCommandOutput } from "./commands/GetDbServerCommand";
19
+ import { GetOciOnboardingStatusCommandInput, GetOciOnboardingStatusCommandOutput } from "./commands/GetOciOnboardingStatusCommand";
20
+ import { GetOdbNetworkCommandInput, GetOdbNetworkCommandOutput } from "./commands/GetOdbNetworkCommand";
21
+ import { GetOdbPeeringConnectionCommandInput, GetOdbPeeringConnectionCommandOutput } from "./commands/GetOdbPeeringConnectionCommand";
22
+ import { InitializeServiceCommandInput, InitializeServiceCommandOutput } from "./commands/InitializeServiceCommand";
23
+ import { ListAutonomousVirtualMachinesCommandInput, ListAutonomousVirtualMachinesCommandOutput } from "./commands/ListAutonomousVirtualMachinesCommand";
24
+ import { ListCloudAutonomousVmClustersCommandInput, ListCloudAutonomousVmClustersCommandOutput } from "./commands/ListCloudAutonomousVmClustersCommand";
25
+ import { ListCloudExadataInfrastructuresCommandInput, ListCloudExadataInfrastructuresCommandOutput } from "./commands/ListCloudExadataInfrastructuresCommand";
26
+ import { ListCloudVmClustersCommandInput, ListCloudVmClustersCommandOutput } from "./commands/ListCloudVmClustersCommand";
27
+ import { ListDbNodesCommandInput, ListDbNodesCommandOutput } from "./commands/ListDbNodesCommand";
28
+ import { ListDbServersCommandInput, ListDbServersCommandOutput } from "./commands/ListDbServersCommand";
29
+ import { ListDbSystemShapesCommandInput, ListDbSystemShapesCommandOutput } from "./commands/ListDbSystemShapesCommand";
30
+ import { ListGiVersionsCommandInput, ListGiVersionsCommandOutput } from "./commands/ListGiVersionsCommand";
31
+ import { ListOdbNetworksCommandInput, ListOdbNetworksCommandOutput } from "./commands/ListOdbNetworksCommand";
32
+ import { ListOdbPeeringConnectionsCommandInput, ListOdbPeeringConnectionsCommandOutput } from "./commands/ListOdbPeeringConnectionsCommand";
33
+ import { ListSystemVersionsCommandInput, ListSystemVersionsCommandOutput } from "./commands/ListSystemVersionsCommand";
34
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
35
+ import { RebootDbNodeCommandInput, RebootDbNodeCommandOutput } from "./commands/RebootDbNodeCommand";
36
+ import { StartDbNodeCommandInput, StartDbNodeCommandOutput } from "./commands/StartDbNodeCommand";
37
+ import { StopDbNodeCommandInput, StopDbNodeCommandOutput } from "./commands/StopDbNodeCommand";
38
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
39
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
40
+ import { UpdateCloudExadataInfrastructureCommandInput, UpdateCloudExadataInfrastructureCommandOutput } from "./commands/UpdateCloudExadataInfrastructureCommand";
41
+ import { UpdateOdbNetworkCommandInput, UpdateOdbNetworkCommandOutput } from "./commands/UpdateOdbNetworkCommand";
42
+ import { OdbClient } from "./OdbClient";
43
+ export interface Odb {
44
+ /**
45
+ * @see {@link AcceptMarketplaceRegistrationCommand}
46
+ */
47
+ acceptMarketplaceRegistration(args: AcceptMarketplaceRegistrationCommandInput, options?: __HttpHandlerOptions): Promise<AcceptMarketplaceRegistrationCommandOutput>;
48
+ acceptMarketplaceRegistration(args: AcceptMarketplaceRegistrationCommandInput, cb: (err: any, data?: AcceptMarketplaceRegistrationCommandOutput) => void): void;
49
+ acceptMarketplaceRegistration(args: AcceptMarketplaceRegistrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptMarketplaceRegistrationCommandOutput) => void): void;
50
+ /**
51
+ * @see {@link CreateCloudAutonomousVmClusterCommand}
52
+ */
53
+ createCloudAutonomousVmCluster(args: CreateCloudAutonomousVmClusterCommandInput, options?: __HttpHandlerOptions): Promise<CreateCloudAutonomousVmClusterCommandOutput>;
54
+ createCloudAutonomousVmCluster(args: CreateCloudAutonomousVmClusterCommandInput, cb: (err: any, data?: CreateCloudAutonomousVmClusterCommandOutput) => void): void;
55
+ createCloudAutonomousVmCluster(args: CreateCloudAutonomousVmClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCloudAutonomousVmClusterCommandOutput) => void): void;
56
+ /**
57
+ * @see {@link CreateCloudExadataInfrastructureCommand}
58
+ */
59
+ createCloudExadataInfrastructure(args: CreateCloudExadataInfrastructureCommandInput, options?: __HttpHandlerOptions): Promise<CreateCloudExadataInfrastructureCommandOutput>;
60
+ createCloudExadataInfrastructure(args: CreateCloudExadataInfrastructureCommandInput, cb: (err: any, data?: CreateCloudExadataInfrastructureCommandOutput) => void): void;
61
+ createCloudExadataInfrastructure(args: CreateCloudExadataInfrastructureCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCloudExadataInfrastructureCommandOutput) => void): void;
62
+ /**
63
+ * @see {@link CreateCloudVmClusterCommand}
64
+ */
65
+ createCloudVmCluster(args: CreateCloudVmClusterCommandInput, options?: __HttpHandlerOptions): Promise<CreateCloudVmClusterCommandOutput>;
66
+ createCloudVmCluster(args: CreateCloudVmClusterCommandInput, cb: (err: any, data?: CreateCloudVmClusterCommandOutput) => void): void;
67
+ createCloudVmCluster(args: CreateCloudVmClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCloudVmClusterCommandOutput) => void): void;
68
+ /**
69
+ * @see {@link CreateOdbNetworkCommand}
70
+ */
71
+ createOdbNetwork(args: CreateOdbNetworkCommandInput, options?: __HttpHandlerOptions): Promise<CreateOdbNetworkCommandOutput>;
72
+ createOdbNetwork(args: CreateOdbNetworkCommandInput, cb: (err: any, data?: CreateOdbNetworkCommandOutput) => void): void;
73
+ createOdbNetwork(args: CreateOdbNetworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOdbNetworkCommandOutput) => void): void;
74
+ /**
75
+ * @see {@link CreateOdbPeeringConnectionCommand}
76
+ */
77
+ createOdbPeeringConnection(args: CreateOdbPeeringConnectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateOdbPeeringConnectionCommandOutput>;
78
+ createOdbPeeringConnection(args: CreateOdbPeeringConnectionCommandInput, cb: (err: any, data?: CreateOdbPeeringConnectionCommandOutput) => void): void;
79
+ createOdbPeeringConnection(args: CreateOdbPeeringConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOdbPeeringConnectionCommandOutput) => void): void;
80
+ /**
81
+ * @see {@link DeleteCloudAutonomousVmClusterCommand}
82
+ */
83
+ deleteCloudAutonomousVmCluster(args: DeleteCloudAutonomousVmClusterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCloudAutonomousVmClusterCommandOutput>;
84
+ deleteCloudAutonomousVmCluster(args: DeleteCloudAutonomousVmClusterCommandInput, cb: (err: any, data?: DeleteCloudAutonomousVmClusterCommandOutput) => void): void;
85
+ deleteCloudAutonomousVmCluster(args: DeleteCloudAutonomousVmClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCloudAutonomousVmClusterCommandOutput) => void): void;
86
+ /**
87
+ * @see {@link DeleteCloudExadataInfrastructureCommand}
88
+ */
89
+ deleteCloudExadataInfrastructure(args: DeleteCloudExadataInfrastructureCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCloudExadataInfrastructureCommandOutput>;
90
+ deleteCloudExadataInfrastructure(args: DeleteCloudExadataInfrastructureCommandInput, cb: (err: any, data?: DeleteCloudExadataInfrastructureCommandOutput) => void): void;
91
+ deleteCloudExadataInfrastructure(args: DeleteCloudExadataInfrastructureCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCloudExadataInfrastructureCommandOutput) => void): void;
92
+ /**
93
+ * @see {@link DeleteCloudVmClusterCommand}
94
+ */
95
+ deleteCloudVmCluster(args: DeleteCloudVmClusterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCloudVmClusterCommandOutput>;
96
+ deleteCloudVmCluster(args: DeleteCloudVmClusterCommandInput, cb: (err: any, data?: DeleteCloudVmClusterCommandOutput) => void): void;
97
+ deleteCloudVmCluster(args: DeleteCloudVmClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCloudVmClusterCommandOutput) => void): void;
98
+ /**
99
+ * @see {@link DeleteOdbNetworkCommand}
100
+ */
101
+ deleteOdbNetwork(args: DeleteOdbNetworkCommandInput, options?: __HttpHandlerOptions): Promise<DeleteOdbNetworkCommandOutput>;
102
+ deleteOdbNetwork(args: DeleteOdbNetworkCommandInput, cb: (err: any, data?: DeleteOdbNetworkCommandOutput) => void): void;
103
+ deleteOdbNetwork(args: DeleteOdbNetworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteOdbNetworkCommandOutput) => void): void;
104
+ /**
105
+ * @see {@link DeleteOdbPeeringConnectionCommand}
106
+ */
107
+ deleteOdbPeeringConnection(args: DeleteOdbPeeringConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteOdbPeeringConnectionCommandOutput>;
108
+ deleteOdbPeeringConnection(args: DeleteOdbPeeringConnectionCommandInput, cb: (err: any, data?: DeleteOdbPeeringConnectionCommandOutput) => void): void;
109
+ deleteOdbPeeringConnection(args: DeleteOdbPeeringConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteOdbPeeringConnectionCommandOutput) => void): void;
110
+ /**
111
+ * @see {@link GetCloudAutonomousVmClusterCommand}
112
+ */
113
+ getCloudAutonomousVmCluster(args: GetCloudAutonomousVmClusterCommandInput, options?: __HttpHandlerOptions): Promise<GetCloudAutonomousVmClusterCommandOutput>;
114
+ getCloudAutonomousVmCluster(args: GetCloudAutonomousVmClusterCommandInput, cb: (err: any, data?: GetCloudAutonomousVmClusterCommandOutput) => void): void;
115
+ getCloudAutonomousVmCluster(args: GetCloudAutonomousVmClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCloudAutonomousVmClusterCommandOutput) => void): void;
116
+ /**
117
+ * @see {@link GetCloudExadataInfrastructureCommand}
118
+ */
119
+ getCloudExadataInfrastructure(args: GetCloudExadataInfrastructureCommandInput, options?: __HttpHandlerOptions): Promise<GetCloudExadataInfrastructureCommandOutput>;
120
+ getCloudExadataInfrastructure(args: GetCloudExadataInfrastructureCommandInput, cb: (err: any, data?: GetCloudExadataInfrastructureCommandOutput) => void): void;
121
+ getCloudExadataInfrastructure(args: GetCloudExadataInfrastructureCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCloudExadataInfrastructureCommandOutput) => void): void;
122
+ /**
123
+ * @see {@link GetCloudExadataInfrastructureUnallocatedResourcesCommand}
124
+ */
125
+ getCloudExadataInfrastructureUnallocatedResources(args: GetCloudExadataInfrastructureUnallocatedResourcesCommandInput, options?: __HttpHandlerOptions): Promise<GetCloudExadataInfrastructureUnallocatedResourcesCommandOutput>;
126
+ getCloudExadataInfrastructureUnallocatedResources(args: GetCloudExadataInfrastructureUnallocatedResourcesCommandInput, cb: (err: any, data?: GetCloudExadataInfrastructureUnallocatedResourcesCommandOutput) => void): void;
127
+ getCloudExadataInfrastructureUnallocatedResources(args: GetCloudExadataInfrastructureUnallocatedResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCloudExadataInfrastructureUnallocatedResourcesCommandOutput) => void): void;
128
+ /**
129
+ * @see {@link GetCloudVmClusterCommand}
130
+ */
131
+ getCloudVmCluster(args: GetCloudVmClusterCommandInput, options?: __HttpHandlerOptions): Promise<GetCloudVmClusterCommandOutput>;
132
+ getCloudVmCluster(args: GetCloudVmClusterCommandInput, cb: (err: any, data?: GetCloudVmClusterCommandOutput) => void): void;
133
+ getCloudVmCluster(args: GetCloudVmClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCloudVmClusterCommandOutput) => void): void;
134
+ /**
135
+ * @see {@link GetDbNodeCommand}
136
+ */
137
+ getDbNode(args: GetDbNodeCommandInput, options?: __HttpHandlerOptions): Promise<GetDbNodeCommandOutput>;
138
+ getDbNode(args: GetDbNodeCommandInput, cb: (err: any, data?: GetDbNodeCommandOutput) => void): void;
139
+ getDbNode(args: GetDbNodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDbNodeCommandOutput) => void): void;
140
+ /**
141
+ * @see {@link GetDbServerCommand}
142
+ */
143
+ getDbServer(args: GetDbServerCommandInput, options?: __HttpHandlerOptions): Promise<GetDbServerCommandOutput>;
144
+ getDbServer(args: GetDbServerCommandInput, cb: (err: any, data?: GetDbServerCommandOutput) => void): void;
145
+ getDbServer(args: GetDbServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDbServerCommandOutput) => void): void;
146
+ /**
147
+ * @see {@link GetOciOnboardingStatusCommand}
148
+ */
149
+ getOciOnboardingStatus(): Promise<GetOciOnboardingStatusCommandOutput>;
150
+ getOciOnboardingStatus(args: GetOciOnboardingStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetOciOnboardingStatusCommandOutput>;
151
+ getOciOnboardingStatus(args: GetOciOnboardingStatusCommandInput, cb: (err: any, data?: GetOciOnboardingStatusCommandOutput) => void): void;
152
+ getOciOnboardingStatus(args: GetOciOnboardingStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOciOnboardingStatusCommandOutput) => void): void;
153
+ /**
154
+ * @see {@link GetOdbNetworkCommand}
155
+ */
156
+ getOdbNetwork(args: GetOdbNetworkCommandInput, options?: __HttpHandlerOptions): Promise<GetOdbNetworkCommandOutput>;
157
+ getOdbNetwork(args: GetOdbNetworkCommandInput, cb: (err: any, data?: GetOdbNetworkCommandOutput) => void): void;
158
+ getOdbNetwork(args: GetOdbNetworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOdbNetworkCommandOutput) => void): void;
159
+ /**
160
+ * @see {@link GetOdbPeeringConnectionCommand}
161
+ */
162
+ getOdbPeeringConnection(args: GetOdbPeeringConnectionCommandInput, options?: __HttpHandlerOptions): Promise<GetOdbPeeringConnectionCommandOutput>;
163
+ getOdbPeeringConnection(args: GetOdbPeeringConnectionCommandInput, cb: (err: any, data?: GetOdbPeeringConnectionCommandOutput) => void): void;
164
+ getOdbPeeringConnection(args: GetOdbPeeringConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOdbPeeringConnectionCommandOutput) => void): void;
165
+ /**
166
+ * @see {@link InitializeServiceCommand}
167
+ */
168
+ initializeService(): Promise<InitializeServiceCommandOutput>;
169
+ initializeService(args: InitializeServiceCommandInput, options?: __HttpHandlerOptions): Promise<InitializeServiceCommandOutput>;
170
+ initializeService(args: InitializeServiceCommandInput, cb: (err: any, data?: InitializeServiceCommandOutput) => void): void;
171
+ initializeService(args: InitializeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InitializeServiceCommandOutput) => void): void;
172
+ /**
173
+ * @see {@link ListAutonomousVirtualMachinesCommand}
174
+ */
175
+ listAutonomousVirtualMachines(args: ListAutonomousVirtualMachinesCommandInput, options?: __HttpHandlerOptions): Promise<ListAutonomousVirtualMachinesCommandOutput>;
176
+ listAutonomousVirtualMachines(args: ListAutonomousVirtualMachinesCommandInput, cb: (err: any, data?: ListAutonomousVirtualMachinesCommandOutput) => void): void;
177
+ listAutonomousVirtualMachines(args: ListAutonomousVirtualMachinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAutonomousVirtualMachinesCommandOutput) => void): void;
178
+ /**
179
+ * @see {@link ListCloudAutonomousVmClustersCommand}
180
+ */
181
+ listCloudAutonomousVmClusters(): Promise<ListCloudAutonomousVmClustersCommandOutput>;
182
+ listCloudAutonomousVmClusters(args: ListCloudAutonomousVmClustersCommandInput, options?: __HttpHandlerOptions): Promise<ListCloudAutonomousVmClustersCommandOutput>;
183
+ listCloudAutonomousVmClusters(args: ListCloudAutonomousVmClustersCommandInput, cb: (err: any, data?: ListCloudAutonomousVmClustersCommandOutput) => void): void;
184
+ listCloudAutonomousVmClusters(args: ListCloudAutonomousVmClustersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCloudAutonomousVmClustersCommandOutput) => void): void;
185
+ /**
186
+ * @see {@link ListCloudExadataInfrastructuresCommand}
187
+ */
188
+ listCloudExadataInfrastructures(): Promise<ListCloudExadataInfrastructuresCommandOutput>;
189
+ listCloudExadataInfrastructures(args: ListCloudExadataInfrastructuresCommandInput, options?: __HttpHandlerOptions): Promise<ListCloudExadataInfrastructuresCommandOutput>;
190
+ listCloudExadataInfrastructures(args: ListCloudExadataInfrastructuresCommandInput, cb: (err: any, data?: ListCloudExadataInfrastructuresCommandOutput) => void): void;
191
+ listCloudExadataInfrastructures(args: ListCloudExadataInfrastructuresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCloudExadataInfrastructuresCommandOutput) => void): void;
192
+ /**
193
+ * @see {@link ListCloudVmClustersCommand}
194
+ */
195
+ listCloudVmClusters(): Promise<ListCloudVmClustersCommandOutput>;
196
+ listCloudVmClusters(args: ListCloudVmClustersCommandInput, options?: __HttpHandlerOptions): Promise<ListCloudVmClustersCommandOutput>;
197
+ listCloudVmClusters(args: ListCloudVmClustersCommandInput, cb: (err: any, data?: ListCloudVmClustersCommandOutput) => void): void;
198
+ listCloudVmClusters(args: ListCloudVmClustersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCloudVmClustersCommandOutput) => void): void;
199
+ /**
200
+ * @see {@link ListDbNodesCommand}
201
+ */
202
+ listDbNodes(args: ListDbNodesCommandInput, options?: __HttpHandlerOptions): Promise<ListDbNodesCommandOutput>;
203
+ listDbNodes(args: ListDbNodesCommandInput, cb: (err: any, data?: ListDbNodesCommandOutput) => void): void;
204
+ listDbNodes(args: ListDbNodesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDbNodesCommandOutput) => void): void;
205
+ /**
206
+ * @see {@link ListDbServersCommand}
207
+ */
208
+ listDbServers(args: ListDbServersCommandInput, options?: __HttpHandlerOptions): Promise<ListDbServersCommandOutput>;
209
+ listDbServers(args: ListDbServersCommandInput, cb: (err: any, data?: ListDbServersCommandOutput) => void): void;
210
+ listDbServers(args: ListDbServersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDbServersCommandOutput) => void): void;
211
+ /**
212
+ * @see {@link ListDbSystemShapesCommand}
213
+ */
214
+ listDbSystemShapes(): Promise<ListDbSystemShapesCommandOutput>;
215
+ listDbSystemShapes(args: ListDbSystemShapesCommandInput, options?: __HttpHandlerOptions): Promise<ListDbSystemShapesCommandOutput>;
216
+ listDbSystemShapes(args: ListDbSystemShapesCommandInput, cb: (err: any, data?: ListDbSystemShapesCommandOutput) => void): void;
217
+ listDbSystemShapes(args: ListDbSystemShapesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDbSystemShapesCommandOutput) => void): void;
218
+ /**
219
+ * @see {@link ListGiVersionsCommand}
220
+ */
221
+ listGiVersions(): Promise<ListGiVersionsCommandOutput>;
222
+ listGiVersions(args: ListGiVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListGiVersionsCommandOutput>;
223
+ listGiVersions(args: ListGiVersionsCommandInput, cb: (err: any, data?: ListGiVersionsCommandOutput) => void): void;
224
+ listGiVersions(args: ListGiVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGiVersionsCommandOutput) => void): void;
225
+ /**
226
+ * @see {@link ListOdbNetworksCommand}
227
+ */
228
+ listOdbNetworks(): Promise<ListOdbNetworksCommandOutput>;
229
+ listOdbNetworks(args: ListOdbNetworksCommandInput, options?: __HttpHandlerOptions): Promise<ListOdbNetworksCommandOutput>;
230
+ listOdbNetworks(args: ListOdbNetworksCommandInput, cb: (err: any, data?: ListOdbNetworksCommandOutput) => void): void;
231
+ listOdbNetworks(args: ListOdbNetworksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOdbNetworksCommandOutput) => void): void;
232
+ /**
233
+ * @see {@link ListOdbPeeringConnectionsCommand}
234
+ */
235
+ listOdbPeeringConnections(): Promise<ListOdbPeeringConnectionsCommandOutput>;
236
+ listOdbPeeringConnections(args: ListOdbPeeringConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListOdbPeeringConnectionsCommandOutput>;
237
+ listOdbPeeringConnections(args: ListOdbPeeringConnectionsCommandInput, cb: (err: any, data?: ListOdbPeeringConnectionsCommandOutput) => void): void;
238
+ listOdbPeeringConnections(args: ListOdbPeeringConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOdbPeeringConnectionsCommandOutput) => void): void;
239
+ /**
240
+ * @see {@link ListSystemVersionsCommand}
241
+ */
242
+ listSystemVersions(args: ListSystemVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListSystemVersionsCommandOutput>;
243
+ listSystemVersions(args: ListSystemVersionsCommandInput, cb: (err: any, data?: ListSystemVersionsCommandOutput) => void): void;
244
+ listSystemVersions(args: ListSystemVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSystemVersionsCommandOutput) => void): void;
245
+ /**
246
+ * @see {@link ListTagsForResourceCommand}
247
+ */
248
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
249
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
250
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
251
+ /**
252
+ * @see {@link RebootDbNodeCommand}
253
+ */
254
+ rebootDbNode(args: RebootDbNodeCommandInput, options?: __HttpHandlerOptions): Promise<RebootDbNodeCommandOutput>;
255
+ rebootDbNode(args: RebootDbNodeCommandInput, cb: (err: any, data?: RebootDbNodeCommandOutput) => void): void;
256
+ rebootDbNode(args: RebootDbNodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RebootDbNodeCommandOutput) => void): void;
257
+ /**
258
+ * @see {@link StartDbNodeCommand}
259
+ */
260
+ startDbNode(args: StartDbNodeCommandInput, options?: __HttpHandlerOptions): Promise<StartDbNodeCommandOutput>;
261
+ startDbNode(args: StartDbNodeCommandInput, cb: (err: any, data?: StartDbNodeCommandOutput) => void): void;
262
+ startDbNode(args: StartDbNodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDbNodeCommandOutput) => void): void;
263
+ /**
264
+ * @see {@link StopDbNodeCommand}
265
+ */
266
+ stopDbNode(args: StopDbNodeCommandInput, options?: __HttpHandlerOptions): Promise<StopDbNodeCommandOutput>;
267
+ stopDbNode(args: StopDbNodeCommandInput, cb: (err: any, data?: StopDbNodeCommandOutput) => void): void;
268
+ stopDbNode(args: StopDbNodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopDbNodeCommandOutput) => void): void;
269
+ /**
270
+ * @see {@link TagResourceCommand}
271
+ */
272
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
273
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
274
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
275
+ /**
276
+ * @see {@link UntagResourceCommand}
277
+ */
278
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
279
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
280
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
281
+ /**
282
+ * @see {@link UpdateCloudExadataInfrastructureCommand}
283
+ */
284
+ updateCloudExadataInfrastructure(args: UpdateCloudExadataInfrastructureCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCloudExadataInfrastructureCommandOutput>;
285
+ updateCloudExadataInfrastructure(args: UpdateCloudExadataInfrastructureCommandInput, cb: (err: any, data?: UpdateCloudExadataInfrastructureCommandOutput) => void): void;
286
+ updateCloudExadataInfrastructure(args: UpdateCloudExadataInfrastructureCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCloudExadataInfrastructureCommandOutput) => void): void;
287
+ /**
288
+ * @see {@link UpdateOdbNetworkCommand}
289
+ */
290
+ updateOdbNetwork(args: UpdateOdbNetworkCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOdbNetworkCommandOutput>;
291
+ updateOdbNetwork(args: UpdateOdbNetworkCommandInput, cb: (err: any, data?: UpdateOdbNetworkCommandOutput) => void): void;
292
+ updateOdbNetwork(args: UpdateOdbNetworkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOdbNetworkCommandOutput) => void): void;
293
+ }
294
+ /**
295
+ * <p>Oracle Database@Amazon Web Services is an offering that enables you to access Oracle Exadata infrastructure managed by Oracle Cloud Infrastructure (OCI) inside Amazon Web Services data centers. You can migrate your Oracle Exadata workloads, establish low-latency connectivity with applications running on Amazon Web Services, and integrate with Amazon Web Services services. For example, you can run application servers in a virtual private cloud (VPC) and access an Oracle Exadata system running in Oracle Database@Amazon Web Services. You can get started with Oracle Database@Amazon Web Services by using the familiar Amazon Web Services Management Console, APIs, or CLI.</p> <p>This interface reference for Oracle Database@Amazon Web Services contains documentation for a programming or command line interface that you can use to manage Oracle Database@Amazon Web Services. Oracle Database@Amazon Web Services is asynchronous, which means that some interfaces might require techniques such as polling or callback functions to determine when a command has been applied. The reference structure is as follows.</p> <note> <p>In this preview release documentation, the links in the "See Also" sections do not work.</p> </note> <p> <b>Oracle Database@Amazon Web Services API Reference</b> </p> <ul> <li> <p>For the alphabetical list of API actions, see .</p> </li> <li> <p>For the alphabetical list of data types, see .</p> </li> <li> <p>For a list of common parameters, see <a>CommonParameters</a>.</p> </li> <li> <p>For descriptions of the error codes, see <a>CommonErrors</a>.</p> </li> </ul>
296
+ * @public
297
+ */
298
+ export declare class Odb extends OdbClient implements Odb {
299
+ }