@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,128 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { StartMLDataProcessingJobInput, StartMLDataProcessingJobOutput } from "../models/models_0";
5
+ import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link StartMLDataProcessingJobCommand}.
14
+ */
15
+ export interface StartMLDataProcessingJobCommandInput extends StartMLDataProcessingJobInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link StartMLDataProcessingJobCommand}.
21
+ */
22
+ export interface StartMLDataProcessingJobCommandOutput extends StartMLDataProcessingJobOutput, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Creates a new Neptune ML data processing job for processing the
27
+ * graph data exported from Neptune for training. See <a href="https://docs.aws.amazon.com/neptune/latest/userguide/machine-learning-api-dataprocessing.html">The
28
+ * <code>dataprocessing</code> command</a>.</p>
29
+ * @example
30
+ * Use a bare-bones client and the command you need to make an API call.
31
+ * ```javascript
32
+ * import { NeptunedataClient, StartMLDataProcessingJobCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
33
+ * // const { NeptunedataClient, StartMLDataProcessingJobCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
34
+ * const client = new NeptunedataClient(config);
35
+ * const input = { // StartMLDataProcessingJobInput
36
+ * id: "STRING_VALUE",
37
+ * previousDataProcessingJobId: "STRING_VALUE",
38
+ * inputDataS3Location: "STRING_VALUE", // required
39
+ * processedDataS3Location: "STRING_VALUE", // required
40
+ * sagemakerIamRoleArn: "STRING_VALUE",
41
+ * neptuneIamRoleArn: "STRING_VALUE",
42
+ * processingInstanceType: "STRING_VALUE",
43
+ * processingInstanceVolumeSizeInGB: Number("int"),
44
+ * processingTimeOutInSeconds: Number("int"),
45
+ * modelType: "STRING_VALUE",
46
+ * configFileName: "STRING_VALUE",
47
+ * subnets: [ // StringList
48
+ * "STRING_VALUE",
49
+ * ],
50
+ * securityGroupIds: [
51
+ * "STRING_VALUE",
52
+ * ],
53
+ * volumeEncryptionKMSKey: "STRING_VALUE",
54
+ * s3OutputEncryptionKMSKey: "STRING_VALUE",
55
+ * };
56
+ * const command = new StartMLDataProcessingJobCommand(input);
57
+ * const response = await client.send(command);
58
+ * // { // StartMLDataProcessingJobOutput
59
+ * // id: "STRING_VALUE",
60
+ * // arn: "STRING_VALUE",
61
+ * // creationTimeInMillis: Number("long"),
62
+ * // };
63
+ *
64
+ * ```
65
+ *
66
+ * @param StartMLDataProcessingJobCommandInput - {@link StartMLDataProcessingJobCommandInput}
67
+ * @returns {@link StartMLDataProcessingJobCommandOutput}
68
+ * @see {@link StartMLDataProcessingJobCommandInput} for command's `input` shape.
69
+ * @see {@link StartMLDataProcessingJobCommandOutput} for command's `response` shape.
70
+ * @see {@link NeptunedataClientResolvedConfig | config} for NeptunedataClient's `config` shape.
71
+ *
72
+ * @throws {@link BadRequestException} (client fault)
73
+ * <p>Raised when a request is submitted that cannot be processed.</p>
74
+ *
75
+ * @throws {@link ClientTimeoutException} (client fault)
76
+ * <p>Raised when a request timed out in the client.</p>
77
+ *
78
+ * @throws {@link ConstraintViolationException} (client fault)
79
+ * <p>Raised when a value in a request field did not satisfy required constraints.</p>
80
+ *
81
+ * @throws {@link IllegalArgumentException} (client fault)
82
+ * <p>Raised when an argument in a request is not supported.</p>
83
+ *
84
+ * @throws {@link InvalidArgumentException} (client fault)
85
+ * <p>Raised when an argument in a request has an invalid value.</p>
86
+ *
87
+ * @throws {@link InvalidParameterException} (client fault)
88
+ * <p>Raised when a parameter value is not valid.</p>
89
+ *
90
+ * @throws {@link MissingParameterException} (client fault)
91
+ * <p>Raised when a required parameter is missing.</p>
92
+ *
93
+ * @throws {@link MLResourceNotFoundException} (client fault)
94
+ * <p>Raised when a specified machine-learning resource could not be found.</p>
95
+ *
96
+ * @throws {@link PreconditionsFailedException} (client fault)
97
+ * <p>Raised when a precondition for processing a request is not satisfied.</p>
98
+ *
99
+ * @throws {@link TooManyRequestsException} (client fault)
100
+ * <p>Raised when the number of requests being processed exceeds the limit.</p>
101
+ *
102
+ * @throws {@link UnsupportedOperationException} (client fault)
103
+ * <p>Raised when a request attempts to initiate an operation that is not supported.</p>
104
+ *
105
+ * @throws {@link NeptunedataServiceException}
106
+ * <p>Base exception class for all service exceptions from Neptunedata service.</p>
107
+ *
108
+ */
109
+ export declare class StartMLDataProcessingJobCommand extends $Command<StartMLDataProcessingJobCommandInput, StartMLDataProcessingJobCommandOutput, NeptunedataClientResolvedConfig> {
110
+ readonly input: StartMLDataProcessingJobCommandInput;
111
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
112
+ /**
113
+ * @public
114
+ */
115
+ constructor(input: StartMLDataProcessingJobCommandInput);
116
+ /**
117
+ * @internal
118
+ */
119
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NeptunedataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartMLDataProcessingJobCommandInput, StartMLDataProcessingJobCommandOutput>;
120
+ /**
121
+ * @internal
122
+ */
123
+ private serialize;
124
+ /**
125
+ * @internal
126
+ */
127
+ private deserialize;
128
+ }
@@ -0,0 +1,134 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { StartMLModelTrainingJobInput, StartMLModelTrainingJobOutput } from "../models/models_0";
5
+ import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link StartMLModelTrainingJobCommand}.
14
+ */
15
+ export interface StartMLModelTrainingJobCommandInput extends StartMLModelTrainingJobInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link StartMLModelTrainingJobCommand}.
21
+ */
22
+ export interface StartMLModelTrainingJobCommandOutput extends StartMLModelTrainingJobOutput, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Creates a new Neptune ML model training job. See <a href="https://docs.aws.amazon.com/neptune/latest/userguide/machine-learning-api-modeltraining.html">Model
27
+ * training using the <code>modeltraining</code> command</a>.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { NeptunedataClient, StartMLModelTrainingJobCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
32
+ * // const { NeptunedataClient, StartMLModelTrainingJobCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
33
+ * const client = new NeptunedataClient(config);
34
+ * const input = { // StartMLModelTrainingJobInput
35
+ * id: "STRING_VALUE",
36
+ * previousModelTrainingJobId: "STRING_VALUE",
37
+ * dataProcessingJobId: "STRING_VALUE", // required
38
+ * trainModelS3Location: "STRING_VALUE", // required
39
+ * sagemakerIamRoleArn: "STRING_VALUE",
40
+ * neptuneIamRoleArn: "STRING_VALUE",
41
+ * baseProcessingInstanceType: "STRING_VALUE",
42
+ * trainingInstanceType: "STRING_VALUE",
43
+ * trainingInstanceVolumeSizeInGB: Number("int"),
44
+ * trainingTimeOutInSeconds: Number("int"),
45
+ * maxHPONumberOfTrainingJobs: Number("int"),
46
+ * maxHPOParallelTrainingJobs: Number("int"),
47
+ * subnets: [ // StringList
48
+ * "STRING_VALUE",
49
+ * ],
50
+ * securityGroupIds: [
51
+ * "STRING_VALUE",
52
+ * ],
53
+ * volumeEncryptionKMSKey: "STRING_VALUE",
54
+ * s3OutputEncryptionKMSKey: "STRING_VALUE",
55
+ * enableManagedSpotTraining: true || false,
56
+ * customModelTrainingParameters: { // CustomModelTrainingParameters
57
+ * sourceS3DirectoryPath: "STRING_VALUE", // required
58
+ * trainingEntryPointScript: "STRING_VALUE",
59
+ * transformEntryPointScript: "STRING_VALUE",
60
+ * },
61
+ * };
62
+ * const command = new StartMLModelTrainingJobCommand(input);
63
+ * const response = await client.send(command);
64
+ * // { // StartMLModelTrainingJobOutput
65
+ * // id: "STRING_VALUE",
66
+ * // arn: "STRING_VALUE",
67
+ * // creationTimeInMillis: Number("long"),
68
+ * // };
69
+ *
70
+ * ```
71
+ *
72
+ * @param StartMLModelTrainingJobCommandInput - {@link StartMLModelTrainingJobCommandInput}
73
+ * @returns {@link StartMLModelTrainingJobCommandOutput}
74
+ * @see {@link StartMLModelTrainingJobCommandInput} for command's `input` shape.
75
+ * @see {@link StartMLModelTrainingJobCommandOutput} for command's `response` shape.
76
+ * @see {@link NeptunedataClientResolvedConfig | config} for NeptunedataClient's `config` shape.
77
+ *
78
+ * @throws {@link BadRequestException} (client fault)
79
+ * <p>Raised when a request is submitted that cannot be processed.</p>
80
+ *
81
+ * @throws {@link ClientTimeoutException} (client fault)
82
+ * <p>Raised when a request timed out in the client.</p>
83
+ *
84
+ * @throws {@link ConstraintViolationException} (client fault)
85
+ * <p>Raised when a value in a request field did not satisfy required constraints.</p>
86
+ *
87
+ * @throws {@link IllegalArgumentException} (client fault)
88
+ * <p>Raised when an argument in a request is not supported.</p>
89
+ *
90
+ * @throws {@link InvalidArgumentException} (client fault)
91
+ * <p>Raised when an argument in a request has an invalid value.</p>
92
+ *
93
+ * @throws {@link InvalidParameterException} (client fault)
94
+ * <p>Raised when a parameter value is not valid.</p>
95
+ *
96
+ * @throws {@link MissingParameterException} (client fault)
97
+ * <p>Raised when a required parameter is missing.</p>
98
+ *
99
+ * @throws {@link MLResourceNotFoundException} (client fault)
100
+ * <p>Raised when a specified machine-learning resource could not be found.</p>
101
+ *
102
+ * @throws {@link PreconditionsFailedException} (client fault)
103
+ * <p>Raised when a precondition for processing a request is not satisfied.</p>
104
+ *
105
+ * @throws {@link TooManyRequestsException} (client fault)
106
+ * <p>Raised when the number of requests being processed exceeds the limit.</p>
107
+ *
108
+ * @throws {@link UnsupportedOperationException} (client fault)
109
+ * <p>Raised when a request attempts to initiate an operation that is not supported.</p>
110
+ *
111
+ * @throws {@link NeptunedataServiceException}
112
+ * <p>Base exception class for all service exceptions from Neptunedata service.</p>
113
+ *
114
+ */
115
+ export declare class StartMLModelTrainingJobCommand extends $Command<StartMLModelTrainingJobCommandInput, StartMLModelTrainingJobCommandOutput, NeptunedataClientResolvedConfig> {
116
+ readonly input: StartMLModelTrainingJobCommandInput;
117
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
118
+ /**
119
+ * @public
120
+ */
121
+ constructor(input: StartMLModelTrainingJobCommandInput);
122
+ /**
123
+ * @internal
124
+ */
125
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NeptunedataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartMLModelTrainingJobCommandInput, StartMLModelTrainingJobCommandOutput>;
126
+ /**
127
+ * @internal
128
+ */
129
+ private serialize;
130
+ /**
131
+ * @internal
132
+ */
133
+ private deserialize;
134
+ }
@@ -0,0 +1,129 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { StartMLModelTransformJobInput, StartMLModelTransformJobOutput } from "../models/models_0";
5
+ import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link StartMLModelTransformJobCommand}.
14
+ */
15
+ export interface StartMLModelTransformJobCommandInput extends StartMLModelTransformJobInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link StartMLModelTransformJobCommand}.
21
+ */
22
+ export interface StartMLModelTransformJobCommandOutput extends StartMLModelTransformJobOutput, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Creates a new model transform job. See <a href="https://docs.aws.amazon.com/neptune/latest/userguide/machine-learning-model-transform.html">Use
27
+ * a trained model to generate new model artifacts</a>.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { NeptunedataClient, StartMLModelTransformJobCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
32
+ * // const { NeptunedataClient, StartMLModelTransformJobCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
33
+ * const client = new NeptunedataClient(config);
34
+ * const input = { // StartMLModelTransformJobInput
35
+ * id: "STRING_VALUE",
36
+ * dataProcessingJobId: "STRING_VALUE",
37
+ * mlModelTrainingJobId: "STRING_VALUE",
38
+ * trainingJobName: "STRING_VALUE",
39
+ * modelTransformOutputS3Location: "STRING_VALUE", // required
40
+ * sagemakerIamRoleArn: "STRING_VALUE",
41
+ * neptuneIamRoleArn: "STRING_VALUE",
42
+ * customModelTransformParameters: { // CustomModelTransformParameters
43
+ * sourceS3DirectoryPath: "STRING_VALUE", // required
44
+ * transformEntryPointScript: "STRING_VALUE",
45
+ * },
46
+ * baseProcessingInstanceType: "STRING_VALUE",
47
+ * baseProcessingInstanceVolumeSizeInGB: Number("int"),
48
+ * subnets: [ // StringList
49
+ * "STRING_VALUE",
50
+ * ],
51
+ * securityGroupIds: [
52
+ * "STRING_VALUE",
53
+ * ],
54
+ * volumeEncryptionKMSKey: "STRING_VALUE",
55
+ * s3OutputEncryptionKMSKey: "STRING_VALUE",
56
+ * };
57
+ * const command = new StartMLModelTransformJobCommand(input);
58
+ * const response = await client.send(command);
59
+ * // { // StartMLModelTransformJobOutput
60
+ * // id: "STRING_VALUE",
61
+ * // arn: "STRING_VALUE",
62
+ * // creationTimeInMillis: Number("long"),
63
+ * // };
64
+ *
65
+ * ```
66
+ *
67
+ * @param StartMLModelTransformJobCommandInput - {@link StartMLModelTransformJobCommandInput}
68
+ * @returns {@link StartMLModelTransformJobCommandOutput}
69
+ * @see {@link StartMLModelTransformJobCommandInput} for command's `input` shape.
70
+ * @see {@link StartMLModelTransformJobCommandOutput} for command's `response` shape.
71
+ * @see {@link NeptunedataClientResolvedConfig | config} for NeptunedataClient's `config` shape.
72
+ *
73
+ * @throws {@link BadRequestException} (client fault)
74
+ * <p>Raised when a request is submitted that cannot be processed.</p>
75
+ *
76
+ * @throws {@link ClientTimeoutException} (client fault)
77
+ * <p>Raised when a request timed out in the client.</p>
78
+ *
79
+ * @throws {@link ConstraintViolationException} (client fault)
80
+ * <p>Raised when a value in a request field did not satisfy required constraints.</p>
81
+ *
82
+ * @throws {@link IllegalArgumentException} (client fault)
83
+ * <p>Raised when an argument in a request is not supported.</p>
84
+ *
85
+ * @throws {@link InvalidArgumentException} (client fault)
86
+ * <p>Raised when an argument in a request has an invalid value.</p>
87
+ *
88
+ * @throws {@link InvalidParameterException} (client fault)
89
+ * <p>Raised when a parameter value is not valid.</p>
90
+ *
91
+ * @throws {@link MissingParameterException} (client fault)
92
+ * <p>Raised when a required parameter is missing.</p>
93
+ *
94
+ * @throws {@link MLResourceNotFoundException} (client fault)
95
+ * <p>Raised when a specified machine-learning resource could not be found.</p>
96
+ *
97
+ * @throws {@link PreconditionsFailedException} (client fault)
98
+ * <p>Raised when a precondition for processing a request is not satisfied.</p>
99
+ *
100
+ * @throws {@link TooManyRequestsException} (client fault)
101
+ * <p>Raised when the number of requests being processed exceeds the limit.</p>
102
+ *
103
+ * @throws {@link UnsupportedOperationException} (client fault)
104
+ * <p>Raised when a request attempts to initiate an operation that is not supported.</p>
105
+ *
106
+ * @throws {@link NeptunedataServiceException}
107
+ * <p>Base exception class for all service exceptions from Neptunedata service.</p>
108
+ *
109
+ */
110
+ export declare class StartMLModelTransformJobCommand extends $Command<StartMLModelTransformJobCommandInput, StartMLModelTransformJobCommandOutput, NeptunedataClientResolvedConfig> {
111
+ readonly input: StartMLModelTransformJobCommandInput;
112
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
113
+ /**
114
+ * @public
115
+ */
116
+ constructor(input: StartMLModelTransformJobCommandInput);
117
+ /**
118
+ * @internal
119
+ */
120
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NeptunedataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartMLModelTransformJobCommandInput, StartMLModelTransformJobCommandOutput>;
121
+ /**
122
+ * @internal
123
+ */
124
+ private serialize;
125
+ /**
126
+ * @internal
127
+ */
128
+ private deserialize;
129
+ }
@@ -0,0 +1,43 @@
1
+ export * from "./CancelGremlinQueryCommand";
2
+ export * from "./CancelLoaderJobCommand";
3
+ export * from "./CancelMLDataProcessingJobCommand";
4
+ export * from "./CancelMLModelTrainingJobCommand";
5
+ export * from "./CancelMLModelTransformJobCommand";
6
+ export * from "./CancelOpenCypherQueryCommand";
7
+ export * from "./CreateMLEndpointCommand";
8
+ export * from "./DeleteMLEndpointCommand";
9
+ export * from "./DeletePropertygraphStatisticsCommand";
10
+ export * from "./DeleteSparqlStatisticsCommand";
11
+ export * from "./ExecuteFastResetCommand";
12
+ export * from "./ExecuteGremlinExplainQueryCommand";
13
+ export * from "./ExecuteGremlinProfileQueryCommand";
14
+ export * from "./ExecuteGremlinQueryCommand";
15
+ export * from "./ExecuteOpenCypherExplainQueryCommand";
16
+ export * from "./ExecuteOpenCypherQueryCommand";
17
+ export * from "./GetEngineStatusCommand";
18
+ export * from "./GetGremlinQueryStatusCommand";
19
+ export * from "./GetLoaderJobStatusCommand";
20
+ export * from "./GetMLDataProcessingJobCommand";
21
+ export * from "./GetMLEndpointCommand";
22
+ export * from "./GetMLModelTrainingJobCommand";
23
+ export * from "./GetMLModelTransformJobCommand";
24
+ export * from "./GetOpenCypherQueryStatusCommand";
25
+ export * from "./GetPropertygraphStatisticsCommand";
26
+ export * from "./GetPropertygraphStreamCommand";
27
+ export * from "./GetPropertygraphSummaryCommand";
28
+ export * from "./GetRDFGraphSummaryCommand";
29
+ export * from "./GetSparqlStatisticsCommand";
30
+ export * from "./GetSparqlStreamCommand";
31
+ export * from "./ListGremlinQueriesCommand";
32
+ export * from "./ListLoaderJobsCommand";
33
+ export * from "./ListMLDataProcessingJobsCommand";
34
+ export * from "./ListMLEndpointsCommand";
35
+ export * from "./ListMLModelTrainingJobsCommand";
36
+ export * from "./ListMLModelTransformJobsCommand";
37
+ export * from "./ListOpenCypherQueriesCommand";
38
+ export * from "./ManagePropertygraphStatisticsCommand";
39
+ export * from "./ManageSparqlStatisticsCommand";
40
+ export * from "./StartLoaderJobCommand";
41
+ export * from "./StartMLDataProcessingJobCommand";
42
+ export * from "./StartMLModelTrainingJobCommand";
43
+ export * from "./StartMLModelTransformJobCommand";
@@ -0,0 +1,22 @@
1
+ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface ClientInputEndpointParameters {
6
+ region?: string | Provider<string>;
7
+ useDualstackEndpoint?: boolean | Provider<boolean>;
8
+ useFipsEndpoint?: boolean | Provider<boolean>;
9
+ endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
10
+ }
11
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
12
+ defaultSigningName: string;
13
+ };
14
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
+ defaultSigningName: string;
16
+ };
17
+ export interface EndpointParameters extends __EndpointParameters {
18
+ Region?: string;
19
+ UseDualStack?: boolean;
20
+ UseFIPS?: boolean;
21
+ Endpoint?: string;
22
+ }
@@ -0,0 +1,5 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
+ logger?: Logger;
5
+ }) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,6 @@
1
+ import { DefaultExtensionConfiguration } from "@smithy/types";
2
+ /**
3
+ * @internal
4
+ */
5
+ export interface NeptunedataExtensionConfiguration extends DefaultExtensionConfiguration {
6
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * <fullname>Neptune Data API</fullname>
3
+ * <p>The Amazon Neptune data API provides SDK support for more than 40 of Neptune's data
4
+ * operations, including data loading, query execution, data inquiry, and machine learning.
5
+ * It supports all three Neptune query languages (Gremlin, openCypher and SPARQL), and is
6
+ * available in all SDK languages. It automatically signs API requests and greatly simplifies
7
+ * integrating Neptune into your applications.</p>
8
+ *
9
+ * @packageDocumentation
10
+ */
11
+ export * from "./NeptunedataClient";
12
+ export * from "./Neptunedata";
13
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
14
+ export * from "./commands";
15
+ export * from "./models";
16
+ export { NeptunedataServiceException } from "./models/NeptunedataServiceException";
@@ -0,0 +1,13 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
2
+ export { __ServiceException, __ServiceExceptionOptions };
3
+ /**
4
+ * @public
5
+ *
6
+ * Base exception class for all service exceptions from Neptunedata service.
7
+ */
8
+ export declare class NeptunedataServiceException extends __ServiceException {
9
+ /**
10
+ * @internal
11
+ */
12
+ constructor(options: __ServiceExceptionOptions);
13
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";