@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,700 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ AcceptMarketplaceRegistrationCommandInput,
4
+ AcceptMarketplaceRegistrationCommandOutput,
5
+ } from "./commands/AcceptMarketplaceRegistrationCommand";
6
+ import {
7
+ CreateCloudAutonomousVmClusterCommandInput,
8
+ CreateCloudAutonomousVmClusterCommandOutput,
9
+ } from "./commands/CreateCloudAutonomousVmClusterCommand";
10
+ import {
11
+ CreateCloudExadataInfrastructureCommandInput,
12
+ CreateCloudExadataInfrastructureCommandOutput,
13
+ } from "./commands/CreateCloudExadataInfrastructureCommand";
14
+ import {
15
+ CreateCloudVmClusterCommandInput,
16
+ CreateCloudVmClusterCommandOutput,
17
+ } from "./commands/CreateCloudVmClusterCommand";
18
+ import {
19
+ CreateOdbNetworkCommandInput,
20
+ CreateOdbNetworkCommandOutput,
21
+ } from "./commands/CreateOdbNetworkCommand";
22
+ import {
23
+ CreateOdbPeeringConnectionCommandInput,
24
+ CreateOdbPeeringConnectionCommandOutput,
25
+ } from "./commands/CreateOdbPeeringConnectionCommand";
26
+ import {
27
+ DeleteCloudAutonomousVmClusterCommandInput,
28
+ DeleteCloudAutonomousVmClusterCommandOutput,
29
+ } from "./commands/DeleteCloudAutonomousVmClusterCommand";
30
+ import {
31
+ DeleteCloudExadataInfrastructureCommandInput,
32
+ DeleteCloudExadataInfrastructureCommandOutput,
33
+ } from "./commands/DeleteCloudExadataInfrastructureCommand";
34
+ import {
35
+ DeleteCloudVmClusterCommandInput,
36
+ DeleteCloudVmClusterCommandOutput,
37
+ } from "./commands/DeleteCloudVmClusterCommand";
38
+ import {
39
+ DeleteOdbNetworkCommandInput,
40
+ DeleteOdbNetworkCommandOutput,
41
+ } from "./commands/DeleteOdbNetworkCommand";
42
+ import {
43
+ DeleteOdbPeeringConnectionCommandInput,
44
+ DeleteOdbPeeringConnectionCommandOutput,
45
+ } from "./commands/DeleteOdbPeeringConnectionCommand";
46
+ import {
47
+ GetCloudAutonomousVmClusterCommandInput,
48
+ GetCloudAutonomousVmClusterCommandOutput,
49
+ } from "./commands/GetCloudAutonomousVmClusterCommand";
50
+ import {
51
+ GetCloudExadataInfrastructureCommandInput,
52
+ GetCloudExadataInfrastructureCommandOutput,
53
+ } from "./commands/GetCloudExadataInfrastructureCommand";
54
+ import {
55
+ GetCloudExadataInfrastructureUnallocatedResourcesCommandInput,
56
+ GetCloudExadataInfrastructureUnallocatedResourcesCommandOutput,
57
+ } from "./commands/GetCloudExadataInfrastructureUnallocatedResourcesCommand";
58
+ import {
59
+ GetCloudVmClusterCommandInput,
60
+ GetCloudVmClusterCommandOutput,
61
+ } from "./commands/GetCloudVmClusterCommand";
62
+ import {
63
+ GetDbNodeCommandInput,
64
+ GetDbNodeCommandOutput,
65
+ } from "./commands/GetDbNodeCommand";
66
+ import {
67
+ GetDbServerCommandInput,
68
+ GetDbServerCommandOutput,
69
+ } from "./commands/GetDbServerCommand";
70
+ import {
71
+ GetOciOnboardingStatusCommandInput,
72
+ GetOciOnboardingStatusCommandOutput,
73
+ } from "./commands/GetOciOnboardingStatusCommand";
74
+ import {
75
+ GetOdbNetworkCommandInput,
76
+ GetOdbNetworkCommandOutput,
77
+ } from "./commands/GetOdbNetworkCommand";
78
+ import {
79
+ GetOdbPeeringConnectionCommandInput,
80
+ GetOdbPeeringConnectionCommandOutput,
81
+ } from "./commands/GetOdbPeeringConnectionCommand";
82
+ import {
83
+ InitializeServiceCommandInput,
84
+ InitializeServiceCommandOutput,
85
+ } from "./commands/InitializeServiceCommand";
86
+ import {
87
+ ListAutonomousVirtualMachinesCommandInput,
88
+ ListAutonomousVirtualMachinesCommandOutput,
89
+ } from "./commands/ListAutonomousVirtualMachinesCommand";
90
+ import {
91
+ ListCloudAutonomousVmClustersCommandInput,
92
+ ListCloudAutonomousVmClustersCommandOutput,
93
+ } from "./commands/ListCloudAutonomousVmClustersCommand";
94
+ import {
95
+ ListCloudExadataInfrastructuresCommandInput,
96
+ ListCloudExadataInfrastructuresCommandOutput,
97
+ } from "./commands/ListCloudExadataInfrastructuresCommand";
98
+ import {
99
+ ListCloudVmClustersCommandInput,
100
+ ListCloudVmClustersCommandOutput,
101
+ } from "./commands/ListCloudVmClustersCommand";
102
+ import {
103
+ ListDbNodesCommandInput,
104
+ ListDbNodesCommandOutput,
105
+ } from "./commands/ListDbNodesCommand";
106
+ import {
107
+ ListDbServersCommandInput,
108
+ ListDbServersCommandOutput,
109
+ } from "./commands/ListDbServersCommand";
110
+ import {
111
+ ListDbSystemShapesCommandInput,
112
+ ListDbSystemShapesCommandOutput,
113
+ } from "./commands/ListDbSystemShapesCommand";
114
+ import {
115
+ ListGiVersionsCommandInput,
116
+ ListGiVersionsCommandOutput,
117
+ } from "./commands/ListGiVersionsCommand";
118
+ import {
119
+ ListOdbNetworksCommandInput,
120
+ ListOdbNetworksCommandOutput,
121
+ } from "./commands/ListOdbNetworksCommand";
122
+ import {
123
+ ListOdbPeeringConnectionsCommandInput,
124
+ ListOdbPeeringConnectionsCommandOutput,
125
+ } from "./commands/ListOdbPeeringConnectionsCommand";
126
+ import {
127
+ ListSystemVersionsCommandInput,
128
+ ListSystemVersionsCommandOutput,
129
+ } from "./commands/ListSystemVersionsCommand";
130
+ import {
131
+ ListTagsForResourceCommandInput,
132
+ ListTagsForResourceCommandOutput,
133
+ } from "./commands/ListTagsForResourceCommand";
134
+ import {
135
+ RebootDbNodeCommandInput,
136
+ RebootDbNodeCommandOutput,
137
+ } from "./commands/RebootDbNodeCommand";
138
+ import {
139
+ StartDbNodeCommandInput,
140
+ StartDbNodeCommandOutput,
141
+ } from "./commands/StartDbNodeCommand";
142
+ import {
143
+ StopDbNodeCommandInput,
144
+ StopDbNodeCommandOutput,
145
+ } from "./commands/StopDbNodeCommand";
146
+ import {
147
+ TagResourceCommandInput,
148
+ TagResourceCommandOutput,
149
+ } from "./commands/TagResourceCommand";
150
+ import {
151
+ UntagResourceCommandInput,
152
+ UntagResourceCommandOutput,
153
+ } from "./commands/UntagResourceCommand";
154
+ import {
155
+ UpdateCloudExadataInfrastructureCommandInput,
156
+ UpdateCloudExadataInfrastructureCommandOutput,
157
+ } from "./commands/UpdateCloudExadataInfrastructureCommand";
158
+ import {
159
+ UpdateOdbNetworkCommandInput,
160
+ UpdateOdbNetworkCommandOutput,
161
+ } from "./commands/UpdateOdbNetworkCommand";
162
+ import { OdbClient } from "./OdbClient";
163
+ export interface Odb {
164
+ acceptMarketplaceRegistration(
165
+ args: AcceptMarketplaceRegistrationCommandInput,
166
+ options?: __HttpHandlerOptions
167
+ ): Promise<AcceptMarketplaceRegistrationCommandOutput>;
168
+ acceptMarketplaceRegistration(
169
+ args: AcceptMarketplaceRegistrationCommandInput,
170
+ cb: (err: any, data?: AcceptMarketplaceRegistrationCommandOutput) => void
171
+ ): void;
172
+ acceptMarketplaceRegistration(
173
+ args: AcceptMarketplaceRegistrationCommandInput,
174
+ options: __HttpHandlerOptions,
175
+ cb: (err: any, data?: AcceptMarketplaceRegistrationCommandOutput) => void
176
+ ): void;
177
+ createCloudAutonomousVmCluster(
178
+ args: CreateCloudAutonomousVmClusterCommandInput,
179
+ options?: __HttpHandlerOptions
180
+ ): Promise<CreateCloudAutonomousVmClusterCommandOutput>;
181
+ createCloudAutonomousVmCluster(
182
+ args: CreateCloudAutonomousVmClusterCommandInput,
183
+ cb: (err: any, data?: CreateCloudAutonomousVmClusterCommandOutput) => void
184
+ ): void;
185
+ createCloudAutonomousVmCluster(
186
+ args: CreateCloudAutonomousVmClusterCommandInput,
187
+ options: __HttpHandlerOptions,
188
+ cb: (err: any, data?: CreateCloudAutonomousVmClusterCommandOutput) => void
189
+ ): void;
190
+ createCloudExadataInfrastructure(
191
+ args: CreateCloudExadataInfrastructureCommandInput,
192
+ options?: __HttpHandlerOptions
193
+ ): Promise<CreateCloudExadataInfrastructureCommandOutput>;
194
+ createCloudExadataInfrastructure(
195
+ args: CreateCloudExadataInfrastructureCommandInput,
196
+ cb: (err: any, data?: CreateCloudExadataInfrastructureCommandOutput) => void
197
+ ): void;
198
+ createCloudExadataInfrastructure(
199
+ args: CreateCloudExadataInfrastructureCommandInput,
200
+ options: __HttpHandlerOptions,
201
+ cb: (err: any, data?: CreateCloudExadataInfrastructureCommandOutput) => void
202
+ ): void;
203
+ createCloudVmCluster(
204
+ args: CreateCloudVmClusterCommandInput,
205
+ options?: __HttpHandlerOptions
206
+ ): Promise<CreateCloudVmClusterCommandOutput>;
207
+ createCloudVmCluster(
208
+ args: CreateCloudVmClusterCommandInput,
209
+ cb: (err: any, data?: CreateCloudVmClusterCommandOutput) => void
210
+ ): void;
211
+ createCloudVmCluster(
212
+ args: CreateCloudVmClusterCommandInput,
213
+ options: __HttpHandlerOptions,
214
+ cb: (err: any, data?: CreateCloudVmClusterCommandOutput) => void
215
+ ): void;
216
+ createOdbNetwork(
217
+ args: CreateOdbNetworkCommandInput,
218
+ options?: __HttpHandlerOptions
219
+ ): Promise<CreateOdbNetworkCommandOutput>;
220
+ createOdbNetwork(
221
+ args: CreateOdbNetworkCommandInput,
222
+ cb: (err: any, data?: CreateOdbNetworkCommandOutput) => void
223
+ ): void;
224
+ createOdbNetwork(
225
+ args: CreateOdbNetworkCommandInput,
226
+ options: __HttpHandlerOptions,
227
+ cb: (err: any, data?: CreateOdbNetworkCommandOutput) => void
228
+ ): void;
229
+ createOdbPeeringConnection(
230
+ args: CreateOdbPeeringConnectionCommandInput,
231
+ options?: __HttpHandlerOptions
232
+ ): Promise<CreateOdbPeeringConnectionCommandOutput>;
233
+ createOdbPeeringConnection(
234
+ args: CreateOdbPeeringConnectionCommandInput,
235
+ cb: (err: any, data?: CreateOdbPeeringConnectionCommandOutput) => void
236
+ ): void;
237
+ createOdbPeeringConnection(
238
+ args: CreateOdbPeeringConnectionCommandInput,
239
+ options: __HttpHandlerOptions,
240
+ cb: (err: any, data?: CreateOdbPeeringConnectionCommandOutput) => void
241
+ ): void;
242
+ deleteCloudAutonomousVmCluster(
243
+ args: DeleteCloudAutonomousVmClusterCommandInput,
244
+ options?: __HttpHandlerOptions
245
+ ): Promise<DeleteCloudAutonomousVmClusterCommandOutput>;
246
+ deleteCloudAutonomousVmCluster(
247
+ args: DeleteCloudAutonomousVmClusterCommandInput,
248
+ cb: (err: any, data?: DeleteCloudAutonomousVmClusterCommandOutput) => void
249
+ ): void;
250
+ deleteCloudAutonomousVmCluster(
251
+ args: DeleteCloudAutonomousVmClusterCommandInput,
252
+ options: __HttpHandlerOptions,
253
+ cb: (err: any, data?: DeleteCloudAutonomousVmClusterCommandOutput) => void
254
+ ): void;
255
+ deleteCloudExadataInfrastructure(
256
+ args: DeleteCloudExadataInfrastructureCommandInput,
257
+ options?: __HttpHandlerOptions
258
+ ): Promise<DeleteCloudExadataInfrastructureCommandOutput>;
259
+ deleteCloudExadataInfrastructure(
260
+ args: DeleteCloudExadataInfrastructureCommandInput,
261
+ cb: (err: any, data?: DeleteCloudExadataInfrastructureCommandOutput) => void
262
+ ): void;
263
+ deleteCloudExadataInfrastructure(
264
+ args: DeleteCloudExadataInfrastructureCommandInput,
265
+ options: __HttpHandlerOptions,
266
+ cb: (err: any, data?: DeleteCloudExadataInfrastructureCommandOutput) => void
267
+ ): void;
268
+ deleteCloudVmCluster(
269
+ args: DeleteCloudVmClusterCommandInput,
270
+ options?: __HttpHandlerOptions
271
+ ): Promise<DeleteCloudVmClusterCommandOutput>;
272
+ deleteCloudVmCluster(
273
+ args: DeleteCloudVmClusterCommandInput,
274
+ cb: (err: any, data?: DeleteCloudVmClusterCommandOutput) => void
275
+ ): void;
276
+ deleteCloudVmCluster(
277
+ args: DeleteCloudVmClusterCommandInput,
278
+ options: __HttpHandlerOptions,
279
+ cb: (err: any, data?: DeleteCloudVmClusterCommandOutput) => void
280
+ ): void;
281
+ deleteOdbNetwork(
282
+ args: DeleteOdbNetworkCommandInput,
283
+ options?: __HttpHandlerOptions
284
+ ): Promise<DeleteOdbNetworkCommandOutput>;
285
+ deleteOdbNetwork(
286
+ args: DeleteOdbNetworkCommandInput,
287
+ cb: (err: any, data?: DeleteOdbNetworkCommandOutput) => void
288
+ ): void;
289
+ deleteOdbNetwork(
290
+ args: DeleteOdbNetworkCommandInput,
291
+ options: __HttpHandlerOptions,
292
+ cb: (err: any, data?: DeleteOdbNetworkCommandOutput) => void
293
+ ): void;
294
+ deleteOdbPeeringConnection(
295
+ args: DeleteOdbPeeringConnectionCommandInput,
296
+ options?: __HttpHandlerOptions
297
+ ): Promise<DeleteOdbPeeringConnectionCommandOutput>;
298
+ deleteOdbPeeringConnection(
299
+ args: DeleteOdbPeeringConnectionCommandInput,
300
+ cb: (err: any, data?: DeleteOdbPeeringConnectionCommandOutput) => void
301
+ ): void;
302
+ deleteOdbPeeringConnection(
303
+ args: DeleteOdbPeeringConnectionCommandInput,
304
+ options: __HttpHandlerOptions,
305
+ cb: (err: any, data?: DeleteOdbPeeringConnectionCommandOutput) => void
306
+ ): void;
307
+ getCloudAutonomousVmCluster(
308
+ args: GetCloudAutonomousVmClusterCommandInput,
309
+ options?: __HttpHandlerOptions
310
+ ): Promise<GetCloudAutonomousVmClusterCommandOutput>;
311
+ getCloudAutonomousVmCluster(
312
+ args: GetCloudAutonomousVmClusterCommandInput,
313
+ cb: (err: any, data?: GetCloudAutonomousVmClusterCommandOutput) => void
314
+ ): void;
315
+ getCloudAutonomousVmCluster(
316
+ args: GetCloudAutonomousVmClusterCommandInput,
317
+ options: __HttpHandlerOptions,
318
+ cb: (err: any, data?: GetCloudAutonomousVmClusterCommandOutput) => void
319
+ ): void;
320
+ getCloudExadataInfrastructure(
321
+ args: GetCloudExadataInfrastructureCommandInput,
322
+ options?: __HttpHandlerOptions
323
+ ): Promise<GetCloudExadataInfrastructureCommandOutput>;
324
+ getCloudExadataInfrastructure(
325
+ args: GetCloudExadataInfrastructureCommandInput,
326
+ cb: (err: any, data?: GetCloudExadataInfrastructureCommandOutput) => void
327
+ ): void;
328
+ getCloudExadataInfrastructure(
329
+ args: GetCloudExadataInfrastructureCommandInput,
330
+ options: __HttpHandlerOptions,
331
+ cb: (err: any, data?: GetCloudExadataInfrastructureCommandOutput) => void
332
+ ): void;
333
+ getCloudExadataInfrastructureUnallocatedResources(
334
+ args: GetCloudExadataInfrastructureUnallocatedResourcesCommandInput,
335
+ options?: __HttpHandlerOptions
336
+ ): Promise<GetCloudExadataInfrastructureUnallocatedResourcesCommandOutput>;
337
+ getCloudExadataInfrastructureUnallocatedResources(
338
+ args: GetCloudExadataInfrastructureUnallocatedResourcesCommandInput,
339
+ cb: (
340
+ err: any,
341
+ data?: GetCloudExadataInfrastructureUnallocatedResourcesCommandOutput
342
+ ) => void
343
+ ): void;
344
+ getCloudExadataInfrastructureUnallocatedResources(
345
+ args: GetCloudExadataInfrastructureUnallocatedResourcesCommandInput,
346
+ options: __HttpHandlerOptions,
347
+ cb: (
348
+ err: any,
349
+ data?: GetCloudExadataInfrastructureUnallocatedResourcesCommandOutput
350
+ ) => void
351
+ ): void;
352
+ getCloudVmCluster(
353
+ args: GetCloudVmClusterCommandInput,
354
+ options?: __HttpHandlerOptions
355
+ ): Promise<GetCloudVmClusterCommandOutput>;
356
+ getCloudVmCluster(
357
+ args: GetCloudVmClusterCommandInput,
358
+ cb: (err: any, data?: GetCloudVmClusterCommandOutput) => void
359
+ ): void;
360
+ getCloudVmCluster(
361
+ args: GetCloudVmClusterCommandInput,
362
+ options: __HttpHandlerOptions,
363
+ cb: (err: any, data?: GetCloudVmClusterCommandOutput) => void
364
+ ): void;
365
+ getDbNode(
366
+ args: GetDbNodeCommandInput,
367
+ options?: __HttpHandlerOptions
368
+ ): Promise<GetDbNodeCommandOutput>;
369
+ getDbNode(
370
+ args: GetDbNodeCommandInput,
371
+ cb: (err: any, data?: GetDbNodeCommandOutput) => void
372
+ ): void;
373
+ getDbNode(
374
+ args: GetDbNodeCommandInput,
375
+ options: __HttpHandlerOptions,
376
+ cb: (err: any, data?: GetDbNodeCommandOutput) => void
377
+ ): void;
378
+ getDbServer(
379
+ args: GetDbServerCommandInput,
380
+ options?: __HttpHandlerOptions
381
+ ): Promise<GetDbServerCommandOutput>;
382
+ getDbServer(
383
+ args: GetDbServerCommandInput,
384
+ cb: (err: any, data?: GetDbServerCommandOutput) => void
385
+ ): void;
386
+ getDbServer(
387
+ args: GetDbServerCommandInput,
388
+ options: __HttpHandlerOptions,
389
+ cb: (err: any, data?: GetDbServerCommandOutput) => void
390
+ ): void;
391
+ getOciOnboardingStatus(): Promise<GetOciOnboardingStatusCommandOutput>;
392
+ getOciOnboardingStatus(
393
+ args: GetOciOnboardingStatusCommandInput,
394
+ options?: __HttpHandlerOptions
395
+ ): Promise<GetOciOnboardingStatusCommandOutput>;
396
+ getOciOnboardingStatus(
397
+ args: GetOciOnboardingStatusCommandInput,
398
+ cb: (err: any, data?: GetOciOnboardingStatusCommandOutput) => void
399
+ ): void;
400
+ getOciOnboardingStatus(
401
+ args: GetOciOnboardingStatusCommandInput,
402
+ options: __HttpHandlerOptions,
403
+ cb: (err: any, data?: GetOciOnboardingStatusCommandOutput) => void
404
+ ): void;
405
+ getOdbNetwork(
406
+ args: GetOdbNetworkCommandInput,
407
+ options?: __HttpHandlerOptions
408
+ ): Promise<GetOdbNetworkCommandOutput>;
409
+ getOdbNetwork(
410
+ args: GetOdbNetworkCommandInput,
411
+ cb: (err: any, data?: GetOdbNetworkCommandOutput) => void
412
+ ): void;
413
+ getOdbNetwork(
414
+ args: GetOdbNetworkCommandInput,
415
+ options: __HttpHandlerOptions,
416
+ cb: (err: any, data?: GetOdbNetworkCommandOutput) => void
417
+ ): void;
418
+ getOdbPeeringConnection(
419
+ args: GetOdbPeeringConnectionCommandInput,
420
+ options?: __HttpHandlerOptions
421
+ ): Promise<GetOdbPeeringConnectionCommandOutput>;
422
+ getOdbPeeringConnection(
423
+ args: GetOdbPeeringConnectionCommandInput,
424
+ cb: (err: any, data?: GetOdbPeeringConnectionCommandOutput) => void
425
+ ): void;
426
+ getOdbPeeringConnection(
427
+ args: GetOdbPeeringConnectionCommandInput,
428
+ options: __HttpHandlerOptions,
429
+ cb: (err: any, data?: GetOdbPeeringConnectionCommandOutput) => void
430
+ ): void;
431
+ initializeService(): Promise<InitializeServiceCommandOutput>;
432
+ initializeService(
433
+ args: InitializeServiceCommandInput,
434
+ options?: __HttpHandlerOptions
435
+ ): Promise<InitializeServiceCommandOutput>;
436
+ initializeService(
437
+ args: InitializeServiceCommandInput,
438
+ cb: (err: any, data?: InitializeServiceCommandOutput) => void
439
+ ): void;
440
+ initializeService(
441
+ args: InitializeServiceCommandInput,
442
+ options: __HttpHandlerOptions,
443
+ cb: (err: any, data?: InitializeServiceCommandOutput) => void
444
+ ): void;
445
+ listAutonomousVirtualMachines(
446
+ args: ListAutonomousVirtualMachinesCommandInput,
447
+ options?: __HttpHandlerOptions
448
+ ): Promise<ListAutonomousVirtualMachinesCommandOutput>;
449
+ listAutonomousVirtualMachines(
450
+ args: ListAutonomousVirtualMachinesCommandInput,
451
+ cb: (err: any, data?: ListAutonomousVirtualMachinesCommandOutput) => void
452
+ ): void;
453
+ listAutonomousVirtualMachines(
454
+ args: ListAutonomousVirtualMachinesCommandInput,
455
+ options: __HttpHandlerOptions,
456
+ cb: (err: any, data?: ListAutonomousVirtualMachinesCommandOutput) => void
457
+ ): void;
458
+ listCloudAutonomousVmClusters(): Promise<ListCloudAutonomousVmClustersCommandOutput>;
459
+ listCloudAutonomousVmClusters(
460
+ args: ListCloudAutonomousVmClustersCommandInput,
461
+ options?: __HttpHandlerOptions
462
+ ): Promise<ListCloudAutonomousVmClustersCommandOutput>;
463
+ listCloudAutonomousVmClusters(
464
+ args: ListCloudAutonomousVmClustersCommandInput,
465
+ cb: (err: any, data?: ListCloudAutonomousVmClustersCommandOutput) => void
466
+ ): void;
467
+ listCloudAutonomousVmClusters(
468
+ args: ListCloudAutonomousVmClustersCommandInput,
469
+ options: __HttpHandlerOptions,
470
+ cb: (err: any, data?: ListCloudAutonomousVmClustersCommandOutput) => void
471
+ ): void;
472
+ listCloudExadataInfrastructures(): Promise<ListCloudExadataInfrastructuresCommandOutput>;
473
+ listCloudExadataInfrastructures(
474
+ args: ListCloudExadataInfrastructuresCommandInput,
475
+ options?: __HttpHandlerOptions
476
+ ): Promise<ListCloudExadataInfrastructuresCommandOutput>;
477
+ listCloudExadataInfrastructures(
478
+ args: ListCloudExadataInfrastructuresCommandInput,
479
+ cb: (err: any, data?: ListCloudExadataInfrastructuresCommandOutput) => void
480
+ ): void;
481
+ listCloudExadataInfrastructures(
482
+ args: ListCloudExadataInfrastructuresCommandInput,
483
+ options: __HttpHandlerOptions,
484
+ cb: (err: any, data?: ListCloudExadataInfrastructuresCommandOutput) => void
485
+ ): void;
486
+ listCloudVmClusters(): Promise<ListCloudVmClustersCommandOutput>;
487
+ listCloudVmClusters(
488
+ args: ListCloudVmClustersCommandInput,
489
+ options?: __HttpHandlerOptions
490
+ ): Promise<ListCloudVmClustersCommandOutput>;
491
+ listCloudVmClusters(
492
+ args: ListCloudVmClustersCommandInput,
493
+ cb: (err: any, data?: ListCloudVmClustersCommandOutput) => void
494
+ ): void;
495
+ listCloudVmClusters(
496
+ args: ListCloudVmClustersCommandInput,
497
+ options: __HttpHandlerOptions,
498
+ cb: (err: any, data?: ListCloudVmClustersCommandOutput) => void
499
+ ): void;
500
+ listDbNodes(
501
+ args: ListDbNodesCommandInput,
502
+ options?: __HttpHandlerOptions
503
+ ): Promise<ListDbNodesCommandOutput>;
504
+ listDbNodes(
505
+ args: ListDbNodesCommandInput,
506
+ cb: (err: any, data?: ListDbNodesCommandOutput) => void
507
+ ): void;
508
+ listDbNodes(
509
+ args: ListDbNodesCommandInput,
510
+ options: __HttpHandlerOptions,
511
+ cb: (err: any, data?: ListDbNodesCommandOutput) => void
512
+ ): void;
513
+ listDbServers(
514
+ args: ListDbServersCommandInput,
515
+ options?: __HttpHandlerOptions
516
+ ): Promise<ListDbServersCommandOutput>;
517
+ listDbServers(
518
+ args: ListDbServersCommandInput,
519
+ cb: (err: any, data?: ListDbServersCommandOutput) => void
520
+ ): void;
521
+ listDbServers(
522
+ args: ListDbServersCommandInput,
523
+ options: __HttpHandlerOptions,
524
+ cb: (err: any, data?: ListDbServersCommandOutput) => void
525
+ ): void;
526
+ listDbSystemShapes(): Promise<ListDbSystemShapesCommandOutput>;
527
+ listDbSystemShapes(
528
+ args: ListDbSystemShapesCommandInput,
529
+ options?: __HttpHandlerOptions
530
+ ): Promise<ListDbSystemShapesCommandOutput>;
531
+ listDbSystemShapes(
532
+ args: ListDbSystemShapesCommandInput,
533
+ cb: (err: any, data?: ListDbSystemShapesCommandOutput) => void
534
+ ): void;
535
+ listDbSystemShapes(
536
+ args: ListDbSystemShapesCommandInput,
537
+ options: __HttpHandlerOptions,
538
+ cb: (err: any, data?: ListDbSystemShapesCommandOutput) => void
539
+ ): void;
540
+ listGiVersions(): Promise<ListGiVersionsCommandOutput>;
541
+ listGiVersions(
542
+ args: ListGiVersionsCommandInput,
543
+ options?: __HttpHandlerOptions
544
+ ): Promise<ListGiVersionsCommandOutput>;
545
+ listGiVersions(
546
+ args: ListGiVersionsCommandInput,
547
+ cb: (err: any, data?: ListGiVersionsCommandOutput) => void
548
+ ): void;
549
+ listGiVersions(
550
+ args: ListGiVersionsCommandInput,
551
+ options: __HttpHandlerOptions,
552
+ cb: (err: any, data?: ListGiVersionsCommandOutput) => void
553
+ ): void;
554
+ listOdbNetworks(): Promise<ListOdbNetworksCommandOutput>;
555
+ listOdbNetworks(
556
+ args: ListOdbNetworksCommandInput,
557
+ options?: __HttpHandlerOptions
558
+ ): Promise<ListOdbNetworksCommandOutput>;
559
+ listOdbNetworks(
560
+ args: ListOdbNetworksCommandInput,
561
+ cb: (err: any, data?: ListOdbNetworksCommandOutput) => void
562
+ ): void;
563
+ listOdbNetworks(
564
+ args: ListOdbNetworksCommandInput,
565
+ options: __HttpHandlerOptions,
566
+ cb: (err: any, data?: ListOdbNetworksCommandOutput) => void
567
+ ): void;
568
+ listOdbPeeringConnections(): Promise<ListOdbPeeringConnectionsCommandOutput>;
569
+ listOdbPeeringConnections(
570
+ args: ListOdbPeeringConnectionsCommandInput,
571
+ options?: __HttpHandlerOptions
572
+ ): Promise<ListOdbPeeringConnectionsCommandOutput>;
573
+ listOdbPeeringConnections(
574
+ args: ListOdbPeeringConnectionsCommandInput,
575
+ cb: (err: any, data?: ListOdbPeeringConnectionsCommandOutput) => void
576
+ ): void;
577
+ listOdbPeeringConnections(
578
+ args: ListOdbPeeringConnectionsCommandInput,
579
+ options: __HttpHandlerOptions,
580
+ cb: (err: any, data?: ListOdbPeeringConnectionsCommandOutput) => void
581
+ ): void;
582
+ listSystemVersions(
583
+ args: ListSystemVersionsCommandInput,
584
+ options?: __HttpHandlerOptions
585
+ ): Promise<ListSystemVersionsCommandOutput>;
586
+ listSystemVersions(
587
+ args: ListSystemVersionsCommandInput,
588
+ cb: (err: any, data?: ListSystemVersionsCommandOutput) => void
589
+ ): void;
590
+ listSystemVersions(
591
+ args: ListSystemVersionsCommandInput,
592
+ options: __HttpHandlerOptions,
593
+ cb: (err: any, data?: ListSystemVersionsCommandOutput) => void
594
+ ): void;
595
+ listTagsForResource(
596
+ args: ListTagsForResourceCommandInput,
597
+ options?: __HttpHandlerOptions
598
+ ): Promise<ListTagsForResourceCommandOutput>;
599
+ listTagsForResource(
600
+ args: ListTagsForResourceCommandInput,
601
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
602
+ ): void;
603
+ listTagsForResource(
604
+ args: ListTagsForResourceCommandInput,
605
+ options: __HttpHandlerOptions,
606
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
607
+ ): void;
608
+ rebootDbNode(
609
+ args: RebootDbNodeCommandInput,
610
+ options?: __HttpHandlerOptions
611
+ ): Promise<RebootDbNodeCommandOutput>;
612
+ rebootDbNode(
613
+ args: RebootDbNodeCommandInput,
614
+ cb: (err: any, data?: RebootDbNodeCommandOutput) => void
615
+ ): void;
616
+ rebootDbNode(
617
+ args: RebootDbNodeCommandInput,
618
+ options: __HttpHandlerOptions,
619
+ cb: (err: any, data?: RebootDbNodeCommandOutput) => void
620
+ ): void;
621
+ startDbNode(
622
+ args: StartDbNodeCommandInput,
623
+ options?: __HttpHandlerOptions
624
+ ): Promise<StartDbNodeCommandOutput>;
625
+ startDbNode(
626
+ args: StartDbNodeCommandInput,
627
+ cb: (err: any, data?: StartDbNodeCommandOutput) => void
628
+ ): void;
629
+ startDbNode(
630
+ args: StartDbNodeCommandInput,
631
+ options: __HttpHandlerOptions,
632
+ cb: (err: any, data?: StartDbNodeCommandOutput) => void
633
+ ): void;
634
+ stopDbNode(
635
+ args: StopDbNodeCommandInput,
636
+ options?: __HttpHandlerOptions
637
+ ): Promise<StopDbNodeCommandOutput>;
638
+ stopDbNode(
639
+ args: StopDbNodeCommandInput,
640
+ cb: (err: any, data?: StopDbNodeCommandOutput) => void
641
+ ): void;
642
+ stopDbNode(
643
+ args: StopDbNodeCommandInput,
644
+ options: __HttpHandlerOptions,
645
+ cb: (err: any, data?: StopDbNodeCommandOutput) => void
646
+ ): void;
647
+ tagResource(
648
+ args: TagResourceCommandInput,
649
+ options?: __HttpHandlerOptions
650
+ ): Promise<TagResourceCommandOutput>;
651
+ tagResource(
652
+ args: TagResourceCommandInput,
653
+ cb: (err: any, data?: TagResourceCommandOutput) => void
654
+ ): void;
655
+ tagResource(
656
+ args: TagResourceCommandInput,
657
+ options: __HttpHandlerOptions,
658
+ cb: (err: any, data?: TagResourceCommandOutput) => void
659
+ ): void;
660
+ untagResource(
661
+ args: UntagResourceCommandInput,
662
+ options?: __HttpHandlerOptions
663
+ ): Promise<UntagResourceCommandOutput>;
664
+ untagResource(
665
+ args: UntagResourceCommandInput,
666
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
667
+ ): void;
668
+ untagResource(
669
+ args: UntagResourceCommandInput,
670
+ options: __HttpHandlerOptions,
671
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
672
+ ): void;
673
+ updateCloudExadataInfrastructure(
674
+ args: UpdateCloudExadataInfrastructureCommandInput,
675
+ options?: __HttpHandlerOptions
676
+ ): Promise<UpdateCloudExadataInfrastructureCommandOutput>;
677
+ updateCloudExadataInfrastructure(
678
+ args: UpdateCloudExadataInfrastructureCommandInput,
679
+ cb: (err: any, data?: UpdateCloudExadataInfrastructureCommandOutput) => void
680
+ ): void;
681
+ updateCloudExadataInfrastructure(
682
+ args: UpdateCloudExadataInfrastructureCommandInput,
683
+ options: __HttpHandlerOptions,
684
+ cb: (err: any, data?: UpdateCloudExadataInfrastructureCommandOutput) => void
685
+ ): void;
686
+ updateOdbNetwork(
687
+ args: UpdateOdbNetworkCommandInput,
688
+ options?: __HttpHandlerOptions
689
+ ): Promise<UpdateOdbNetworkCommandOutput>;
690
+ updateOdbNetwork(
691
+ args: UpdateOdbNetworkCommandInput,
692
+ cb: (err: any, data?: UpdateOdbNetworkCommandOutput) => void
693
+ ): void;
694
+ updateOdbNetwork(
695
+ args: UpdateOdbNetworkCommandInput,
696
+ options: __HttpHandlerOptions,
697
+ cb: (err: any, data?: UpdateOdbNetworkCommandOutput) => void
698
+ ): void;
699
+ }
700
+ export declare class Odb extends OdbClient implements Odb {}