@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,356 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ StreamCollector as __StreamCollector,
41
+ UrlParser as __UrlParser,
42
+ UserAgent as __UserAgent,
43
+ } from "@smithy/types";
44
+ import {
45
+ HttpAuthSchemeInputConfig,
46
+ HttpAuthSchemeResolvedConfig,
47
+ } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ AcceptMarketplaceRegistrationCommandInput,
50
+ AcceptMarketplaceRegistrationCommandOutput,
51
+ } from "./commands/AcceptMarketplaceRegistrationCommand";
52
+ import {
53
+ CreateCloudAutonomousVmClusterCommandInput,
54
+ CreateCloudAutonomousVmClusterCommandOutput,
55
+ } from "./commands/CreateCloudAutonomousVmClusterCommand";
56
+ import {
57
+ CreateCloudExadataInfrastructureCommandInput,
58
+ CreateCloudExadataInfrastructureCommandOutput,
59
+ } from "./commands/CreateCloudExadataInfrastructureCommand";
60
+ import {
61
+ CreateCloudVmClusterCommandInput,
62
+ CreateCloudVmClusterCommandOutput,
63
+ } from "./commands/CreateCloudVmClusterCommand";
64
+ import {
65
+ CreateOdbNetworkCommandInput,
66
+ CreateOdbNetworkCommandOutput,
67
+ } from "./commands/CreateOdbNetworkCommand";
68
+ import {
69
+ CreateOdbPeeringConnectionCommandInput,
70
+ CreateOdbPeeringConnectionCommandOutput,
71
+ } from "./commands/CreateOdbPeeringConnectionCommand";
72
+ import {
73
+ DeleteCloudAutonomousVmClusterCommandInput,
74
+ DeleteCloudAutonomousVmClusterCommandOutput,
75
+ } from "./commands/DeleteCloudAutonomousVmClusterCommand";
76
+ import {
77
+ DeleteCloudExadataInfrastructureCommandInput,
78
+ DeleteCloudExadataInfrastructureCommandOutput,
79
+ } from "./commands/DeleteCloudExadataInfrastructureCommand";
80
+ import {
81
+ DeleteCloudVmClusterCommandInput,
82
+ DeleteCloudVmClusterCommandOutput,
83
+ } from "./commands/DeleteCloudVmClusterCommand";
84
+ import {
85
+ DeleteOdbNetworkCommandInput,
86
+ DeleteOdbNetworkCommandOutput,
87
+ } from "./commands/DeleteOdbNetworkCommand";
88
+ import {
89
+ DeleteOdbPeeringConnectionCommandInput,
90
+ DeleteOdbPeeringConnectionCommandOutput,
91
+ } from "./commands/DeleteOdbPeeringConnectionCommand";
92
+ import {
93
+ GetCloudAutonomousVmClusterCommandInput,
94
+ GetCloudAutonomousVmClusterCommandOutput,
95
+ } from "./commands/GetCloudAutonomousVmClusterCommand";
96
+ import {
97
+ GetCloudExadataInfrastructureCommandInput,
98
+ GetCloudExadataInfrastructureCommandOutput,
99
+ } from "./commands/GetCloudExadataInfrastructureCommand";
100
+ import {
101
+ GetCloudExadataInfrastructureUnallocatedResourcesCommandInput,
102
+ GetCloudExadataInfrastructureUnallocatedResourcesCommandOutput,
103
+ } from "./commands/GetCloudExadataInfrastructureUnallocatedResourcesCommand";
104
+ import {
105
+ GetCloudVmClusterCommandInput,
106
+ GetCloudVmClusterCommandOutput,
107
+ } from "./commands/GetCloudVmClusterCommand";
108
+ import {
109
+ GetDbNodeCommandInput,
110
+ GetDbNodeCommandOutput,
111
+ } from "./commands/GetDbNodeCommand";
112
+ import {
113
+ GetDbServerCommandInput,
114
+ GetDbServerCommandOutput,
115
+ } from "./commands/GetDbServerCommand";
116
+ import {
117
+ GetOciOnboardingStatusCommandInput,
118
+ GetOciOnboardingStatusCommandOutput,
119
+ } from "./commands/GetOciOnboardingStatusCommand";
120
+ import {
121
+ GetOdbNetworkCommandInput,
122
+ GetOdbNetworkCommandOutput,
123
+ } from "./commands/GetOdbNetworkCommand";
124
+ import {
125
+ GetOdbPeeringConnectionCommandInput,
126
+ GetOdbPeeringConnectionCommandOutput,
127
+ } from "./commands/GetOdbPeeringConnectionCommand";
128
+ import {
129
+ InitializeServiceCommandInput,
130
+ InitializeServiceCommandOutput,
131
+ } from "./commands/InitializeServiceCommand";
132
+ import {
133
+ ListAutonomousVirtualMachinesCommandInput,
134
+ ListAutonomousVirtualMachinesCommandOutput,
135
+ } from "./commands/ListAutonomousVirtualMachinesCommand";
136
+ import {
137
+ ListCloudAutonomousVmClustersCommandInput,
138
+ ListCloudAutonomousVmClustersCommandOutput,
139
+ } from "./commands/ListCloudAutonomousVmClustersCommand";
140
+ import {
141
+ ListCloudExadataInfrastructuresCommandInput,
142
+ ListCloudExadataInfrastructuresCommandOutput,
143
+ } from "./commands/ListCloudExadataInfrastructuresCommand";
144
+ import {
145
+ ListCloudVmClustersCommandInput,
146
+ ListCloudVmClustersCommandOutput,
147
+ } from "./commands/ListCloudVmClustersCommand";
148
+ import {
149
+ ListDbNodesCommandInput,
150
+ ListDbNodesCommandOutput,
151
+ } from "./commands/ListDbNodesCommand";
152
+ import {
153
+ ListDbServersCommandInput,
154
+ ListDbServersCommandOutput,
155
+ } from "./commands/ListDbServersCommand";
156
+ import {
157
+ ListDbSystemShapesCommandInput,
158
+ ListDbSystemShapesCommandOutput,
159
+ } from "./commands/ListDbSystemShapesCommand";
160
+ import {
161
+ ListGiVersionsCommandInput,
162
+ ListGiVersionsCommandOutput,
163
+ } from "./commands/ListGiVersionsCommand";
164
+ import {
165
+ ListOdbNetworksCommandInput,
166
+ ListOdbNetworksCommandOutput,
167
+ } from "./commands/ListOdbNetworksCommand";
168
+ import {
169
+ ListOdbPeeringConnectionsCommandInput,
170
+ ListOdbPeeringConnectionsCommandOutput,
171
+ } from "./commands/ListOdbPeeringConnectionsCommand";
172
+ import {
173
+ ListSystemVersionsCommandInput,
174
+ ListSystemVersionsCommandOutput,
175
+ } from "./commands/ListSystemVersionsCommand";
176
+ import {
177
+ ListTagsForResourceCommandInput,
178
+ ListTagsForResourceCommandOutput,
179
+ } from "./commands/ListTagsForResourceCommand";
180
+ import {
181
+ RebootDbNodeCommandInput,
182
+ RebootDbNodeCommandOutput,
183
+ } from "./commands/RebootDbNodeCommand";
184
+ import {
185
+ StartDbNodeCommandInput,
186
+ StartDbNodeCommandOutput,
187
+ } from "./commands/StartDbNodeCommand";
188
+ import {
189
+ StopDbNodeCommandInput,
190
+ StopDbNodeCommandOutput,
191
+ } from "./commands/StopDbNodeCommand";
192
+ import {
193
+ TagResourceCommandInput,
194
+ TagResourceCommandOutput,
195
+ } from "./commands/TagResourceCommand";
196
+ import {
197
+ UntagResourceCommandInput,
198
+ UntagResourceCommandOutput,
199
+ } from "./commands/UntagResourceCommand";
200
+ import {
201
+ UpdateCloudExadataInfrastructureCommandInput,
202
+ UpdateCloudExadataInfrastructureCommandOutput,
203
+ } from "./commands/UpdateCloudExadataInfrastructureCommand";
204
+ import {
205
+ UpdateOdbNetworkCommandInput,
206
+ UpdateOdbNetworkCommandOutput,
207
+ } from "./commands/UpdateOdbNetworkCommand";
208
+ import {
209
+ ClientInputEndpointParameters,
210
+ ClientResolvedEndpointParameters,
211
+ EndpointParameters,
212
+ } from "./endpoint/EndpointParameters";
213
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
214
+ export { __Client };
215
+ export type ServiceInputTypes =
216
+ | AcceptMarketplaceRegistrationCommandInput
217
+ | CreateCloudAutonomousVmClusterCommandInput
218
+ | CreateCloudExadataInfrastructureCommandInput
219
+ | CreateCloudVmClusterCommandInput
220
+ | CreateOdbNetworkCommandInput
221
+ | CreateOdbPeeringConnectionCommandInput
222
+ | DeleteCloudAutonomousVmClusterCommandInput
223
+ | DeleteCloudExadataInfrastructureCommandInput
224
+ | DeleteCloudVmClusterCommandInput
225
+ | DeleteOdbNetworkCommandInput
226
+ | DeleteOdbPeeringConnectionCommandInput
227
+ | GetCloudAutonomousVmClusterCommandInput
228
+ | GetCloudExadataInfrastructureCommandInput
229
+ | GetCloudExadataInfrastructureUnallocatedResourcesCommandInput
230
+ | GetCloudVmClusterCommandInput
231
+ | GetDbNodeCommandInput
232
+ | GetDbServerCommandInput
233
+ | GetOciOnboardingStatusCommandInput
234
+ | GetOdbNetworkCommandInput
235
+ | GetOdbPeeringConnectionCommandInput
236
+ | InitializeServiceCommandInput
237
+ | ListAutonomousVirtualMachinesCommandInput
238
+ | ListCloudAutonomousVmClustersCommandInput
239
+ | ListCloudExadataInfrastructuresCommandInput
240
+ | ListCloudVmClustersCommandInput
241
+ | ListDbNodesCommandInput
242
+ | ListDbServersCommandInput
243
+ | ListDbSystemShapesCommandInput
244
+ | ListGiVersionsCommandInput
245
+ | ListOdbNetworksCommandInput
246
+ | ListOdbPeeringConnectionsCommandInput
247
+ | ListSystemVersionsCommandInput
248
+ | ListTagsForResourceCommandInput
249
+ | RebootDbNodeCommandInput
250
+ | StartDbNodeCommandInput
251
+ | StopDbNodeCommandInput
252
+ | TagResourceCommandInput
253
+ | UntagResourceCommandInput
254
+ | UpdateCloudExadataInfrastructureCommandInput
255
+ | UpdateOdbNetworkCommandInput;
256
+ export type ServiceOutputTypes =
257
+ | AcceptMarketplaceRegistrationCommandOutput
258
+ | CreateCloudAutonomousVmClusterCommandOutput
259
+ | CreateCloudExadataInfrastructureCommandOutput
260
+ | CreateCloudVmClusterCommandOutput
261
+ | CreateOdbNetworkCommandOutput
262
+ | CreateOdbPeeringConnectionCommandOutput
263
+ | DeleteCloudAutonomousVmClusterCommandOutput
264
+ | DeleteCloudExadataInfrastructureCommandOutput
265
+ | DeleteCloudVmClusterCommandOutput
266
+ | DeleteOdbNetworkCommandOutput
267
+ | DeleteOdbPeeringConnectionCommandOutput
268
+ | GetCloudAutonomousVmClusterCommandOutput
269
+ | GetCloudExadataInfrastructureCommandOutput
270
+ | GetCloudExadataInfrastructureUnallocatedResourcesCommandOutput
271
+ | GetCloudVmClusterCommandOutput
272
+ | GetDbNodeCommandOutput
273
+ | GetDbServerCommandOutput
274
+ | GetOciOnboardingStatusCommandOutput
275
+ | GetOdbNetworkCommandOutput
276
+ | GetOdbPeeringConnectionCommandOutput
277
+ | InitializeServiceCommandOutput
278
+ | ListAutonomousVirtualMachinesCommandOutput
279
+ | ListCloudAutonomousVmClustersCommandOutput
280
+ | ListCloudExadataInfrastructuresCommandOutput
281
+ | ListCloudVmClustersCommandOutput
282
+ | ListDbNodesCommandOutput
283
+ | ListDbServersCommandOutput
284
+ | ListDbSystemShapesCommandOutput
285
+ | ListGiVersionsCommandOutput
286
+ | ListOdbNetworksCommandOutput
287
+ | ListOdbPeeringConnectionsCommandOutput
288
+ | ListSystemVersionsCommandOutput
289
+ | ListTagsForResourceCommandOutput
290
+ | RebootDbNodeCommandOutput
291
+ | StartDbNodeCommandOutput
292
+ | StopDbNodeCommandOutput
293
+ | TagResourceCommandOutput
294
+ | UntagResourceCommandOutput
295
+ | UpdateCloudExadataInfrastructureCommandOutput
296
+ | UpdateOdbNetworkCommandOutput;
297
+ export interface ClientDefaults
298
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
299
+ requestHandler?: __HttpHandlerUserInput;
300
+ sha256?: __ChecksumConstructor | __HashConstructor;
301
+ urlParser?: __UrlParser;
302
+ bodyLengthChecker?: __BodyLengthCalculator;
303
+ streamCollector?: __StreamCollector;
304
+ base64Decoder?: __Decoder;
305
+ base64Encoder?: __Encoder;
306
+ utf8Decoder?: __Decoder;
307
+ utf8Encoder?: __Encoder;
308
+ runtime?: string;
309
+ disableHostPrefix?: boolean;
310
+ serviceId?: string;
311
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
312
+ useFipsEndpoint?: boolean | __Provider<boolean>;
313
+ region?: string | __Provider<string>;
314
+ profile?: string;
315
+ defaultUserAgentProvider?: Provider<__UserAgent>;
316
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
317
+ maxAttempts?: number | __Provider<number>;
318
+ retryMode?: string | __Provider<string>;
319
+ logger?: __Logger;
320
+ extensions?: RuntimeExtension[];
321
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
322
+ }
323
+ export type OdbClientConfigType = Partial<
324
+ __SmithyConfiguration<__HttpHandlerOptions>
325
+ > &
326
+ ClientDefaults &
327
+ UserAgentInputConfig &
328
+ RetryInputConfig &
329
+ RegionInputConfig &
330
+ HostHeaderInputConfig &
331
+ EndpointInputConfig<EndpointParameters> &
332
+ HttpAuthSchemeInputConfig &
333
+ ClientInputEndpointParameters;
334
+ export interface OdbClientConfig extends OdbClientConfigType {}
335
+ export type OdbClientResolvedConfigType =
336
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
337
+ Required<ClientDefaults> &
338
+ RuntimeExtensionsConfig &
339
+ UserAgentResolvedConfig &
340
+ RetryResolvedConfig &
341
+ RegionResolvedConfig &
342
+ HostHeaderResolvedConfig &
343
+ EndpointResolvedConfig<EndpointParameters> &
344
+ HttpAuthSchemeResolvedConfig &
345
+ ClientResolvedEndpointParameters;
346
+ export interface OdbClientResolvedConfig extends OdbClientResolvedConfigType {}
347
+ export declare class OdbClient extends __Client<
348
+ __HttpHandlerOptions,
349
+ ServiceInputTypes,
350
+ ServiceOutputTypes,
351
+ OdbClientResolvedConfig
352
+ > {
353
+ readonly config: OdbClientResolvedConfig;
354
+ constructor(...[configuration]: __CheckOptionalClientConfig<OdbClientConfig>);
355
+ destroy(): void;
356
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { OdbHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: OdbHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): OdbHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: OdbHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;
@@ -0,0 +1,46 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ Provider,
13
+ } from "@smithy/types";
14
+ import { OdbClientResolvedConfig } from "../OdbClient";
15
+ export interface OdbHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
16
+ region?: string;
17
+ }
18
+ export interface OdbHttpAuthSchemeParametersProvider
19
+ extends HttpAuthSchemeParametersProvider<
20
+ OdbClientResolvedConfig,
21
+ HandlerExecutionContext,
22
+ OdbHttpAuthSchemeParameters,
23
+ object
24
+ > {}
25
+ export declare const defaultOdbHttpAuthSchemeParametersProvider: (
26
+ config: OdbClientResolvedConfig,
27
+ context: HandlerExecutionContext,
28
+ input: object
29
+ ) => Promise<OdbHttpAuthSchemeParameters>;
30
+ export interface OdbHttpAuthSchemeProvider
31
+ extends HttpAuthSchemeProvider<OdbHttpAuthSchemeParameters> {}
32
+ export declare const defaultOdbHttpAuthSchemeProvider: OdbHttpAuthSchemeProvider;
33
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
34
+ authSchemePreference?: string[] | Provider<string[]>;
35
+ httpAuthSchemes?: HttpAuthScheme[];
36
+ httpAuthSchemeProvider?: OdbHttpAuthSchemeProvider;
37
+ }
38
+ export interface HttpAuthSchemeResolvedConfig
39
+ extends AwsSdkSigV4AuthResolvedConfig {
40
+ readonly authSchemePreference: Provider<string[]>;
41
+ readonly httpAuthSchemes: HttpAuthScheme[];
42
+ readonly httpAuthSchemeProvider: OdbHttpAuthSchemeProvider;
43
+ }
44
+ export declare const resolveHttpAuthSchemeConfig: <T>(
45
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
46
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ AcceptMarketplaceRegistrationInput,
5
+ AcceptMarketplaceRegistrationOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ OdbClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OdbClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface AcceptMarketplaceRegistrationCommandInput
15
+ extends AcceptMarketplaceRegistrationInput {}
16
+ export interface AcceptMarketplaceRegistrationCommandOutput
17
+ extends AcceptMarketplaceRegistrationOutput,
18
+ __MetadataBearer {}
19
+ declare const AcceptMarketplaceRegistrationCommand_base: {
20
+ new (
21
+ input: AcceptMarketplaceRegistrationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ AcceptMarketplaceRegistrationCommandInput,
24
+ AcceptMarketplaceRegistrationCommandOutput,
25
+ OdbClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: AcceptMarketplaceRegistrationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ AcceptMarketplaceRegistrationCommandInput,
33
+ AcceptMarketplaceRegistrationCommandOutput,
34
+ OdbClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class AcceptMarketplaceRegistrationCommand extends AcceptMarketplaceRegistrationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: AcceptMarketplaceRegistrationInput;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: AcceptMarketplaceRegistrationCommandInput;
48
+ output: AcceptMarketplaceRegistrationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateCloudAutonomousVmClusterInput,
5
+ CreateCloudAutonomousVmClusterOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ OdbClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OdbClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateCloudAutonomousVmClusterCommandInput
15
+ extends CreateCloudAutonomousVmClusterInput {}
16
+ export interface CreateCloudAutonomousVmClusterCommandOutput
17
+ extends CreateCloudAutonomousVmClusterOutput,
18
+ __MetadataBearer {}
19
+ declare const CreateCloudAutonomousVmClusterCommand_base: {
20
+ new (
21
+ input: CreateCloudAutonomousVmClusterCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateCloudAutonomousVmClusterCommandInput,
24
+ CreateCloudAutonomousVmClusterCommandOutput,
25
+ OdbClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateCloudAutonomousVmClusterCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateCloudAutonomousVmClusterCommandInput,
33
+ CreateCloudAutonomousVmClusterCommandOutput,
34
+ OdbClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateCloudAutonomousVmClusterCommand extends CreateCloudAutonomousVmClusterCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateCloudAutonomousVmClusterInput;
44
+ output: CreateCloudAutonomousVmClusterOutput;
45
+ };
46
+ sdk: {
47
+ input: CreateCloudAutonomousVmClusterCommandInput;
48
+ output: CreateCloudAutonomousVmClusterCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateCloudExadataInfrastructureInput,
5
+ CreateCloudExadataInfrastructureOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ OdbClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OdbClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateCloudExadataInfrastructureCommandInput
15
+ extends CreateCloudExadataInfrastructureInput {}
16
+ export interface CreateCloudExadataInfrastructureCommandOutput
17
+ extends CreateCloudExadataInfrastructureOutput,
18
+ __MetadataBearer {}
19
+ declare const CreateCloudExadataInfrastructureCommand_base: {
20
+ new (
21
+ input: CreateCloudExadataInfrastructureCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateCloudExadataInfrastructureCommandInput,
24
+ CreateCloudExadataInfrastructureCommandOutput,
25
+ OdbClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateCloudExadataInfrastructureCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateCloudExadataInfrastructureCommandInput,
33
+ CreateCloudExadataInfrastructureCommandOutput,
34
+ OdbClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateCloudExadataInfrastructureCommand extends CreateCloudExadataInfrastructureCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateCloudExadataInfrastructureInput;
44
+ output: CreateCloudExadataInfrastructureOutput;
45
+ };
46
+ sdk: {
47
+ input: CreateCloudExadataInfrastructureCommandInput;
48
+ output: CreateCloudExadataInfrastructureCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateCloudVmClusterInput,
5
+ CreateCloudVmClusterOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ OdbClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OdbClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateCloudVmClusterCommandInput
15
+ extends CreateCloudVmClusterInput {}
16
+ export interface CreateCloudVmClusterCommandOutput
17
+ extends CreateCloudVmClusterOutput,
18
+ __MetadataBearer {}
19
+ declare const CreateCloudVmClusterCommand_base: {
20
+ new (
21
+ input: CreateCloudVmClusterCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateCloudVmClusterCommandInput,
24
+ CreateCloudVmClusterCommandOutput,
25
+ OdbClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateCloudVmClusterCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateCloudVmClusterCommandInput,
33
+ CreateCloudVmClusterCommandOutput,
34
+ OdbClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateCloudVmClusterCommand extends CreateCloudVmClusterCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateCloudVmClusterInput;
44
+ output: CreateCloudVmClusterOutput;
45
+ };
46
+ sdk: {
47
+ input: CreateCloudVmClusterCommandInput;
48
+ output: CreateCloudVmClusterCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateOdbNetworkInput,
5
+ CreateOdbNetworkOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ OdbClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OdbClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateOdbNetworkCommandInput extends CreateOdbNetworkInput {}
15
+ export interface CreateOdbNetworkCommandOutput
16
+ extends CreateOdbNetworkOutput,
17
+ __MetadataBearer {}
18
+ declare const CreateOdbNetworkCommand_base: {
19
+ new (
20
+ input: CreateOdbNetworkCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateOdbNetworkCommandInput,
23
+ CreateOdbNetworkCommandOutput,
24
+ OdbClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: CreateOdbNetworkCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateOdbNetworkCommandInput,
32
+ CreateOdbNetworkCommandOutput,
33
+ OdbClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateOdbNetworkCommand extends CreateOdbNetworkCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateOdbNetworkInput;
43
+ output: CreateOdbNetworkOutput;
44
+ };
45
+ sdk: {
46
+ input: CreateOdbNetworkCommandInput;
47
+ output: CreateOdbNetworkCommandOutput;
48
+ };
49
+ };
50
+ }