@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,116 @@
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 { DeletePropertygraphStatisticsOutput } 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 DeletePropertygraphStatisticsCommand}.
14
+ */
15
+ export interface DeletePropertygraphStatisticsCommandInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeletePropertygraphStatisticsCommand}.
21
+ */
22
+ export interface DeletePropertygraphStatisticsCommandOutput extends DeletePropertygraphStatisticsOutput, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Deletes statistics for Gremlin and openCypher (property graph)
27
+ * data.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { NeptunedataClient, DeletePropertygraphStatisticsCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
32
+ * // const { NeptunedataClient, DeletePropertygraphStatisticsCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
33
+ * const client = new NeptunedataClient(config);
34
+ * const input = {};
35
+ * const command = new DeletePropertygraphStatisticsCommand(input);
36
+ * const response = await client.send(command);
37
+ * // { // DeletePropertygraphStatisticsOutput
38
+ * // statusCode: Number("int"),
39
+ * // status: "STRING_VALUE",
40
+ * // payload: { // DeleteStatisticsValueMap
41
+ * // active: true || false,
42
+ * // statisticsId: "STRING_VALUE",
43
+ * // },
44
+ * // };
45
+ *
46
+ * ```
47
+ *
48
+ * @param DeletePropertygraphStatisticsCommandInput - {@link DeletePropertygraphStatisticsCommandInput}
49
+ * @returns {@link DeletePropertygraphStatisticsCommandOutput}
50
+ * @see {@link DeletePropertygraphStatisticsCommandInput} for command's `input` shape.
51
+ * @see {@link DeletePropertygraphStatisticsCommandOutput} for command's `response` shape.
52
+ * @see {@link NeptunedataClientResolvedConfig | config} for NeptunedataClient's `config` shape.
53
+ *
54
+ * @throws {@link AccessDeniedException} (client fault)
55
+ * <p>Raised in case of an authentication or authorization failure.</p>
56
+ *
57
+ * @throws {@link BadRequestException} (client fault)
58
+ * <p>Raised when a request is submitted that cannot be processed.</p>
59
+ *
60
+ * @throws {@link ClientTimeoutException} (client fault)
61
+ * <p>Raised when a request timed out in the client.</p>
62
+ *
63
+ * @throws {@link ConstraintViolationException} (client fault)
64
+ * <p>Raised when a value in a request field did not satisfy required constraints.</p>
65
+ *
66
+ * @throws {@link IllegalArgumentException} (client fault)
67
+ * <p>Raised when an argument in a request is not supported.</p>
68
+ *
69
+ * @throws {@link InvalidArgumentException} (client fault)
70
+ * <p>Raised when an argument in a request has an invalid value.</p>
71
+ *
72
+ * @throws {@link InvalidParameterException} (client fault)
73
+ * <p>Raised when a parameter value is not valid.</p>
74
+ *
75
+ * @throws {@link MissingParameterException} (client fault)
76
+ * <p>Raised when a required parameter is missing.</p>
77
+ *
78
+ * @throws {@link PreconditionsFailedException} (client fault)
79
+ * <p>Raised when a precondition for processing a request is not satisfied.</p>
80
+ *
81
+ * @throws {@link ReadOnlyViolationException} (client fault)
82
+ * <p>Raised when a request attempts to write to a read-only resource.</p>
83
+ *
84
+ * @throws {@link StatisticsNotAvailableException} (client fault)
85
+ * <p>Raised when statistics needed to satisfy a request are not available.</p>
86
+ *
87
+ * @throws {@link TooManyRequestsException} (client fault)
88
+ * <p>Raised when the number of requests being processed exceeds the limit.</p>
89
+ *
90
+ * @throws {@link UnsupportedOperationException} (client fault)
91
+ * <p>Raised when a request attempts to initiate an operation that is not supported.</p>
92
+ *
93
+ * @throws {@link NeptunedataServiceException}
94
+ * <p>Base exception class for all service exceptions from Neptunedata service.</p>
95
+ *
96
+ */
97
+ export declare class DeletePropertygraphStatisticsCommand extends $Command<DeletePropertygraphStatisticsCommandInput, DeletePropertygraphStatisticsCommandOutput, NeptunedataClientResolvedConfig> {
98
+ readonly input: DeletePropertygraphStatisticsCommandInput;
99
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
100
+ /**
101
+ * @public
102
+ */
103
+ constructor(input: DeletePropertygraphStatisticsCommandInput);
104
+ /**
105
+ * @internal
106
+ */
107
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NeptunedataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePropertygraphStatisticsCommandInput, DeletePropertygraphStatisticsCommandOutput>;
108
+ /**
109
+ * @internal
110
+ */
111
+ private serialize;
112
+ /**
113
+ * @internal
114
+ */
115
+ private deserialize;
116
+ }
@@ -0,0 +1,115 @@
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 { DeleteSparqlStatisticsOutput } 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 DeleteSparqlStatisticsCommand}.
14
+ */
15
+ export interface DeleteSparqlStatisticsCommandInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteSparqlStatisticsCommand}.
21
+ */
22
+ export interface DeleteSparqlStatisticsCommandOutput extends DeleteSparqlStatisticsOutput, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Deletes SPARQL statistics</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { NeptunedataClient, DeleteSparqlStatisticsCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
31
+ * // const { NeptunedataClient, DeleteSparqlStatisticsCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
32
+ * const client = new NeptunedataClient(config);
33
+ * const input = {};
34
+ * const command = new DeleteSparqlStatisticsCommand(input);
35
+ * const response = await client.send(command);
36
+ * // { // DeleteSparqlStatisticsOutput
37
+ * // statusCode: Number("int"),
38
+ * // status: "STRING_VALUE",
39
+ * // payload: { // DeleteStatisticsValueMap
40
+ * // active: true || false,
41
+ * // statisticsId: "STRING_VALUE",
42
+ * // },
43
+ * // };
44
+ *
45
+ * ```
46
+ *
47
+ * @param DeleteSparqlStatisticsCommandInput - {@link DeleteSparqlStatisticsCommandInput}
48
+ * @returns {@link DeleteSparqlStatisticsCommandOutput}
49
+ * @see {@link DeleteSparqlStatisticsCommandInput} for command's `input` shape.
50
+ * @see {@link DeleteSparqlStatisticsCommandOutput} for command's `response` shape.
51
+ * @see {@link NeptunedataClientResolvedConfig | config} for NeptunedataClient's `config` shape.
52
+ *
53
+ * @throws {@link AccessDeniedException} (client fault)
54
+ * <p>Raised in case of an authentication or authorization failure.</p>
55
+ *
56
+ * @throws {@link BadRequestException} (client fault)
57
+ * <p>Raised when a request is submitted that cannot be processed.</p>
58
+ *
59
+ * @throws {@link ClientTimeoutException} (client fault)
60
+ * <p>Raised when a request timed out in the client.</p>
61
+ *
62
+ * @throws {@link ConstraintViolationException} (client fault)
63
+ * <p>Raised when a value in a request field did not satisfy required constraints.</p>
64
+ *
65
+ * @throws {@link IllegalArgumentException} (client fault)
66
+ * <p>Raised when an argument in a request is not supported.</p>
67
+ *
68
+ * @throws {@link InvalidArgumentException} (client fault)
69
+ * <p>Raised when an argument in a request has an invalid value.</p>
70
+ *
71
+ * @throws {@link InvalidParameterException} (client fault)
72
+ * <p>Raised when a parameter value is not valid.</p>
73
+ *
74
+ * @throws {@link MissingParameterException} (client fault)
75
+ * <p>Raised when a required parameter is missing.</p>
76
+ *
77
+ * @throws {@link PreconditionsFailedException} (client fault)
78
+ * <p>Raised when a precondition for processing a request is not satisfied.</p>
79
+ *
80
+ * @throws {@link ReadOnlyViolationException} (client fault)
81
+ * <p>Raised when a request attempts to write to a read-only resource.</p>
82
+ *
83
+ * @throws {@link StatisticsNotAvailableException} (client fault)
84
+ * <p>Raised when statistics needed to satisfy a request are not available.</p>
85
+ *
86
+ * @throws {@link TooManyRequestsException} (client fault)
87
+ * <p>Raised when the number of requests being processed exceeds the limit.</p>
88
+ *
89
+ * @throws {@link UnsupportedOperationException} (client fault)
90
+ * <p>Raised when a request attempts to initiate an operation that is not supported.</p>
91
+ *
92
+ * @throws {@link NeptunedataServiceException}
93
+ * <p>Base exception class for all service exceptions from Neptunedata service.</p>
94
+ *
95
+ */
96
+ export declare class DeleteSparqlStatisticsCommand extends $Command<DeleteSparqlStatisticsCommandInput, DeleteSparqlStatisticsCommandOutput, NeptunedataClientResolvedConfig> {
97
+ readonly input: DeleteSparqlStatisticsCommandInput;
98
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
99
+ /**
100
+ * @public
101
+ */
102
+ constructor(input: DeleteSparqlStatisticsCommandInput);
103
+ /**
104
+ * @internal
105
+ */
106
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NeptunedataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSparqlStatisticsCommandInput, DeleteSparqlStatisticsCommandOutput>;
107
+ /**
108
+ * @internal
109
+ */
110
+ private serialize;
111
+ /**
112
+ * @internal
113
+ */
114
+ private deserialize;
115
+ }
@@ -0,0 +1,123 @@
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 { ExecuteFastResetInput, ExecuteFastResetOutput } 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 ExecuteFastResetCommand}.
14
+ */
15
+ export interface ExecuteFastResetCommandInput extends ExecuteFastResetInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ExecuteFastResetCommand}.
21
+ */
22
+ export interface ExecuteFastResetCommandOutput extends ExecuteFastResetOutput, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>The fast reset REST API lets you reset a Neptune graph quicky
27
+ * and easily, removing all of its data.</p>
28
+ * <p>Neptune fast reset is a two-step process. First you call <code>ExecuteFastReset</code>
29
+ * with <code>action</code> set to <code>initiateDatabaseReset</code>. This returns a
30
+ * UUID token which you then include when calling <code>ExecuteFastReset</code> again
31
+ * with <code>action</code> set to <code>performDatabaseReset</code>. See <a href="https://docs.aws.amazon.com/neptune/latest/userguide/manage-console-fast-reset.html">Empty an Amazon Neptune
32
+ * DB cluster using the fast reset API</a>.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { NeptunedataClient, ExecuteFastResetCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
37
+ * // const { NeptunedataClient, ExecuteFastResetCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
38
+ * const client = new NeptunedataClient(config);
39
+ * const input = { // ExecuteFastResetInput
40
+ * action: "initiateDatabaseReset" || "performDatabaseReset", // required
41
+ * token: "STRING_VALUE",
42
+ * };
43
+ * const command = new ExecuteFastResetCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // ExecuteFastResetOutput
46
+ * // status: "STRING_VALUE", // required
47
+ * // payload: { // FastResetToken
48
+ * // token: "STRING_VALUE",
49
+ * // },
50
+ * // };
51
+ *
52
+ * ```
53
+ *
54
+ * @param ExecuteFastResetCommandInput - {@link ExecuteFastResetCommandInput}
55
+ * @returns {@link ExecuteFastResetCommandOutput}
56
+ * @see {@link ExecuteFastResetCommandInput} for command's `input` shape.
57
+ * @see {@link ExecuteFastResetCommandOutput} for command's `response` shape.
58
+ * @see {@link NeptunedataClientResolvedConfig | config} for NeptunedataClient's `config` shape.
59
+ *
60
+ * @throws {@link AccessDeniedException} (client fault)
61
+ * <p>Raised in case of an authentication or authorization failure.</p>
62
+ *
63
+ * @throws {@link ClientTimeoutException} (client fault)
64
+ * <p>Raised when a request timed out in the client.</p>
65
+ *
66
+ * @throws {@link ConstraintViolationException} (client fault)
67
+ * <p>Raised when a value in a request field did not satisfy required constraints.</p>
68
+ *
69
+ * @throws {@link IllegalArgumentException} (client fault)
70
+ * <p>Raised when an argument in a request is not supported.</p>
71
+ *
72
+ * @throws {@link InvalidArgumentException} (client fault)
73
+ * <p>Raised when an argument in a request has an invalid value.</p>
74
+ *
75
+ * @throws {@link InvalidParameterException} (client fault)
76
+ * <p>Raised when a parameter value is not valid.</p>
77
+ *
78
+ * @throws {@link MethodNotAllowedException} (client fault)
79
+ * <p>Raised when the HTTP method used by a request is not supported by the endpoint
80
+ * being used.</p>
81
+ *
82
+ * @throws {@link MissingParameterException} (client fault)
83
+ * <p>Raised when a required parameter is missing.</p>
84
+ *
85
+ * @throws {@link PreconditionsFailedException} (client fault)
86
+ * <p>Raised when a precondition for processing a request is not satisfied.</p>
87
+ *
88
+ * @throws {@link ReadOnlyViolationException} (client fault)
89
+ * <p>Raised when a request attempts to write to a read-only resource.</p>
90
+ *
91
+ * @throws {@link ServerShutdownException} (server fault)
92
+ * <p>Raised when the server shuts down while processing a request.</p>
93
+ *
94
+ * @throws {@link TooManyRequestsException} (client fault)
95
+ * <p>Raised when the number of requests being processed exceeds the limit.</p>
96
+ *
97
+ * @throws {@link UnsupportedOperationException} (client fault)
98
+ * <p>Raised when a request attempts to initiate an operation that is not supported.</p>
99
+ *
100
+ * @throws {@link NeptunedataServiceException}
101
+ * <p>Base exception class for all service exceptions from Neptunedata service.</p>
102
+ *
103
+ */
104
+ export declare class ExecuteFastResetCommand extends $Command<ExecuteFastResetCommandInput, ExecuteFastResetCommandOutput, NeptunedataClientResolvedConfig> {
105
+ readonly input: ExecuteFastResetCommandInput;
106
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
107
+ /**
108
+ * @public
109
+ */
110
+ constructor(input: ExecuteFastResetCommandInput);
111
+ /**
112
+ * @internal
113
+ */
114
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NeptunedataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExecuteFastResetCommandInput, ExecuteFastResetCommandOutput>;
115
+ /**
116
+ * @internal
117
+ */
118
+ private serialize;
119
+ /**
120
+ * @internal
121
+ */
122
+ private deserialize;
123
+ }
@@ -0,0 +1,155 @@
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 { Uint8ArrayBlobAdapter } from "@smithy/util-stream";
5
+ import { ExecuteGremlinExplainQueryInput, ExecuteGremlinExplainQueryOutput } from "../models/models_0";
6
+ import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient";
7
+ /**
8
+ * @public
9
+ */
10
+ export { __MetadataBearer, $Command };
11
+ /**
12
+ * @public
13
+ *
14
+ * The input for {@link ExecuteGremlinExplainQueryCommand}.
15
+ */
16
+ export interface ExecuteGremlinExplainQueryCommandInput extends ExecuteGremlinExplainQueryInput {
17
+ }
18
+ /**
19
+ * @public
20
+ */
21
+ export type ExecuteGremlinExplainQueryCommandOutputType = Omit<ExecuteGremlinExplainQueryOutput, "output"> & {
22
+ output?: Uint8ArrayBlobAdapter;
23
+ };
24
+ /**
25
+ * @public
26
+ *
27
+ * The output of {@link ExecuteGremlinExplainQueryCommand}.
28
+ */
29
+ export interface ExecuteGremlinExplainQueryCommandOutput extends ExecuteGremlinExplainQueryCommandOutputType, __MetadataBearer {
30
+ }
31
+ /**
32
+ * @public
33
+ * <p>Executes a Gremlin Explain query.</p>
34
+ * <p>Amazon Neptune has added a Gremlin feature named <code>explain</code>
35
+ * that provides is a self-service tool for understanding the execution
36
+ * approach being taken by the Neptune engine for the query. You invoke
37
+ * it by adding an <code>explain</code> parameter to an HTTP call that
38
+ * submits a Gremlin query.</p>
39
+ * <p>The explain feature provides information about the logical structure
40
+ * of query execution plans. You can use this information to identify
41
+ * potential evaluation and execution bottlenecks and to tune your query,
42
+ * as explained in <a href="https://docs.aws.amazon.com/neptune/latest/userguide/gremlin-traversal-tuning.html">Tuning
43
+ * Gremlin queries</a>. You can also use query hints to improve
44
+ * query execution plans.</p>
45
+ * @example
46
+ * Use a bare-bones client and the command you need to make an API call.
47
+ * ```javascript
48
+ * import { NeptunedataClient, ExecuteGremlinExplainQueryCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
49
+ * // const { NeptunedataClient, ExecuteGremlinExplainQueryCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
50
+ * const client = new NeptunedataClient(config);
51
+ * const input = { // ExecuteGremlinExplainQueryInput
52
+ * gremlinQuery: "STRING_VALUE", // required
53
+ * };
54
+ * const command = new ExecuteGremlinExplainQueryCommand(input);
55
+ * const response = await client.send(command);
56
+ * // { // ExecuteGremlinExplainQueryOutput
57
+ * // output: "BLOB_VALUE",
58
+ * // };
59
+ *
60
+ * ```
61
+ *
62
+ * @param ExecuteGremlinExplainQueryCommandInput - {@link ExecuteGremlinExplainQueryCommandInput}
63
+ * @returns {@link ExecuteGremlinExplainQueryCommandOutput}
64
+ * @see {@link ExecuteGremlinExplainQueryCommandInput} for command's `input` shape.
65
+ * @see {@link ExecuteGremlinExplainQueryCommandOutput} for command's `response` shape.
66
+ * @see {@link NeptunedataClientResolvedConfig | config} for NeptunedataClient's `config` shape.
67
+ *
68
+ * @throws {@link BadRequestException} (client fault)
69
+ * <p>Raised when a request is submitted that cannot be processed.</p>
70
+ *
71
+ * @throws {@link CancelledByUserException} (server fault)
72
+ * <p>Raised when a user cancelled a request.</p>
73
+ *
74
+ * @throws {@link ClientTimeoutException} (client fault)
75
+ * <p>Raised when a request timed out in the client.</p>
76
+ *
77
+ * @throws {@link ConcurrentModificationException} (server fault)
78
+ * <p>Raised when a request attempts to modify data that is concurrently being
79
+ * modified by another process.</p>
80
+ *
81
+ * @throws {@link ConstraintViolationException} (client fault)
82
+ * <p>Raised when a value in a request field did not satisfy required constraints.</p>
83
+ *
84
+ * @throws {@link FailureByQueryException} (server fault)
85
+ * <p>Raised when a request fails.</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 MalformedQueryException} (client fault)
97
+ * <p>Raised when a query is submitted that is syntactically incorrect or does not
98
+ * pass additional validation.</p>
99
+ *
100
+ * @throws {@link MemoryLimitExceededException} (server fault)
101
+ * <p>Raised when a request fails because of insufficient memory resources. The
102
+ * request can be retried.</p>
103
+ *
104
+ * @throws {@link MissingParameterException} (client fault)
105
+ * <p>Raised when a required parameter is missing.</p>
106
+ *
107
+ * @throws {@link ParsingException} (client fault)
108
+ * <p>Raised when a parsing issue is encountered.</p>
109
+ *
110
+ * @throws {@link PreconditionsFailedException} (client fault)
111
+ * <p>Raised when a precondition for processing a request is not satisfied.</p>
112
+ *
113
+ * @throws {@link QueryLimitExceededException} (server fault)
114
+ * <p>Raised when the number of active queries exceeds what the server can process.
115
+ * The query in question can be retried when the system is less busy.</p>
116
+ *
117
+ * @throws {@link QueryLimitException} (client fault)
118
+ * <p>Raised when the size of a query exceeds the system limit.</p>
119
+ *
120
+ * @throws {@link QueryTooLargeException} (client fault)
121
+ * <p>Raised when the body of a query is too large.</p>
122
+ *
123
+ * @throws {@link TimeLimitExceededException} (server fault)
124
+ * <p>Raised when the an operation exceeds the time limit allowed for it.</p>
125
+ *
126
+ * @throws {@link TooManyRequestsException} (client fault)
127
+ * <p>Raised when the number of requests being processed exceeds the limit.</p>
128
+ *
129
+ * @throws {@link UnsupportedOperationException} (client fault)
130
+ * <p>Raised when a request attempts to initiate an operation that is not supported.</p>
131
+ *
132
+ * @throws {@link NeptunedataServiceException}
133
+ * <p>Base exception class for all service exceptions from Neptunedata service.</p>
134
+ *
135
+ */
136
+ export declare class ExecuteGremlinExplainQueryCommand extends $Command<ExecuteGremlinExplainQueryCommandInput, ExecuteGremlinExplainQueryCommandOutput, NeptunedataClientResolvedConfig> {
137
+ readonly input: ExecuteGremlinExplainQueryCommandInput;
138
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
139
+ /**
140
+ * @public
141
+ */
142
+ constructor(input: ExecuteGremlinExplainQueryCommandInput);
143
+ /**
144
+ * @internal
145
+ */
146
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NeptunedataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExecuteGremlinExplainQueryCommandInput, ExecuteGremlinExplainQueryCommandOutput>;
147
+ /**
148
+ * @internal
149
+ */
150
+ private serialize;
151
+ /**
152
+ * @internal
153
+ */
154
+ private deserialize;
155
+ }
@@ -0,0 +1,151 @@
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 { Uint8ArrayBlobAdapter } from "@smithy/util-stream";
5
+ import { ExecuteGremlinProfileQueryInput, ExecuteGremlinProfileQueryOutput } from "../models/models_0";
6
+ import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient";
7
+ /**
8
+ * @public
9
+ */
10
+ export { __MetadataBearer, $Command };
11
+ /**
12
+ * @public
13
+ *
14
+ * The input for {@link ExecuteGremlinProfileQueryCommand}.
15
+ */
16
+ export interface ExecuteGremlinProfileQueryCommandInput extends ExecuteGremlinProfileQueryInput {
17
+ }
18
+ /**
19
+ * @public
20
+ */
21
+ export type ExecuteGremlinProfileQueryCommandOutputType = Omit<ExecuteGremlinProfileQueryOutput, "output"> & {
22
+ output?: Uint8ArrayBlobAdapter;
23
+ };
24
+ /**
25
+ * @public
26
+ *
27
+ * The output of {@link ExecuteGremlinProfileQueryCommand}.
28
+ */
29
+ export interface ExecuteGremlinProfileQueryCommandOutput extends ExecuteGremlinProfileQueryCommandOutputType, __MetadataBearer {
30
+ }
31
+ /**
32
+ * @public
33
+ * <p>Executes a Gremlin Profile query, which runs a specified traversal,
34
+ * collects various metrics about the run, and produces a profile report
35
+ * as output. See <a href="https://docs.aws.amazon.com/neptune/latest/userguide/gremlin-profile-api.html">Gremlin profile
36
+ * API in Neptune</a> for details.</p>
37
+ * @example
38
+ * Use a bare-bones client and the command you need to make an API call.
39
+ * ```javascript
40
+ * import { NeptunedataClient, ExecuteGremlinProfileQueryCommand } from "@aws-sdk/client-neptunedata"; // ES Modules import
41
+ * // const { NeptunedataClient, ExecuteGremlinProfileQueryCommand } = require("@aws-sdk/client-neptunedata"); // CommonJS import
42
+ * const client = new NeptunedataClient(config);
43
+ * const input = { // ExecuteGremlinProfileQueryInput
44
+ * gremlinQuery: "STRING_VALUE", // required
45
+ * results: true || false,
46
+ * chop: Number("int"),
47
+ * serializer: "STRING_VALUE",
48
+ * indexOps: true || false,
49
+ * };
50
+ * const command = new ExecuteGremlinProfileQueryCommand(input);
51
+ * const response = await client.send(command);
52
+ * // { // ExecuteGremlinProfileQueryOutput
53
+ * // output: "BLOB_VALUE",
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param ExecuteGremlinProfileQueryCommandInput - {@link ExecuteGremlinProfileQueryCommandInput}
59
+ * @returns {@link ExecuteGremlinProfileQueryCommandOutput}
60
+ * @see {@link ExecuteGremlinProfileQueryCommandInput} for command's `input` shape.
61
+ * @see {@link ExecuteGremlinProfileQueryCommandOutput} for command's `response` shape.
62
+ * @see {@link NeptunedataClientResolvedConfig | config} for NeptunedataClient's `config` shape.
63
+ *
64
+ * @throws {@link BadRequestException} (client fault)
65
+ * <p>Raised when a request is submitted that cannot be processed.</p>
66
+ *
67
+ * @throws {@link CancelledByUserException} (server fault)
68
+ * <p>Raised when a user cancelled a request.</p>
69
+ *
70
+ * @throws {@link ClientTimeoutException} (client fault)
71
+ * <p>Raised when a request timed out in the client.</p>
72
+ *
73
+ * @throws {@link ConcurrentModificationException} (server fault)
74
+ * <p>Raised when a request attempts to modify data that is concurrently being
75
+ * modified by another process.</p>
76
+ *
77
+ * @throws {@link ConstraintViolationException} (client fault)
78
+ * <p>Raised when a value in a request field did not satisfy required constraints.</p>
79
+ *
80
+ * @throws {@link FailureByQueryException} (server fault)
81
+ * <p>Raised when a request fails.</p>
82
+ *
83
+ * @throws {@link IllegalArgumentException} (client fault)
84
+ * <p>Raised when an argument in a request is not supported.</p>
85
+ *
86
+ * @throws {@link InvalidArgumentException} (client fault)
87
+ * <p>Raised when an argument in a request has an invalid value.</p>
88
+ *
89
+ * @throws {@link InvalidParameterException} (client fault)
90
+ * <p>Raised when a parameter value is not valid.</p>
91
+ *
92
+ * @throws {@link MalformedQueryException} (client fault)
93
+ * <p>Raised when a query is submitted that is syntactically incorrect or does not
94
+ * pass additional validation.</p>
95
+ *
96
+ * @throws {@link MemoryLimitExceededException} (server fault)
97
+ * <p>Raised when a request fails because of insufficient memory resources. The
98
+ * request can be retried.</p>
99
+ *
100
+ * @throws {@link MissingParameterException} (client fault)
101
+ * <p>Raised when a required parameter is missing.</p>
102
+ *
103
+ * @throws {@link ParsingException} (client fault)
104
+ * <p>Raised when a parsing issue is encountered.</p>
105
+ *
106
+ * @throws {@link PreconditionsFailedException} (client fault)
107
+ * <p>Raised when a precondition for processing a request is not satisfied.</p>
108
+ *
109
+ * @throws {@link QueryLimitExceededException} (server fault)
110
+ * <p>Raised when the number of active queries exceeds what the server can process.
111
+ * The query in question can be retried when the system is less busy.</p>
112
+ *
113
+ * @throws {@link QueryLimitException} (client fault)
114
+ * <p>Raised when the size of a query exceeds the system limit.</p>
115
+ *
116
+ * @throws {@link QueryTooLargeException} (client fault)
117
+ * <p>Raised when the body of a query is too large.</p>
118
+ *
119
+ * @throws {@link TimeLimitExceededException} (server fault)
120
+ * <p>Raised when the an operation exceeds the time limit allowed for it.</p>
121
+ *
122
+ * @throws {@link TooManyRequestsException} (client fault)
123
+ * <p>Raised when the number of requests being processed exceeds the limit.</p>
124
+ *
125
+ * @throws {@link UnsupportedOperationException} (client fault)
126
+ * <p>Raised when a request attempts to initiate an operation that is not supported.</p>
127
+ *
128
+ * @throws {@link NeptunedataServiceException}
129
+ * <p>Base exception class for all service exceptions from Neptunedata service.</p>
130
+ *
131
+ */
132
+ export declare class ExecuteGremlinProfileQueryCommand extends $Command<ExecuteGremlinProfileQueryCommandInput, ExecuteGremlinProfileQueryCommandOutput, NeptunedataClientResolvedConfig> {
133
+ readonly input: ExecuteGremlinProfileQueryCommandInput;
134
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
135
+ /**
136
+ * @public
137
+ */
138
+ constructor(input: ExecuteGremlinProfileQueryCommandInput);
139
+ /**
140
+ * @internal
141
+ */
142
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NeptunedataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExecuteGremlinProfileQueryCommandInput, ExecuteGremlinProfileQueryCommandOutput>;
143
+ /**
144
+ * @internal
145
+ */
146
+ private serialize;
147
+ /**
148
+ * @internal
149
+ */
150
+ private deserialize;
151
+ }