@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
package/README.md ADDED
@@ -0,0 +1,555 @@
1
+ <!-- generated file, do not edit directly -->
2
+
3
+ # @aws-sdk/client-neptunedata
4
+
5
+ ## Description
6
+
7
+ AWS SDK for JavaScript Neptunedata Client for Node.js, Browser and React Native.
8
+
9
+ <fullname>Neptune Data API</fullname>
10
+
11
+ <p>The Amazon Neptune data API provides SDK support for more than 40 of Neptune's data
12
+ operations, including data loading, query execution, data inquiry, and machine learning.
13
+ It supports all three Neptune query languages (Gremlin, openCypher and SPARQL), and is
14
+ available in all SDK languages. It automatically signs API requests and greatly simplifies
15
+ integrating Neptune into your applications.</p>
16
+
17
+ ## Installing
18
+
19
+ To install the this package, simply type add or install @aws-sdk/client-neptunedata
20
+ using your favorite package manager:
21
+
22
+ - `npm install @aws-sdk/client-neptunedata`
23
+ - `yarn add @aws-sdk/client-neptunedata`
24
+ - `pnpm add @aws-sdk/client-neptunedata`
25
+
26
+ ## Getting Started
27
+
28
+ ### Import
29
+
30
+ The AWS SDK is modulized by clients and commands.
31
+ To send a request, you only need to import the `NeptunedataClient` and
32
+ the commands you need, for example `CancelGremlinQueryCommand`:
33
+
34
+ ```js
35
+ // ES5 example
36
+ const { NeptunedataClient, CancelGremlinQueryCommand } = require("@aws-sdk/client-neptunedata");
37
+ ```
38
+
39
+ ```ts
40
+ // ES6+ example
41
+ import { NeptunedataClient, CancelGremlinQueryCommand } from "@aws-sdk/client-neptunedata";
42
+ ```
43
+
44
+ ### Usage
45
+
46
+ To send a request, you:
47
+
48
+ - Initiate client with configuration (e.g. credentials, region).
49
+ - Initiate command with input parameters.
50
+ - Call `send` operation on client with command object as input.
51
+ - If you are using a custom http handler, you may call `destroy()` to close open connections.
52
+
53
+ ```js
54
+ // a client can be shared by different commands.
55
+ const client = new NeptunedataClient({ region: "REGION" });
56
+
57
+ const params = {
58
+ /** input parameters */
59
+ };
60
+ const command = new CancelGremlinQueryCommand(params);
61
+ ```
62
+
63
+ #### Async/await
64
+
65
+ We recommend using [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
66
+ operator to wait for the promise returned by send operation as follows:
67
+
68
+ ```js
69
+ // async/await.
70
+ try {
71
+ const data = await client.send(command);
72
+ // process data.
73
+ } catch (error) {
74
+ // error handling.
75
+ } finally {
76
+ // finally.
77
+ }
78
+ ```
79
+
80
+ Async-await is clean, concise, intuitive, easy to debug and has better error handling
81
+ as compared to using Promise chains or callbacks.
82
+
83
+ #### Promises
84
+
85
+ You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining)
86
+ to execute send operation.
87
+
88
+ ```js
89
+ client.send(command).then(
90
+ (data) => {
91
+ // process data.
92
+ },
93
+ (error) => {
94
+ // error handling.
95
+ }
96
+ );
97
+ ```
98
+
99
+ Promises can also be called using `.catch()` and `.finally()` as follows:
100
+
101
+ ```js
102
+ client
103
+ .send(command)
104
+ .then((data) => {
105
+ // process data.
106
+ })
107
+ .catch((error) => {
108
+ // error handling.
109
+ })
110
+ .finally(() => {
111
+ // finally.
112
+ });
113
+ ```
114
+
115
+ #### Callbacks
116
+
117
+ We do not recommend using callbacks because of [callback hell](http://callbackhell.com/),
118
+ but they are supported by the send operation.
119
+
120
+ ```js
121
+ // callbacks.
122
+ client.send(command, (err, data) => {
123
+ // process err and data.
124
+ });
125
+ ```
126
+
127
+ #### v2 compatible style
128
+
129
+ The client can also send requests using v2 compatible style.
130
+ However, it results in a bigger bundle size and may be dropped in next major version. More details in the blog post
131
+ on [modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/)
132
+
133
+ ```ts
134
+ import * as AWS from "@aws-sdk/client-neptunedata";
135
+ const client = new AWS.Neptunedata({ region: "REGION" });
136
+
137
+ // async/await.
138
+ try {
139
+ const data = await client.cancelGremlinQuery(params);
140
+ // process data.
141
+ } catch (error) {
142
+ // error handling.
143
+ }
144
+
145
+ // Promises.
146
+ client
147
+ .cancelGremlinQuery(params)
148
+ .then((data) => {
149
+ // process data.
150
+ })
151
+ .catch((error) => {
152
+ // error handling.
153
+ });
154
+
155
+ // callbacks.
156
+ client.cancelGremlinQuery(params, (err, data) => {
157
+ // process err and data.
158
+ });
159
+ ```
160
+
161
+ ### Troubleshooting
162
+
163
+ When the service returns an exception, the error will include the exception information,
164
+ as well as response metadata (e.g. request id).
165
+
166
+ ```js
167
+ try {
168
+ const data = await client.send(command);
169
+ // process data.
170
+ } catch (error) {
171
+ const { requestId, cfId, extendedRequestId } = error.$$metadata;
172
+ console.log({ requestId, cfId, extendedRequestId });
173
+ /**
174
+ * The keys within exceptions are also parsed.
175
+ * You can access them by specifying exception names:
176
+ * if (error.name === 'SomeServiceException') {
177
+ * const value = error.specialKeyInException;
178
+ * }
179
+ */
180
+ }
181
+ ```
182
+
183
+ ## Getting Help
184
+
185
+ Please use these community resources for getting help.
186
+ We use the GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
187
+
188
+ - Visit [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html)
189
+ or [API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/index.html).
190
+ - Check out the blog posts tagged with [`aws-sdk-js`](https://aws.amazon.com/blogs/developer/tag/aws-sdk-js/)
191
+ on AWS Developer Blog.
192
+ - Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) and tag it with `aws-sdk-js`.
193
+ - Join the AWS JavaScript community on [gitter](https://gitter.im/aws/aws-sdk-js-v3).
194
+ - If it turns out that you may have found a bug, please [open an issue](https://github.com/aws/aws-sdk-js-v3/issues/new/choose).
195
+
196
+ To test your universal JavaScript code in Node.js, browser and react-native environments,
197
+ visit our [code samples repo](https://github.com/aws-samples/aws-sdk-js-tests).
198
+
199
+ ## Contributing
200
+
201
+ This client code is generated automatically. Any modifications will be overwritten the next time the `@aws-sdk/client-neptunedata` package is updated.
202
+ To contribute to client you can check our [generate clients scripts](https://github.com/aws/aws-sdk-js-v3/tree/main/scripts/generate-clients).
203
+
204
+ ## License
205
+
206
+ This SDK is distributed under the
207
+ [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0),
208
+ see LICENSE for more information.
209
+
210
+ ## Client Commands (Operations List)
211
+
212
+ <details>
213
+ <summary>
214
+ CancelGremlinQuery
215
+ </summary>
216
+
217
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/cancelgremlinquerycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/cancelgremlinquerycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/cancelgremlinquerycommandoutput.html)
218
+
219
+ </details>
220
+ <details>
221
+ <summary>
222
+ CancelLoaderJob
223
+ </summary>
224
+
225
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/cancelloaderjobcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/cancelloaderjobcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/cancelloaderjobcommandoutput.html)
226
+
227
+ </details>
228
+ <details>
229
+ <summary>
230
+ CancelMLDataProcessingJob
231
+ </summary>
232
+
233
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/cancelmldataprocessingjobcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/cancelmldataprocessingjobcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/cancelmldataprocessingjobcommandoutput.html)
234
+
235
+ </details>
236
+ <details>
237
+ <summary>
238
+ CancelMLModelTrainingJob
239
+ </summary>
240
+
241
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/cancelmlmodeltrainingjobcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/cancelmlmodeltrainingjobcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/cancelmlmodeltrainingjobcommandoutput.html)
242
+
243
+ </details>
244
+ <details>
245
+ <summary>
246
+ CancelMLModelTransformJob
247
+ </summary>
248
+
249
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/cancelmlmodeltransformjobcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/cancelmlmodeltransformjobcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/cancelmlmodeltransformjobcommandoutput.html)
250
+
251
+ </details>
252
+ <details>
253
+ <summary>
254
+ CancelOpenCypherQuery
255
+ </summary>
256
+
257
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/cancelopencypherquerycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/cancelopencypherquerycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/cancelopencypherquerycommandoutput.html)
258
+
259
+ </details>
260
+ <details>
261
+ <summary>
262
+ CreateMLEndpoint
263
+ </summary>
264
+
265
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/createmlendpointcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/createmlendpointcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/createmlendpointcommandoutput.html)
266
+
267
+ </details>
268
+ <details>
269
+ <summary>
270
+ DeleteMLEndpoint
271
+ </summary>
272
+
273
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/deletemlendpointcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/deletemlendpointcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/deletemlendpointcommandoutput.html)
274
+
275
+ </details>
276
+ <details>
277
+ <summary>
278
+ DeletePropertygraphStatistics
279
+ </summary>
280
+
281
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/deletepropertygraphstatisticscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/deletepropertygraphstatisticscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/deletepropertygraphstatisticscommandoutput.html)
282
+
283
+ </details>
284
+ <details>
285
+ <summary>
286
+ DeleteSparqlStatistics
287
+ </summary>
288
+
289
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/deletesparqlstatisticscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/deletesparqlstatisticscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/deletesparqlstatisticscommandoutput.html)
290
+
291
+ </details>
292
+ <details>
293
+ <summary>
294
+ ExecuteFastReset
295
+ </summary>
296
+
297
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/executefastresetcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/executefastresetcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/executefastresetcommandoutput.html)
298
+
299
+ </details>
300
+ <details>
301
+ <summary>
302
+ ExecuteGremlinExplainQuery
303
+ </summary>
304
+
305
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/executegremlinexplainquerycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/executegremlinexplainquerycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/executegremlinexplainquerycommandoutput.html)
306
+
307
+ </details>
308
+ <details>
309
+ <summary>
310
+ ExecuteGremlinProfileQuery
311
+ </summary>
312
+
313
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/executegremlinprofilequerycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/executegremlinprofilequerycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/executegremlinprofilequerycommandoutput.html)
314
+
315
+ </details>
316
+ <details>
317
+ <summary>
318
+ ExecuteGremlinQuery
319
+ </summary>
320
+
321
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/executegremlinquerycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/executegremlinquerycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/executegremlinquerycommandoutput.html)
322
+
323
+ </details>
324
+ <details>
325
+ <summary>
326
+ ExecuteOpenCypherExplainQuery
327
+ </summary>
328
+
329
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/executeopencypherexplainquerycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/executeopencypherexplainquerycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/executeopencypherexplainquerycommandoutput.html)
330
+
331
+ </details>
332
+ <details>
333
+ <summary>
334
+ ExecuteOpenCypherQuery
335
+ </summary>
336
+
337
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/executeopencypherquerycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/executeopencypherquerycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/executeopencypherquerycommandoutput.html)
338
+
339
+ </details>
340
+ <details>
341
+ <summary>
342
+ GetEngineStatus
343
+ </summary>
344
+
345
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/getenginestatuscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getenginestatuscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getenginestatuscommandoutput.html)
346
+
347
+ </details>
348
+ <details>
349
+ <summary>
350
+ GetGremlinQueryStatus
351
+ </summary>
352
+
353
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/getgremlinquerystatuscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getgremlinquerystatuscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getgremlinquerystatuscommandoutput.html)
354
+
355
+ </details>
356
+ <details>
357
+ <summary>
358
+ GetLoaderJobStatus
359
+ </summary>
360
+
361
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/getloaderjobstatuscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getloaderjobstatuscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getloaderjobstatuscommandoutput.html)
362
+
363
+ </details>
364
+ <details>
365
+ <summary>
366
+ GetMLDataProcessingJob
367
+ </summary>
368
+
369
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/getmldataprocessingjobcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getmldataprocessingjobcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getmldataprocessingjobcommandoutput.html)
370
+
371
+ </details>
372
+ <details>
373
+ <summary>
374
+ GetMLEndpoint
375
+ </summary>
376
+
377
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/getmlendpointcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getmlendpointcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getmlendpointcommandoutput.html)
378
+
379
+ </details>
380
+ <details>
381
+ <summary>
382
+ GetMLModelTrainingJob
383
+ </summary>
384
+
385
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/getmlmodeltrainingjobcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getmlmodeltrainingjobcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getmlmodeltrainingjobcommandoutput.html)
386
+
387
+ </details>
388
+ <details>
389
+ <summary>
390
+ GetMLModelTransformJob
391
+ </summary>
392
+
393
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/getmlmodeltransformjobcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getmlmodeltransformjobcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getmlmodeltransformjobcommandoutput.html)
394
+
395
+ </details>
396
+ <details>
397
+ <summary>
398
+ GetOpenCypherQueryStatus
399
+ </summary>
400
+
401
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/getopencypherquerystatuscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getopencypherquerystatuscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getopencypherquerystatuscommandoutput.html)
402
+
403
+ </details>
404
+ <details>
405
+ <summary>
406
+ GetPropertygraphStatistics
407
+ </summary>
408
+
409
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/getpropertygraphstatisticscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getpropertygraphstatisticscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getpropertygraphstatisticscommandoutput.html)
410
+
411
+ </details>
412
+ <details>
413
+ <summary>
414
+ GetPropertygraphStream
415
+ </summary>
416
+
417
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/getpropertygraphstreamcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getpropertygraphstreamcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getpropertygraphstreamcommandoutput.html)
418
+
419
+ </details>
420
+ <details>
421
+ <summary>
422
+ GetPropertygraphSummary
423
+ </summary>
424
+
425
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/getpropertygraphsummarycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getpropertygraphsummarycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getpropertygraphsummarycommandoutput.html)
426
+
427
+ </details>
428
+ <details>
429
+ <summary>
430
+ GetRDFGraphSummary
431
+ </summary>
432
+
433
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/getrdfgraphsummarycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getrdfgraphsummarycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getrdfgraphsummarycommandoutput.html)
434
+
435
+ </details>
436
+ <details>
437
+ <summary>
438
+ GetSparqlStatistics
439
+ </summary>
440
+
441
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/getsparqlstatisticscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getsparqlstatisticscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getsparqlstatisticscommandoutput.html)
442
+
443
+ </details>
444
+ <details>
445
+ <summary>
446
+ GetSparqlStream
447
+ </summary>
448
+
449
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/getsparqlstreamcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getsparqlstreamcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/getsparqlstreamcommandoutput.html)
450
+
451
+ </details>
452
+ <details>
453
+ <summary>
454
+ ListGremlinQueries
455
+ </summary>
456
+
457
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/listgremlinqueriescommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/listgremlinqueriescommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/listgremlinqueriescommandoutput.html)
458
+
459
+ </details>
460
+ <details>
461
+ <summary>
462
+ ListLoaderJobs
463
+ </summary>
464
+
465
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/listloaderjobscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/listloaderjobscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/listloaderjobscommandoutput.html)
466
+
467
+ </details>
468
+ <details>
469
+ <summary>
470
+ ListMLDataProcessingJobs
471
+ </summary>
472
+
473
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/listmldataprocessingjobscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/listmldataprocessingjobscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/listmldataprocessingjobscommandoutput.html)
474
+
475
+ </details>
476
+ <details>
477
+ <summary>
478
+ ListMLEndpoints
479
+ </summary>
480
+
481
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/listmlendpointscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/listmlendpointscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/listmlendpointscommandoutput.html)
482
+
483
+ </details>
484
+ <details>
485
+ <summary>
486
+ ListMLModelTrainingJobs
487
+ </summary>
488
+
489
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/listmlmodeltrainingjobscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/listmlmodeltrainingjobscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/listmlmodeltrainingjobscommandoutput.html)
490
+
491
+ </details>
492
+ <details>
493
+ <summary>
494
+ ListMLModelTransformJobs
495
+ </summary>
496
+
497
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/listmlmodeltransformjobscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/listmlmodeltransformjobscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/listmlmodeltransformjobscommandoutput.html)
498
+
499
+ </details>
500
+ <details>
501
+ <summary>
502
+ ListOpenCypherQueries
503
+ </summary>
504
+
505
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/listopencypherqueriescommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/listopencypherqueriescommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/listopencypherqueriescommandoutput.html)
506
+
507
+ </details>
508
+ <details>
509
+ <summary>
510
+ ManagePropertygraphStatistics
511
+ </summary>
512
+
513
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/managepropertygraphstatisticscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/managepropertygraphstatisticscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/managepropertygraphstatisticscommandoutput.html)
514
+
515
+ </details>
516
+ <details>
517
+ <summary>
518
+ ManageSparqlStatistics
519
+ </summary>
520
+
521
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/managesparqlstatisticscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/managesparqlstatisticscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/managesparqlstatisticscommandoutput.html)
522
+
523
+ </details>
524
+ <details>
525
+ <summary>
526
+ StartLoaderJob
527
+ </summary>
528
+
529
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/startloaderjobcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/startloaderjobcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/startloaderjobcommandoutput.html)
530
+
531
+ </details>
532
+ <details>
533
+ <summary>
534
+ StartMLDataProcessingJob
535
+ </summary>
536
+
537
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/startmldataprocessingjobcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/startmldataprocessingjobcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/startmldataprocessingjobcommandoutput.html)
538
+
539
+ </details>
540
+ <details>
541
+ <summary>
542
+ StartMLModelTrainingJob
543
+ </summary>
544
+
545
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/startmlmodeltrainingjobcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/startmlmodeltrainingjobcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/startmlmodeltrainingjobcommandoutput.html)
546
+
547
+ </details>
548
+ <details>
549
+ <summary>
550
+ StartMLModelTransformJob
551
+ </summary>
552
+
553
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/classes/startmlmodeltransformjobcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/startmlmodeltransformjobcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-neptunedata/interfaces/startmlmodeltransformjobcommandoutput.html)
554
+
555
+ </details>
@@ -0,0 +1,97 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Neptunedata = void 0;
4
+ const smithy_client_1 = require("@smithy/smithy-client");
5
+ const CancelGremlinQueryCommand_1 = require("./commands/CancelGremlinQueryCommand");
6
+ const CancelLoaderJobCommand_1 = require("./commands/CancelLoaderJobCommand");
7
+ const CancelMLDataProcessingJobCommand_1 = require("./commands/CancelMLDataProcessingJobCommand");
8
+ const CancelMLModelTrainingJobCommand_1 = require("./commands/CancelMLModelTrainingJobCommand");
9
+ const CancelMLModelTransformJobCommand_1 = require("./commands/CancelMLModelTransformJobCommand");
10
+ const CancelOpenCypherQueryCommand_1 = require("./commands/CancelOpenCypherQueryCommand");
11
+ const CreateMLEndpointCommand_1 = require("./commands/CreateMLEndpointCommand");
12
+ const DeleteMLEndpointCommand_1 = require("./commands/DeleteMLEndpointCommand");
13
+ const DeletePropertygraphStatisticsCommand_1 = require("./commands/DeletePropertygraphStatisticsCommand");
14
+ const DeleteSparqlStatisticsCommand_1 = require("./commands/DeleteSparqlStatisticsCommand");
15
+ const ExecuteFastResetCommand_1 = require("./commands/ExecuteFastResetCommand");
16
+ const ExecuteGremlinExplainQueryCommand_1 = require("./commands/ExecuteGremlinExplainQueryCommand");
17
+ const ExecuteGremlinProfileQueryCommand_1 = require("./commands/ExecuteGremlinProfileQueryCommand");
18
+ const ExecuteGremlinQueryCommand_1 = require("./commands/ExecuteGremlinQueryCommand");
19
+ const ExecuteOpenCypherExplainQueryCommand_1 = require("./commands/ExecuteOpenCypherExplainQueryCommand");
20
+ const ExecuteOpenCypherQueryCommand_1 = require("./commands/ExecuteOpenCypherQueryCommand");
21
+ const GetEngineStatusCommand_1 = require("./commands/GetEngineStatusCommand");
22
+ const GetGremlinQueryStatusCommand_1 = require("./commands/GetGremlinQueryStatusCommand");
23
+ const GetLoaderJobStatusCommand_1 = require("./commands/GetLoaderJobStatusCommand");
24
+ const GetMLDataProcessingJobCommand_1 = require("./commands/GetMLDataProcessingJobCommand");
25
+ const GetMLEndpointCommand_1 = require("./commands/GetMLEndpointCommand");
26
+ const GetMLModelTrainingJobCommand_1 = require("./commands/GetMLModelTrainingJobCommand");
27
+ const GetMLModelTransformJobCommand_1 = require("./commands/GetMLModelTransformJobCommand");
28
+ const GetOpenCypherQueryStatusCommand_1 = require("./commands/GetOpenCypherQueryStatusCommand");
29
+ const GetPropertygraphStatisticsCommand_1 = require("./commands/GetPropertygraphStatisticsCommand");
30
+ const GetPropertygraphStreamCommand_1 = require("./commands/GetPropertygraphStreamCommand");
31
+ const GetPropertygraphSummaryCommand_1 = require("./commands/GetPropertygraphSummaryCommand");
32
+ const GetRDFGraphSummaryCommand_1 = require("./commands/GetRDFGraphSummaryCommand");
33
+ const GetSparqlStatisticsCommand_1 = require("./commands/GetSparqlStatisticsCommand");
34
+ const GetSparqlStreamCommand_1 = require("./commands/GetSparqlStreamCommand");
35
+ const ListGremlinQueriesCommand_1 = require("./commands/ListGremlinQueriesCommand");
36
+ const ListLoaderJobsCommand_1 = require("./commands/ListLoaderJobsCommand");
37
+ const ListMLDataProcessingJobsCommand_1 = require("./commands/ListMLDataProcessingJobsCommand");
38
+ const ListMLEndpointsCommand_1 = require("./commands/ListMLEndpointsCommand");
39
+ const ListMLModelTrainingJobsCommand_1 = require("./commands/ListMLModelTrainingJobsCommand");
40
+ const ListMLModelTransformJobsCommand_1 = require("./commands/ListMLModelTransformJobsCommand");
41
+ const ListOpenCypherQueriesCommand_1 = require("./commands/ListOpenCypherQueriesCommand");
42
+ const ManagePropertygraphStatisticsCommand_1 = require("./commands/ManagePropertygraphStatisticsCommand");
43
+ const ManageSparqlStatisticsCommand_1 = require("./commands/ManageSparqlStatisticsCommand");
44
+ const StartLoaderJobCommand_1 = require("./commands/StartLoaderJobCommand");
45
+ const StartMLDataProcessingJobCommand_1 = require("./commands/StartMLDataProcessingJobCommand");
46
+ const StartMLModelTrainingJobCommand_1 = require("./commands/StartMLModelTrainingJobCommand");
47
+ const StartMLModelTransformJobCommand_1 = require("./commands/StartMLModelTransformJobCommand");
48
+ const NeptunedataClient_1 = require("./NeptunedataClient");
49
+ const commands = {
50
+ CancelGremlinQueryCommand: CancelGremlinQueryCommand_1.CancelGremlinQueryCommand,
51
+ CancelLoaderJobCommand: CancelLoaderJobCommand_1.CancelLoaderJobCommand,
52
+ CancelMLDataProcessingJobCommand: CancelMLDataProcessingJobCommand_1.CancelMLDataProcessingJobCommand,
53
+ CancelMLModelTrainingJobCommand: CancelMLModelTrainingJobCommand_1.CancelMLModelTrainingJobCommand,
54
+ CancelMLModelTransformJobCommand: CancelMLModelTransformJobCommand_1.CancelMLModelTransformJobCommand,
55
+ CancelOpenCypherQueryCommand: CancelOpenCypherQueryCommand_1.CancelOpenCypherQueryCommand,
56
+ CreateMLEndpointCommand: CreateMLEndpointCommand_1.CreateMLEndpointCommand,
57
+ DeleteMLEndpointCommand: DeleteMLEndpointCommand_1.DeleteMLEndpointCommand,
58
+ DeletePropertygraphStatisticsCommand: DeletePropertygraphStatisticsCommand_1.DeletePropertygraphStatisticsCommand,
59
+ DeleteSparqlStatisticsCommand: DeleteSparqlStatisticsCommand_1.DeleteSparqlStatisticsCommand,
60
+ ExecuteFastResetCommand: ExecuteFastResetCommand_1.ExecuteFastResetCommand,
61
+ ExecuteGremlinExplainQueryCommand: ExecuteGremlinExplainQueryCommand_1.ExecuteGremlinExplainQueryCommand,
62
+ ExecuteGremlinProfileQueryCommand: ExecuteGremlinProfileQueryCommand_1.ExecuteGremlinProfileQueryCommand,
63
+ ExecuteGremlinQueryCommand: ExecuteGremlinQueryCommand_1.ExecuteGremlinQueryCommand,
64
+ ExecuteOpenCypherExplainQueryCommand: ExecuteOpenCypherExplainQueryCommand_1.ExecuteOpenCypherExplainQueryCommand,
65
+ ExecuteOpenCypherQueryCommand: ExecuteOpenCypherQueryCommand_1.ExecuteOpenCypherQueryCommand,
66
+ GetEngineStatusCommand: GetEngineStatusCommand_1.GetEngineStatusCommand,
67
+ GetGremlinQueryStatusCommand: GetGremlinQueryStatusCommand_1.GetGremlinQueryStatusCommand,
68
+ GetLoaderJobStatusCommand: GetLoaderJobStatusCommand_1.GetLoaderJobStatusCommand,
69
+ GetMLDataProcessingJobCommand: GetMLDataProcessingJobCommand_1.GetMLDataProcessingJobCommand,
70
+ GetMLEndpointCommand: GetMLEndpointCommand_1.GetMLEndpointCommand,
71
+ GetMLModelTrainingJobCommand: GetMLModelTrainingJobCommand_1.GetMLModelTrainingJobCommand,
72
+ GetMLModelTransformJobCommand: GetMLModelTransformJobCommand_1.GetMLModelTransformJobCommand,
73
+ GetOpenCypherQueryStatusCommand: GetOpenCypherQueryStatusCommand_1.GetOpenCypherQueryStatusCommand,
74
+ GetPropertygraphStatisticsCommand: GetPropertygraphStatisticsCommand_1.GetPropertygraphStatisticsCommand,
75
+ GetPropertygraphStreamCommand: GetPropertygraphStreamCommand_1.GetPropertygraphStreamCommand,
76
+ GetPropertygraphSummaryCommand: GetPropertygraphSummaryCommand_1.GetPropertygraphSummaryCommand,
77
+ GetRDFGraphSummaryCommand: GetRDFGraphSummaryCommand_1.GetRDFGraphSummaryCommand,
78
+ GetSparqlStatisticsCommand: GetSparqlStatisticsCommand_1.GetSparqlStatisticsCommand,
79
+ GetSparqlStreamCommand: GetSparqlStreamCommand_1.GetSparqlStreamCommand,
80
+ ListGremlinQueriesCommand: ListGremlinQueriesCommand_1.ListGremlinQueriesCommand,
81
+ ListLoaderJobsCommand: ListLoaderJobsCommand_1.ListLoaderJobsCommand,
82
+ ListMLDataProcessingJobsCommand: ListMLDataProcessingJobsCommand_1.ListMLDataProcessingJobsCommand,
83
+ ListMLEndpointsCommand: ListMLEndpointsCommand_1.ListMLEndpointsCommand,
84
+ ListMLModelTrainingJobsCommand: ListMLModelTrainingJobsCommand_1.ListMLModelTrainingJobsCommand,
85
+ ListMLModelTransformJobsCommand: ListMLModelTransformJobsCommand_1.ListMLModelTransformJobsCommand,
86
+ ListOpenCypherQueriesCommand: ListOpenCypherQueriesCommand_1.ListOpenCypherQueriesCommand,
87
+ ManagePropertygraphStatisticsCommand: ManagePropertygraphStatisticsCommand_1.ManagePropertygraphStatisticsCommand,
88
+ ManageSparqlStatisticsCommand: ManageSparqlStatisticsCommand_1.ManageSparqlStatisticsCommand,
89
+ StartLoaderJobCommand: StartLoaderJobCommand_1.StartLoaderJobCommand,
90
+ StartMLDataProcessingJobCommand: StartMLDataProcessingJobCommand_1.StartMLDataProcessingJobCommand,
91
+ StartMLModelTrainingJobCommand: StartMLModelTrainingJobCommand_1.StartMLModelTrainingJobCommand,
92
+ StartMLModelTransformJobCommand: StartMLModelTransformJobCommand_1.StartMLModelTransformJobCommand,
93
+ };
94
+ class Neptunedata extends NeptunedataClient_1.NeptunedataClient {
95
+ }
96
+ exports.Neptunedata = Neptunedata;
97
+ (0, smithy_client_1.createAggregatedClient)(commands, Neptunedata);