@aws-sdk/client-neptunedata 3.403.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 (243) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +555 -0
  3. package/dist-cjs/Neptunedata.js +97 -0
  4. package/dist-cjs/NeptunedataClient.js +43 -0
  5. package/dist-cjs/commands/CancelGremlinQueryCommand.js +46 -0
  6. package/dist-cjs/commands/CancelLoaderJobCommand.js +46 -0
  7. package/dist-cjs/commands/CancelMLDataProcessingJobCommand.js +46 -0
  8. package/dist-cjs/commands/CancelMLModelTrainingJobCommand.js +46 -0
  9. package/dist-cjs/commands/CancelMLModelTransformJobCommand.js +46 -0
  10. package/dist-cjs/commands/CancelOpenCypherQueryCommand.js +46 -0
  11. package/dist-cjs/commands/CreateMLEndpointCommand.js +46 -0
  12. package/dist-cjs/commands/DeleteMLEndpointCommand.js +46 -0
  13. package/dist-cjs/commands/DeletePropertygraphStatisticsCommand.js +46 -0
  14. package/dist-cjs/commands/DeleteSparqlStatisticsCommand.js +46 -0
  15. package/dist-cjs/commands/ExecuteFastResetCommand.js +46 -0
  16. package/dist-cjs/commands/ExecuteGremlinExplainQueryCommand.js +46 -0
  17. package/dist-cjs/commands/ExecuteGremlinProfileQueryCommand.js +46 -0
  18. package/dist-cjs/commands/ExecuteGremlinQueryCommand.js +46 -0
  19. package/dist-cjs/commands/ExecuteOpenCypherExplainQueryCommand.js +46 -0
  20. package/dist-cjs/commands/ExecuteOpenCypherQueryCommand.js +46 -0
  21. package/dist-cjs/commands/GetEngineStatusCommand.js +46 -0
  22. package/dist-cjs/commands/GetGremlinQueryStatusCommand.js +46 -0
  23. package/dist-cjs/commands/GetLoaderJobStatusCommand.js +46 -0
  24. package/dist-cjs/commands/GetMLDataProcessingJobCommand.js +46 -0
  25. package/dist-cjs/commands/GetMLEndpointCommand.js +46 -0
  26. package/dist-cjs/commands/GetMLModelTrainingJobCommand.js +46 -0
  27. package/dist-cjs/commands/GetMLModelTransformJobCommand.js +46 -0
  28. package/dist-cjs/commands/GetOpenCypherQueryStatusCommand.js +46 -0
  29. package/dist-cjs/commands/GetPropertygraphStatisticsCommand.js +46 -0
  30. package/dist-cjs/commands/GetPropertygraphStreamCommand.js +46 -0
  31. package/dist-cjs/commands/GetPropertygraphSummaryCommand.js +46 -0
  32. package/dist-cjs/commands/GetRDFGraphSummaryCommand.js +46 -0
  33. package/dist-cjs/commands/GetSparqlStatisticsCommand.js +46 -0
  34. package/dist-cjs/commands/GetSparqlStreamCommand.js +46 -0
  35. package/dist-cjs/commands/ListGremlinQueriesCommand.js +46 -0
  36. package/dist-cjs/commands/ListLoaderJobsCommand.js +46 -0
  37. package/dist-cjs/commands/ListMLDataProcessingJobsCommand.js +46 -0
  38. package/dist-cjs/commands/ListMLEndpointsCommand.js +46 -0
  39. package/dist-cjs/commands/ListMLModelTrainingJobsCommand.js +46 -0
  40. package/dist-cjs/commands/ListMLModelTransformJobsCommand.js +46 -0
  41. package/dist-cjs/commands/ListOpenCypherQueriesCommand.js +46 -0
  42. package/dist-cjs/commands/ManagePropertygraphStatisticsCommand.js +46 -0
  43. package/dist-cjs/commands/ManageSparqlStatisticsCommand.js +46 -0
  44. package/dist-cjs/commands/StartLoaderJobCommand.js +46 -0
  45. package/dist-cjs/commands/StartMLDataProcessingJobCommand.js +46 -0
  46. package/dist-cjs/commands/StartMLModelTrainingJobCommand.js +46 -0
  47. package/dist-cjs/commands/StartMLModelTransformJobCommand.js +46 -0
  48. package/dist-cjs/commands/index.js +46 -0
  49. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  50. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  51. package/dist-cjs/endpoint/ruleset.js +7 -0
  52. package/dist-cjs/extensionConfiguration.js +2 -0
  53. package/dist-cjs/index.js +10 -0
  54. package/dist-cjs/models/NeptunedataServiceException.js +12 -0
  55. package/dist-cjs/models/index.js +4 -0
  56. package/dist-cjs/models/models_0.js +631 -0
  57. package/dist-cjs/protocols/Aws_restJson1.js +4771 -0
  58. package/dist-cjs/runtimeConfig.browser.js +39 -0
  59. package/dist-cjs/runtimeConfig.js +48 -0
  60. package/dist-cjs/runtimeConfig.native.js +15 -0
  61. package/dist-cjs/runtimeConfig.shared.js +22 -0
  62. package/dist-cjs/runtimeExtensions.js +16 -0
  63. package/dist-es/Neptunedata.js +93 -0
  64. package/dist-es/NeptunedataClient.js +39 -0
  65. package/dist-es/commands/CancelGremlinQueryCommand.js +42 -0
  66. package/dist-es/commands/CancelLoaderJobCommand.js +42 -0
  67. package/dist-es/commands/CancelMLDataProcessingJobCommand.js +42 -0
  68. package/dist-es/commands/CancelMLModelTrainingJobCommand.js +42 -0
  69. package/dist-es/commands/CancelMLModelTransformJobCommand.js +42 -0
  70. package/dist-es/commands/CancelOpenCypherQueryCommand.js +42 -0
  71. package/dist-es/commands/CreateMLEndpointCommand.js +42 -0
  72. package/dist-es/commands/DeleteMLEndpointCommand.js +42 -0
  73. package/dist-es/commands/DeletePropertygraphStatisticsCommand.js +42 -0
  74. package/dist-es/commands/DeleteSparqlStatisticsCommand.js +42 -0
  75. package/dist-es/commands/ExecuteFastResetCommand.js +42 -0
  76. package/dist-es/commands/ExecuteGremlinExplainQueryCommand.js +42 -0
  77. package/dist-es/commands/ExecuteGremlinProfileQueryCommand.js +42 -0
  78. package/dist-es/commands/ExecuteGremlinQueryCommand.js +42 -0
  79. package/dist-es/commands/ExecuteOpenCypherExplainQueryCommand.js +42 -0
  80. package/dist-es/commands/ExecuteOpenCypherQueryCommand.js +42 -0
  81. package/dist-es/commands/GetEngineStatusCommand.js +42 -0
  82. package/dist-es/commands/GetGremlinQueryStatusCommand.js +42 -0
  83. package/dist-es/commands/GetLoaderJobStatusCommand.js +42 -0
  84. package/dist-es/commands/GetMLDataProcessingJobCommand.js +42 -0
  85. package/dist-es/commands/GetMLEndpointCommand.js +42 -0
  86. package/dist-es/commands/GetMLModelTrainingJobCommand.js +42 -0
  87. package/dist-es/commands/GetMLModelTransformJobCommand.js +42 -0
  88. package/dist-es/commands/GetOpenCypherQueryStatusCommand.js +42 -0
  89. package/dist-es/commands/GetPropertygraphStatisticsCommand.js +42 -0
  90. package/dist-es/commands/GetPropertygraphStreamCommand.js +42 -0
  91. package/dist-es/commands/GetPropertygraphSummaryCommand.js +42 -0
  92. package/dist-es/commands/GetRDFGraphSummaryCommand.js +42 -0
  93. package/dist-es/commands/GetSparqlStatisticsCommand.js +42 -0
  94. package/dist-es/commands/GetSparqlStreamCommand.js +42 -0
  95. package/dist-es/commands/ListGremlinQueriesCommand.js +42 -0
  96. package/dist-es/commands/ListLoaderJobsCommand.js +42 -0
  97. package/dist-es/commands/ListMLDataProcessingJobsCommand.js +42 -0
  98. package/dist-es/commands/ListMLEndpointsCommand.js +42 -0
  99. package/dist-es/commands/ListMLModelTrainingJobsCommand.js +42 -0
  100. package/dist-es/commands/ListMLModelTransformJobsCommand.js +42 -0
  101. package/dist-es/commands/ListOpenCypherQueriesCommand.js +42 -0
  102. package/dist-es/commands/ManagePropertygraphStatisticsCommand.js +42 -0
  103. package/dist-es/commands/ManageSparqlStatisticsCommand.js +42 -0
  104. package/dist-es/commands/StartLoaderJobCommand.js +42 -0
  105. package/dist-es/commands/StartMLDataProcessingJobCommand.js +42 -0
  106. package/dist-es/commands/StartMLModelTrainingJobCommand.js +42 -0
  107. package/dist-es/commands/StartMLModelTransformJobCommand.js +42 -0
  108. package/dist-es/commands/index.js +43 -0
  109. package/dist-es/endpoint/EndpointParameters.js +8 -0
  110. package/dist-es/endpoint/endpointResolver.js +8 -0
  111. package/dist-es/endpoint/ruleset.js +4 -0
  112. package/dist-es/extensionConfiguration.js +1 -0
  113. package/dist-es/index.js +5 -0
  114. package/dist-es/models/NeptunedataServiceException.js +8 -0
  115. package/dist-es/models/index.js +1 -0
  116. package/dist-es/models/models_0.js +594 -0
  117. package/dist-es/protocols/Aws_restJson1.js +4681 -0
  118. package/dist-es/runtimeConfig.browser.js +34 -0
  119. package/dist-es/runtimeConfig.js +43 -0
  120. package/dist-es/runtimeConfig.native.js +11 -0
  121. package/dist-es/runtimeConfig.shared.js +18 -0
  122. package/dist-es/runtimeExtensions.js +12 -0
  123. package/dist-types/Neptunedata.d.ts +316 -0
  124. package/dist-types/NeptunedataClient.d.ts +215 -0
  125. package/dist-types/commands/CancelGremlinQueryCommand.d.ts +117 -0
  126. package/dist-types/commands/CancelLoaderJobCommand.d.ts +115 -0
  127. package/dist-types/commands/CancelMLDataProcessingJobCommand.d.ts +109 -0
  128. package/dist-types/commands/CancelMLModelTrainingJobCommand.d.ts +109 -0
  129. package/dist-types/commands/CancelMLModelTransformJobCommand.d.ts +109 -0
  130. package/dist-types/commands/CancelOpenCypherQueryCommand.d.ts +122 -0
  131. package/dist-types/commands/CreateMLEndpointCommand.d.ts +119 -0
  132. package/dist-types/commands/DeleteMLEndpointCommand.d.ts +110 -0
  133. package/dist-types/commands/DeletePropertygraphStatisticsCommand.d.ts +116 -0
  134. package/dist-types/commands/DeleteSparqlStatisticsCommand.d.ts +115 -0
  135. package/dist-types/commands/ExecuteFastResetCommand.d.ts +123 -0
  136. package/dist-types/commands/ExecuteGremlinExplainQueryCommand.d.ts +155 -0
  137. package/dist-types/commands/ExecuteGremlinProfileQueryCommand.d.ts +151 -0
  138. package/dist-types/commands/ExecuteGremlinQueryCommand.d.ts +150 -0
  139. package/dist-types/commands/ExecuteOpenCypherExplainQueryCommand.d.ts +151 -0
  140. package/dist-types/commands/ExecuteOpenCypherQueryCommand.d.ts +151 -0
  141. package/dist-types/commands/GetEngineStatusCommand.d.ts +119 -0
  142. package/dist-types/commands/GetGremlinQueryStatusCommand.d.ts +129 -0
  143. package/dist-types/commands/GetLoaderJobStatusCommand.d.ts +121 -0
  144. package/dist-types/commands/GetMLDataProcessingJobCommand.d.ts +117 -0
  145. package/dist-types/commands/GetMLEndpointCommand.d.ts +121 -0
  146. package/dist-types/commands/GetMLModelTrainingJobCommand.d.ts +139 -0
  147. package/dist-types/commands/GetMLModelTransformJobCommand.d.ts +131 -0
  148. package/dist-types/commands/GetOpenCypherQueryStatusCommand.d.ts +132 -0
  149. package/dist-types/commands/GetPropertygraphStatisticsCommand.d.ts +122 -0
  150. package/dist-types/commands/GetPropertygraphStreamCommand.d.ts +147 -0
  151. package/dist-types/commands/GetPropertygraphSummaryCommand.d.ts +161 -0
  152. package/dist-types/commands/GetRDFGraphSummaryCommand.d.ts +138 -0
  153. package/dist-types/commands/GetSparqlStatisticsCommand.d.ts +122 -0
  154. package/dist-types/commands/GetSparqlStreamCommand.d.ts +142 -0
  155. package/dist-types/commands/ListGremlinQueriesCommand.d.ts +136 -0
  156. package/dist-types/commands/ListLoaderJobsCommand.d.ts +116 -0
  157. package/dist-types/commands/ListMLDataProcessingJobsCommand.d.ts +110 -0
  158. package/dist-types/commands/ListMLEndpointsCommand.d.ts +110 -0
  159. package/dist-types/commands/ListMLModelTrainingJobsCommand.d.ts +110 -0
  160. package/dist-types/commands/ListMLModelTransformJobsCommand.d.ts +110 -0
  161. package/dist-types/commands/ListOpenCypherQueriesCommand.d.ts +139 -0
  162. package/dist-types/commands/ManagePropertygraphStatisticsCommand.d.ts +115 -0
  163. package/dist-types/commands/ManageSparqlStatisticsCommand.d.ts +115 -0
  164. package/dist-types/commands/StartLoaderJobCommand.d.ts +135 -0
  165. package/dist-types/commands/StartMLDataProcessingJobCommand.d.ts +128 -0
  166. package/dist-types/commands/StartMLModelTrainingJobCommand.d.ts +134 -0
  167. package/dist-types/commands/StartMLModelTransformJobCommand.d.ts +129 -0
  168. package/dist-types/commands/index.d.ts +43 -0
  169. package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
  170. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  171. package/dist-types/endpoint/ruleset.d.ts +2 -0
  172. package/dist-types/extensionConfiguration.d.ts +6 -0
  173. package/dist-types/index.d.ts +16 -0
  174. package/dist-types/models/NeptunedataServiceException.d.ts +13 -0
  175. package/dist-types/models/index.d.ts +1 -0
  176. package/dist-types/models/models_0.d.ts +4026 -0
  177. package/dist-types/protocols/Aws_restJson1.d.ts +389 -0
  178. package/dist-types/runtimeConfig.browser.d.ts +46 -0
  179. package/dist-types/runtimeConfig.d.ts +43 -0
  180. package/dist-types/runtimeConfig.native.d.ts +42 -0
  181. package/dist-types/runtimeConfig.shared.d.ts +19 -0
  182. package/dist-types/runtimeExtensions.d.ts +17 -0
  183. package/dist-types/ts3.4/Neptunedata.d.ts +738 -0
  184. package/dist-types/ts3.4/NeptunedataClient.d.ts +376 -0
  185. package/dist-types/ts3.4/commands/CancelGremlinQueryCommand.d.ts +39 -0
  186. package/dist-types/ts3.4/commands/CancelLoaderJobCommand.d.ts +38 -0
  187. package/dist-types/ts3.4/commands/CancelMLDataProcessingJobCommand.d.ts +42 -0
  188. package/dist-types/ts3.4/commands/CancelMLModelTrainingJobCommand.d.ts +42 -0
  189. package/dist-types/ts3.4/commands/CancelMLModelTransformJobCommand.d.ts +42 -0
  190. package/dist-types/ts3.4/commands/CancelOpenCypherQueryCommand.d.ts +42 -0
  191. package/dist-types/ts3.4/commands/CreateMLEndpointCommand.d.ts +38 -0
  192. package/dist-types/ts3.4/commands/DeleteMLEndpointCommand.d.ts +38 -0
  193. package/dist-types/ts3.4/commands/DeletePropertygraphStatisticsCommand.d.ts +38 -0
  194. package/dist-types/ts3.4/commands/DeleteSparqlStatisticsCommand.d.ts +38 -0
  195. package/dist-types/ts3.4/commands/ExecuteFastResetCommand.d.ts +38 -0
  196. package/dist-types/ts3.4/commands/ExecuteGremlinExplainQueryCommand.d.ts +49 -0
  197. package/dist-types/ts3.4/commands/ExecuteGremlinProfileQueryCommand.d.ts +49 -0
  198. package/dist-types/ts3.4/commands/ExecuteGremlinQueryCommand.d.ts +39 -0
  199. package/dist-types/ts3.4/commands/ExecuteOpenCypherExplainQueryCommand.d.ts +49 -0
  200. package/dist-types/ts3.4/commands/ExecuteOpenCypherQueryCommand.d.ts +42 -0
  201. package/dist-types/ts3.4/commands/GetEngineStatusCommand.d.ts +35 -0
  202. package/dist-types/ts3.4/commands/GetGremlinQueryStatusCommand.d.ts +42 -0
  203. package/dist-types/ts3.4/commands/GetLoaderJobStatusCommand.d.ts +39 -0
  204. package/dist-types/ts3.4/commands/GetMLDataProcessingJobCommand.d.ts +42 -0
  205. package/dist-types/ts3.4/commands/GetMLEndpointCommand.d.ts +35 -0
  206. package/dist-types/ts3.4/commands/GetMLModelTrainingJobCommand.d.ts +42 -0
  207. package/dist-types/ts3.4/commands/GetMLModelTransformJobCommand.d.ts +42 -0
  208. package/dist-types/ts3.4/commands/GetOpenCypherQueryStatusCommand.d.ts +42 -0
  209. package/dist-types/ts3.4/commands/GetPropertygraphStatisticsCommand.d.ts +38 -0
  210. package/dist-types/ts3.4/commands/GetPropertygraphStreamCommand.d.ts +42 -0
  211. package/dist-types/ts3.4/commands/GetPropertygraphSummaryCommand.d.ts +42 -0
  212. package/dist-types/ts3.4/commands/GetRDFGraphSummaryCommand.d.ts +39 -0
  213. package/dist-types/ts3.4/commands/GetSparqlStatisticsCommand.d.ts +35 -0
  214. package/dist-types/ts3.4/commands/GetSparqlStreamCommand.d.ts +38 -0
  215. package/dist-types/ts3.4/commands/ListGremlinQueriesCommand.d.ts +39 -0
  216. package/dist-types/ts3.4/commands/ListLoaderJobsCommand.d.ts +35 -0
  217. package/dist-types/ts3.4/commands/ListMLDataProcessingJobsCommand.d.ts +42 -0
  218. package/dist-types/ts3.4/commands/ListMLEndpointsCommand.d.ts +38 -0
  219. package/dist-types/ts3.4/commands/ListMLModelTrainingJobsCommand.d.ts +42 -0
  220. package/dist-types/ts3.4/commands/ListMLModelTransformJobsCommand.d.ts +42 -0
  221. package/dist-types/ts3.4/commands/ListOpenCypherQueriesCommand.d.ts +42 -0
  222. package/dist-types/ts3.4/commands/ManagePropertygraphStatisticsCommand.d.ts +42 -0
  223. package/dist-types/ts3.4/commands/ManageSparqlStatisticsCommand.d.ts +42 -0
  224. package/dist-types/ts3.4/commands/StartLoaderJobCommand.d.ts +35 -0
  225. package/dist-types/ts3.4/commands/StartMLDataProcessingJobCommand.d.ts +42 -0
  226. package/dist-types/ts3.4/commands/StartMLModelTrainingJobCommand.d.ts +42 -0
  227. package/dist-types/ts3.4/commands/StartMLModelTransformJobCommand.d.ts +42 -0
  228. package/dist-types/ts3.4/commands/index.d.ts +43 -0
  229. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
  230. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  231. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  232. package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -0
  233. package/dist-types/ts3.4/index.d.ts +6 -0
  234. package/dist-types/ts3.4/models/NeptunedataServiceException.d.ts +8 -0
  235. package/dist-types/ts3.4/models/index.d.ts +1 -0
  236. package/dist-types/ts3.4/models/models_0.d.ts +994 -0
  237. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +521 -0
  238. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +90 -0
  239. package/dist-types/ts3.4/runtimeConfig.d.ts +90 -0
  240. package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
  241. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  242. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  243. package/package.json +100 -0
@@ -0,0 +1,389 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { CancelGremlinQueryCommandInput, CancelGremlinQueryCommandOutput } from "../commands/CancelGremlinQueryCommand";
4
+ import { CancelLoaderJobCommandInput, CancelLoaderJobCommandOutput } from "../commands/CancelLoaderJobCommand";
5
+ import { CancelMLDataProcessingJobCommandInput, CancelMLDataProcessingJobCommandOutput } from "../commands/CancelMLDataProcessingJobCommand";
6
+ import { CancelMLModelTrainingJobCommandInput, CancelMLModelTrainingJobCommandOutput } from "../commands/CancelMLModelTrainingJobCommand";
7
+ import { CancelMLModelTransformJobCommandInput, CancelMLModelTransformJobCommandOutput } from "../commands/CancelMLModelTransformJobCommand";
8
+ import { CancelOpenCypherQueryCommandInput, CancelOpenCypherQueryCommandOutput } from "../commands/CancelOpenCypherQueryCommand";
9
+ import { CreateMLEndpointCommandInput, CreateMLEndpointCommandOutput } from "../commands/CreateMLEndpointCommand";
10
+ import { DeleteMLEndpointCommandInput, DeleteMLEndpointCommandOutput } from "../commands/DeleteMLEndpointCommand";
11
+ import { DeletePropertygraphStatisticsCommandInput, DeletePropertygraphStatisticsCommandOutput } from "../commands/DeletePropertygraphStatisticsCommand";
12
+ import { DeleteSparqlStatisticsCommandInput, DeleteSparqlStatisticsCommandOutput } from "../commands/DeleteSparqlStatisticsCommand";
13
+ import { ExecuteFastResetCommandInput, ExecuteFastResetCommandOutput } from "../commands/ExecuteFastResetCommand";
14
+ import { ExecuteGremlinExplainQueryCommandInput, ExecuteGremlinExplainQueryCommandOutput } from "../commands/ExecuteGremlinExplainQueryCommand";
15
+ import { ExecuteGremlinProfileQueryCommandInput, ExecuteGremlinProfileQueryCommandOutput } from "../commands/ExecuteGremlinProfileQueryCommand";
16
+ import { ExecuteGremlinQueryCommandInput, ExecuteGremlinQueryCommandOutput } from "../commands/ExecuteGremlinQueryCommand";
17
+ import { ExecuteOpenCypherExplainQueryCommandInput, ExecuteOpenCypherExplainQueryCommandOutput } from "../commands/ExecuteOpenCypherExplainQueryCommand";
18
+ import { ExecuteOpenCypherQueryCommandInput, ExecuteOpenCypherQueryCommandOutput } from "../commands/ExecuteOpenCypherQueryCommand";
19
+ import { GetEngineStatusCommandInput, GetEngineStatusCommandOutput } from "../commands/GetEngineStatusCommand";
20
+ import { GetGremlinQueryStatusCommandInput, GetGremlinQueryStatusCommandOutput } from "../commands/GetGremlinQueryStatusCommand";
21
+ import { GetLoaderJobStatusCommandInput, GetLoaderJobStatusCommandOutput } from "../commands/GetLoaderJobStatusCommand";
22
+ import { GetMLDataProcessingJobCommandInput, GetMLDataProcessingJobCommandOutput } from "../commands/GetMLDataProcessingJobCommand";
23
+ import { GetMLEndpointCommandInput, GetMLEndpointCommandOutput } from "../commands/GetMLEndpointCommand";
24
+ import { GetMLModelTrainingJobCommandInput, GetMLModelTrainingJobCommandOutput } from "../commands/GetMLModelTrainingJobCommand";
25
+ import { GetMLModelTransformJobCommandInput, GetMLModelTransformJobCommandOutput } from "../commands/GetMLModelTransformJobCommand";
26
+ import { GetOpenCypherQueryStatusCommandInput, GetOpenCypherQueryStatusCommandOutput } from "../commands/GetOpenCypherQueryStatusCommand";
27
+ import { GetPropertygraphStatisticsCommandInput, GetPropertygraphStatisticsCommandOutput } from "../commands/GetPropertygraphStatisticsCommand";
28
+ import { GetPropertygraphStreamCommandInput, GetPropertygraphStreamCommandOutput } from "../commands/GetPropertygraphStreamCommand";
29
+ import { GetPropertygraphSummaryCommandInput, GetPropertygraphSummaryCommandOutput } from "../commands/GetPropertygraphSummaryCommand";
30
+ import { GetRDFGraphSummaryCommandInput, GetRDFGraphSummaryCommandOutput } from "../commands/GetRDFGraphSummaryCommand";
31
+ import { GetSparqlStatisticsCommandInput, GetSparqlStatisticsCommandOutput } from "../commands/GetSparqlStatisticsCommand";
32
+ import { GetSparqlStreamCommandInput, GetSparqlStreamCommandOutput } from "../commands/GetSparqlStreamCommand";
33
+ import { ListGremlinQueriesCommandInput, ListGremlinQueriesCommandOutput } from "../commands/ListGremlinQueriesCommand";
34
+ import { ListLoaderJobsCommandInput, ListLoaderJobsCommandOutput } from "../commands/ListLoaderJobsCommand";
35
+ import { ListMLDataProcessingJobsCommandInput, ListMLDataProcessingJobsCommandOutput } from "../commands/ListMLDataProcessingJobsCommand";
36
+ import { ListMLEndpointsCommandInput, ListMLEndpointsCommandOutput } from "../commands/ListMLEndpointsCommand";
37
+ import { ListMLModelTrainingJobsCommandInput, ListMLModelTrainingJobsCommandOutput } from "../commands/ListMLModelTrainingJobsCommand";
38
+ import { ListMLModelTransformJobsCommandInput, ListMLModelTransformJobsCommandOutput } from "../commands/ListMLModelTransformJobsCommand";
39
+ import { ListOpenCypherQueriesCommandInput, ListOpenCypherQueriesCommandOutput } from "../commands/ListOpenCypherQueriesCommand";
40
+ import { ManagePropertygraphStatisticsCommandInput, ManagePropertygraphStatisticsCommandOutput } from "../commands/ManagePropertygraphStatisticsCommand";
41
+ import { ManageSparqlStatisticsCommandInput, ManageSparqlStatisticsCommandOutput } from "../commands/ManageSparqlStatisticsCommand";
42
+ import { StartLoaderJobCommandInput, StartLoaderJobCommandOutput } from "../commands/StartLoaderJobCommand";
43
+ import { StartMLDataProcessingJobCommandInput, StartMLDataProcessingJobCommandOutput } from "../commands/StartMLDataProcessingJobCommand";
44
+ import { StartMLModelTrainingJobCommandInput, StartMLModelTrainingJobCommandOutput } from "../commands/StartMLModelTrainingJobCommand";
45
+ import { StartMLModelTransformJobCommandInput, StartMLModelTransformJobCommandOutput } from "../commands/StartMLModelTransformJobCommand";
46
+ /**
47
+ * serializeAws_restJson1CancelGremlinQueryCommand
48
+ */
49
+ export declare const se_CancelGremlinQueryCommand: (input: CancelGremlinQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
+ /**
51
+ * serializeAws_restJson1CancelLoaderJobCommand
52
+ */
53
+ export declare const se_CancelLoaderJobCommand: (input: CancelLoaderJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
+ /**
55
+ * serializeAws_restJson1CancelMLDataProcessingJobCommand
56
+ */
57
+ export declare const se_CancelMLDataProcessingJobCommand: (input: CancelMLDataProcessingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
+ /**
59
+ * serializeAws_restJson1CancelMLModelTrainingJobCommand
60
+ */
61
+ export declare const se_CancelMLModelTrainingJobCommand: (input: CancelMLModelTrainingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
+ /**
63
+ * serializeAws_restJson1CancelMLModelTransformJobCommand
64
+ */
65
+ export declare const se_CancelMLModelTransformJobCommand: (input: CancelMLModelTransformJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
+ /**
67
+ * serializeAws_restJson1CancelOpenCypherQueryCommand
68
+ */
69
+ export declare const se_CancelOpenCypherQueryCommand: (input: CancelOpenCypherQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
70
+ /**
71
+ * serializeAws_restJson1CreateMLEndpointCommand
72
+ */
73
+ export declare const se_CreateMLEndpointCommand: (input: CreateMLEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
+ /**
75
+ * serializeAws_restJson1DeleteMLEndpointCommand
76
+ */
77
+ export declare const se_DeleteMLEndpointCommand: (input: DeleteMLEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
78
+ /**
79
+ * serializeAws_restJson1DeletePropertygraphStatisticsCommand
80
+ */
81
+ export declare const se_DeletePropertygraphStatisticsCommand: (input: DeletePropertygraphStatisticsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
82
+ /**
83
+ * serializeAws_restJson1DeleteSparqlStatisticsCommand
84
+ */
85
+ export declare const se_DeleteSparqlStatisticsCommand: (input: DeleteSparqlStatisticsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
+ /**
87
+ * serializeAws_restJson1ExecuteFastResetCommand
88
+ */
89
+ export declare const se_ExecuteFastResetCommand: (input: ExecuteFastResetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
90
+ /**
91
+ * serializeAws_restJson1ExecuteGremlinExplainQueryCommand
92
+ */
93
+ export declare const se_ExecuteGremlinExplainQueryCommand: (input: ExecuteGremlinExplainQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
94
+ /**
95
+ * serializeAws_restJson1ExecuteGremlinProfileQueryCommand
96
+ */
97
+ export declare const se_ExecuteGremlinProfileQueryCommand: (input: ExecuteGremlinProfileQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
+ /**
99
+ * serializeAws_restJson1ExecuteGremlinQueryCommand
100
+ */
101
+ export declare const se_ExecuteGremlinQueryCommand: (input: ExecuteGremlinQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
102
+ /**
103
+ * serializeAws_restJson1ExecuteOpenCypherExplainQueryCommand
104
+ */
105
+ export declare const se_ExecuteOpenCypherExplainQueryCommand: (input: ExecuteOpenCypherExplainQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
+ /**
107
+ * serializeAws_restJson1ExecuteOpenCypherQueryCommand
108
+ */
109
+ export declare const se_ExecuteOpenCypherQueryCommand: (input: ExecuteOpenCypherQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
+ /**
111
+ * serializeAws_restJson1GetEngineStatusCommand
112
+ */
113
+ export declare const se_GetEngineStatusCommand: (input: GetEngineStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
114
+ /**
115
+ * serializeAws_restJson1GetGremlinQueryStatusCommand
116
+ */
117
+ export declare const se_GetGremlinQueryStatusCommand: (input: GetGremlinQueryStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
118
+ /**
119
+ * serializeAws_restJson1GetLoaderJobStatusCommand
120
+ */
121
+ export declare const se_GetLoaderJobStatusCommand: (input: GetLoaderJobStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
122
+ /**
123
+ * serializeAws_restJson1GetMLDataProcessingJobCommand
124
+ */
125
+ export declare const se_GetMLDataProcessingJobCommand: (input: GetMLDataProcessingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
126
+ /**
127
+ * serializeAws_restJson1GetMLEndpointCommand
128
+ */
129
+ export declare const se_GetMLEndpointCommand: (input: GetMLEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
130
+ /**
131
+ * serializeAws_restJson1GetMLModelTrainingJobCommand
132
+ */
133
+ export declare const se_GetMLModelTrainingJobCommand: (input: GetMLModelTrainingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
134
+ /**
135
+ * serializeAws_restJson1GetMLModelTransformJobCommand
136
+ */
137
+ export declare const se_GetMLModelTransformJobCommand: (input: GetMLModelTransformJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
138
+ /**
139
+ * serializeAws_restJson1GetOpenCypherQueryStatusCommand
140
+ */
141
+ export declare const se_GetOpenCypherQueryStatusCommand: (input: GetOpenCypherQueryStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
142
+ /**
143
+ * serializeAws_restJson1GetPropertygraphStatisticsCommand
144
+ */
145
+ export declare const se_GetPropertygraphStatisticsCommand: (input: GetPropertygraphStatisticsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
146
+ /**
147
+ * serializeAws_restJson1GetPropertygraphStreamCommand
148
+ */
149
+ export declare const se_GetPropertygraphStreamCommand: (input: GetPropertygraphStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
150
+ /**
151
+ * serializeAws_restJson1GetPropertygraphSummaryCommand
152
+ */
153
+ export declare const se_GetPropertygraphSummaryCommand: (input: GetPropertygraphSummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
154
+ /**
155
+ * serializeAws_restJson1GetRDFGraphSummaryCommand
156
+ */
157
+ export declare const se_GetRDFGraphSummaryCommand: (input: GetRDFGraphSummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
158
+ /**
159
+ * serializeAws_restJson1GetSparqlStatisticsCommand
160
+ */
161
+ export declare const se_GetSparqlStatisticsCommand: (input: GetSparqlStatisticsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
162
+ /**
163
+ * serializeAws_restJson1GetSparqlStreamCommand
164
+ */
165
+ export declare const se_GetSparqlStreamCommand: (input: GetSparqlStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
166
+ /**
167
+ * serializeAws_restJson1ListGremlinQueriesCommand
168
+ */
169
+ export declare const se_ListGremlinQueriesCommand: (input: ListGremlinQueriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
170
+ /**
171
+ * serializeAws_restJson1ListLoaderJobsCommand
172
+ */
173
+ export declare const se_ListLoaderJobsCommand: (input: ListLoaderJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
174
+ /**
175
+ * serializeAws_restJson1ListMLDataProcessingJobsCommand
176
+ */
177
+ export declare const se_ListMLDataProcessingJobsCommand: (input: ListMLDataProcessingJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
178
+ /**
179
+ * serializeAws_restJson1ListMLEndpointsCommand
180
+ */
181
+ export declare const se_ListMLEndpointsCommand: (input: ListMLEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
182
+ /**
183
+ * serializeAws_restJson1ListMLModelTrainingJobsCommand
184
+ */
185
+ export declare const se_ListMLModelTrainingJobsCommand: (input: ListMLModelTrainingJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
186
+ /**
187
+ * serializeAws_restJson1ListMLModelTransformJobsCommand
188
+ */
189
+ export declare const se_ListMLModelTransformJobsCommand: (input: ListMLModelTransformJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
190
+ /**
191
+ * serializeAws_restJson1ListOpenCypherQueriesCommand
192
+ */
193
+ export declare const se_ListOpenCypherQueriesCommand: (input: ListOpenCypherQueriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
194
+ /**
195
+ * serializeAws_restJson1ManagePropertygraphStatisticsCommand
196
+ */
197
+ export declare const se_ManagePropertygraphStatisticsCommand: (input: ManagePropertygraphStatisticsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
198
+ /**
199
+ * serializeAws_restJson1ManageSparqlStatisticsCommand
200
+ */
201
+ export declare const se_ManageSparqlStatisticsCommand: (input: ManageSparqlStatisticsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
202
+ /**
203
+ * serializeAws_restJson1StartLoaderJobCommand
204
+ */
205
+ export declare const se_StartLoaderJobCommand: (input: StartLoaderJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
206
+ /**
207
+ * serializeAws_restJson1StartMLDataProcessingJobCommand
208
+ */
209
+ export declare const se_StartMLDataProcessingJobCommand: (input: StartMLDataProcessingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
210
+ /**
211
+ * serializeAws_restJson1StartMLModelTrainingJobCommand
212
+ */
213
+ export declare const se_StartMLModelTrainingJobCommand: (input: StartMLModelTrainingJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
214
+ /**
215
+ * serializeAws_restJson1StartMLModelTransformJobCommand
216
+ */
217
+ export declare const se_StartMLModelTransformJobCommand: (input: StartMLModelTransformJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
218
+ /**
219
+ * deserializeAws_restJson1CancelGremlinQueryCommand
220
+ */
221
+ export declare const de_CancelGremlinQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelGremlinQueryCommandOutput>;
222
+ /**
223
+ * deserializeAws_restJson1CancelLoaderJobCommand
224
+ */
225
+ export declare const de_CancelLoaderJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelLoaderJobCommandOutput>;
226
+ /**
227
+ * deserializeAws_restJson1CancelMLDataProcessingJobCommand
228
+ */
229
+ export declare const de_CancelMLDataProcessingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelMLDataProcessingJobCommandOutput>;
230
+ /**
231
+ * deserializeAws_restJson1CancelMLModelTrainingJobCommand
232
+ */
233
+ export declare const de_CancelMLModelTrainingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelMLModelTrainingJobCommandOutput>;
234
+ /**
235
+ * deserializeAws_restJson1CancelMLModelTransformJobCommand
236
+ */
237
+ export declare const de_CancelMLModelTransformJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelMLModelTransformJobCommandOutput>;
238
+ /**
239
+ * deserializeAws_restJson1CancelOpenCypherQueryCommand
240
+ */
241
+ export declare const de_CancelOpenCypherQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelOpenCypherQueryCommandOutput>;
242
+ /**
243
+ * deserializeAws_restJson1CreateMLEndpointCommand
244
+ */
245
+ export declare const de_CreateMLEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMLEndpointCommandOutput>;
246
+ /**
247
+ * deserializeAws_restJson1DeleteMLEndpointCommand
248
+ */
249
+ export declare const de_DeleteMLEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMLEndpointCommandOutput>;
250
+ /**
251
+ * deserializeAws_restJson1DeletePropertygraphStatisticsCommand
252
+ */
253
+ export declare const de_DeletePropertygraphStatisticsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePropertygraphStatisticsCommandOutput>;
254
+ /**
255
+ * deserializeAws_restJson1DeleteSparqlStatisticsCommand
256
+ */
257
+ export declare const de_DeleteSparqlStatisticsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSparqlStatisticsCommandOutput>;
258
+ /**
259
+ * deserializeAws_restJson1ExecuteFastResetCommand
260
+ */
261
+ export declare const de_ExecuteFastResetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteFastResetCommandOutput>;
262
+ /**
263
+ * deserializeAws_restJson1ExecuteGremlinExplainQueryCommand
264
+ */
265
+ export declare const de_ExecuteGremlinExplainQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteGremlinExplainQueryCommandOutput>;
266
+ /**
267
+ * deserializeAws_restJson1ExecuteGremlinProfileQueryCommand
268
+ */
269
+ export declare const de_ExecuteGremlinProfileQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteGremlinProfileQueryCommandOutput>;
270
+ /**
271
+ * deserializeAws_restJson1ExecuteGremlinQueryCommand
272
+ */
273
+ export declare const de_ExecuteGremlinQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteGremlinQueryCommandOutput>;
274
+ /**
275
+ * deserializeAws_restJson1ExecuteOpenCypherExplainQueryCommand
276
+ */
277
+ export declare const de_ExecuteOpenCypherExplainQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteOpenCypherExplainQueryCommandOutput>;
278
+ /**
279
+ * deserializeAws_restJson1ExecuteOpenCypherQueryCommand
280
+ */
281
+ export declare const de_ExecuteOpenCypherQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteOpenCypherQueryCommandOutput>;
282
+ /**
283
+ * deserializeAws_restJson1GetEngineStatusCommand
284
+ */
285
+ export declare const de_GetEngineStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEngineStatusCommandOutput>;
286
+ /**
287
+ * deserializeAws_restJson1GetGremlinQueryStatusCommand
288
+ */
289
+ export declare const de_GetGremlinQueryStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGremlinQueryStatusCommandOutput>;
290
+ /**
291
+ * deserializeAws_restJson1GetLoaderJobStatusCommand
292
+ */
293
+ export declare const de_GetLoaderJobStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLoaderJobStatusCommandOutput>;
294
+ /**
295
+ * deserializeAws_restJson1GetMLDataProcessingJobCommand
296
+ */
297
+ export declare const de_GetMLDataProcessingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMLDataProcessingJobCommandOutput>;
298
+ /**
299
+ * deserializeAws_restJson1GetMLEndpointCommand
300
+ */
301
+ export declare const de_GetMLEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMLEndpointCommandOutput>;
302
+ /**
303
+ * deserializeAws_restJson1GetMLModelTrainingJobCommand
304
+ */
305
+ export declare const de_GetMLModelTrainingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMLModelTrainingJobCommandOutput>;
306
+ /**
307
+ * deserializeAws_restJson1GetMLModelTransformJobCommand
308
+ */
309
+ export declare const de_GetMLModelTransformJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMLModelTransformJobCommandOutput>;
310
+ /**
311
+ * deserializeAws_restJson1GetOpenCypherQueryStatusCommand
312
+ */
313
+ export declare const de_GetOpenCypherQueryStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOpenCypherQueryStatusCommandOutput>;
314
+ /**
315
+ * deserializeAws_restJson1GetPropertygraphStatisticsCommand
316
+ */
317
+ export declare const de_GetPropertygraphStatisticsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPropertygraphStatisticsCommandOutput>;
318
+ /**
319
+ * deserializeAws_restJson1GetPropertygraphStreamCommand
320
+ */
321
+ export declare const de_GetPropertygraphStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPropertygraphStreamCommandOutput>;
322
+ /**
323
+ * deserializeAws_restJson1GetPropertygraphSummaryCommand
324
+ */
325
+ export declare const de_GetPropertygraphSummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPropertygraphSummaryCommandOutput>;
326
+ /**
327
+ * deserializeAws_restJson1GetRDFGraphSummaryCommand
328
+ */
329
+ export declare const de_GetRDFGraphSummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRDFGraphSummaryCommandOutput>;
330
+ /**
331
+ * deserializeAws_restJson1GetSparqlStatisticsCommand
332
+ */
333
+ export declare const de_GetSparqlStatisticsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSparqlStatisticsCommandOutput>;
334
+ /**
335
+ * deserializeAws_restJson1GetSparqlStreamCommand
336
+ */
337
+ export declare const de_GetSparqlStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSparqlStreamCommandOutput>;
338
+ /**
339
+ * deserializeAws_restJson1ListGremlinQueriesCommand
340
+ */
341
+ export declare const de_ListGremlinQueriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGremlinQueriesCommandOutput>;
342
+ /**
343
+ * deserializeAws_restJson1ListLoaderJobsCommand
344
+ */
345
+ export declare const de_ListLoaderJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLoaderJobsCommandOutput>;
346
+ /**
347
+ * deserializeAws_restJson1ListMLDataProcessingJobsCommand
348
+ */
349
+ export declare const de_ListMLDataProcessingJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMLDataProcessingJobsCommandOutput>;
350
+ /**
351
+ * deserializeAws_restJson1ListMLEndpointsCommand
352
+ */
353
+ export declare const de_ListMLEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMLEndpointsCommandOutput>;
354
+ /**
355
+ * deserializeAws_restJson1ListMLModelTrainingJobsCommand
356
+ */
357
+ export declare const de_ListMLModelTrainingJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMLModelTrainingJobsCommandOutput>;
358
+ /**
359
+ * deserializeAws_restJson1ListMLModelTransformJobsCommand
360
+ */
361
+ export declare const de_ListMLModelTransformJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMLModelTransformJobsCommandOutput>;
362
+ /**
363
+ * deserializeAws_restJson1ListOpenCypherQueriesCommand
364
+ */
365
+ export declare const de_ListOpenCypherQueriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOpenCypherQueriesCommandOutput>;
366
+ /**
367
+ * deserializeAws_restJson1ManagePropertygraphStatisticsCommand
368
+ */
369
+ export declare const de_ManagePropertygraphStatisticsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ManagePropertygraphStatisticsCommandOutput>;
370
+ /**
371
+ * deserializeAws_restJson1ManageSparqlStatisticsCommand
372
+ */
373
+ export declare const de_ManageSparqlStatisticsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ManageSparqlStatisticsCommandOutput>;
374
+ /**
375
+ * deserializeAws_restJson1StartLoaderJobCommand
376
+ */
377
+ export declare const de_StartLoaderJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartLoaderJobCommandOutput>;
378
+ /**
379
+ * deserializeAws_restJson1StartMLDataProcessingJobCommand
380
+ */
381
+ export declare const de_StartMLDataProcessingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMLDataProcessingJobCommandOutput>;
382
+ /**
383
+ * deserializeAws_restJson1StartMLModelTrainingJobCommand
384
+ */
385
+ export declare const de_StartMLModelTrainingJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMLModelTrainingJobCommandOutput>;
386
+ /**
387
+ * deserializeAws_restJson1StartMLModelTransformJobCommand
388
+ */
389
+ export declare const de_StartMLModelTransformJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMLModelTransformJobCommandOutput>;
@@ -0,0 +1,46 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { NeptunedataClientConfig } from "./NeptunedataClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: NeptunedataClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ base64Decoder: import("@smithy/types").Decoder;
23
+ base64Encoder: import("@smithy/types").Encoder;
24
+ utf8Decoder: import("@smithy/types").Decoder;
25
+ utf8Encoder: import("@smithy/types").Encoder;
26
+ disableHostPrefix: boolean;
27
+ serviceId: string;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
31
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
32
+ logger?: import("@smithy/types").Logger | undefined;
33
+ }) => import("@smithy/types").EndpointV2;
34
+ tls?: boolean | undefined;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
36
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
37
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
38
+ signingEscapePath?: boolean | undefined;
39
+ systemClockOffset?: number | undefined;
40
+ signingRegion?: string | undefined;
41
+ /**
42
+ * @internal
43
+ */
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
46
+ };
@@ -0,0 +1,43 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { NeptunedataClientConfig } from "./NeptunedataClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: NeptunedataClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<string>;
14
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ base64Decoder: import("@smithy/types").Decoder;
23
+ base64Encoder: import("@smithy/types").Encoder;
24
+ utf8Decoder: import("@smithy/types").Decoder;
25
+ utf8Encoder: import("@smithy/types").Encoder;
26
+ disableHostPrefix: boolean;
27
+ serviceId: string;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
31
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
32
+ logger?: import("@smithy/types").Logger | undefined;
33
+ }) => import("@smithy/types").EndpointV2;
34
+ tls?: boolean | undefined;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
36
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
37
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
38
+ signingEscapePath?: boolean | undefined;
39
+ systemClockOffset?: number | undefined;
40
+ signingRegion?: string | undefined;
41
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
42
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
43
+ };
@@ -0,0 +1,42 @@
1
+ import { NeptunedataClientConfig } from "./NeptunedataClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: NeptunedataClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ urlParser: import("@smithy/types").UrlParser;
11
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
12
+ streamCollector: import("@smithy/types").StreamCollector;
13
+ base64Decoder: import("@smithy/types").Decoder;
14
+ base64Encoder: import("@smithy/types").Encoder;
15
+ utf8Decoder: import("@smithy/types").Decoder;
16
+ utf8Encoder: import("@smithy/types").Encoder;
17
+ disableHostPrefix: boolean;
18
+ serviceId: string;
19
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ region: string | import("@smithy/types").Provider<any>;
22
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
23
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
24
+ maxAttempts: number | import("@smithy/types").Provider<number>;
25
+ retryMode: string | import("@smithy/types").Provider<string>;
26
+ logger: import("@smithy/types").Logger;
27
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
28
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
29
+ endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@smithy/types").Logger | undefined;
32
+ }) => import("@smithy/types").EndpointV2;
33
+ tls?: boolean | undefined;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
35
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
36
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
37
+ signingEscapePath?: boolean | undefined;
38
+ systemClockOffset?: number | undefined;
39
+ signingRegion?: string | undefined;
40
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
41
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
42
+ };
@@ -0,0 +1,19 @@
1
+ import { NeptunedataClientConfig } from "./NeptunedataClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: NeptunedataClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: import("@smithy/types").Encoder;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger | undefined;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ logger: import("@smithy/types").Logger;
15
+ serviceId: string;
16
+ urlParser: import("@smithy/types").UrlParser;
17
+ utf8Decoder: import("@smithy/types").Decoder;
18
+ utf8Encoder: import("@smithy/types").Encoder;
19
+ };
@@ -0,0 +1,17 @@
1
+ import { NeptunedataExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(clientConfiguration: NeptunedataExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;