@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,1187 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { OdbServiceException as __BaseException } from "./OdbServiceException";
3
+ export interface AcceptMarketplaceRegistrationInput {
4
+ marketplaceRegistrationToken: string | undefined;
5
+ }
6
+ export interface AcceptMarketplaceRegistrationOutput {}
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ constructor(
11
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
12
+ );
13
+ }
14
+ export declare class ConflictException extends __BaseException {
15
+ readonly name: "ConflictException";
16
+ readonly $fault: "client";
17
+ resourceId: string | undefined;
18
+ resourceType: string | undefined;
19
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
20
+ }
21
+ export declare class InternalServerException extends __BaseException {
22
+ readonly name: "InternalServerException";
23
+ readonly $fault: "server";
24
+ $retryable: {};
25
+ retryAfterSeconds?: number | undefined;
26
+ constructor(
27
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
28
+ );
29
+ }
30
+ export declare class ThrottlingException extends __BaseException {
31
+ readonly name: "ThrottlingException";
32
+ readonly $fault: "client";
33
+ retryAfterSeconds?: number | undefined;
34
+ constructor(
35
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
36
+ );
37
+ }
38
+ export interface ValidationExceptionField {
39
+ name: string | undefined;
40
+ message: string | undefined;
41
+ }
42
+ export declare const ValidationExceptionReason: {
43
+ readonly CANNOT_PARSE: "cannotParse";
44
+ readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
45
+ readonly OTHER: "other";
46
+ readonly UNKNOWN_OPERATION: "unknownOperation";
47
+ };
48
+ export type ValidationExceptionReason =
49
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
50
+ export declare class ValidationException extends __BaseException {
51
+ readonly name: "ValidationException";
52
+ readonly $fault: "client";
53
+ reason: ValidationExceptionReason | undefined;
54
+ fieldList?: ValidationExceptionField[] | undefined;
55
+ constructor(
56
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
57
+ );
58
+ }
59
+ export declare const Access: {
60
+ readonly DISABLED: "DISABLED";
61
+ readonly ENABLED: "ENABLED";
62
+ };
63
+ export type Access = (typeof Access)[keyof typeof Access];
64
+ export declare const ResourceStatus: {
65
+ readonly AVAILABLE: "AVAILABLE";
66
+ readonly FAILED: "FAILED";
67
+ readonly MAINTENANCE_IN_PROGRESS: "MAINTENANCE_IN_PROGRESS";
68
+ readonly PROVISIONING: "PROVISIONING";
69
+ readonly TERMINATED: "TERMINATED";
70
+ readonly TERMINATING: "TERMINATING";
71
+ readonly UPDATING: "UPDATING";
72
+ };
73
+ export type ResourceStatus =
74
+ (typeof ResourceStatus)[keyof typeof ResourceStatus];
75
+ export interface AutonomousVirtualMachineSummary {
76
+ autonomousVirtualMachineId?: string | undefined;
77
+ status?: ResourceStatus | undefined;
78
+ statusReason?: string | undefined;
79
+ vmName?: string | undefined;
80
+ dbServerId?: string | undefined;
81
+ dbServerDisplayName?: string | undefined;
82
+ cpuCoreCount?: number | undefined;
83
+ memorySizeInGBs?: number | undefined;
84
+ dbNodeStorageSizeInGBs?: number | undefined;
85
+ clientIpAddress?: string | undefined;
86
+ cloudAutonomousVmClusterId?: string | undefined;
87
+ ocid?: string | undefined;
88
+ ociResourceAnchorName?: string | undefined;
89
+ }
90
+ export declare const ComputeModel: {
91
+ readonly ECPU: "ECPU";
92
+ readonly OCPU: "OCPU";
93
+ };
94
+ export type ComputeModel = (typeof ComputeModel)[keyof typeof ComputeModel];
95
+ export declare const LicenseModel: {
96
+ readonly BRING_YOUR_OWN_LICENSE: "BRING_YOUR_OWN_LICENSE";
97
+ readonly LICENSE_INCLUDED: "LICENSE_INCLUDED";
98
+ };
99
+ export type LicenseModel = (typeof LicenseModel)[keyof typeof LicenseModel];
100
+ export declare const DayOfWeekName: {
101
+ readonly FRIDAY: "FRIDAY";
102
+ readonly MONDAY: "MONDAY";
103
+ readonly SATURDAY: "SATURDAY";
104
+ readonly SUNDAY: "SUNDAY";
105
+ readonly THURSDAY: "THURSDAY";
106
+ readonly TUESDAY: "TUESDAY";
107
+ readonly WEDNESDAY: "WEDNESDAY";
108
+ };
109
+ export type DayOfWeekName = (typeof DayOfWeekName)[keyof typeof DayOfWeekName];
110
+ export interface DayOfWeek {
111
+ name?: DayOfWeekName | undefined;
112
+ }
113
+ export declare const MonthName: {
114
+ readonly APRIL: "APRIL";
115
+ readonly AUGUST: "AUGUST";
116
+ readonly DECEMBER: "DECEMBER";
117
+ readonly FEBRUARY: "FEBRUARY";
118
+ readonly JANUARY: "JANUARY";
119
+ readonly JULY: "JULY";
120
+ readonly JUNE: "JUNE";
121
+ readonly MARCH: "MARCH";
122
+ readonly MAY: "MAY";
123
+ readonly NOVEMBER: "NOVEMBER";
124
+ readonly OCTOBER: "OCTOBER";
125
+ readonly SEPTEMBER: "SEPTEMBER";
126
+ };
127
+ export type MonthName = (typeof MonthName)[keyof typeof MonthName];
128
+ export interface Month {
129
+ name?: MonthName | undefined;
130
+ }
131
+ export declare const PatchingModeType: {
132
+ readonly NONROLLING: "NONROLLING";
133
+ readonly ROLLING: "ROLLING";
134
+ };
135
+ export type PatchingModeType =
136
+ (typeof PatchingModeType)[keyof typeof PatchingModeType];
137
+ export declare const PreferenceType: {
138
+ readonly CUSTOM_PREFERENCE: "CUSTOM_PREFERENCE";
139
+ readonly NO_PREFERENCE: "NO_PREFERENCE";
140
+ };
141
+ export type PreferenceType =
142
+ (typeof PreferenceType)[keyof typeof PreferenceType];
143
+ export interface MaintenanceWindow {
144
+ customActionTimeoutInMins?: number | undefined;
145
+ daysOfWeek?: DayOfWeek[] | undefined;
146
+ hoursOfDay?: number[] | undefined;
147
+ isCustomActionTimeoutEnabled?: boolean | undefined;
148
+ leadTimeInWeeks?: number | undefined;
149
+ months?: Month[] | undefined;
150
+ patchingMode?: PatchingModeType | undefined;
151
+ preference?: PreferenceType | undefined;
152
+ skipRu?: boolean | undefined;
153
+ weeksOfMonth?: number[] | undefined;
154
+ }
155
+ export interface CloudAutonomousVmCluster {
156
+ cloudAutonomousVmClusterId: string | undefined;
157
+ cloudAutonomousVmClusterArn?: string | undefined;
158
+ odbNetworkId?: string | undefined;
159
+ ociResourceAnchorName?: string | undefined;
160
+ percentProgress?: number | undefined;
161
+ displayName?: string | undefined;
162
+ status?: ResourceStatus | undefined;
163
+ statusReason?: string | undefined;
164
+ cloudExadataInfrastructureId?: string | undefined;
165
+ autonomousDataStoragePercentage?: number | undefined;
166
+ autonomousDataStorageSizeInTBs?: number | undefined;
167
+ availableAutonomousDataStorageSizeInTBs?: number | undefined;
168
+ availableContainerDatabases?: number | undefined;
169
+ availableCpus?: number | undefined;
170
+ computeModel?: ComputeModel | undefined;
171
+ cpuCoreCount?: number | undefined;
172
+ cpuCoreCountPerNode?: number | undefined;
173
+ cpuPercentage?: number | undefined;
174
+ dataStorageSizeInGBs?: number | undefined;
175
+ dataStorageSizeInTBs?: number | undefined;
176
+ dbNodeStorageSizeInGBs?: number | undefined;
177
+ dbServers?: string[] | undefined;
178
+ description?: string | undefined;
179
+ domain?: string | undefined;
180
+ exadataStorageInTBsLowestScaledValue?: number | undefined;
181
+ hostname?: string | undefined;
182
+ ocid?: string | undefined;
183
+ ociUrl?: string | undefined;
184
+ isMtlsEnabledVmCluster?: boolean | undefined;
185
+ licenseModel?: LicenseModel | undefined;
186
+ maintenanceWindow?: MaintenanceWindow | undefined;
187
+ maxAcdsLowestScaledValue?: number | undefined;
188
+ memoryPerOracleComputeUnitInGBs?: number | undefined;
189
+ memorySizeInGBs?: number | undefined;
190
+ nodeCount?: number | undefined;
191
+ nonProvisionableAutonomousContainerDatabases?: number | undefined;
192
+ provisionableAutonomousContainerDatabases?: number | undefined;
193
+ provisionedAutonomousContainerDatabases?: number | undefined;
194
+ provisionedCpus?: number | undefined;
195
+ reclaimableCpus?: number | undefined;
196
+ reservedCpus?: number | undefined;
197
+ scanListenerPortNonTls?: number | undefined;
198
+ scanListenerPortTls?: number | undefined;
199
+ shape?: string | undefined;
200
+ createdAt?: Date | undefined;
201
+ timeDatabaseSslCertificateExpires?: Date | undefined;
202
+ timeOrdsCertificateExpires?: Date | undefined;
203
+ timeZone?: string | undefined;
204
+ totalContainerDatabases?: number | undefined;
205
+ }
206
+ export interface CloudAutonomousVmClusterSummary {
207
+ cloudAutonomousVmClusterId: string | undefined;
208
+ cloudAutonomousVmClusterArn?: string | undefined;
209
+ odbNetworkId?: string | undefined;
210
+ ociResourceAnchorName?: string | undefined;
211
+ percentProgress?: number | undefined;
212
+ displayName?: string | undefined;
213
+ status?: ResourceStatus | undefined;
214
+ statusReason?: string | undefined;
215
+ cloudExadataInfrastructureId?: string | undefined;
216
+ autonomousDataStoragePercentage?: number | undefined;
217
+ autonomousDataStorageSizeInTBs?: number | undefined;
218
+ availableAutonomousDataStorageSizeInTBs?: number | undefined;
219
+ availableContainerDatabases?: number | undefined;
220
+ availableCpus?: number | undefined;
221
+ computeModel?: ComputeModel | undefined;
222
+ cpuCoreCount?: number | undefined;
223
+ cpuCoreCountPerNode?: number | undefined;
224
+ cpuPercentage?: number | undefined;
225
+ dataStorageSizeInGBs?: number | undefined;
226
+ dataStorageSizeInTBs?: number | undefined;
227
+ dbNodeStorageSizeInGBs?: number | undefined;
228
+ dbServers?: string[] | undefined;
229
+ description?: string | undefined;
230
+ domain?: string | undefined;
231
+ exadataStorageInTBsLowestScaledValue?: number | undefined;
232
+ hostname?: string | undefined;
233
+ ocid?: string | undefined;
234
+ ociUrl?: string | undefined;
235
+ isMtlsEnabledVmCluster?: boolean | undefined;
236
+ licenseModel?: LicenseModel | undefined;
237
+ maintenanceWindow?: MaintenanceWindow | undefined;
238
+ maxAcdsLowestScaledValue?: number | undefined;
239
+ memoryPerOracleComputeUnitInGBs?: number | undefined;
240
+ memorySizeInGBs?: number | undefined;
241
+ nodeCount?: number | undefined;
242
+ nonProvisionableAutonomousContainerDatabases?: number | undefined;
243
+ provisionableAutonomousContainerDatabases?: number | undefined;
244
+ provisionedAutonomousContainerDatabases?: number | undefined;
245
+ provisionedCpus?: number | undefined;
246
+ reclaimableCpus?: number | undefined;
247
+ reservedCpus?: number | undefined;
248
+ scanListenerPortNonTls?: number | undefined;
249
+ scanListenerPortTls?: number | undefined;
250
+ shape?: string | undefined;
251
+ createdAt?: Date | undefined;
252
+ timeDatabaseSslCertificateExpires?: Date | undefined;
253
+ timeOrdsCertificateExpires?: Date | undefined;
254
+ timeZone?: string | undefined;
255
+ totalContainerDatabases?: number | undefined;
256
+ }
257
+ export interface CreateCloudAutonomousVmClusterInput {
258
+ cloudExadataInfrastructureId: string | undefined;
259
+ odbNetworkId: string | undefined;
260
+ displayName: string | undefined;
261
+ clientToken?: string | undefined;
262
+ autonomousDataStorageSizeInTBs: number | undefined;
263
+ cpuCoreCountPerNode: number | undefined;
264
+ dbServers?: string[] | undefined;
265
+ description?: string | undefined;
266
+ isMtlsEnabledVmCluster?: boolean | undefined;
267
+ licenseModel?: LicenseModel | undefined;
268
+ maintenanceWindow?: MaintenanceWindow | undefined;
269
+ memoryPerOracleComputeUnitInGBs: number | undefined;
270
+ scanListenerPortNonTls?: number | undefined;
271
+ scanListenerPortTls?: number | undefined;
272
+ tags?: Record<string, string> | undefined;
273
+ timeZone?: string | undefined;
274
+ totalContainerDatabases: number | undefined;
275
+ }
276
+ export interface CreateCloudAutonomousVmClusterOutput {
277
+ displayName?: string | undefined;
278
+ status?: ResourceStatus | undefined;
279
+ statusReason?: string | undefined;
280
+ cloudAutonomousVmClusterId: string | undefined;
281
+ }
282
+ export declare class ResourceNotFoundException extends __BaseException {
283
+ readonly name: "ResourceNotFoundException";
284
+ readonly $fault: "client";
285
+ resourceId: string | undefined;
286
+ resourceType: string | undefined;
287
+ constructor(
288
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
289
+ );
290
+ }
291
+ export declare class ServiceQuotaExceededException extends __BaseException {
292
+ readonly name: "ServiceQuotaExceededException";
293
+ readonly $fault: "client";
294
+ resourceId: string | undefined;
295
+ resourceType: string | undefined;
296
+ quotaCode: string | undefined;
297
+ constructor(
298
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
299
+ );
300
+ }
301
+ export interface DeleteCloudAutonomousVmClusterInput {
302
+ cloudAutonomousVmClusterId: string | undefined;
303
+ }
304
+ export interface DeleteCloudAutonomousVmClusterOutput {}
305
+ export interface GetCloudAutonomousVmClusterInput {
306
+ cloudAutonomousVmClusterId: string | undefined;
307
+ }
308
+ export interface GetCloudAutonomousVmClusterOutput {
309
+ cloudAutonomousVmCluster?: CloudAutonomousVmCluster | undefined;
310
+ }
311
+ export interface ListAutonomousVirtualMachinesInput {
312
+ maxResults?: number | undefined;
313
+ nextToken?: string | undefined;
314
+ cloudAutonomousVmClusterId: string | undefined;
315
+ }
316
+ export interface ListAutonomousVirtualMachinesOutput {
317
+ nextToken?: string | undefined;
318
+ autonomousVirtualMachines: AutonomousVirtualMachineSummary[] | undefined;
319
+ }
320
+ export interface ListCloudAutonomousVmClustersInput {
321
+ maxResults?: number | undefined;
322
+ nextToken?: string | undefined;
323
+ cloudExadataInfrastructureId?: string | undefined;
324
+ }
325
+ export interface ListCloudAutonomousVmClustersOutput {
326
+ nextToken?: string | undefined;
327
+ cloudAutonomousVmClusters: CloudAutonomousVmClusterSummary[] | undefined;
328
+ }
329
+ export interface CloudAutonomousVmClusterResourceDetails {
330
+ cloudAutonomousVmClusterId?: string | undefined;
331
+ unallocatedAdbStorageInTBs?: number | undefined;
332
+ }
333
+ export interface CustomerContact {
334
+ email?: string | undefined;
335
+ }
336
+ export interface CloudExadataInfrastructure {
337
+ cloudExadataInfrastructureId: string | undefined;
338
+ displayName?: string | undefined;
339
+ status?: ResourceStatus | undefined;
340
+ statusReason?: string | undefined;
341
+ cloudExadataInfrastructureArn?: string | undefined;
342
+ activatedStorageCount?: number | undefined;
343
+ additionalStorageCount?: number | undefined;
344
+ availableStorageSizeInGBs?: number | undefined;
345
+ availabilityZone?: string | undefined;
346
+ availabilityZoneId?: string | undefined;
347
+ computeCount?: number | undefined;
348
+ cpuCount?: number | undefined;
349
+ customerContactsToSendToOCI?: CustomerContact[] | undefined;
350
+ dataStorageSizeInTBs?: number | undefined;
351
+ dbNodeStorageSizeInGBs?: number | undefined;
352
+ dbServerVersion?: string | undefined;
353
+ lastMaintenanceRunId?: string | undefined;
354
+ maintenanceWindow?: MaintenanceWindow | undefined;
355
+ maxCpuCount?: number | undefined;
356
+ maxDataStorageInTBs?: number | undefined;
357
+ maxDbNodeStorageSizeInGBs?: number | undefined;
358
+ maxMemoryInGBs?: number | undefined;
359
+ memorySizeInGBs?: number | undefined;
360
+ monthlyDbServerVersion?: string | undefined;
361
+ monthlyStorageServerVersion?: string | undefined;
362
+ nextMaintenanceRunId?: string | undefined;
363
+ ociResourceAnchorName?: string | undefined;
364
+ ociUrl?: string | undefined;
365
+ ocid?: string | undefined;
366
+ shape?: string | undefined;
367
+ storageCount?: number | undefined;
368
+ storageServerVersion?: string | undefined;
369
+ createdAt?: Date | undefined;
370
+ totalStorageSizeInGBs?: number | undefined;
371
+ percentProgress?: number | undefined;
372
+ databaseServerType?: string | undefined;
373
+ storageServerType?: string | undefined;
374
+ computeModel?: ComputeModel | undefined;
375
+ }
376
+ export interface CloudExadataInfrastructureSummary {
377
+ cloudExadataInfrastructureId: string | undefined;
378
+ displayName?: string | undefined;
379
+ status?: ResourceStatus | undefined;
380
+ statusReason?: string | undefined;
381
+ cloudExadataInfrastructureArn?: string | undefined;
382
+ activatedStorageCount?: number | undefined;
383
+ additionalStorageCount?: number | undefined;
384
+ availableStorageSizeInGBs?: number | undefined;
385
+ availabilityZone?: string | undefined;
386
+ availabilityZoneId?: string | undefined;
387
+ computeCount?: number | undefined;
388
+ cpuCount?: number | undefined;
389
+ customerContactsToSendToOCI?: CustomerContact[] | undefined;
390
+ dataStorageSizeInTBs?: number | undefined;
391
+ dbNodeStorageSizeInGBs?: number | undefined;
392
+ dbServerVersion?: string | undefined;
393
+ lastMaintenanceRunId?: string | undefined;
394
+ maintenanceWindow?: MaintenanceWindow | undefined;
395
+ maxCpuCount?: number | undefined;
396
+ maxDataStorageInTBs?: number | undefined;
397
+ maxDbNodeStorageSizeInGBs?: number | undefined;
398
+ maxMemoryInGBs?: number | undefined;
399
+ memorySizeInGBs?: number | undefined;
400
+ monthlyDbServerVersion?: string | undefined;
401
+ monthlyStorageServerVersion?: string | undefined;
402
+ nextMaintenanceRunId?: string | undefined;
403
+ ociResourceAnchorName?: string | undefined;
404
+ ociUrl?: string | undefined;
405
+ ocid?: string | undefined;
406
+ shape?: string | undefined;
407
+ storageCount?: number | undefined;
408
+ storageServerVersion?: string | undefined;
409
+ createdAt?: Date | undefined;
410
+ totalStorageSizeInGBs?: number | undefined;
411
+ percentProgress?: number | undefined;
412
+ databaseServerType?: string | undefined;
413
+ storageServerType?: string | undefined;
414
+ computeModel?: ComputeModel | undefined;
415
+ }
416
+ export interface CreateCloudExadataInfrastructureInput {
417
+ displayName: string | undefined;
418
+ shape: string | undefined;
419
+ availabilityZone?: string | undefined;
420
+ availabilityZoneId?: string | undefined;
421
+ tags?: Record<string, string> | undefined;
422
+ computeCount: number | undefined;
423
+ customerContactsToSendToOCI?: CustomerContact[] | undefined;
424
+ maintenanceWindow?: MaintenanceWindow | undefined;
425
+ storageCount: number | undefined;
426
+ clientToken?: string | undefined;
427
+ databaseServerType?: string | undefined;
428
+ storageServerType?: string | undefined;
429
+ }
430
+ export interface CreateCloudExadataInfrastructureOutput {
431
+ displayName?: string | undefined;
432
+ status?: ResourceStatus | undefined;
433
+ statusReason?: string | undefined;
434
+ cloudExadataInfrastructureId: string | undefined;
435
+ }
436
+ export interface DeleteCloudExadataInfrastructureInput {
437
+ cloudExadataInfrastructureId: string | undefined;
438
+ }
439
+ export interface DeleteCloudExadataInfrastructureOutput {}
440
+ export interface GetCloudExadataInfrastructureInput {
441
+ cloudExadataInfrastructureId: string | undefined;
442
+ }
443
+ export interface GetCloudExadataInfrastructureOutput {
444
+ cloudExadataInfrastructure?: CloudExadataInfrastructure | undefined;
445
+ }
446
+ export interface GetCloudExadataInfrastructureUnallocatedResourcesInput {
447
+ cloudExadataInfrastructureId: string | undefined;
448
+ dbServers?: string[] | undefined;
449
+ }
450
+ export interface CloudExadataInfrastructureUnallocatedResources {
451
+ cloudAutonomousVmClusters?:
452
+ | CloudAutonomousVmClusterResourceDetails[]
453
+ | undefined;
454
+ cloudExadataInfrastructureDisplayName?: string | undefined;
455
+ exadataStorageInTBs?: number | undefined;
456
+ cloudExadataInfrastructureId?: string | undefined;
457
+ localStorageInGBs?: number | undefined;
458
+ memoryInGBs?: number | undefined;
459
+ ocpus?: number | undefined;
460
+ }
461
+ export interface GetCloudExadataInfrastructureUnallocatedResourcesOutput {
462
+ cloudExadataInfrastructureUnallocatedResources?:
463
+ | CloudExadataInfrastructureUnallocatedResources
464
+ | undefined;
465
+ }
466
+ export interface GetDbServerInput {
467
+ cloudExadataInfrastructureId: string | undefined;
468
+ dbServerId: string | undefined;
469
+ }
470
+ export declare const DbServerPatchingStatus: {
471
+ readonly COMPLETE: "COMPLETE";
472
+ readonly FAILED: "FAILED";
473
+ readonly MAINTENANCE_IN_PROGRESS: "MAINTENANCE_IN_PROGRESS";
474
+ readonly SCHEDULED: "SCHEDULED";
475
+ };
476
+ export type DbServerPatchingStatus =
477
+ (typeof DbServerPatchingStatus)[keyof typeof DbServerPatchingStatus];
478
+ export interface DbServerPatchingDetails {
479
+ estimatedPatchDuration?: number | undefined;
480
+ patchingStatus?: DbServerPatchingStatus | undefined;
481
+ timePatchingEnded?: string | undefined;
482
+ timePatchingStarted?: string | undefined;
483
+ }
484
+ export interface DbServer {
485
+ dbServerId?: string | undefined;
486
+ status?: ResourceStatus | undefined;
487
+ statusReason?: string | undefined;
488
+ cpuCoreCount?: number | undefined;
489
+ dbNodeStorageSizeInGBs?: number | undefined;
490
+ dbServerPatchingDetails?: DbServerPatchingDetails | undefined;
491
+ displayName?: string | undefined;
492
+ exadataInfrastructureId?: string | undefined;
493
+ ocid?: string | undefined;
494
+ ociResourceAnchorName?: string | undefined;
495
+ maxCpuCount?: number | undefined;
496
+ maxDbNodeStorageInGBs?: number | undefined;
497
+ maxMemoryInGBs?: number | undefined;
498
+ memorySizeInGBs?: number | undefined;
499
+ shape?: string | undefined;
500
+ createdAt?: Date | undefined;
501
+ vmClusterIds?: string[] | undefined;
502
+ computeModel?: ComputeModel | undefined;
503
+ autonomousVmClusterIds?: string[] | undefined;
504
+ autonomousVirtualMachineIds?: string[] | undefined;
505
+ }
506
+ export interface GetDbServerOutput {
507
+ dbServer?: DbServer | undefined;
508
+ }
509
+ export interface ListCloudExadataInfrastructuresInput {
510
+ maxResults?: number | undefined;
511
+ nextToken?: string | undefined;
512
+ }
513
+ export interface ListCloudExadataInfrastructuresOutput {
514
+ nextToken?: string | undefined;
515
+ cloudExadataInfrastructures: CloudExadataInfrastructureSummary[] | undefined;
516
+ }
517
+ export interface ListDbServersInput {
518
+ cloudExadataInfrastructureId: string | undefined;
519
+ maxResults?: number | undefined;
520
+ nextToken?: string | undefined;
521
+ }
522
+ export interface DbServerSummary {
523
+ dbServerId?: string | undefined;
524
+ status?: ResourceStatus | undefined;
525
+ statusReason?: string | undefined;
526
+ cpuCoreCount?: number | undefined;
527
+ dbNodeStorageSizeInGBs?: number | undefined;
528
+ dbServerPatchingDetails?: DbServerPatchingDetails | undefined;
529
+ displayName?: string | undefined;
530
+ exadataInfrastructureId?: string | undefined;
531
+ ocid?: string | undefined;
532
+ ociResourceAnchorName?: string | undefined;
533
+ maxCpuCount?: number | undefined;
534
+ maxDbNodeStorageInGBs?: number | undefined;
535
+ maxMemoryInGBs?: number | undefined;
536
+ memorySizeInGBs?: number | undefined;
537
+ shape?: string | undefined;
538
+ createdAt?: Date | undefined;
539
+ vmClusterIds?: string[] | undefined;
540
+ computeModel?: ComputeModel | undefined;
541
+ autonomousVmClusterIds?: string[] | undefined;
542
+ autonomousVirtualMachineIds?: string[] | undefined;
543
+ }
544
+ export interface ListDbServersOutput {
545
+ nextToken?: string | undefined;
546
+ dbServers: DbServerSummary[] | undefined;
547
+ }
548
+ export interface UpdateCloudExadataInfrastructureInput {
549
+ cloudExadataInfrastructureId: string | undefined;
550
+ maintenanceWindow?: MaintenanceWindow | undefined;
551
+ }
552
+ export interface UpdateCloudExadataInfrastructureOutput {
553
+ displayName?: string | undefined;
554
+ status?: ResourceStatus | undefined;
555
+ statusReason?: string | undefined;
556
+ cloudExadataInfrastructureId: string | undefined;
557
+ }
558
+ export interface DataCollectionOptions {
559
+ isDiagnosticsEventsEnabled?: boolean | undefined;
560
+ isHealthMonitoringEnabled?: boolean | undefined;
561
+ isIncidentLogsEnabled?: boolean | undefined;
562
+ }
563
+ export declare const DiskRedundancy: {
564
+ readonly HIGH: "HIGH";
565
+ readonly NORMAL: "NORMAL";
566
+ };
567
+ export type DiskRedundancy =
568
+ (typeof DiskRedundancy)[keyof typeof DiskRedundancy];
569
+ export interface DbIormConfig {
570
+ dbName?: string | undefined;
571
+ flashCacheLimit?: string | undefined;
572
+ share?: number | undefined;
573
+ }
574
+ export declare const IormLifecycleState: {
575
+ readonly BOOTSTRAPPING: "BOOTSTRAPPING";
576
+ readonly DISABLED: "DISABLED";
577
+ readonly ENABLED: "ENABLED";
578
+ readonly FAILED: "FAILED";
579
+ readonly UPDATING: "UPDATING";
580
+ };
581
+ export type IormLifecycleState =
582
+ (typeof IormLifecycleState)[keyof typeof IormLifecycleState];
583
+ export declare const Objective: {
584
+ readonly AUTO: "AUTO";
585
+ readonly BALANCED: "BALANCED";
586
+ readonly BASIC: "BASIC";
587
+ readonly HIGH_THROUGHPUT: "HIGH_THROUGHPUT";
588
+ readonly LOW_LATENCY: "LOW_LATENCY";
589
+ };
590
+ export type Objective = (typeof Objective)[keyof typeof Objective];
591
+ export interface ExadataIormConfig {
592
+ dbPlans?: DbIormConfig[] | undefined;
593
+ lifecycleDetails?: string | undefined;
594
+ lifecycleState?: IormLifecycleState | undefined;
595
+ objective?: Objective | undefined;
596
+ }
597
+ export interface CloudVmCluster {
598
+ cloudVmClusterId: string | undefined;
599
+ displayName?: string | undefined;
600
+ status?: ResourceStatus | undefined;
601
+ statusReason?: string | undefined;
602
+ cloudVmClusterArn?: string | undefined;
603
+ cloudExadataInfrastructureId?: string | undefined;
604
+ clusterName?: string | undefined;
605
+ cpuCoreCount?: number | undefined;
606
+ dataCollectionOptions?: DataCollectionOptions | undefined;
607
+ dataStorageSizeInTBs?: number | undefined;
608
+ dbNodeStorageSizeInGBs?: number | undefined;
609
+ dbServers?: string[] | undefined;
610
+ diskRedundancy?: DiskRedundancy | undefined;
611
+ giVersion?: string | undefined;
612
+ hostname?: string | undefined;
613
+ iormConfigCache?: ExadataIormConfig | undefined;
614
+ isLocalBackupEnabled?: boolean | undefined;
615
+ isSparseDiskgroupEnabled?: boolean | undefined;
616
+ lastUpdateHistoryEntryId?: string | undefined;
617
+ licenseModel?: LicenseModel | undefined;
618
+ listenerPort?: number | undefined;
619
+ memorySizeInGBs?: number | undefined;
620
+ nodeCount?: number | undefined;
621
+ ocid?: string | undefined;
622
+ ociResourceAnchorName?: string | undefined;
623
+ ociUrl?: string | undefined;
624
+ domain?: string | undefined;
625
+ scanDnsName?: string | undefined;
626
+ scanDnsRecordId?: string | undefined;
627
+ scanIpIds?: string[] | undefined;
628
+ shape?: string | undefined;
629
+ sshPublicKeys?: string[] | undefined;
630
+ storageSizeInGBs?: number | undefined;
631
+ systemVersion?: string | undefined;
632
+ createdAt?: Date | undefined;
633
+ timeZone?: string | undefined;
634
+ vipIds?: string[] | undefined;
635
+ odbNetworkId?: string | undefined;
636
+ percentProgress?: number | undefined;
637
+ computeModel?: ComputeModel | undefined;
638
+ }
639
+ export interface CloudVmClusterSummary {
640
+ cloudVmClusterId: string | undefined;
641
+ displayName?: string | undefined;
642
+ status?: ResourceStatus | undefined;
643
+ statusReason?: string | undefined;
644
+ cloudVmClusterArn?: string | undefined;
645
+ cloudExadataInfrastructureId?: string | undefined;
646
+ clusterName?: string | undefined;
647
+ cpuCoreCount?: number | undefined;
648
+ dataCollectionOptions?: DataCollectionOptions | undefined;
649
+ dataStorageSizeInTBs?: number | undefined;
650
+ dbNodeStorageSizeInGBs?: number | undefined;
651
+ dbServers?: string[] | undefined;
652
+ diskRedundancy?: DiskRedundancy | undefined;
653
+ giVersion?: string | undefined;
654
+ hostname?: string | undefined;
655
+ iormConfigCache?: ExadataIormConfig | undefined;
656
+ isLocalBackupEnabled?: boolean | undefined;
657
+ isSparseDiskgroupEnabled?: boolean | undefined;
658
+ lastUpdateHistoryEntryId?: string | undefined;
659
+ licenseModel?: LicenseModel | undefined;
660
+ listenerPort?: number | undefined;
661
+ memorySizeInGBs?: number | undefined;
662
+ nodeCount?: number | undefined;
663
+ ocid?: string | undefined;
664
+ ociResourceAnchorName?: string | undefined;
665
+ ociUrl?: string | undefined;
666
+ domain?: string | undefined;
667
+ scanDnsName?: string | undefined;
668
+ scanDnsRecordId?: string | undefined;
669
+ scanIpIds?: string[] | undefined;
670
+ shape?: string | undefined;
671
+ sshPublicKeys?: string[] | undefined;
672
+ storageSizeInGBs?: number | undefined;
673
+ systemVersion?: string | undefined;
674
+ createdAt?: Date | undefined;
675
+ timeZone?: string | undefined;
676
+ vipIds?: string[] | undefined;
677
+ odbNetworkId?: string | undefined;
678
+ percentProgress?: number | undefined;
679
+ computeModel?: ComputeModel | undefined;
680
+ }
681
+ export interface CreateCloudVmClusterInput {
682
+ cloudExadataInfrastructureId: string | undefined;
683
+ cpuCoreCount: number | undefined;
684
+ displayName: string | undefined;
685
+ giVersion: string | undefined;
686
+ hostname: string | undefined;
687
+ sshPublicKeys: string[] | undefined;
688
+ odbNetworkId: string | undefined;
689
+ clusterName?: string | undefined;
690
+ dataCollectionOptions?: DataCollectionOptions | undefined;
691
+ dataStorageSizeInTBs?: number | undefined;
692
+ dbNodeStorageSizeInGBs?: number | undefined;
693
+ dbServers?: string[] | undefined;
694
+ tags?: Record<string, string> | undefined;
695
+ isLocalBackupEnabled?: boolean | undefined;
696
+ isSparseDiskgroupEnabled?: boolean | undefined;
697
+ licenseModel?: LicenseModel | undefined;
698
+ memorySizeInGBs?: number | undefined;
699
+ systemVersion?: string | undefined;
700
+ timeZone?: string | undefined;
701
+ clientToken?: string | undefined;
702
+ scanListenerPortTcp?: number | undefined;
703
+ }
704
+ export interface CreateCloudVmClusterOutput {
705
+ displayName?: string | undefined;
706
+ status?: ResourceStatus | undefined;
707
+ statusReason?: string | undefined;
708
+ cloudVmClusterId: string | undefined;
709
+ }
710
+ export interface DeleteCloudVmClusterInput {
711
+ cloudVmClusterId: string | undefined;
712
+ }
713
+ export interface DeleteCloudVmClusterOutput {}
714
+ export interface GetCloudVmClusterInput {
715
+ cloudVmClusterId: string | undefined;
716
+ }
717
+ export interface GetCloudVmClusterOutput {
718
+ cloudVmCluster?: CloudVmCluster | undefined;
719
+ }
720
+ export interface ListCloudVmClustersInput {
721
+ maxResults?: number | undefined;
722
+ nextToken?: string | undefined;
723
+ cloudExadataInfrastructureId?: string | undefined;
724
+ }
725
+ export interface ListCloudVmClustersOutput {
726
+ nextToken?: string | undefined;
727
+ cloudVmClusters: CloudVmClusterSummary[] | undefined;
728
+ }
729
+ export interface CreateOdbNetworkInput {
730
+ displayName: string | undefined;
731
+ availabilityZone?: string | undefined;
732
+ availabilityZoneId?: string | undefined;
733
+ clientSubnetCidr: string | undefined;
734
+ backupSubnetCidr?: string | undefined;
735
+ customDomainName?: string | undefined;
736
+ defaultDnsPrefix?: string | undefined;
737
+ clientToken?: string | undefined;
738
+ s3Access?: Access | undefined;
739
+ zeroEtlAccess?: Access | undefined;
740
+ s3PolicyDocument?: string | undefined;
741
+ tags?: Record<string, string> | undefined;
742
+ }
743
+ export interface CreateOdbNetworkOutput {
744
+ displayName?: string | undefined;
745
+ status?: ResourceStatus | undefined;
746
+ statusReason?: string | undefined;
747
+ odbNetworkId: string | undefined;
748
+ }
749
+ export interface CreateOdbPeeringConnectionInput {
750
+ odbNetworkId: string | undefined;
751
+ peerNetworkId: string | undefined;
752
+ displayName?: string | undefined;
753
+ clientToken?: string | undefined;
754
+ tags?: Record<string, string> | undefined;
755
+ }
756
+ export interface CreateOdbPeeringConnectionOutput {
757
+ displayName?: string | undefined;
758
+ status?: ResourceStatus | undefined;
759
+ statusReason?: string | undefined;
760
+ odbPeeringConnectionId: string | undefined;
761
+ }
762
+ export declare const DbNodeMaintenanceType: {
763
+ readonly VMDB_REBOOT_MIGRATION: "VMDB_REBOOT_MIGRATION";
764
+ };
765
+ export type DbNodeMaintenanceType =
766
+ (typeof DbNodeMaintenanceType)[keyof typeof DbNodeMaintenanceType];
767
+ export declare const DbNodeResourceStatus: {
768
+ readonly AVAILABLE: "AVAILABLE";
769
+ readonly FAILED: "FAILED";
770
+ readonly PROVISIONING: "PROVISIONING";
771
+ readonly STARTING: "STARTING";
772
+ readonly STOPPED: "STOPPED";
773
+ readonly STOPPING: "STOPPING";
774
+ readonly TERMINATED: "TERMINATED";
775
+ readonly TERMINATING: "TERMINATING";
776
+ readonly UPDATING: "UPDATING";
777
+ };
778
+ export type DbNodeResourceStatus =
779
+ (typeof DbNodeResourceStatus)[keyof typeof DbNodeResourceStatus];
780
+ export interface DbNode {
781
+ dbNodeId?: string | undefined;
782
+ dbNodeArn?: string | undefined;
783
+ status?: DbNodeResourceStatus | undefined;
784
+ statusReason?: string | undefined;
785
+ additionalDetails?: string | undefined;
786
+ backupIpId?: string | undefined;
787
+ backupVnic2Id?: string | undefined;
788
+ backupVnicId?: string | undefined;
789
+ cpuCoreCount?: number | undefined;
790
+ dbNodeStorageSizeInGBs?: number | undefined;
791
+ dbServerId?: string | undefined;
792
+ dbSystemId?: string | undefined;
793
+ faultDomain?: string | undefined;
794
+ hostIpId?: string | undefined;
795
+ hostname?: string | undefined;
796
+ ocid?: string | undefined;
797
+ ociResourceAnchorName?: string | undefined;
798
+ maintenanceType?: DbNodeMaintenanceType | undefined;
799
+ memorySizeInGBs?: number | undefined;
800
+ softwareStorageSizeInGB?: number | undefined;
801
+ createdAt?: Date | undefined;
802
+ timeMaintenanceWindowEnd?: string | undefined;
803
+ timeMaintenanceWindowStart?: string | undefined;
804
+ totalCpuCoreCount?: number | undefined;
805
+ vnic2Id?: string | undefined;
806
+ vnicId?: string | undefined;
807
+ privateIpAddress?: string | undefined;
808
+ floatingIpAddress?: string | undefined;
809
+ }
810
+ export interface DbNodeSummary {
811
+ dbNodeId?: string | undefined;
812
+ dbNodeArn?: string | undefined;
813
+ status?: DbNodeResourceStatus | undefined;
814
+ statusReason?: string | undefined;
815
+ additionalDetails?: string | undefined;
816
+ backupIpId?: string | undefined;
817
+ backupVnic2Id?: string | undefined;
818
+ backupVnicId?: string | undefined;
819
+ cpuCoreCount?: number | undefined;
820
+ dbNodeStorageSizeInGBs?: number | undefined;
821
+ dbServerId?: string | undefined;
822
+ dbSystemId?: string | undefined;
823
+ faultDomain?: string | undefined;
824
+ hostIpId?: string | undefined;
825
+ hostname?: string | undefined;
826
+ ocid?: string | undefined;
827
+ ociResourceAnchorName?: string | undefined;
828
+ maintenanceType?: DbNodeMaintenanceType | undefined;
829
+ memorySizeInGBs?: number | undefined;
830
+ softwareStorageSizeInGB?: number | undefined;
831
+ createdAt?: Date | undefined;
832
+ timeMaintenanceWindowEnd?: string | undefined;
833
+ timeMaintenanceWindowStart?: string | undefined;
834
+ totalCpuCoreCount?: number | undefined;
835
+ vnic2Id?: string | undefined;
836
+ vnicId?: string | undefined;
837
+ }
838
+ export interface GetDbNodeInput {
839
+ cloudVmClusterId: string | undefined;
840
+ dbNodeId: string | undefined;
841
+ }
842
+ export interface GetDbNodeOutput {
843
+ dbNode?: DbNode | undefined;
844
+ }
845
+ export interface ListDbNodesInput {
846
+ maxResults?: number | undefined;
847
+ nextToken?: string | undefined;
848
+ cloudVmClusterId: string | undefined;
849
+ }
850
+ export interface ListDbNodesOutput {
851
+ nextToken?: string | undefined;
852
+ dbNodes: DbNodeSummary[] | undefined;
853
+ }
854
+ export interface RebootDbNodeInput {
855
+ cloudVmClusterId: string | undefined;
856
+ dbNodeId: string | undefined;
857
+ }
858
+ export interface RebootDbNodeOutput {
859
+ dbNodeId: string | undefined;
860
+ status?: DbNodeResourceStatus | undefined;
861
+ statusReason?: string | undefined;
862
+ }
863
+ export interface StartDbNodeInput {
864
+ cloudVmClusterId: string | undefined;
865
+ dbNodeId: string | undefined;
866
+ }
867
+ export interface StartDbNodeOutput {
868
+ dbNodeId: string | undefined;
869
+ status?: DbNodeResourceStatus | undefined;
870
+ statusReason?: string | undefined;
871
+ }
872
+ export interface StopDbNodeInput {
873
+ cloudVmClusterId: string | undefined;
874
+ dbNodeId: string | undefined;
875
+ }
876
+ export interface StopDbNodeOutput {
877
+ dbNodeId: string | undefined;
878
+ status?: DbNodeResourceStatus | undefined;
879
+ statusReason?: string | undefined;
880
+ }
881
+ export declare const ShapeType: {
882
+ readonly AMD: "AMD";
883
+ readonly AMPERE_FLEX_A1: "AMPERE_FLEX_A1";
884
+ readonly INTEL: "INTEL";
885
+ readonly INTEL_FLEX_X9: "INTEL_FLEX_X9";
886
+ };
887
+ export type ShapeType = (typeof ShapeType)[keyof typeof ShapeType];
888
+ export interface DbSystemShapeSummary {
889
+ availableCoreCount?: number | undefined;
890
+ availableCoreCountPerNode?: number | undefined;
891
+ availableDataStorageInTBs?: number | undefined;
892
+ availableDataStoragePerServerInTBs?: number | undefined;
893
+ availableDbNodePerNodeInGBs?: number | undefined;
894
+ availableDbNodeStorageInGBs?: number | undefined;
895
+ availableMemoryInGBs?: number | undefined;
896
+ availableMemoryPerNodeInGBs?: number | undefined;
897
+ coreCountIncrement?: number | undefined;
898
+ maxStorageCount?: number | undefined;
899
+ maximumNodeCount?: number | undefined;
900
+ minCoreCountPerNode?: number | undefined;
901
+ minDataStorageInTBs?: number | undefined;
902
+ minDbNodeStoragePerNodeInGBs?: number | undefined;
903
+ minMemoryPerNodeInGBs?: number | undefined;
904
+ minStorageCount?: number | undefined;
905
+ minimumCoreCount?: number | undefined;
906
+ minimumNodeCount?: number | undefined;
907
+ runtimeMinimumCoreCount?: number | undefined;
908
+ shapeFamily?: string | undefined;
909
+ shapeType?: ShapeType | undefined;
910
+ name?: string | undefined;
911
+ computeModel?: ComputeModel | undefined;
912
+ areServerTypesSupported?: boolean | undefined;
913
+ }
914
+ export interface DeleteOdbNetworkInput {
915
+ odbNetworkId: string | undefined;
916
+ deleteAssociatedResources: boolean | undefined;
917
+ }
918
+ export interface DeleteOdbNetworkOutput {}
919
+ export interface DeleteOdbPeeringConnectionInput {
920
+ odbPeeringConnectionId: string | undefined;
921
+ }
922
+ export interface DeleteOdbPeeringConnectionOutput {}
923
+ export interface GetOciOnboardingStatusInput {}
924
+ export declare const OciOnboardingStatus: {
925
+ readonly ACTIVATING: "ACTIVATING";
926
+ readonly ACTIVE: "ACTIVE";
927
+ readonly ACTIVE_IN_HOME_REGION: "ACTIVE_IN_HOME_REGION";
928
+ readonly ACTIVE_LIMITED: "ACTIVE_LIMITED";
929
+ readonly CANCELED: "CANCELED";
930
+ readonly FAILED: "FAILED";
931
+ readonly NOT_STARTED: "NOT_STARTED";
932
+ readonly PENDING_CUSTOMER_ACTION: "PENDING_CUSTOMER_ACTION";
933
+ readonly PENDING_INITIALIZATION: "PENDING_INITIALIZATION";
934
+ readonly PENDING_LINK_GENERATION: "PENDING_LINK_GENERATION";
935
+ readonly PUBLIC_OFFER_UNSUPPORTED: "PUBLIC_OFFER_UNSUPPORTED";
936
+ readonly SUSPENDED: "SUSPENDED";
937
+ };
938
+ export type OciOnboardingStatus =
939
+ (typeof OciOnboardingStatus)[keyof typeof OciOnboardingStatus];
940
+ export interface GetOciOnboardingStatusOutput {
941
+ status?: OciOnboardingStatus | undefined;
942
+ existingTenancyActivationLink?: string | undefined;
943
+ newTenancyActivationLink?: string | undefined;
944
+ }
945
+ export interface GetOdbNetworkInput {
946
+ odbNetworkId: string | undefined;
947
+ }
948
+ export declare const ManagedResourceStatus: {
949
+ readonly DISABLED: "DISABLED";
950
+ readonly DISABLING: "DISABLING";
951
+ readonly ENABLED: "ENABLED";
952
+ readonly ENABLING: "ENABLING";
953
+ };
954
+ export type ManagedResourceStatus =
955
+ (typeof ManagedResourceStatus)[keyof typeof ManagedResourceStatus];
956
+ export interface ManagedS3BackupAccess {
957
+ status?: ManagedResourceStatus | undefined;
958
+ ipv4Addresses?: string[] | undefined;
959
+ }
960
+ export interface S3Access {
961
+ status?: ManagedResourceStatus | undefined;
962
+ ipv4Addresses?: string[] | undefined;
963
+ domainName?: string | undefined;
964
+ s3PolicyDocument?: string | undefined;
965
+ }
966
+ export declare const VpcEndpointType: {
967
+ readonly SERVICENETWORK: "SERVICENETWORK";
968
+ };
969
+ export type VpcEndpointType =
970
+ (typeof VpcEndpointType)[keyof typeof VpcEndpointType];
971
+ export interface ServiceNetworkEndpoint {
972
+ vpcEndpointId?: string | undefined;
973
+ vpcEndpointType?: VpcEndpointType | undefined;
974
+ }
975
+ export interface ZeroEtlAccess {
976
+ status?: ManagedResourceStatus | undefined;
977
+ cidr?: string | undefined;
978
+ }
979
+ export interface ManagedServices {
980
+ serviceNetworkArn?: string | undefined;
981
+ resourceGatewayArn?: string | undefined;
982
+ managedServicesIpv4Cidrs?: string[] | undefined;
983
+ serviceNetworkEndpoint?: ServiceNetworkEndpoint | undefined;
984
+ managedS3BackupAccess?: ManagedS3BackupAccess | undefined;
985
+ zeroEtlAccess?: ZeroEtlAccess | undefined;
986
+ s3Access?: S3Access | undefined;
987
+ }
988
+ export interface OciDnsForwardingConfig {
989
+ domainName?: string | undefined;
990
+ ociDnsListenerIp?: string | undefined;
991
+ }
992
+ export interface OdbNetwork {
993
+ odbNetworkId: string | undefined;
994
+ displayName?: string | undefined;
995
+ status?: ResourceStatus | undefined;
996
+ statusReason?: string | undefined;
997
+ odbNetworkArn?: string | undefined;
998
+ availabilityZone?: string | undefined;
999
+ availabilityZoneId?: string | undefined;
1000
+ clientSubnetCidr?: string | undefined;
1001
+ backupSubnetCidr?: string | undefined;
1002
+ customDomainName?: string | undefined;
1003
+ defaultDnsPrefix?: string | undefined;
1004
+ peeredCidrs?: string[] | undefined;
1005
+ ociNetworkAnchorId?: string | undefined;
1006
+ ociNetworkAnchorUrl?: string | undefined;
1007
+ ociResourceAnchorName?: string | undefined;
1008
+ ociVcnId?: string | undefined;
1009
+ ociVcnUrl?: string | undefined;
1010
+ ociDnsForwardingConfigs?: OciDnsForwardingConfig[] | undefined;
1011
+ createdAt?: Date | undefined;
1012
+ percentProgress?: number | undefined;
1013
+ managedServices?: ManagedServices | undefined;
1014
+ }
1015
+ export interface GetOdbNetworkOutput {
1016
+ odbNetwork?: OdbNetwork | undefined;
1017
+ }
1018
+ export interface GetOdbPeeringConnectionInput {
1019
+ odbPeeringConnectionId: string | undefined;
1020
+ }
1021
+ export interface OdbPeeringConnection {
1022
+ odbPeeringConnectionId: string | undefined;
1023
+ displayName?: string | undefined;
1024
+ status?: ResourceStatus | undefined;
1025
+ statusReason?: string | undefined;
1026
+ odbPeeringConnectionArn?: string | undefined;
1027
+ odbNetworkArn?: string | undefined;
1028
+ peerNetworkArn?: string | undefined;
1029
+ odbPeeringConnectionType?: string | undefined;
1030
+ createdAt?: Date | undefined;
1031
+ percentProgress?: number | undefined;
1032
+ }
1033
+ export interface GetOdbPeeringConnectionOutput {
1034
+ odbPeeringConnection?: OdbPeeringConnection | undefined;
1035
+ }
1036
+ export interface GiVersionSummary {
1037
+ version?: string | undefined;
1038
+ }
1039
+ export interface InitializeServiceInput {}
1040
+ export interface InitializeServiceOutput {}
1041
+ export interface ListDbSystemShapesInput {
1042
+ maxResults?: number | undefined;
1043
+ nextToken?: string | undefined;
1044
+ availabilityZone?: string | undefined;
1045
+ availabilityZoneId?: string | undefined;
1046
+ }
1047
+ export interface ListDbSystemShapesOutput {
1048
+ nextToken?: string | undefined;
1049
+ dbSystemShapes: DbSystemShapeSummary[] | undefined;
1050
+ }
1051
+ export interface ListGiVersionsInput {
1052
+ maxResults?: number | undefined;
1053
+ nextToken?: string | undefined;
1054
+ shape?: string | undefined;
1055
+ }
1056
+ export interface ListGiVersionsOutput {
1057
+ nextToken?: string | undefined;
1058
+ giVersions: GiVersionSummary[] | undefined;
1059
+ }
1060
+ export interface ListOdbNetworksInput {
1061
+ maxResults?: number | undefined;
1062
+ nextToken?: string | undefined;
1063
+ }
1064
+ export interface OdbNetworkSummary {
1065
+ odbNetworkId: string | undefined;
1066
+ displayName?: string | undefined;
1067
+ status?: ResourceStatus | undefined;
1068
+ statusReason?: string | undefined;
1069
+ odbNetworkArn?: string | undefined;
1070
+ availabilityZone?: string | undefined;
1071
+ availabilityZoneId?: string | undefined;
1072
+ clientSubnetCidr?: string | undefined;
1073
+ backupSubnetCidr?: string | undefined;
1074
+ customDomainName?: string | undefined;
1075
+ defaultDnsPrefix?: string | undefined;
1076
+ peeredCidrs?: string[] | undefined;
1077
+ ociNetworkAnchorId?: string | undefined;
1078
+ ociNetworkAnchorUrl?: string | undefined;
1079
+ ociResourceAnchorName?: string | undefined;
1080
+ ociVcnId?: string | undefined;
1081
+ ociVcnUrl?: string | undefined;
1082
+ ociDnsForwardingConfigs?: OciDnsForwardingConfig[] | undefined;
1083
+ createdAt?: Date | undefined;
1084
+ percentProgress?: number | undefined;
1085
+ managedServices?: ManagedServices | undefined;
1086
+ }
1087
+ export interface ListOdbNetworksOutput {
1088
+ nextToken?: string | undefined;
1089
+ odbNetworks: OdbNetworkSummary[] | undefined;
1090
+ }
1091
+ export interface ListOdbPeeringConnectionsInput {
1092
+ maxResults?: number | undefined;
1093
+ nextToken?: string | undefined;
1094
+ odbNetworkId?: string | undefined;
1095
+ }
1096
+ export interface OdbPeeringConnectionSummary {
1097
+ odbPeeringConnectionId: string | undefined;
1098
+ displayName?: string | undefined;
1099
+ status?: ResourceStatus | undefined;
1100
+ statusReason?: string | undefined;
1101
+ odbPeeringConnectionArn?: string | undefined;
1102
+ odbNetworkArn?: string | undefined;
1103
+ peerNetworkArn?: string | undefined;
1104
+ odbPeeringConnectionType?: string | undefined;
1105
+ createdAt?: Date | undefined;
1106
+ percentProgress?: number | undefined;
1107
+ }
1108
+ export interface ListOdbPeeringConnectionsOutput {
1109
+ nextToken?: string | undefined;
1110
+ odbPeeringConnections: OdbPeeringConnectionSummary[] | undefined;
1111
+ }
1112
+ export interface ListSystemVersionsInput {
1113
+ maxResults?: number | undefined;
1114
+ nextToken?: string | undefined;
1115
+ giVersion: string | undefined;
1116
+ shape: string | undefined;
1117
+ }
1118
+ export interface SystemVersionSummary {
1119
+ giVersion?: string | undefined;
1120
+ shape?: string | undefined;
1121
+ systemVersions?: string[] | undefined;
1122
+ }
1123
+ export interface ListSystemVersionsOutput {
1124
+ nextToken?: string | undefined;
1125
+ systemVersions: SystemVersionSummary[] | undefined;
1126
+ }
1127
+ export interface ListTagsForResourceRequest {
1128
+ resourceArn: string | undefined;
1129
+ }
1130
+ export interface ListTagsForResourceResponse {
1131
+ tags?: Record<string, string> | undefined;
1132
+ }
1133
+ export interface UpdateOdbNetworkInput {
1134
+ odbNetworkId: string | undefined;
1135
+ displayName?: string | undefined;
1136
+ peeredCidrsToBeAdded?: string[] | undefined;
1137
+ peeredCidrsToBeRemoved?: string[] | undefined;
1138
+ s3Access?: Access | undefined;
1139
+ zeroEtlAccess?: Access | undefined;
1140
+ s3PolicyDocument?: string | undefined;
1141
+ }
1142
+ export interface UpdateOdbNetworkOutput {
1143
+ displayName?: string | undefined;
1144
+ status?: ResourceStatus | undefined;
1145
+ statusReason?: string | undefined;
1146
+ odbNetworkId: string | undefined;
1147
+ }
1148
+ export interface TagResourceRequest {
1149
+ resourceArn: string | undefined;
1150
+ tags: Record<string, string> | undefined;
1151
+ }
1152
+ export interface TagResourceResponse {}
1153
+ export interface UntagResourceRequest {
1154
+ resourceArn: string | undefined;
1155
+ tagKeys: string[] | undefined;
1156
+ }
1157
+ export interface UntagResourceResponse {}
1158
+ export declare const CustomerContactFilterSensitiveLog: (
1159
+ obj: CustomerContact
1160
+ ) => any;
1161
+ export declare const CloudExadataInfrastructureFilterSensitiveLog: (
1162
+ obj: CloudExadataInfrastructure
1163
+ ) => any;
1164
+ export declare const CloudExadataInfrastructureSummaryFilterSensitiveLog: (
1165
+ obj: CloudExadataInfrastructureSummary
1166
+ ) => any;
1167
+ export declare const CreateCloudExadataInfrastructureInputFilterSensitiveLog: (
1168
+ obj: CreateCloudExadataInfrastructureInput
1169
+ ) => any;
1170
+ export declare const GetCloudExadataInfrastructureOutputFilterSensitiveLog: (
1171
+ obj: GetCloudExadataInfrastructureOutput
1172
+ ) => any;
1173
+ export declare const ListCloudExadataInfrastructuresOutputFilterSensitiveLog: (
1174
+ obj: ListCloudExadataInfrastructuresOutput
1175
+ ) => any;
1176
+ export declare const CloudVmClusterFilterSensitiveLog: (
1177
+ obj: CloudVmCluster
1178
+ ) => any;
1179
+ export declare const CloudVmClusterSummaryFilterSensitiveLog: (
1180
+ obj: CloudVmClusterSummary
1181
+ ) => any;
1182
+ export declare const GetCloudVmClusterOutputFilterSensitiveLog: (
1183
+ obj: GetCloudVmClusterOutput
1184
+ ) => any;
1185
+ export declare const ListCloudVmClustersOutputFilterSensitiveLog: (
1186
+ obj: ListCloudVmClustersOutput
1187
+ ) => any;