@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,594 @@
1
+ import { NeptunedataServiceException as __BaseException } from "./NeptunedataServiceException";
2
+ export class AccessDeniedException extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "AccessDeniedException",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "AccessDeniedException";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
+ this.detailedMessage = opts.detailedMessage;
13
+ this.requestId = opts.requestId;
14
+ this.code = opts.code;
15
+ }
16
+ }
17
+ export const Action = {
18
+ INITIALIZE_RESET: "initiateDatabaseReset",
19
+ PERFORM_RESET: "performDatabaseReset",
20
+ };
21
+ export class BadRequestException extends __BaseException {
22
+ constructor(opts) {
23
+ super({
24
+ name: "BadRequestException",
25
+ $fault: "client",
26
+ ...opts,
27
+ });
28
+ this.name = "BadRequestException";
29
+ this.$fault = "client";
30
+ Object.setPrototypeOf(this, BadRequestException.prototype);
31
+ this.detailedMessage = opts.detailedMessage;
32
+ this.requestId = opts.requestId;
33
+ this.code = opts.code;
34
+ }
35
+ }
36
+ export class ClientTimeoutException extends __BaseException {
37
+ constructor(opts) {
38
+ super({
39
+ name: "ClientTimeoutException",
40
+ $fault: "client",
41
+ ...opts,
42
+ });
43
+ this.name = "ClientTimeoutException";
44
+ this.$fault = "client";
45
+ this.$retryable = {};
46
+ Object.setPrototypeOf(this, ClientTimeoutException.prototype);
47
+ this.detailedMessage = opts.detailedMessage;
48
+ this.requestId = opts.requestId;
49
+ this.code = opts.code;
50
+ }
51
+ }
52
+ export class ConcurrentModificationException extends __BaseException {
53
+ constructor(opts) {
54
+ super({
55
+ name: "ConcurrentModificationException",
56
+ $fault: "server",
57
+ ...opts,
58
+ });
59
+ this.name = "ConcurrentModificationException";
60
+ this.$fault = "server";
61
+ this.$retryable = {};
62
+ Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
63
+ this.detailedMessage = opts.detailedMessage;
64
+ this.requestId = opts.requestId;
65
+ this.code = opts.code;
66
+ }
67
+ }
68
+ export class ConstraintViolationException extends __BaseException {
69
+ constructor(opts) {
70
+ super({
71
+ name: "ConstraintViolationException",
72
+ $fault: "client",
73
+ ...opts,
74
+ });
75
+ this.name = "ConstraintViolationException";
76
+ this.$fault = "client";
77
+ this.$retryable = {};
78
+ Object.setPrototypeOf(this, ConstraintViolationException.prototype);
79
+ this.detailedMessage = opts.detailedMessage;
80
+ this.requestId = opts.requestId;
81
+ this.code = opts.code;
82
+ }
83
+ }
84
+ export class FailureByQueryException extends __BaseException {
85
+ constructor(opts) {
86
+ super({
87
+ name: "FailureByQueryException",
88
+ $fault: "server",
89
+ ...opts,
90
+ });
91
+ this.name = "FailureByQueryException";
92
+ this.$fault = "server";
93
+ this.$retryable = {};
94
+ Object.setPrototypeOf(this, FailureByQueryException.prototype);
95
+ this.detailedMessage = opts.detailedMessage;
96
+ this.requestId = opts.requestId;
97
+ this.code = opts.code;
98
+ }
99
+ }
100
+ export class IllegalArgumentException extends __BaseException {
101
+ constructor(opts) {
102
+ super({
103
+ name: "IllegalArgumentException",
104
+ $fault: "client",
105
+ ...opts,
106
+ });
107
+ this.name = "IllegalArgumentException";
108
+ this.$fault = "client";
109
+ Object.setPrototypeOf(this, IllegalArgumentException.prototype);
110
+ this.detailedMessage = opts.detailedMessage;
111
+ this.requestId = opts.requestId;
112
+ this.code = opts.code;
113
+ }
114
+ }
115
+ export class InvalidArgumentException extends __BaseException {
116
+ constructor(opts) {
117
+ super({
118
+ name: "InvalidArgumentException",
119
+ $fault: "client",
120
+ ...opts,
121
+ });
122
+ this.name = "InvalidArgumentException";
123
+ this.$fault = "client";
124
+ Object.setPrototypeOf(this, InvalidArgumentException.prototype);
125
+ this.detailedMessage = opts.detailedMessage;
126
+ this.requestId = opts.requestId;
127
+ this.code = opts.code;
128
+ }
129
+ }
130
+ export class InvalidParameterException extends __BaseException {
131
+ constructor(opts) {
132
+ super({
133
+ name: "InvalidParameterException",
134
+ $fault: "client",
135
+ ...opts,
136
+ });
137
+ this.name = "InvalidParameterException";
138
+ this.$fault = "client";
139
+ Object.setPrototypeOf(this, InvalidParameterException.prototype);
140
+ this.detailedMessage = opts.detailedMessage;
141
+ this.requestId = opts.requestId;
142
+ this.code = opts.code;
143
+ }
144
+ }
145
+ export class MissingParameterException extends __BaseException {
146
+ constructor(opts) {
147
+ super({
148
+ name: "MissingParameterException",
149
+ $fault: "client",
150
+ ...opts,
151
+ });
152
+ this.name = "MissingParameterException";
153
+ this.$fault = "client";
154
+ Object.setPrototypeOf(this, MissingParameterException.prototype);
155
+ this.detailedMessage = opts.detailedMessage;
156
+ this.requestId = opts.requestId;
157
+ this.code = opts.code;
158
+ }
159
+ }
160
+ export class ParsingException extends __BaseException {
161
+ constructor(opts) {
162
+ super({
163
+ name: "ParsingException",
164
+ $fault: "client",
165
+ ...opts,
166
+ });
167
+ this.name = "ParsingException";
168
+ this.$fault = "client";
169
+ Object.setPrototypeOf(this, ParsingException.prototype);
170
+ this.detailedMessage = opts.detailedMessage;
171
+ this.requestId = opts.requestId;
172
+ this.code = opts.code;
173
+ }
174
+ }
175
+ export class PreconditionsFailedException extends __BaseException {
176
+ constructor(opts) {
177
+ super({
178
+ name: "PreconditionsFailedException",
179
+ $fault: "client",
180
+ ...opts,
181
+ });
182
+ this.name = "PreconditionsFailedException";
183
+ this.$fault = "client";
184
+ Object.setPrototypeOf(this, PreconditionsFailedException.prototype);
185
+ this.detailedMessage = opts.detailedMessage;
186
+ this.requestId = opts.requestId;
187
+ this.code = opts.code;
188
+ }
189
+ }
190
+ export class TimeLimitExceededException extends __BaseException {
191
+ constructor(opts) {
192
+ super({
193
+ name: "TimeLimitExceededException",
194
+ $fault: "server",
195
+ ...opts,
196
+ });
197
+ this.name = "TimeLimitExceededException";
198
+ this.$fault = "server";
199
+ this.$retryable = {};
200
+ Object.setPrototypeOf(this, TimeLimitExceededException.prototype);
201
+ this.detailedMessage = opts.detailedMessage;
202
+ this.requestId = opts.requestId;
203
+ this.code = opts.code;
204
+ }
205
+ }
206
+ export class TooManyRequestsException extends __BaseException {
207
+ constructor(opts) {
208
+ super({
209
+ name: "TooManyRequestsException",
210
+ $fault: "client",
211
+ ...opts,
212
+ });
213
+ this.name = "TooManyRequestsException";
214
+ this.$fault = "client";
215
+ this.$retryable = {};
216
+ Object.setPrototypeOf(this, TooManyRequestsException.prototype);
217
+ this.detailedMessage = opts.detailedMessage;
218
+ this.requestId = opts.requestId;
219
+ this.code = opts.code;
220
+ }
221
+ }
222
+ export class UnsupportedOperationException extends __BaseException {
223
+ constructor(opts) {
224
+ super({
225
+ name: "UnsupportedOperationException",
226
+ $fault: "client",
227
+ ...opts,
228
+ });
229
+ this.name = "UnsupportedOperationException";
230
+ this.$fault = "client";
231
+ Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
232
+ this.detailedMessage = opts.detailedMessage;
233
+ this.requestId = opts.requestId;
234
+ this.code = opts.code;
235
+ }
236
+ }
237
+ export class BulkLoadIdNotFoundException extends __BaseException {
238
+ constructor(opts) {
239
+ super({
240
+ name: "BulkLoadIdNotFoundException",
241
+ $fault: "client",
242
+ ...opts,
243
+ });
244
+ this.name = "BulkLoadIdNotFoundException";
245
+ this.$fault = "client";
246
+ this.$retryable = {};
247
+ Object.setPrototypeOf(this, BulkLoadIdNotFoundException.prototype);
248
+ this.detailedMessage = opts.detailedMessage;
249
+ this.requestId = opts.requestId;
250
+ this.code = opts.code;
251
+ }
252
+ }
253
+ export class InternalFailureException extends __BaseException {
254
+ constructor(opts) {
255
+ super({
256
+ name: "InternalFailureException",
257
+ $fault: "server",
258
+ ...opts,
259
+ });
260
+ this.name = "InternalFailureException";
261
+ this.$fault = "server";
262
+ Object.setPrototypeOf(this, InternalFailureException.prototype);
263
+ this.detailedMessage = opts.detailedMessage;
264
+ this.requestId = opts.requestId;
265
+ this.code = opts.code;
266
+ }
267
+ }
268
+ export class LoadUrlAccessDeniedException extends __BaseException {
269
+ constructor(opts) {
270
+ super({
271
+ name: "LoadUrlAccessDeniedException",
272
+ $fault: "client",
273
+ ...opts,
274
+ });
275
+ this.name = "LoadUrlAccessDeniedException";
276
+ this.$fault = "client";
277
+ Object.setPrototypeOf(this, LoadUrlAccessDeniedException.prototype);
278
+ this.detailedMessage = opts.detailedMessage;
279
+ this.requestId = opts.requestId;
280
+ this.code = opts.code;
281
+ }
282
+ }
283
+ export class MLResourceNotFoundException extends __BaseException {
284
+ constructor(opts) {
285
+ super({
286
+ name: "MLResourceNotFoundException",
287
+ $fault: "client",
288
+ ...opts,
289
+ });
290
+ this.name = "MLResourceNotFoundException";
291
+ this.$fault = "client";
292
+ Object.setPrototypeOf(this, MLResourceNotFoundException.prototype);
293
+ this.detailedMessage = opts.detailedMessage;
294
+ this.requestId = opts.requestId;
295
+ this.code = opts.code;
296
+ }
297
+ }
298
+ export class InvalidNumericDataException extends __BaseException {
299
+ constructor(opts) {
300
+ super({
301
+ name: "InvalidNumericDataException",
302
+ $fault: "client",
303
+ ...opts,
304
+ });
305
+ this.name = "InvalidNumericDataException";
306
+ this.$fault = "client";
307
+ Object.setPrototypeOf(this, InvalidNumericDataException.prototype);
308
+ this.detailedMessage = opts.detailedMessage;
309
+ this.requestId = opts.requestId;
310
+ this.code = opts.code;
311
+ }
312
+ }
313
+ export class ReadOnlyViolationException extends __BaseException {
314
+ constructor(opts) {
315
+ super({
316
+ name: "ReadOnlyViolationException",
317
+ $fault: "client",
318
+ ...opts,
319
+ });
320
+ this.name = "ReadOnlyViolationException";
321
+ this.$fault = "client";
322
+ Object.setPrototypeOf(this, ReadOnlyViolationException.prototype);
323
+ this.detailedMessage = opts.detailedMessage;
324
+ this.requestId = opts.requestId;
325
+ this.code = opts.code;
326
+ }
327
+ }
328
+ export class StatisticsNotAvailableException extends __BaseException {
329
+ constructor(opts) {
330
+ super({
331
+ name: "StatisticsNotAvailableException",
332
+ $fault: "client",
333
+ ...opts,
334
+ });
335
+ this.name = "StatisticsNotAvailableException";
336
+ this.$fault = "client";
337
+ Object.setPrototypeOf(this, StatisticsNotAvailableException.prototype);
338
+ this.detailedMessage = opts.detailedMessage;
339
+ this.requestId = opts.requestId;
340
+ this.code = opts.code;
341
+ }
342
+ }
343
+ export class MethodNotAllowedException extends __BaseException {
344
+ constructor(opts) {
345
+ super({
346
+ name: "MethodNotAllowedException",
347
+ $fault: "client",
348
+ ...opts,
349
+ });
350
+ this.name = "MethodNotAllowedException";
351
+ this.$fault = "client";
352
+ Object.setPrototypeOf(this, MethodNotAllowedException.prototype);
353
+ this.detailedMessage = opts.detailedMessage;
354
+ this.requestId = opts.requestId;
355
+ this.code = opts.code;
356
+ }
357
+ }
358
+ export class ServerShutdownException extends __BaseException {
359
+ constructor(opts) {
360
+ super({
361
+ name: "ServerShutdownException",
362
+ $fault: "server",
363
+ ...opts,
364
+ });
365
+ this.name = "ServerShutdownException";
366
+ this.$fault = "server";
367
+ Object.setPrototypeOf(this, ServerShutdownException.prototype);
368
+ this.detailedMessage = opts.detailedMessage;
369
+ this.requestId = opts.requestId;
370
+ this.code = opts.code;
371
+ }
372
+ }
373
+ export class CancelledByUserException extends __BaseException {
374
+ constructor(opts) {
375
+ super({
376
+ name: "CancelledByUserException",
377
+ $fault: "server",
378
+ ...opts,
379
+ });
380
+ this.name = "CancelledByUserException";
381
+ this.$fault = "server";
382
+ this.$retryable = {};
383
+ Object.setPrototypeOf(this, CancelledByUserException.prototype);
384
+ this.detailedMessage = opts.detailedMessage;
385
+ this.requestId = opts.requestId;
386
+ this.code = opts.code;
387
+ }
388
+ }
389
+ export class MalformedQueryException extends __BaseException {
390
+ constructor(opts) {
391
+ super({
392
+ name: "MalformedQueryException",
393
+ $fault: "client",
394
+ ...opts,
395
+ });
396
+ this.name = "MalformedQueryException";
397
+ this.$fault = "client";
398
+ Object.setPrototypeOf(this, MalformedQueryException.prototype);
399
+ this.detailedMessage = opts.detailedMessage;
400
+ this.requestId = opts.requestId;
401
+ this.code = opts.code;
402
+ }
403
+ }
404
+ export class MemoryLimitExceededException extends __BaseException {
405
+ constructor(opts) {
406
+ super({
407
+ name: "MemoryLimitExceededException",
408
+ $fault: "server",
409
+ ...opts,
410
+ });
411
+ this.name = "MemoryLimitExceededException";
412
+ this.$fault = "server";
413
+ this.$retryable = {};
414
+ Object.setPrototypeOf(this, MemoryLimitExceededException.prototype);
415
+ this.detailedMessage = opts.detailedMessage;
416
+ this.requestId = opts.requestId;
417
+ this.code = opts.code;
418
+ }
419
+ }
420
+ export class QueryLimitExceededException extends __BaseException {
421
+ constructor(opts) {
422
+ super({
423
+ name: "QueryLimitExceededException",
424
+ $fault: "server",
425
+ ...opts,
426
+ });
427
+ this.name = "QueryLimitExceededException";
428
+ this.$fault = "server";
429
+ this.$retryable = {};
430
+ Object.setPrototypeOf(this, QueryLimitExceededException.prototype);
431
+ this.detailedMessage = opts.detailedMessage;
432
+ this.requestId = opts.requestId;
433
+ this.code = opts.code;
434
+ }
435
+ }
436
+ export class QueryLimitException extends __BaseException {
437
+ constructor(opts) {
438
+ super({
439
+ name: "QueryLimitException",
440
+ $fault: "client",
441
+ ...opts,
442
+ });
443
+ this.name = "QueryLimitException";
444
+ this.$fault = "client";
445
+ Object.setPrototypeOf(this, QueryLimitException.prototype);
446
+ this.detailedMessage = opts.detailedMessage;
447
+ this.requestId = opts.requestId;
448
+ this.code = opts.code;
449
+ }
450
+ }
451
+ export class QueryTooLargeException extends __BaseException {
452
+ constructor(opts) {
453
+ super({
454
+ name: "QueryTooLargeException",
455
+ $fault: "client",
456
+ ...opts,
457
+ });
458
+ this.name = "QueryTooLargeException";
459
+ this.$fault = "client";
460
+ Object.setPrototypeOf(this, QueryTooLargeException.prototype);
461
+ this.detailedMessage = opts.detailedMessage;
462
+ this.requestId = opts.requestId;
463
+ this.code = opts.code;
464
+ }
465
+ }
466
+ export const OpenCypherExplainMode = {
467
+ DETAILS: "details",
468
+ DYNAMIC: "dynamic",
469
+ STATIC: "static",
470
+ };
471
+ export class ExpiredStreamException extends __BaseException {
472
+ constructor(opts) {
473
+ super({
474
+ name: "ExpiredStreamException",
475
+ $fault: "client",
476
+ ...opts,
477
+ });
478
+ this.name = "ExpiredStreamException";
479
+ this.$fault = "client";
480
+ Object.setPrototypeOf(this, ExpiredStreamException.prototype);
481
+ this.detailedMessage = opts.detailedMessage;
482
+ this.requestId = opts.requestId;
483
+ this.code = opts.code;
484
+ }
485
+ }
486
+ export const Encoding = {
487
+ GZIP: "gzip",
488
+ };
489
+ export const IteratorType = {
490
+ AFTER_SEQUENCE_NUMBER: "AFTER_SEQUENCE_NUMBER",
491
+ AT_SEQUENCE_NUMBER: "AT_SEQUENCE_NUMBER",
492
+ LATEST: "LATEST",
493
+ TRIM_HORIZON: "TRIM_HORIZON",
494
+ };
495
+ export class StreamRecordsNotFoundException extends __BaseException {
496
+ constructor(opts) {
497
+ super({
498
+ name: "StreamRecordsNotFoundException",
499
+ $fault: "client",
500
+ ...opts,
501
+ });
502
+ this.name = "StreamRecordsNotFoundException";
503
+ this.$fault = "client";
504
+ Object.setPrototypeOf(this, StreamRecordsNotFoundException.prototype);
505
+ this.detailedMessage = opts.detailedMessage;
506
+ this.requestId = opts.requestId;
507
+ this.code = opts.code;
508
+ }
509
+ }
510
+ export class ThrottlingException extends __BaseException {
511
+ constructor(opts) {
512
+ super({
513
+ name: "ThrottlingException",
514
+ $fault: "server",
515
+ ...opts,
516
+ });
517
+ this.name = "ThrottlingException";
518
+ this.$fault = "server";
519
+ this.$retryable = {};
520
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
521
+ this.detailedMessage = opts.detailedMessage;
522
+ this.requestId = opts.requestId;
523
+ this.code = opts.code;
524
+ }
525
+ }
526
+ export const GraphSummaryType = {
527
+ BASIC: "basic",
528
+ DETAILED: "detailed",
529
+ };
530
+ export const StatisticsAutoGenerationMode = {
531
+ DISABLE_AUTOCOMPUTE: "disableAutoCompute",
532
+ ENABLE_AUTOCOMPUTE: "enableAutoCompute",
533
+ REFRESH: "refresh",
534
+ };
535
+ export class S3Exception extends __BaseException {
536
+ constructor(opts) {
537
+ super({
538
+ name: "S3Exception",
539
+ $fault: "client",
540
+ ...opts,
541
+ });
542
+ this.name = "S3Exception";
543
+ this.$fault = "client";
544
+ this.$retryable = {};
545
+ Object.setPrototypeOf(this, S3Exception.prototype);
546
+ this.detailedMessage = opts.detailedMessage;
547
+ this.requestId = opts.requestId;
548
+ this.code = opts.code;
549
+ }
550
+ }
551
+ export const Format = {
552
+ CSV: "csv",
553
+ NQUADS: "nquads",
554
+ NTRIPLES: "ntriples",
555
+ OPENCYPHER: "opencypher",
556
+ RDFXML: "rdfxml",
557
+ TURTLE: "turtle",
558
+ };
559
+ export const Mode = {
560
+ AUTO: "AUTO",
561
+ NEW: "NEW",
562
+ RESUME: "RESUME",
563
+ };
564
+ export const Parallelism = {
565
+ HIGH: "HIGH",
566
+ LOW: "LOW",
567
+ MEDIUM: "MEDIUM",
568
+ OVERSUBSCRIBE: "OVERSUBSCRIBE",
569
+ };
570
+ export const S3BucketRegion = {
571
+ AF_SOUTH_1: "af-south-1",
572
+ AP_EAST_1: "ap-east-1",
573
+ AP_NORTHEAST_1: "ap-northeast-1",
574
+ AP_NORTHEAST_2: "ap-northeast-2",
575
+ AP_SOUTHEAST_1: "ap-southeast-1",
576
+ AP_SOUTHEAST_2: "ap-southeast-2",
577
+ AP_SOUTH_1: "ap-south-1",
578
+ CA_CENTRAL_1: "ca-central-1",
579
+ CN_NORTHWEST_1: "cn-northwest-1",
580
+ CN_NORTH_1: "cn-north-1",
581
+ EU_CENTRAL_1: "eu-central-1",
582
+ EU_NORTH_1: "eu-north-1",
583
+ EU_WEST_1: "eu-west-1",
584
+ EU_WEST_2: "eu-west-2",
585
+ EU_WEST_3: "eu-west-3",
586
+ ME_SOUTH_1: "me-south-1",
587
+ SA_EAST_1: "sa-east-1",
588
+ US_EAST_1: "us-east-1",
589
+ US_EAST_2: "us-east-2",
590
+ US_GOV_EAST_1: "us-gov-east-1",
591
+ US_GOV_WEST_1: "us-gov-west-1",
592
+ US_WEST_1: "us-west-1",
593
+ US_WEST_2: "us-west-2",
594
+ };