@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,227 @@
1
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
2
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
3
+ import { RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver";
4
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-endpoint";
5
+ import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
+ import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
+ import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
+ import { AcceptMarketplaceRegistrationCommandInput, AcceptMarketplaceRegistrationCommandOutput } from "./commands/AcceptMarketplaceRegistrationCommand";
11
+ import { CreateCloudAutonomousVmClusterCommandInput, CreateCloudAutonomousVmClusterCommandOutput } from "./commands/CreateCloudAutonomousVmClusterCommand";
12
+ import { CreateCloudExadataInfrastructureCommandInput, CreateCloudExadataInfrastructureCommandOutput } from "./commands/CreateCloudExadataInfrastructureCommand";
13
+ import { CreateCloudVmClusterCommandInput, CreateCloudVmClusterCommandOutput } from "./commands/CreateCloudVmClusterCommand";
14
+ import { CreateOdbNetworkCommandInput, CreateOdbNetworkCommandOutput } from "./commands/CreateOdbNetworkCommand";
15
+ import { CreateOdbPeeringConnectionCommandInput, CreateOdbPeeringConnectionCommandOutput } from "./commands/CreateOdbPeeringConnectionCommand";
16
+ import { DeleteCloudAutonomousVmClusterCommandInput, DeleteCloudAutonomousVmClusterCommandOutput } from "./commands/DeleteCloudAutonomousVmClusterCommand";
17
+ import { DeleteCloudExadataInfrastructureCommandInput, DeleteCloudExadataInfrastructureCommandOutput } from "./commands/DeleteCloudExadataInfrastructureCommand";
18
+ import { DeleteCloudVmClusterCommandInput, DeleteCloudVmClusterCommandOutput } from "./commands/DeleteCloudVmClusterCommand";
19
+ import { DeleteOdbNetworkCommandInput, DeleteOdbNetworkCommandOutput } from "./commands/DeleteOdbNetworkCommand";
20
+ import { DeleteOdbPeeringConnectionCommandInput, DeleteOdbPeeringConnectionCommandOutput } from "./commands/DeleteOdbPeeringConnectionCommand";
21
+ import { GetCloudAutonomousVmClusterCommandInput, GetCloudAutonomousVmClusterCommandOutput } from "./commands/GetCloudAutonomousVmClusterCommand";
22
+ import { GetCloudExadataInfrastructureCommandInput, GetCloudExadataInfrastructureCommandOutput } from "./commands/GetCloudExadataInfrastructureCommand";
23
+ import { GetCloudExadataInfrastructureUnallocatedResourcesCommandInput, GetCloudExadataInfrastructureUnallocatedResourcesCommandOutput } from "./commands/GetCloudExadataInfrastructureUnallocatedResourcesCommand";
24
+ import { GetCloudVmClusterCommandInput, GetCloudVmClusterCommandOutput } from "./commands/GetCloudVmClusterCommand";
25
+ import { GetDbNodeCommandInput, GetDbNodeCommandOutput } from "./commands/GetDbNodeCommand";
26
+ import { GetDbServerCommandInput, GetDbServerCommandOutput } from "./commands/GetDbServerCommand";
27
+ import { GetOciOnboardingStatusCommandInput, GetOciOnboardingStatusCommandOutput } from "./commands/GetOciOnboardingStatusCommand";
28
+ import { GetOdbNetworkCommandInput, GetOdbNetworkCommandOutput } from "./commands/GetOdbNetworkCommand";
29
+ import { GetOdbPeeringConnectionCommandInput, GetOdbPeeringConnectionCommandOutput } from "./commands/GetOdbPeeringConnectionCommand";
30
+ import { InitializeServiceCommandInput, InitializeServiceCommandOutput } from "./commands/InitializeServiceCommand";
31
+ import { ListAutonomousVirtualMachinesCommandInput, ListAutonomousVirtualMachinesCommandOutput } from "./commands/ListAutonomousVirtualMachinesCommand";
32
+ import { ListCloudAutonomousVmClustersCommandInput, ListCloudAutonomousVmClustersCommandOutput } from "./commands/ListCloudAutonomousVmClustersCommand";
33
+ import { ListCloudExadataInfrastructuresCommandInput, ListCloudExadataInfrastructuresCommandOutput } from "./commands/ListCloudExadataInfrastructuresCommand";
34
+ import { ListCloudVmClustersCommandInput, ListCloudVmClustersCommandOutput } from "./commands/ListCloudVmClustersCommand";
35
+ import { ListDbNodesCommandInput, ListDbNodesCommandOutput } from "./commands/ListDbNodesCommand";
36
+ import { ListDbServersCommandInput, ListDbServersCommandOutput } from "./commands/ListDbServersCommand";
37
+ import { ListDbSystemShapesCommandInput, ListDbSystemShapesCommandOutput } from "./commands/ListDbSystemShapesCommand";
38
+ import { ListGiVersionsCommandInput, ListGiVersionsCommandOutput } from "./commands/ListGiVersionsCommand";
39
+ import { ListOdbNetworksCommandInput, ListOdbNetworksCommandOutput } from "./commands/ListOdbNetworksCommand";
40
+ import { ListOdbPeeringConnectionsCommandInput, ListOdbPeeringConnectionsCommandOutput } from "./commands/ListOdbPeeringConnectionsCommand";
41
+ import { ListSystemVersionsCommandInput, ListSystemVersionsCommandOutput } from "./commands/ListSystemVersionsCommand";
42
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
43
+ import { RebootDbNodeCommandInput, RebootDbNodeCommandOutput } from "./commands/RebootDbNodeCommand";
44
+ import { StartDbNodeCommandInput, StartDbNodeCommandOutput } from "./commands/StartDbNodeCommand";
45
+ import { StopDbNodeCommandInput, StopDbNodeCommandOutput } from "./commands/StopDbNodeCommand";
46
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
47
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
48
+ import { UpdateCloudExadataInfrastructureCommandInput, UpdateCloudExadataInfrastructureCommandOutput } from "./commands/UpdateCloudExadataInfrastructureCommand";
49
+ import { UpdateOdbNetworkCommandInput, UpdateOdbNetworkCommandOutput } from "./commands/UpdateOdbNetworkCommand";
50
+ import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
51
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
52
+ export { __Client };
53
+ /**
54
+ * @public
55
+ */
56
+ export type ServiceInputTypes = AcceptMarketplaceRegistrationCommandInput | CreateCloudAutonomousVmClusterCommandInput | CreateCloudExadataInfrastructureCommandInput | CreateCloudVmClusterCommandInput | CreateOdbNetworkCommandInput | CreateOdbPeeringConnectionCommandInput | DeleteCloudAutonomousVmClusterCommandInput | DeleteCloudExadataInfrastructureCommandInput | DeleteCloudVmClusterCommandInput | DeleteOdbNetworkCommandInput | DeleteOdbPeeringConnectionCommandInput | GetCloudAutonomousVmClusterCommandInput | GetCloudExadataInfrastructureCommandInput | GetCloudExadataInfrastructureUnallocatedResourcesCommandInput | GetCloudVmClusterCommandInput | GetDbNodeCommandInput | GetDbServerCommandInput | GetOciOnboardingStatusCommandInput | GetOdbNetworkCommandInput | GetOdbPeeringConnectionCommandInput | InitializeServiceCommandInput | ListAutonomousVirtualMachinesCommandInput | ListCloudAutonomousVmClustersCommandInput | ListCloudExadataInfrastructuresCommandInput | ListCloudVmClustersCommandInput | ListDbNodesCommandInput | ListDbServersCommandInput | ListDbSystemShapesCommandInput | ListGiVersionsCommandInput | ListOdbNetworksCommandInput | ListOdbPeeringConnectionsCommandInput | ListSystemVersionsCommandInput | ListTagsForResourceCommandInput | RebootDbNodeCommandInput | StartDbNodeCommandInput | StopDbNodeCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCloudExadataInfrastructureCommandInput | UpdateOdbNetworkCommandInput;
57
+ /**
58
+ * @public
59
+ */
60
+ export type ServiceOutputTypes = AcceptMarketplaceRegistrationCommandOutput | CreateCloudAutonomousVmClusterCommandOutput | CreateCloudExadataInfrastructureCommandOutput | CreateCloudVmClusterCommandOutput | CreateOdbNetworkCommandOutput | CreateOdbPeeringConnectionCommandOutput | DeleteCloudAutonomousVmClusterCommandOutput | DeleteCloudExadataInfrastructureCommandOutput | DeleteCloudVmClusterCommandOutput | DeleteOdbNetworkCommandOutput | DeleteOdbPeeringConnectionCommandOutput | GetCloudAutonomousVmClusterCommandOutput | GetCloudExadataInfrastructureCommandOutput | GetCloudExadataInfrastructureUnallocatedResourcesCommandOutput | GetCloudVmClusterCommandOutput | GetDbNodeCommandOutput | GetDbServerCommandOutput | GetOciOnboardingStatusCommandOutput | GetOdbNetworkCommandOutput | GetOdbPeeringConnectionCommandOutput | InitializeServiceCommandOutput | ListAutonomousVirtualMachinesCommandOutput | ListCloudAutonomousVmClustersCommandOutput | ListCloudExadataInfrastructuresCommandOutput | ListCloudVmClustersCommandOutput | ListDbNodesCommandOutput | ListDbServersCommandOutput | ListDbSystemShapesCommandOutput | ListGiVersionsCommandOutput | ListOdbNetworksCommandOutput | ListOdbPeeringConnectionsCommandOutput | ListSystemVersionsCommandOutput | ListTagsForResourceCommandOutput | RebootDbNodeCommandOutput | StartDbNodeCommandOutput | StopDbNodeCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCloudExadataInfrastructureCommandOutput | UpdateOdbNetworkCommandOutput;
61
+ /**
62
+ * @public
63
+ */
64
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
65
+ /**
66
+ * The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs.
67
+ */
68
+ requestHandler?: __HttpHandlerUserInput;
69
+ /**
70
+ * A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
71
+ * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
72
+ * @internal
73
+ */
74
+ sha256?: __ChecksumConstructor | __HashConstructor;
75
+ /**
76
+ * The function that will be used to convert strings into HTTP endpoints.
77
+ * @internal
78
+ */
79
+ urlParser?: __UrlParser;
80
+ /**
81
+ * A function that can calculate the length of a request body.
82
+ * @internal
83
+ */
84
+ bodyLengthChecker?: __BodyLengthCalculator;
85
+ /**
86
+ * A function that converts a stream into an array of bytes.
87
+ * @internal
88
+ */
89
+ streamCollector?: __StreamCollector;
90
+ /**
91
+ * The function that will be used to convert a base64-encoded string to a byte array.
92
+ * @internal
93
+ */
94
+ base64Decoder?: __Decoder;
95
+ /**
96
+ * The function that will be used to convert binary data to a base64-encoded string.
97
+ * @internal
98
+ */
99
+ base64Encoder?: __Encoder;
100
+ /**
101
+ * The function that will be used to convert a UTF8-encoded string to a byte array.
102
+ * @internal
103
+ */
104
+ utf8Decoder?: __Decoder;
105
+ /**
106
+ * The function that will be used to convert binary data to a UTF-8 encoded string.
107
+ * @internal
108
+ */
109
+ utf8Encoder?: __Encoder;
110
+ /**
111
+ * The runtime environment.
112
+ * @internal
113
+ */
114
+ runtime?: string;
115
+ /**
116
+ * Disable dynamically changing the endpoint of the client based on the hostPrefix
117
+ * trait of an operation.
118
+ */
119
+ disableHostPrefix?: boolean;
120
+ /**
121
+ * Unique service identifier.
122
+ * @internal
123
+ */
124
+ serviceId?: string;
125
+ /**
126
+ * Enables IPv6/IPv4 dualstack endpoint.
127
+ */
128
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
129
+ /**
130
+ * Enables FIPS compatible endpoints.
131
+ */
132
+ useFipsEndpoint?: boolean | __Provider<boolean>;
133
+ /**
134
+ * The AWS region to which this client will send requests
135
+ */
136
+ region?: string | __Provider<string>;
137
+ /**
138
+ * Setting a client profile is similar to setting a value for the
139
+ * AWS_PROFILE environment variable. Setting a profile on a client
140
+ * in code only affects the single client instance, unlike AWS_PROFILE.
141
+ *
142
+ * When set, and only for environments where an AWS configuration
143
+ * file exists, fields configurable by this file will be retrieved
144
+ * from the specified profile within that file.
145
+ * Conflicting code configuration and environment variables will
146
+ * still have higher priority.
147
+ *
148
+ * For client credential resolution that involves checking the AWS
149
+ * configuration file, the client's profile (this value) will be
150
+ * used unless a different profile is set in the credential
151
+ * provider options.
152
+ *
153
+ */
154
+ profile?: string;
155
+ /**
156
+ * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
157
+ * @internal
158
+ */
159
+ defaultUserAgentProvider?: Provider<__UserAgent>;
160
+ /**
161
+ * Default credentials provider; Not available in browser runtime.
162
+ * @deprecated
163
+ * @internal
164
+ */
165
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
166
+ /**
167
+ * Value for how many times a request will be made at most in case of retry.
168
+ */
169
+ maxAttempts?: number | __Provider<number>;
170
+ /**
171
+ * Specifies which retry algorithm to use.
172
+ * @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/
173
+ *
174
+ */
175
+ retryMode?: string | __Provider<string>;
176
+ /**
177
+ * Optional logger for logging debug/info/warn/error.
178
+ */
179
+ logger?: __Logger;
180
+ /**
181
+ * Optional extensions
182
+ */
183
+ extensions?: RuntimeExtension[];
184
+ /**
185
+ * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
186
+ */
187
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
188
+ }
189
+ /**
190
+ * @public
191
+ */
192
+ export type OdbClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
193
+ /**
194
+ * @public
195
+ *
196
+ * The configuration interface of OdbClient class constructor that set the region, credentials and other options.
197
+ */
198
+ export interface OdbClientConfig extends OdbClientConfigType {
199
+ }
200
+ /**
201
+ * @public
202
+ */
203
+ export type OdbClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
204
+ /**
205
+ * @public
206
+ *
207
+ * The resolved configuration interface of OdbClient class. This is resolved and normalized from the {@link OdbClientConfig | constructor configuration interface}.
208
+ */
209
+ export interface OdbClientResolvedConfig extends OdbClientResolvedConfigType {
210
+ }
211
+ /**
212
+ * <p>Oracle Database@Amazon Web Services is an offering that enables you to access Oracle Exadata infrastructure managed by Oracle Cloud Infrastructure (OCI) inside Amazon Web Services data centers. You can migrate your Oracle Exadata workloads, establish low-latency connectivity with applications running on Amazon Web Services, and integrate with Amazon Web Services services. For example, you can run application servers in a virtual private cloud (VPC) and access an Oracle Exadata system running in Oracle Database@Amazon Web Services. You can get started with Oracle Database@Amazon Web Services by using the familiar Amazon Web Services Management Console, APIs, or CLI.</p> <p>This interface reference for Oracle Database@Amazon Web Services contains documentation for a programming or command line interface that you can use to manage Oracle Database@Amazon Web Services. Oracle Database@Amazon Web Services is asynchronous, which means that some interfaces might require techniques such as polling or callback functions to determine when a command has been applied. The reference structure is as follows.</p> <note> <p>In this preview release documentation, the links in the "See Also" sections do not work.</p> </note> <p> <b>Oracle Database@Amazon Web Services API Reference</b> </p> <ul> <li> <p>For the alphabetical list of API actions, see .</p> </li> <li> <p>For the alphabetical list of data types, see .</p> </li> <li> <p>For a list of common parameters, see <a>CommonParameters</a>.</p> </li> <li> <p>For descriptions of the error codes, see <a>CommonErrors</a>.</p> </li> </ul>
213
+ * @public
214
+ */
215
+ export declare class OdbClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, OdbClientResolvedConfig> {
216
+ /**
217
+ * The resolved configuration of OdbClient class. This is resolved and normalized from the {@link OdbClientConfig | constructor configuration interface}.
218
+ */
219
+ readonly config: OdbClientResolvedConfig;
220
+ constructor(...[configuration]: __CheckOptionalClientConfig<OdbClientConfig>);
221
+ /**
222
+ * Destroy underlying resources, like sockets. It's usually not necessary to do this.
223
+ * However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
224
+ * Otherwise, sockets might stay open for quite a long time before the server terminates them.
225
+ */
226
+ destroy(): void;
227
+ }
@@ -0,0 +1,29 @@
1
+ import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
2
+ import { OdbHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
3
+ /**
4
+ * @internal
5
+ */
6
+ export interface HttpAuthExtensionConfiguration {
7
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
8
+ httpAuthSchemes(): HttpAuthScheme[];
9
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: OdbHttpAuthSchemeProvider): void;
10
+ httpAuthSchemeProvider(): OdbHttpAuthSchemeProvider;
11
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
12
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export type HttpAuthRuntimeConfig = Partial<{
18
+ httpAuthSchemes: HttpAuthScheme[];
19
+ httpAuthSchemeProvider: OdbHttpAuthSchemeProvider;
20
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
21
+ }>;
22
+ /**
23
+ * @internal
24
+ */
25
+ export declare const getHttpAuthExtensionConfiguration: (runtimeConfig: HttpAuthRuntimeConfig) => HttpAuthExtensionConfiguration;
26
+ /**
27
+ * @internal
28
+ */
29
+ export declare const resolveHttpAuthRuntimeConfig: (config: HttpAuthExtensionConfiguration) => HttpAuthRuntimeConfig;
@@ -0,0 +1,75 @@
1
+ import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
2
+ import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
3
+ import { OdbClientResolvedConfig } from "../OdbClient";
4
+ /**
5
+ * @internal
6
+ */
7
+ export interface OdbHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
8
+ region?: string;
9
+ }
10
+ /**
11
+ * @internal
12
+ */
13
+ export interface OdbHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<OdbClientResolvedConfig, HandlerExecutionContext, OdbHttpAuthSchemeParameters, object> {
14
+ }
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const defaultOdbHttpAuthSchemeParametersProvider: (config: OdbClientResolvedConfig, context: HandlerExecutionContext, input: object) => Promise<OdbHttpAuthSchemeParameters>;
19
+ /**
20
+ * @internal
21
+ */
22
+ export interface OdbHttpAuthSchemeProvider extends HttpAuthSchemeProvider<OdbHttpAuthSchemeParameters> {
23
+ }
24
+ /**
25
+ * @internal
26
+ */
27
+ export declare const defaultOdbHttpAuthSchemeProvider: OdbHttpAuthSchemeProvider;
28
+ /**
29
+ * @internal
30
+ */
31
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
32
+ /**
33
+ * A comma-separated list of case-sensitive auth scheme names.
34
+ * An auth scheme name is a fully qualified auth scheme ID with the namespace prefix trimmed.
35
+ * For example, the auth scheme with ID aws.auth#sigv4 is named sigv4.
36
+ * @public
37
+ */
38
+ authSchemePreference?: string[] | Provider<string[]>;
39
+ /**
40
+ * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
41
+ * @internal
42
+ */
43
+ httpAuthSchemes?: HttpAuthScheme[];
44
+ /**
45
+ * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
46
+ * @internal
47
+ */
48
+ httpAuthSchemeProvider?: OdbHttpAuthSchemeProvider;
49
+ }
50
+ /**
51
+ * @internal
52
+ */
53
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
54
+ /**
55
+ * A comma-separated list of case-sensitive auth scheme names.
56
+ * An auth scheme name is a fully qualified auth scheme ID with the namespace prefix trimmed.
57
+ * For example, the auth scheme with ID aws.auth#sigv4 is named sigv4.
58
+ * @public
59
+ */
60
+ readonly authSchemePreference: Provider<string[]>;
61
+ /**
62
+ * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
63
+ * @internal
64
+ */
65
+ readonly httpAuthSchemes: HttpAuthScheme[];
66
+ /**
67
+ * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
68
+ * @internal
69
+ */
70
+ readonly httpAuthSchemeProvider: OdbHttpAuthSchemeProvider;
71
+ }
72
+ /**
73
+ * @internal
74
+ */
75
+ export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,85 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { AcceptMarketplaceRegistrationInput, AcceptMarketplaceRegistrationOutput } from "../models/models_0";
4
+ import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link AcceptMarketplaceRegistrationCommand}.
14
+ */
15
+ export interface AcceptMarketplaceRegistrationCommandInput extends AcceptMarketplaceRegistrationInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link AcceptMarketplaceRegistrationCommand}.
21
+ */
22
+ export interface AcceptMarketplaceRegistrationCommandOutput extends AcceptMarketplaceRegistrationOutput, __MetadataBearer {
23
+ }
24
+ declare const AcceptMarketplaceRegistrationCommand_base: {
25
+ new (input: AcceptMarketplaceRegistrationCommandInput): import("@smithy/smithy-client").CommandImpl<AcceptMarketplaceRegistrationCommandInput, AcceptMarketplaceRegistrationCommandOutput, OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: AcceptMarketplaceRegistrationCommandInput): import("@smithy/smithy-client").CommandImpl<AcceptMarketplaceRegistrationCommandInput, AcceptMarketplaceRegistrationCommandOutput, OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Registers the Amazon Web Services Marketplace token for your Amazon Web Services account to activate your Oracle Database@Amazon Web Services subscription.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { OdbClient, AcceptMarketplaceRegistrationCommand } from "@aws-sdk/client-odb"; // ES Modules import
35
+ * // const { OdbClient, AcceptMarketplaceRegistrationCommand } = require("@aws-sdk/client-odb"); // CommonJS import
36
+ * const client = new OdbClient(config);
37
+ * const input = { // AcceptMarketplaceRegistrationInput
38
+ * marketplaceRegistrationToken: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new AcceptMarketplaceRegistrationCommand(input);
41
+ * const response = await client.send(command);
42
+ * // {};
43
+ *
44
+ * ```
45
+ *
46
+ * @param AcceptMarketplaceRegistrationCommandInput - {@link AcceptMarketplaceRegistrationCommandInput}
47
+ * @returns {@link AcceptMarketplaceRegistrationCommandOutput}
48
+ * @see {@link AcceptMarketplaceRegistrationCommandInput} for command's `input` shape.
49
+ * @see {@link AcceptMarketplaceRegistrationCommandOutput} for command's `response` shape.
50
+ * @see {@link OdbClientResolvedConfig | config} for OdbClient's `config` shape.
51
+ *
52
+ * @throws {@link AccessDeniedException} (client fault)
53
+ * <p>You don't have sufficient access to perform this action. Make sure you have the required permissions and try again.</p>
54
+ *
55
+ * @throws {@link ConflictException} (client fault)
56
+ * <p>Occurs when a conflict with the current status of your resource. Fix any inconsistencies with your resource and try again.</p>
57
+ *
58
+ * @throws {@link InternalServerException} (server fault)
59
+ * <p>Occurs when there is an internal failure in the Oracle Database@Amazon Web Services service. Wait and try again.</p>
60
+ *
61
+ * @throws {@link ThrottlingException} (client fault)
62
+ * <p>The request was denied due to request throttling.</p>
63
+ *
64
+ * @throws {@link ValidationException} (client fault)
65
+ * <p>The request has failed validation because it is missing required fields or has invalid inputs.</p>
66
+ *
67
+ * @throws {@link OdbServiceException}
68
+ * <p>Base exception class for all service exceptions from Odb service.</p>
69
+ *
70
+ *
71
+ * @public
72
+ */
73
+ export declare class AcceptMarketplaceRegistrationCommand extends AcceptMarketplaceRegistrationCommand_base {
74
+ /** @internal type navigation helper, not in runtime. */
75
+ protected static __types: {
76
+ api: {
77
+ input: AcceptMarketplaceRegistrationInput;
78
+ output: {};
79
+ };
80
+ sdk: {
81
+ input: AcceptMarketplaceRegistrationCommandInput;
82
+ output: AcceptMarketplaceRegistrationCommandOutput;
83
+ };
84
+ };
85
+ }
@@ -0,0 +1,139 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CreateCloudAutonomousVmClusterInput, CreateCloudAutonomousVmClusterOutput } from "../models/models_0";
4
+ import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateCloudAutonomousVmClusterCommand}.
14
+ */
15
+ export interface CreateCloudAutonomousVmClusterCommandInput extends CreateCloudAutonomousVmClusterInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateCloudAutonomousVmClusterCommand}.
21
+ */
22
+ export interface CreateCloudAutonomousVmClusterCommandOutput extends CreateCloudAutonomousVmClusterOutput, __MetadataBearer {
23
+ }
24
+ declare const CreateCloudAutonomousVmClusterCommand_base: {
25
+ new (input: CreateCloudAutonomousVmClusterCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCloudAutonomousVmClusterCommandInput, CreateCloudAutonomousVmClusterCommandOutput, OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: CreateCloudAutonomousVmClusterCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCloudAutonomousVmClusterCommandInput, CreateCloudAutonomousVmClusterCommandOutput, OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Creates a new Autonomous VM cluster in the specified Exadata infrastructure.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { OdbClient, CreateCloudAutonomousVmClusterCommand } from "@aws-sdk/client-odb"; // ES Modules import
35
+ * // const { OdbClient, CreateCloudAutonomousVmClusterCommand } = require("@aws-sdk/client-odb"); // CommonJS import
36
+ * const client = new OdbClient(config);
37
+ * const input = { // CreateCloudAutonomousVmClusterInput
38
+ * cloudExadataInfrastructureId: "STRING_VALUE", // required
39
+ * odbNetworkId: "STRING_VALUE", // required
40
+ * displayName: "STRING_VALUE", // required
41
+ * clientToken: "STRING_VALUE",
42
+ * autonomousDataStorageSizeInTBs: Number("double"), // required
43
+ * cpuCoreCountPerNode: Number("int"), // required
44
+ * dbServers: [ // StringList
45
+ * "STRING_VALUE",
46
+ * ],
47
+ * description: "STRING_VALUE",
48
+ * isMtlsEnabledVmCluster: true || false,
49
+ * licenseModel: "BRING_YOUR_OWN_LICENSE" || "LICENSE_INCLUDED",
50
+ * maintenanceWindow: { // MaintenanceWindow
51
+ * customActionTimeoutInMins: Number("int"),
52
+ * daysOfWeek: [ // DaysOfWeek
53
+ * { // DayOfWeek
54
+ * name: "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY" || "SUNDAY",
55
+ * },
56
+ * ],
57
+ * hoursOfDay: [ // HoursOfDay
58
+ * Number("int"),
59
+ * ],
60
+ * isCustomActionTimeoutEnabled: true || false,
61
+ * leadTimeInWeeks: Number("int"),
62
+ * months: [ // Months
63
+ * { // Month
64
+ * name: "JANUARY" || "FEBRUARY" || "MARCH" || "APRIL" || "MAY" || "JUNE" || "JULY" || "AUGUST" || "SEPTEMBER" || "OCTOBER" || "NOVEMBER" || "DECEMBER",
65
+ * },
66
+ * ],
67
+ * patchingMode: "ROLLING" || "NONROLLING",
68
+ * preference: "NO_PREFERENCE" || "CUSTOM_PREFERENCE",
69
+ * skipRu: true || false,
70
+ * weeksOfMonth: [ // WeeksOfMonth
71
+ * Number("int"),
72
+ * ],
73
+ * },
74
+ * memoryPerOracleComputeUnitInGBs: Number("int"), // required
75
+ * scanListenerPortNonTls: Number("int"),
76
+ * scanListenerPortTls: Number("int"),
77
+ * tags: { // RequestTagMap
78
+ * "<keys>": "STRING_VALUE",
79
+ * },
80
+ * timeZone: "STRING_VALUE",
81
+ * totalContainerDatabases: Number("int"), // required
82
+ * };
83
+ * const command = new CreateCloudAutonomousVmClusterCommand(input);
84
+ * const response = await client.send(command);
85
+ * // { // CreateCloudAutonomousVmClusterOutput
86
+ * // displayName: "STRING_VALUE",
87
+ * // status: "AVAILABLE" || "FAILED" || "PROVISIONING" || "TERMINATED" || "TERMINATING" || "UPDATING" || "MAINTENANCE_IN_PROGRESS",
88
+ * // statusReason: "STRING_VALUE",
89
+ * // cloudAutonomousVmClusterId: "STRING_VALUE", // required
90
+ * // };
91
+ *
92
+ * ```
93
+ *
94
+ * @param CreateCloudAutonomousVmClusterCommandInput - {@link CreateCloudAutonomousVmClusterCommandInput}
95
+ * @returns {@link CreateCloudAutonomousVmClusterCommandOutput}
96
+ * @see {@link CreateCloudAutonomousVmClusterCommandInput} for command's `input` shape.
97
+ * @see {@link CreateCloudAutonomousVmClusterCommandOutput} for command's `response` shape.
98
+ * @see {@link OdbClientResolvedConfig | config} for OdbClient's `config` shape.
99
+ *
100
+ * @throws {@link AccessDeniedException} (client fault)
101
+ * <p>You don't have sufficient access to perform this action. Make sure you have the required permissions and try again.</p>
102
+ *
103
+ * @throws {@link ConflictException} (client fault)
104
+ * <p>Occurs when a conflict with the current status of your resource. Fix any inconsistencies with your resource and try again.</p>
105
+ *
106
+ * @throws {@link InternalServerException} (server fault)
107
+ * <p>Occurs when there is an internal failure in the Oracle Database@Amazon Web Services service. Wait and try again.</p>
108
+ *
109
+ * @throws {@link ResourceNotFoundException} (client fault)
110
+ * <p>The operation tried to access a resource that doesn't exist. Make sure you provided the correct resource and try again.</p>
111
+ *
112
+ * @throws {@link ServiceQuotaExceededException} (client fault)
113
+ * <p>You have exceeded the service quota.</p>
114
+ *
115
+ * @throws {@link ThrottlingException} (client fault)
116
+ * <p>The request was denied due to request throttling.</p>
117
+ *
118
+ * @throws {@link ValidationException} (client fault)
119
+ * <p>The request has failed validation because it is missing required fields or has invalid inputs.</p>
120
+ *
121
+ * @throws {@link OdbServiceException}
122
+ * <p>Base exception class for all service exceptions from Odb service.</p>
123
+ *
124
+ *
125
+ * @public
126
+ */
127
+ export declare class CreateCloudAutonomousVmClusterCommand extends CreateCloudAutonomousVmClusterCommand_base {
128
+ /** @internal type navigation helper, not in runtime. */
129
+ protected static __types: {
130
+ api: {
131
+ input: CreateCloudAutonomousVmClusterInput;
132
+ output: CreateCloudAutonomousVmClusterOutput;
133
+ };
134
+ sdk: {
135
+ input: CreateCloudAutonomousVmClusterCommandInput;
136
+ output: CreateCloudAutonomousVmClusterCommandOutput;
137
+ };
138
+ };
139
+ }