@aws-sdk/client-neptunedata 3.987.0 → 3.989.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.
- package/dist-cjs/index.js +62 -2183
- package/dist-cjs/models/NeptunedataServiceException.js +12 -0
- package/dist-cjs/models/errors.js +661 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1318 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +226 -220
- package/dist-types/schemas/schemas_0.d.ts +39 -32
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +34 -32
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var NeptunedataServiceException = require('./models/NeptunedataServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1927 +113,6 @@ class NeptunedataClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class NeptunedataServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, NeptunedataServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends NeptunedataServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
detailedMessage;
|
|
124
|
-
requestId;
|
|
125
|
-
code;
|
|
126
|
-
constructor(opts) {
|
|
127
|
-
super({
|
|
128
|
-
name: "AccessDeniedException",
|
|
129
|
-
$fault: "client",
|
|
130
|
-
...opts,
|
|
131
|
-
});
|
|
132
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
133
|
-
this.detailedMessage = opts.detailedMessage;
|
|
134
|
-
this.requestId = opts.requestId;
|
|
135
|
-
this.code = opts.code;
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
class BadRequestException extends NeptunedataServiceException {
|
|
139
|
-
name = "BadRequestException";
|
|
140
|
-
$fault = "client";
|
|
141
|
-
detailedMessage;
|
|
142
|
-
requestId;
|
|
143
|
-
code;
|
|
144
|
-
constructor(opts) {
|
|
145
|
-
super({
|
|
146
|
-
name: "BadRequestException",
|
|
147
|
-
$fault: "client",
|
|
148
|
-
...opts,
|
|
149
|
-
});
|
|
150
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
151
|
-
this.detailedMessage = opts.detailedMessage;
|
|
152
|
-
this.requestId = opts.requestId;
|
|
153
|
-
this.code = opts.code;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class ClientTimeoutException extends NeptunedataServiceException {
|
|
157
|
-
name = "ClientTimeoutException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
$retryable = {};
|
|
160
|
-
detailedMessage;
|
|
161
|
-
requestId;
|
|
162
|
-
code;
|
|
163
|
-
constructor(opts) {
|
|
164
|
-
super({
|
|
165
|
-
name: "ClientTimeoutException",
|
|
166
|
-
$fault: "client",
|
|
167
|
-
...opts,
|
|
168
|
-
});
|
|
169
|
-
Object.setPrototypeOf(this, ClientTimeoutException.prototype);
|
|
170
|
-
this.detailedMessage = opts.detailedMessage;
|
|
171
|
-
this.requestId = opts.requestId;
|
|
172
|
-
this.code = opts.code;
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
class ConcurrentModificationException extends NeptunedataServiceException {
|
|
176
|
-
name = "ConcurrentModificationException";
|
|
177
|
-
$fault = "server";
|
|
178
|
-
$retryable = {};
|
|
179
|
-
detailedMessage;
|
|
180
|
-
requestId;
|
|
181
|
-
code;
|
|
182
|
-
constructor(opts) {
|
|
183
|
-
super({
|
|
184
|
-
name: "ConcurrentModificationException",
|
|
185
|
-
$fault: "server",
|
|
186
|
-
...opts,
|
|
187
|
-
});
|
|
188
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
189
|
-
this.detailedMessage = opts.detailedMessage;
|
|
190
|
-
this.requestId = opts.requestId;
|
|
191
|
-
this.code = opts.code;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
class ConstraintViolationException extends NeptunedataServiceException {
|
|
195
|
-
name = "ConstraintViolationException";
|
|
196
|
-
$fault = "client";
|
|
197
|
-
$retryable = {};
|
|
198
|
-
detailedMessage;
|
|
199
|
-
requestId;
|
|
200
|
-
code;
|
|
201
|
-
constructor(opts) {
|
|
202
|
-
super({
|
|
203
|
-
name: "ConstraintViolationException",
|
|
204
|
-
$fault: "client",
|
|
205
|
-
...opts,
|
|
206
|
-
});
|
|
207
|
-
Object.setPrototypeOf(this, ConstraintViolationException.prototype);
|
|
208
|
-
this.detailedMessage = opts.detailedMessage;
|
|
209
|
-
this.requestId = opts.requestId;
|
|
210
|
-
this.code = opts.code;
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
class FailureByQueryException extends NeptunedataServiceException {
|
|
214
|
-
name = "FailureByQueryException";
|
|
215
|
-
$fault = "server";
|
|
216
|
-
$retryable = {};
|
|
217
|
-
detailedMessage;
|
|
218
|
-
requestId;
|
|
219
|
-
code;
|
|
220
|
-
constructor(opts) {
|
|
221
|
-
super({
|
|
222
|
-
name: "FailureByQueryException",
|
|
223
|
-
$fault: "server",
|
|
224
|
-
...opts,
|
|
225
|
-
});
|
|
226
|
-
Object.setPrototypeOf(this, FailureByQueryException.prototype);
|
|
227
|
-
this.detailedMessage = opts.detailedMessage;
|
|
228
|
-
this.requestId = opts.requestId;
|
|
229
|
-
this.code = opts.code;
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
class IllegalArgumentException extends NeptunedataServiceException {
|
|
233
|
-
name = "IllegalArgumentException";
|
|
234
|
-
$fault = "client";
|
|
235
|
-
detailedMessage;
|
|
236
|
-
requestId;
|
|
237
|
-
code;
|
|
238
|
-
constructor(opts) {
|
|
239
|
-
super({
|
|
240
|
-
name: "IllegalArgumentException",
|
|
241
|
-
$fault: "client",
|
|
242
|
-
...opts,
|
|
243
|
-
});
|
|
244
|
-
Object.setPrototypeOf(this, IllegalArgumentException.prototype);
|
|
245
|
-
this.detailedMessage = opts.detailedMessage;
|
|
246
|
-
this.requestId = opts.requestId;
|
|
247
|
-
this.code = opts.code;
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
class InvalidArgumentException extends NeptunedataServiceException {
|
|
251
|
-
name = "InvalidArgumentException";
|
|
252
|
-
$fault = "client";
|
|
253
|
-
detailedMessage;
|
|
254
|
-
requestId;
|
|
255
|
-
code;
|
|
256
|
-
constructor(opts) {
|
|
257
|
-
super({
|
|
258
|
-
name: "InvalidArgumentException",
|
|
259
|
-
$fault: "client",
|
|
260
|
-
...opts,
|
|
261
|
-
});
|
|
262
|
-
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
263
|
-
this.detailedMessage = opts.detailedMessage;
|
|
264
|
-
this.requestId = opts.requestId;
|
|
265
|
-
this.code = opts.code;
|
|
266
|
-
}
|
|
267
|
-
}
|
|
268
|
-
class InvalidParameterException extends NeptunedataServiceException {
|
|
269
|
-
name = "InvalidParameterException";
|
|
270
|
-
$fault = "client";
|
|
271
|
-
detailedMessage;
|
|
272
|
-
requestId;
|
|
273
|
-
code;
|
|
274
|
-
constructor(opts) {
|
|
275
|
-
super({
|
|
276
|
-
name: "InvalidParameterException",
|
|
277
|
-
$fault: "client",
|
|
278
|
-
...opts,
|
|
279
|
-
});
|
|
280
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
281
|
-
this.detailedMessage = opts.detailedMessage;
|
|
282
|
-
this.requestId = opts.requestId;
|
|
283
|
-
this.code = opts.code;
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
class MissingParameterException extends NeptunedataServiceException {
|
|
287
|
-
name = "MissingParameterException";
|
|
288
|
-
$fault = "client";
|
|
289
|
-
detailedMessage;
|
|
290
|
-
requestId;
|
|
291
|
-
code;
|
|
292
|
-
constructor(opts) {
|
|
293
|
-
super({
|
|
294
|
-
name: "MissingParameterException",
|
|
295
|
-
$fault: "client",
|
|
296
|
-
...opts,
|
|
297
|
-
});
|
|
298
|
-
Object.setPrototypeOf(this, MissingParameterException.prototype);
|
|
299
|
-
this.detailedMessage = opts.detailedMessage;
|
|
300
|
-
this.requestId = opts.requestId;
|
|
301
|
-
this.code = opts.code;
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
class ParsingException extends NeptunedataServiceException {
|
|
305
|
-
name = "ParsingException";
|
|
306
|
-
$fault = "client";
|
|
307
|
-
detailedMessage;
|
|
308
|
-
requestId;
|
|
309
|
-
code;
|
|
310
|
-
constructor(opts) {
|
|
311
|
-
super({
|
|
312
|
-
name: "ParsingException",
|
|
313
|
-
$fault: "client",
|
|
314
|
-
...opts,
|
|
315
|
-
});
|
|
316
|
-
Object.setPrototypeOf(this, ParsingException.prototype);
|
|
317
|
-
this.detailedMessage = opts.detailedMessage;
|
|
318
|
-
this.requestId = opts.requestId;
|
|
319
|
-
this.code = opts.code;
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
class PreconditionsFailedException extends NeptunedataServiceException {
|
|
323
|
-
name = "PreconditionsFailedException";
|
|
324
|
-
$fault = "client";
|
|
325
|
-
detailedMessage;
|
|
326
|
-
requestId;
|
|
327
|
-
code;
|
|
328
|
-
constructor(opts) {
|
|
329
|
-
super({
|
|
330
|
-
name: "PreconditionsFailedException",
|
|
331
|
-
$fault: "client",
|
|
332
|
-
...opts,
|
|
333
|
-
});
|
|
334
|
-
Object.setPrototypeOf(this, PreconditionsFailedException.prototype);
|
|
335
|
-
this.detailedMessage = opts.detailedMessage;
|
|
336
|
-
this.requestId = opts.requestId;
|
|
337
|
-
this.code = opts.code;
|
|
338
|
-
}
|
|
339
|
-
}
|
|
340
|
-
class TimeLimitExceededException extends NeptunedataServiceException {
|
|
341
|
-
name = "TimeLimitExceededException";
|
|
342
|
-
$fault = "server";
|
|
343
|
-
$retryable = {};
|
|
344
|
-
detailedMessage;
|
|
345
|
-
requestId;
|
|
346
|
-
code;
|
|
347
|
-
constructor(opts) {
|
|
348
|
-
super({
|
|
349
|
-
name: "TimeLimitExceededException",
|
|
350
|
-
$fault: "server",
|
|
351
|
-
...opts,
|
|
352
|
-
});
|
|
353
|
-
Object.setPrototypeOf(this, TimeLimitExceededException.prototype);
|
|
354
|
-
this.detailedMessage = opts.detailedMessage;
|
|
355
|
-
this.requestId = opts.requestId;
|
|
356
|
-
this.code = opts.code;
|
|
357
|
-
}
|
|
358
|
-
}
|
|
359
|
-
class TooManyRequestsException extends NeptunedataServiceException {
|
|
360
|
-
name = "TooManyRequestsException";
|
|
361
|
-
$fault = "client";
|
|
362
|
-
$retryable = {};
|
|
363
|
-
detailedMessage;
|
|
364
|
-
requestId;
|
|
365
|
-
code;
|
|
366
|
-
constructor(opts) {
|
|
367
|
-
super({
|
|
368
|
-
name: "TooManyRequestsException",
|
|
369
|
-
$fault: "client",
|
|
370
|
-
...opts,
|
|
371
|
-
});
|
|
372
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
373
|
-
this.detailedMessage = opts.detailedMessage;
|
|
374
|
-
this.requestId = opts.requestId;
|
|
375
|
-
this.code = opts.code;
|
|
376
|
-
}
|
|
377
|
-
}
|
|
378
|
-
class UnsupportedOperationException extends NeptunedataServiceException {
|
|
379
|
-
name = "UnsupportedOperationException";
|
|
380
|
-
$fault = "client";
|
|
381
|
-
detailedMessage;
|
|
382
|
-
requestId;
|
|
383
|
-
code;
|
|
384
|
-
constructor(opts) {
|
|
385
|
-
super({
|
|
386
|
-
name: "UnsupportedOperationException",
|
|
387
|
-
$fault: "client",
|
|
388
|
-
...opts,
|
|
389
|
-
});
|
|
390
|
-
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
391
|
-
this.detailedMessage = opts.detailedMessage;
|
|
392
|
-
this.requestId = opts.requestId;
|
|
393
|
-
this.code = opts.code;
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
class BulkLoadIdNotFoundException extends NeptunedataServiceException {
|
|
397
|
-
name = "BulkLoadIdNotFoundException";
|
|
398
|
-
$fault = "client";
|
|
399
|
-
$retryable = {};
|
|
400
|
-
detailedMessage;
|
|
401
|
-
requestId;
|
|
402
|
-
code;
|
|
403
|
-
constructor(opts) {
|
|
404
|
-
super({
|
|
405
|
-
name: "BulkLoadIdNotFoundException",
|
|
406
|
-
$fault: "client",
|
|
407
|
-
...opts,
|
|
408
|
-
});
|
|
409
|
-
Object.setPrototypeOf(this, BulkLoadIdNotFoundException.prototype);
|
|
410
|
-
this.detailedMessage = opts.detailedMessage;
|
|
411
|
-
this.requestId = opts.requestId;
|
|
412
|
-
this.code = opts.code;
|
|
413
|
-
}
|
|
414
|
-
}
|
|
415
|
-
class InternalFailureException extends NeptunedataServiceException {
|
|
416
|
-
name = "InternalFailureException";
|
|
417
|
-
$fault = "server";
|
|
418
|
-
detailedMessage;
|
|
419
|
-
requestId;
|
|
420
|
-
code;
|
|
421
|
-
constructor(opts) {
|
|
422
|
-
super({
|
|
423
|
-
name: "InternalFailureException",
|
|
424
|
-
$fault: "server",
|
|
425
|
-
...opts,
|
|
426
|
-
});
|
|
427
|
-
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
428
|
-
this.detailedMessage = opts.detailedMessage;
|
|
429
|
-
this.requestId = opts.requestId;
|
|
430
|
-
this.code = opts.code;
|
|
431
|
-
}
|
|
432
|
-
}
|
|
433
|
-
class LoadUrlAccessDeniedException extends NeptunedataServiceException {
|
|
434
|
-
name = "LoadUrlAccessDeniedException";
|
|
435
|
-
$fault = "client";
|
|
436
|
-
detailedMessage;
|
|
437
|
-
requestId;
|
|
438
|
-
code;
|
|
439
|
-
constructor(opts) {
|
|
440
|
-
super({
|
|
441
|
-
name: "LoadUrlAccessDeniedException",
|
|
442
|
-
$fault: "client",
|
|
443
|
-
...opts,
|
|
444
|
-
});
|
|
445
|
-
Object.setPrototypeOf(this, LoadUrlAccessDeniedException.prototype);
|
|
446
|
-
this.detailedMessage = opts.detailedMessage;
|
|
447
|
-
this.requestId = opts.requestId;
|
|
448
|
-
this.code = opts.code;
|
|
449
|
-
}
|
|
450
|
-
}
|
|
451
|
-
class MLResourceNotFoundException extends NeptunedataServiceException {
|
|
452
|
-
name = "MLResourceNotFoundException";
|
|
453
|
-
$fault = "client";
|
|
454
|
-
detailedMessage;
|
|
455
|
-
requestId;
|
|
456
|
-
code;
|
|
457
|
-
constructor(opts) {
|
|
458
|
-
super({
|
|
459
|
-
name: "MLResourceNotFoundException",
|
|
460
|
-
$fault: "client",
|
|
461
|
-
...opts,
|
|
462
|
-
});
|
|
463
|
-
Object.setPrototypeOf(this, MLResourceNotFoundException.prototype);
|
|
464
|
-
this.detailedMessage = opts.detailedMessage;
|
|
465
|
-
this.requestId = opts.requestId;
|
|
466
|
-
this.code = opts.code;
|
|
467
|
-
}
|
|
468
|
-
}
|
|
469
|
-
class InvalidNumericDataException extends NeptunedataServiceException {
|
|
470
|
-
name = "InvalidNumericDataException";
|
|
471
|
-
$fault = "client";
|
|
472
|
-
detailedMessage;
|
|
473
|
-
requestId;
|
|
474
|
-
code;
|
|
475
|
-
constructor(opts) {
|
|
476
|
-
super({
|
|
477
|
-
name: "InvalidNumericDataException",
|
|
478
|
-
$fault: "client",
|
|
479
|
-
...opts,
|
|
480
|
-
});
|
|
481
|
-
Object.setPrototypeOf(this, InvalidNumericDataException.prototype);
|
|
482
|
-
this.detailedMessage = opts.detailedMessage;
|
|
483
|
-
this.requestId = opts.requestId;
|
|
484
|
-
this.code = opts.code;
|
|
485
|
-
}
|
|
486
|
-
}
|
|
487
|
-
class ReadOnlyViolationException extends NeptunedataServiceException {
|
|
488
|
-
name = "ReadOnlyViolationException";
|
|
489
|
-
$fault = "client";
|
|
490
|
-
detailedMessage;
|
|
491
|
-
requestId;
|
|
492
|
-
code;
|
|
493
|
-
constructor(opts) {
|
|
494
|
-
super({
|
|
495
|
-
name: "ReadOnlyViolationException",
|
|
496
|
-
$fault: "client",
|
|
497
|
-
...opts,
|
|
498
|
-
});
|
|
499
|
-
Object.setPrototypeOf(this, ReadOnlyViolationException.prototype);
|
|
500
|
-
this.detailedMessage = opts.detailedMessage;
|
|
501
|
-
this.requestId = opts.requestId;
|
|
502
|
-
this.code = opts.code;
|
|
503
|
-
}
|
|
504
|
-
}
|
|
505
|
-
class StatisticsNotAvailableException extends NeptunedataServiceException {
|
|
506
|
-
name = "StatisticsNotAvailableException";
|
|
507
|
-
$fault = "client";
|
|
508
|
-
detailedMessage;
|
|
509
|
-
requestId;
|
|
510
|
-
code;
|
|
511
|
-
constructor(opts) {
|
|
512
|
-
super({
|
|
513
|
-
name: "StatisticsNotAvailableException",
|
|
514
|
-
$fault: "client",
|
|
515
|
-
...opts,
|
|
516
|
-
});
|
|
517
|
-
Object.setPrototypeOf(this, StatisticsNotAvailableException.prototype);
|
|
518
|
-
this.detailedMessage = opts.detailedMessage;
|
|
519
|
-
this.requestId = opts.requestId;
|
|
520
|
-
this.code = opts.code;
|
|
521
|
-
}
|
|
522
|
-
}
|
|
523
|
-
class MethodNotAllowedException extends NeptunedataServiceException {
|
|
524
|
-
name = "MethodNotAllowedException";
|
|
525
|
-
$fault = "client";
|
|
526
|
-
detailedMessage;
|
|
527
|
-
requestId;
|
|
528
|
-
code;
|
|
529
|
-
constructor(opts) {
|
|
530
|
-
super({
|
|
531
|
-
name: "MethodNotAllowedException",
|
|
532
|
-
$fault: "client",
|
|
533
|
-
...opts,
|
|
534
|
-
});
|
|
535
|
-
Object.setPrototypeOf(this, MethodNotAllowedException.prototype);
|
|
536
|
-
this.detailedMessage = opts.detailedMessage;
|
|
537
|
-
this.requestId = opts.requestId;
|
|
538
|
-
this.code = opts.code;
|
|
539
|
-
}
|
|
540
|
-
}
|
|
541
|
-
class ServerShutdownException extends NeptunedataServiceException {
|
|
542
|
-
name = "ServerShutdownException";
|
|
543
|
-
$fault = "server";
|
|
544
|
-
detailedMessage;
|
|
545
|
-
requestId;
|
|
546
|
-
code;
|
|
547
|
-
constructor(opts) {
|
|
548
|
-
super({
|
|
549
|
-
name: "ServerShutdownException",
|
|
550
|
-
$fault: "server",
|
|
551
|
-
...opts,
|
|
552
|
-
});
|
|
553
|
-
Object.setPrototypeOf(this, ServerShutdownException.prototype);
|
|
554
|
-
this.detailedMessage = opts.detailedMessage;
|
|
555
|
-
this.requestId = opts.requestId;
|
|
556
|
-
this.code = opts.code;
|
|
557
|
-
}
|
|
558
|
-
}
|
|
559
|
-
class CancelledByUserException extends NeptunedataServiceException {
|
|
560
|
-
name = "CancelledByUserException";
|
|
561
|
-
$fault = "server";
|
|
562
|
-
detailedMessage;
|
|
563
|
-
requestId;
|
|
564
|
-
code;
|
|
565
|
-
constructor(opts) {
|
|
566
|
-
super({
|
|
567
|
-
name: "CancelledByUserException",
|
|
568
|
-
$fault: "server",
|
|
569
|
-
...opts,
|
|
570
|
-
});
|
|
571
|
-
Object.setPrototypeOf(this, CancelledByUserException.prototype);
|
|
572
|
-
this.detailedMessage = opts.detailedMessage;
|
|
573
|
-
this.requestId = opts.requestId;
|
|
574
|
-
this.code = opts.code;
|
|
575
|
-
}
|
|
576
|
-
}
|
|
577
|
-
class MalformedQueryException extends NeptunedataServiceException {
|
|
578
|
-
name = "MalformedQueryException";
|
|
579
|
-
$fault = "client";
|
|
580
|
-
detailedMessage;
|
|
581
|
-
requestId;
|
|
582
|
-
code;
|
|
583
|
-
constructor(opts) {
|
|
584
|
-
super({
|
|
585
|
-
name: "MalformedQueryException",
|
|
586
|
-
$fault: "client",
|
|
587
|
-
...opts,
|
|
588
|
-
});
|
|
589
|
-
Object.setPrototypeOf(this, MalformedQueryException.prototype);
|
|
590
|
-
this.detailedMessage = opts.detailedMessage;
|
|
591
|
-
this.requestId = opts.requestId;
|
|
592
|
-
this.code = opts.code;
|
|
593
|
-
}
|
|
594
|
-
}
|
|
595
|
-
class MemoryLimitExceededException extends NeptunedataServiceException {
|
|
596
|
-
name = "MemoryLimitExceededException";
|
|
597
|
-
$fault = "server";
|
|
598
|
-
$retryable = {};
|
|
599
|
-
detailedMessage;
|
|
600
|
-
requestId;
|
|
601
|
-
code;
|
|
602
|
-
constructor(opts) {
|
|
603
|
-
super({
|
|
604
|
-
name: "MemoryLimitExceededException",
|
|
605
|
-
$fault: "server",
|
|
606
|
-
...opts,
|
|
607
|
-
});
|
|
608
|
-
Object.setPrototypeOf(this, MemoryLimitExceededException.prototype);
|
|
609
|
-
this.detailedMessage = opts.detailedMessage;
|
|
610
|
-
this.requestId = opts.requestId;
|
|
611
|
-
this.code = opts.code;
|
|
612
|
-
}
|
|
613
|
-
}
|
|
614
|
-
class QueryLimitExceededException extends NeptunedataServiceException {
|
|
615
|
-
name = "QueryLimitExceededException";
|
|
616
|
-
$fault = "server";
|
|
617
|
-
$retryable = {};
|
|
618
|
-
detailedMessage;
|
|
619
|
-
requestId;
|
|
620
|
-
code;
|
|
621
|
-
constructor(opts) {
|
|
622
|
-
super({
|
|
623
|
-
name: "QueryLimitExceededException",
|
|
624
|
-
$fault: "server",
|
|
625
|
-
...opts,
|
|
626
|
-
});
|
|
627
|
-
Object.setPrototypeOf(this, QueryLimitExceededException.prototype);
|
|
628
|
-
this.detailedMessage = opts.detailedMessage;
|
|
629
|
-
this.requestId = opts.requestId;
|
|
630
|
-
this.code = opts.code;
|
|
631
|
-
}
|
|
632
|
-
}
|
|
633
|
-
class QueryLimitException extends NeptunedataServiceException {
|
|
634
|
-
name = "QueryLimitException";
|
|
635
|
-
$fault = "client";
|
|
636
|
-
detailedMessage;
|
|
637
|
-
requestId;
|
|
638
|
-
code;
|
|
639
|
-
constructor(opts) {
|
|
640
|
-
super({
|
|
641
|
-
name: "QueryLimitException",
|
|
642
|
-
$fault: "client",
|
|
643
|
-
...opts,
|
|
644
|
-
});
|
|
645
|
-
Object.setPrototypeOf(this, QueryLimitException.prototype);
|
|
646
|
-
this.detailedMessage = opts.detailedMessage;
|
|
647
|
-
this.requestId = opts.requestId;
|
|
648
|
-
this.code = opts.code;
|
|
649
|
-
}
|
|
650
|
-
}
|
|
651
|
-
class QueryTooLargeException extends NeptunedataServiceException {
|
|
652
|
-
name = "QueryTooLargeException";
|
|
653
|
-
$fault = "client";
|
|
654
|
-
detailedMessage;
|
|
655
|
-
requestId;
|
|
656
|
-
code;
|
|
657
|
-
constructor(opts) {
|
|
658
|
-
super({
|
|
659
|
-
name: "QueryTooLargeException",
|
|
660
|
-
$fault: "client",
|
|
661
|
-
...opts,
|
|
662
|
-
});
|
|
663
|
-
Object.setPrototypeOf(this, QueryTooLargeException.prototype);
|
|
664
|
-
this.detailedMessage = opts.detailedMessage;
|
|
665
|
-
this.requestId = opts.requestId;
|
|
666
|
-
this.code = opts.code;
|
|
667
|
-
}
|
|
668
|
-
}
|
|
669
|
-
class ExpiredStreamException extends NeptunedataServiceException {
|
|
670
|
-
name = "ExpiredStreamException";
|
|
671
|
-
$fault = "client";
|
|
672
|
-
detailedMessage;
|
|
673
|
-
requestId;
|
|
674
|
-
code;
|
|
675
|
-
constructor(opts) {
|
|
676
|
-
super({
|
|
677
|
-
name: "ExpiredStreamException",
|
|
678
|
-
$fault: "client",
|
|
679
|
-
...opts,
|
|
680
|
-
});
|
|
681
|
-
Object.setPrototypeOf(this, ExpiredStreamException.prototype);
|
|
682
|
-
this.detailedMessage = opts.detailedMessage;
|
|
683
|
-
this.requestId = opts.requestId;
|
|
684
|
-
this.code = opts.code;
|
|
685
|
-
}
|
|
686
|
-
}
|
|
687
|
-
class StreamRecordsNotFoundException extends NeptunedataServiceException {
|
|
688
|
-
name = "StreamRecordsNotFoundException";
|
|
689
|
-
$fault = "client";
|
|
690
|
-
detailedMessage;
|
|
691
|
-
requestId;
|
|
692
|
-
code;
|
|
693
|
-
constructor(opts) {
|
|
694
|
-
super({
|
|
695
|
-
name: "StreamRecordsNotFoundException",
|
|
696
|
-
$fault: "client",
|
|
697
|
-
...opts,
|
|
698
|
-
});
|
|
699
|
-
Object.setPrototypeOf(this, StreamRecordsNotFoundException.prototype);
|
|
700
|
-
this.detailedMessage = opts.detailedMessage;
|
|
701
|
-
this.requestId = opts.requestId;
|
|
702
|
-
this.code = opts.code;
|
|
703
|
-
}
|
|
704
|
-
}
|
|
705
|
-
class ThrottlingException extends NeptunedataServiceException {
|
|
706
|
-
name = "ThrottlingException";
|
|
707
|
-
$fault = "server";
|
|
708
|
-
$retryable = {};
|
|
709
|
-
detailedMessage;
|
|
710
|
-
requestId;
|
|
711
|
-
code;
|
|
712
|
-
constructor(opts) {
|
|
713
|
-
super({
|
|
714
|
-
name: "ThrottlingException",
|
|
715
|
-
$fault: "server",
|
|
716
|
-
...opts,
|
|
717
|
-
});
|
|
718
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
719
|
-
this.detailedMessage = opts.detailedMessage;
|
|
720
|
-
this.requestId = opts.requestId;
|
|
721
|
-
this.code = opts.code;
|
|
722
|
-
}
|
|
723
|
-
}
|
|
724
|
-
class S3Exception extends NeptunedataServiceException {
|
|
725
|
-
name = "S3Exception";
|
|
726
|
-
$fault = "client";
|
|
727
|
-
$retryable = {};
|
|
728
|
-
detailedMessage;
|
|
729
|
-
requestId;
|
|
730
|
-
code;
|
|
731
|
-
constructor(opts) {
|
|
732
|
-
super({
|
|
733
|
-
name: "S3Exception",
|
|
734
|
-
$fault: "client",
|
|
735
|
-
...opts,
|
|
736
|
-
});
|
|
737
|
-
Object.setPrototypeOf(this, S3Exception.prototype);
|
|
738
|
-
this.detailedMessage = opts.detailedMessage;
|
|
739
|
-
this.requestId = opts.requestId;
|
|
740
|
-
this.code = opts.code;
|
|
741
|
-
}
|
|
742
|
-
}
|
|
743
|
-
|
|
744
|
-
const _ADE = "AccessDeniedException";
|
|
745
|
-
const _AE = "Accept-Encoding";
|
|
746
|
-
const _BLINFE = "BulkLoadIdNotFoundException";
|
|
747
|
-
const _BRE = "BadRequestException";
|
|
748
|
-
const _CBUE = "CancelledByUserException";
|
|
749
|
-
const _CGQ = "CancelGremlinQuery";
|
|
750
|
-
const _CGQI = "CancelGremlinQueryInput";
|
|
751
|
-
const _CGQO = "CancelGremlinQueryOutput";
|
|
752
|
-
const _CLJ = "CancelLoaderJob";
|
|
753
|
-
const _CLJI = "CancelLoaderJobInput";
|
|
754
|
-
const _CLJO = "CancelLoaderJobOutput";
|
|
755
|
-
const _CME = "ConcurrentModificationException";
|
|
756
|
-
const _CMLDPJ = "CancelMLDataProcessingJob";
|
|
757
|
-
const _CMLDPJI = "CancelMLDataProcessingJobInput";
|
|
758
|
-
const _CMLDPJO = "CancelMLDataProcessingJobOutput";
|
|
759
|
-
const _CMLE = "CreateMLEndpoint";
|
|
760
|
-
const _CMLEI = "CreateMLEndpointInput";
|
|
761
|
-
const _CMLEO = "CreateMLEndpointOutput";
|
|
762
|
-
const _CMLMTJ = "CancelMLModelTrainingJob";
|
|
763
|
-
const _CMLMTJI = "CancelMLModelTrainingJobInput";
|
|
764
|
-
const _CMLMTJIa = "CancelMLModelTransformJobInput";
|
|
765
|
-
const _CMLMTJO = "CancelMLModelTrainingJobOutput";
|
|
766
|
-
const _CMLMTJOa = "CancelMLModelTransformJobOutput";
|
|
767
|
-
const _CMLMTJa = "CancelMLModelTransformJob";
|
|
768
|
-
const _CMTP = "CustomModelTrainingParameters";
|
|
769
|
-
const _CMTPu = "CustomModelTransformParameters";
|
|
770
|
-
const _COCQ = "CancelOpenCypherQuery";
|
|
771
|
-
const _COCQI = "CancelOpenCypherQueryInput";
|
|
772
|
-
const _COCQO = "CancelOpenCypherQueryOutput";
|
|
773
|
-
const _CTE = "ClientTimeoutException";
|
|
774
|
-
const _CVE = "ConstraintViolationException";
|
|
775
|
-
const _DMLE = "DeleteMLEndpoint";
|
|
776
|
-
const _DMLEI = "DeleteMLEndpointInput";
|
|
777
|
-
const _DMLEO = "DeleteMLEndpointOutput";
|
|
778
|
-
const _DPS = "DeletePropertygraphStatistics";
|
|
779
|
-
const _DPSO = "DeletePropertygraphStatisticsOutput";
|
|
780
|
-
const _DSS = "DeleteSparqlStatistics";
|
|
781
|
-
const _DSSO = "DeleteSparqlStatisticsOutput";
|
|
782
|
-
const _DSVM = "DeleteStatisticsValueMap";
|
|
783
|
-
const _EFR = "ExecuteFastReset";
|
|
784
|
-
const _EFRI = "ExecuteFastResetInput";
|
|
785
|
-
const _EFRO = "ExecuteFastResetOutput";
|
|
786
|
-
const _EGEQ = "ExecuteGremlinExplainQuery";
|
|
787
|
-
const _EGEQI = "ExecuteGremlinExplainQueryInput";
|
|
788
|
-
const _EGEQO = "ExecuteGremlinExplainQueryOutput";
|
|
789
|
-
const _EGPQ = "ExecuteGremlinProfileQuery";
|
|
790
|
-
const _EGPQI = "ExecuteGremlinProfileQueryInput";
|
|
791
|
-
const _EGPQO = "ExecuteGremlinProfileQueryOutput";
|
|
792
|
-
const _EGQ = "ExecuteGremlinQuery";
|
|
793
|
-
const _EGQI = "ExecuteGremlinQueryInput";
|
|
794
|
-
const _EGQO = "ExecuteGremlinQueryOutput";
|
|
795
|
-
const _EOCEQ = "ExecuteOpenCypherExplainQuery";
|
|
796
|
-
const _EOCEQI = "ExecuteOpenCypherExplainQueryInput";
|
|
797
|
-
const _EOCEQO = "ExecuteOpenCypherExplainQueryOutput";
|
|
798
|
-
const _EOCQ = "ExecuteOpenCypherQuery";
|
|
799
|
-
const _EOCQI = "ExecuteOpenCypherQueryInput";
|
|
800
|
-
const _EOCQO = "ExecuteOpenCypherQueryOutput";
|
|
801
|
-
const _ES = "EdgeStructure";
|
|
802
|
-
const _ESE = "ExpiredStreamException";
|
|
803
|
-
const _ESd = "EdgeStructures";
|
|
804
|
-
const _FBQE = "FailureByQueryException";
|
|
805
|
-
const _FRT = "FastResetToken";
|
|
806
|
-
const _GES = "GetEngineStatus";
|
|
807
|
-
const _GESO = "GetEngineStatusOutput";
|
|
808
|
-
const _GGQS = "GetGremlinQueryStatus";
|
|
809
|
-
const _GGQSI = "GetGremlinQueryStatusInput";
|
|
810
|
-
const _GGQSO = "GetGremlinQueryStatusOutput";
|
|
811
|
-
const _GLJS = "GetLoaderJobStatus";
|
|
812
|
-
const _GLJSI = "GetLoaderJobStatusInput";
|
|
813
|
-
const _GLJSO = "GetLoaderJobStatusOutput";
|
|
814
|
-
const _GMLDPJ = "GetMLDataProcessingJob";
|
|
815
|
-
const _GMLDPJI = "GetMLDataProcessingJobInput";
|
|
816
|
-
const _GMLDPJO = "GetMLDataProcessingJobOutput";
|
|
817
|
-
const _GMLE = "GetMLEndpoint";
|
|
818
|
-
const _GMLEI = "GetMLEndpointInput";
|
|
819
|
-
const _GMLEO = "GetMLEndpointOutput";
|
|
820
|
-
const _GMLMTJ = "GetMLModelTrainingJob";
|
|
821
|
-
const _GMLMTJI = "GetMLModelTrainingJobInput";
|
|
822
|
-
const _GMLMTJIe = "GetMLModelTransformJobInput";
|
|
823
|
-
const _GMLMTJO = "GetMLModelTrainingJobOutput";
|
|
824
|
-
const _GMLMTJOe = "GetMLModelTransformJobOutput";
|
|
825
|
-
const _GMLMTJe = "GetMLModelTransformJob";
|
|
826
|
-
const _GOCQS = "GetOpenCypherQueryStatus";
|
|
827
|
-
const _GOCQSI = "GetOpenCypherQueryStatusInput";
|
|
828
|
-
const _GOCQSO = "GetOpenCypherQueryStatusOutput";
|
|
829
|
-
const _GPS = "GetPropertygraphStatistics";
|
|
830
|
-
const _GPSI = "GetPropertygraphStreamInput";
|
|
831
|
-
const _GPSIe = "GetPropertygraphSummaryInput";
|
|
832
|
-
const _GPSO = "GetPropertygraphStatisticsOutput";
|
|
833
|
-
const _GPSOe = "GetPropertygraphStreamOutput";
|
|
834
|
-
const _GPSOet = "GetPropertygraphSummaryOutput";
|
|
835
|
-
const _GPSe = "GetPropertygraphStream";
|
|
836
|
-
const _GPSet = "GetPropertygraphSummary";
|
|
837
|
-
const _GQ = "GremlinQueries";
|
|
838
|
-
const _GQS = "GremlinQueryStatus";
|
|
839
|
-
const _GQSA = "GremlinQueryStatusAttributes";
|
|
840
|
-
const _GRDFGS = "GetRDFGraphSummary";
|
|
841
|
-
const _GRDFGSI = "GetRDFGraphSummaryInput";
|
|
842
|
-
const _GRDFGSO = "GetRDFGraphSummaryOutput";
|
|
843
|
-
const _GSS = "GetSparqlStatistics";
|
|
844
|
-
const _GSSI = "GetSparqlStreamInput";
|
|
845
|
-
const _GSSO = "GetSparqlStatisticsOutput";
|
|
846
|
-
const _GSSOe = "GetSparqlStreamOutput";
|
|
847
|
-
const _GSSe = "GetSparqlStream";
|
|
848
|
-
const _IAE = "IllegalArgumentException";
|
|
849
|
-
const _IAEn = "InvalidArgumentException";
|
|
850
|
-
const _IFE = "InternalFailureException";
|
|
851
|
-
const _INDE = "InvalidNumericDataException";
|
|
852
|
-
const _IPE = "InvalidParameterException";
|
|
853
|
-
const _LGQ = "ListGremlinQueries";
|
|
854
|
-
const _LGQI = "ListGremlinQueriesInput";
|
|
855
|
-
const _LGQO = "ListGremlinQueriesOutput";
|
|
856
|
-
const _LIR = "LoaderIdResult";
|
|
857
|
-
const _LLJ = "ListLoaderJobs";
|
|
858
|
-
const _LLJI = "ListLoaderJobsInput";
|
|
859
|
-
const _LLJO = "ListLoaderJobsOutput";
|
|
860
|
-
const _LMLDPJ = "ListMLDataProcessingJobs";
|
|
861
|
-
const _LMLDPJI = "ListMLDataProcessingJobsInput";
|
|
862
|
-
const _LMLDPJO = "ListMLDataProcessingJobsOutput";
|
|
863
|
-
const _LMLE = "ListMLEndpoints";
|
|
864
|
-
const _LMLEI = "ListMLEndpointsInput";
|
|
865
|
-
const _LMLEO = "ListMLEndpointsOutput";
|
|
866
|
-
const _LMLMTJ = "ListMLModelTrainingJobs";
|
|
867
|
-
const _LMLMTJI = "ListMLModelTrainingJobsInput";
|
|
868
|
-
const _LMLMTJIi = "ListMLModelTransformJobsInput";
|
|
869
|
-
const _LMLMTJO = "ListMLModelTrainingJobsOutput";
|
|
870
|
-
const _LMLMTJOi = "ListMLModelTransformJobsOutput";
|
|
871
|
-
const _LMLMTJi = "ListMLModelTransformJobs";
|
|
872
|
-
const _LOCQ = "ListOpenCypherQueries";
|
|
873
|
-
const _LOCQI = "ListOpenCypherQueriesInput";
|
|
874
|
-
const _LOCQO = "ListOpenCypherQueriesOutput";
|
|
875
|
-
const _LUADE = "LoadUrlAccessDeniedException";
|
|
876
|
-
const _LVML = "LongValuedMapList";
|
|
877
|
-
const _M = "Models";
|
|
878
|
-
const _MCD = "MlConfigDefinition";
|
|
879
|
-
const _MLEE = "MemoryLimitExceededException";
|
|
880
|
-
const _MLRNFE = "MLResourceNotFoundException";
|
|
881
|
-
const _MM = "MlModels";
|
|
882
|
-
const _MNAE = "MethodNotAllowedException";
|
|
883
|
-
const _MPE = "MissingParameterException";
|
|
884
|
-
const _MPS = "ManagePropertygraphStatistics";
|
|
885
|
-
const _MPSI = "ManagePropertygraphStatisticsInput";
|
|
886
|
-
const _MPSO = "ManagePropertygraphStatisticsOutput";
|
|
887
|
-
const _MQE = "MalformedQueryException";
|
|
888
|
-
const _MRD = "MlResourceDefinition";
|
|
889
|
-
const _MSS = "ManageSparqlStatistics";
|
|
890
|
-
const _MSSI = "ManageSparqlStatisticsInput";
|
|
891
|
-
const _MSSO = "ManageSparqlStatisticsOutput";
|
|
892
|
-
const _NS = "NodeStructure";
|
|
893
|
-
const _NSo = "NodeStructures";
|
|
894
|
-
const _OCQ = "OpenCypherQueries";
|
|
895
|
-
const _PD = "PropertygraphData";
|
|
896
|
-
const _PE = "ParsingException";
|
|
897
|
-
const _PFE = "PreconditionsFailedException";
|
|
898
|
-
const _PR = "PropertygraphRecord";
|
|
899
|
-
const _PRL = "PropertygraphRecordsList";
|
|
900
|
-
const _PS = "PropertygraphSummary";
|
|
901
|
-
const _PSVM = "PropertygraphSummaryValueMap";
|
|
902
|
-
const _QES = "QueryEvalStats";
|
|
903
|
-
const _QLE = "QueryLimitException";
|
|
904
|
-
const _QLEE = "QueryLimitExceededException";
|
|
905
|
-
const _QLV = "QueryLanguageVersion";
|
|
906
|
-
const _QTLE = "QueryTooLargeException";
|
|
907
|
-
const _RAT = "ReportAsText";
|
|
908
|
-
const _RDFGS = "RDFGraphSummary";
|
|
909
|
-
const _RDFGSVM = "RDFGraphSummaryValueMap";
|
|
910
|
-
const _ROVE = "ReadOnlyViolationException";
|
|
911
|
-
const _RSIM = "RefreshStatisticsIdMap";
|
|
912
|
-
const _S = "Statistics";
|
|
913
|
-
const _SD = "SparqlData";
|
|
914
|
-
const _SE = "S3Exception";
|
|
915
|
-
const _SLJ = "StartLoaderJob";
|
|
916
|
-
const _SLJI = "StartLoaderJobInput";
|
|
917
|
-
const _SLJO = "StartLoaderJobOutput";
|
|
918
|
-
const _SMLDPJ = "StartMLDataProcessingJob";
|
|
919
|
-
const _SMLDPJI = "StartMLDataProcessingJobInput";
|
|
920
|
-
const _SMLDPJO = "StartMLDataProcessingJobOutput";
|
|
921
|
-
const _SMLMTJ = "StartMLModelTrainingJob";
|
|
922
|
-
const _SMLMTJI = "StartMLModelTrainingJobInput";
|
|
923
|
-
const _SMLMTJIt = "StartMLModelTransformJobInput";
|
|
924
|
-
const _SMLMTJO = "StartMLModelTrainingJobOutput";
|
|
925
|
-
const _SMLMTJOt = "StartMLModelTransformJobOutput";
|
|
926
|
-
const _SMLMTJt = "StartMLModelTransformJob";
|
|
927
|
-
const _SNAE = "StatisticsNotAvailableException";
|
|
928
|
-
const _SR = "SparqlRecord";
|
|
929
|
-
const _SRL = "SparqlRecordsList";
|
|
930
|
-
const _SRNFE = "StreamRecordsNotFoundException";
|
|
931
|
-
const _SS = "StatisticsSummary";
|
|
932
|
-
const _SSE = "ServerShutdownException";
|
|
933
|
-
const _SSu = "SubjectStructure";
|
|
934
|
-
const _SSub = "SubjectStructures";
|
|
935
|
-
const _TE = "ThrottlingException";
|
|
936
|
-
const _TLEE = "TimeLimitExceededException";
|
|
937
|
-
const _TMRE = "TooManyRequestsException";
|
|
938
|
-
const _UOE = "UnsupportedOperationException";
|
|
939
|
-
const _a = "arn";
|
|
940
|
-
const _aC = "autoCompute";
|
|
941
|
-
const _aQC = "acceptedQueryCount";
|
|
942
|
-
const _ac = "active";
|
|
943
|
-
const _acc = "accept";
|
|
944
|
-
const _act = "action";
|
|
945
|
-
const _at = "attributes";
|
|
946
|
-
const _bPIT = "baseProcessingInstanceType";
|
|
947
|
-
const _bPIVSIGB = "baseProcessingInstanceVolumeSizeInGB";
|
|
948
|
-
const _bPJ = "baseProcessingJob";
|
|
949
|
-
const _c = "client";
|
|
950
|
-
const _cFN = "configFileName";
|
|
951
|
-
const _cLU = "cloudwatchLogUrl";
|
|
952
|
-
const _cMTP = "customModelTrainingParameters";
|
|
953
|
-
const _cMTPu = "customModelTransformParameters";
|
|
954
|
-
const _cN = "commitNum";
|
|
955
|
-
const _cT = "commitTimestamp";
|
|
956
|
-
const _cTIM = "creationTimeInMillis";
|
|
957
|
-
const _cTIMo = "commitTimestampInMillis";
|
|
958
|
-
const _ca = "cancelled";
|
|
959
|
-
const _ch = "chop";
|
|
960
|
-
const _cl = "clean";
|
|
961
|
-
const _cla = "classes";
|
|
962
|
-
const _co = "code";
|
|
963
|
-
const _cou = "count";
|
|
964
|
-
const _d = "details";
|
|
965
|
-
const _dEV = "dbEngineVersion";
|
|
966
|
-
const _dM = "detailedMessage";
|
|
967
|
-
const _dOEL = "distinctOutgoingEdgeLabels";
|
|
968
|
-
const _dPJI = "dataProcessingJobId";
|
|
969
|
-
const _dQE = "dfeQueryEngine";
|
|
970
|
-
const _da = "data";
|
|
971
|
-
const _dat = "date";
|
|
972
|
-
const _de = "dependencies";
|
|
973
|
-
const _e = "error";
|
|
974
|
-
const _eC = "endpointConfig";
|
|
975
|
-
const _eI = "eventId";
|
|
976
|
-
const _eL = "edgeLabels";
|
|
977
|
-
const _eM = "explainMode";
|
|
978
|
-
const _eMST = "enableManagedSpotTraining";
|
|
979
|
-
const _eOL = "edgeOnlyLoad";
|
|
980
|
-
const _eP = "edgeProperties";
|
|
981
|
-
const _ePP = "errorsPerPage";
|
|
982
|
-
const _eS = "edgeStructures";
|
|
983
|
-
const _el = "elapsed";
|
|
984
|
-
const _en = "endpoint";
|
|
985
|
-
const _enc = "encoding";
|
|
986
|
-
const _er = "errors";
|
|
987
|
-
const _ex = "explain";
|
|
988
|
-
const _f = "features";
|
|
989
|
-
const _fOE = "failOnError";
|
|
990
|
-
const _fR = "failureReason";
|
|
991
|
-
const _fo = "format";
|
|
992
|
-
const _fr = "from";
|
|
993
|
-
const _g = "gremlin";
|
|
994
|
-
const _gQ = "gremlinQuery";
|
|
995
|
-
const _gS = "graphSummary";
|
|
996
|
-
const _h = "http";
|
|
997
|
-
const _hE = "httpError";
|
|
998
|
-
const _hH = "httpHeader";
|
|
999
|
-
const _hJ = "hpoJob";
|
|
1000
|
-
const _hQ = "httpQuery";
|
|
1001
|
-
const _i = "id";
|
|
1002
|
-
const _iC = "instanceCount";
|
|
1003
|
-
const _iDSL = "inputDataS3Location";
|
|
1004
|
-
const _iLO = "isLastOp";
|
|
1005
|
-
const _iO = "indexOps";
|
|
1006
|
-
const _iQL = "includeQueuedLoads";
|
|
1007
|
-
const _iRA = "iamRoleArn";
|
|
1008
|
-
const _iT = "instanceType";
|
|
1009
|
-
const _iTt = "iteratorType";
|
|
1010
|
-
const _iW = "includeWaiting";
|
|
1011
|
-
const _id = "ids";
|
|
1012
|
-
const _jN = "jsonName";
|
|
1013
|
-
const _k = "key";
|
|
1014
|
-
const _l = "limit";
|
|
1015
|
-
const _lEI = "lastEventId";
|
|
1016
|
-
const _lI = "loadId";
|
|
1017
|
-
const _lIo = "loadIds";
|
|
1018
|
-
const _lM = "labMode";
|
|
1019
|
-
const _lSCT = "lastStatisticsComputationTime";
|
|
1020
|
-
const _lTT = "lastTrxTimestamp";
|
|
1021
|
-
const _lTTIM = "lastTrxTimestampInMillis";
|
|
1022
|
-
const _m = "meta";
|
|
1023
|
-
const _mHPONOTJ = "maxHPONumberOfTrainingJobs";
|
|
1024
|
-
const _mHPOPTJ = "maxHPOParallelTrainingJobs";
|
|
1025
|
-
const _mI = "maxItems";
|
|
1026
|
-
const _mM = "mlModels";
|
|
1027
|
-
const _mMTJI = "mlModelTrainingJobId";
|
|
1028
|
-
const _mMTJIl = "mlModelTransformJobId";
|
|
1029
|
-
const _mN = "modelName";
|
|
1030
|
-
const _mT = "mediaType";
|
|
1031
|
-
const _mTJ = "modelTransformJob";
|
|
1032
|
-
const _mTOSL = "modelTransformOutputS3Location";
|
|
1033
|
-
const _mTo = "modelType";
|
|
1034
|
-
const _me = "message";
|
|
1035
|
-
const _mo = "models";
|
|
1036
|
-
const _mod = "mode";
|
|
1037
|
-
const _n = "name";
|
|
1038
|
-
const _nC = "numClasses";
|
|
1039
|
-
const _nDP = "numDistinctPredicates";
|
|
1040
|
-
const _nDS = "numDistinctSubjects";
|
|
1041
|
-
const _nE = "numEdges";
|
|
1042
|
-
const _nEL = "numEdgeLabels";
|
|
1043
|
-
const _nEP = "numEdgeProperties";
|
|
1044
|
-
const _nIRA = "neptuneIamRoleArn";
|
|
1045
|
-
const _nL = "nodeLabels";
|
|
1046
|
-
const _nN = "numNodes";
|
|
1047
|
-
const _nNL = "numNodeLabels";
|
|
1048
|
-
const _nNP = "numNodeProperties";
|
|
1049
|
-
const _nP = "nodeProperties";
|
|
1050
|
-
const _nQ = "numQuads";
|
|
1051
|
-
const _nS = "nodeStructures";
|
|
1052
|
-
const _no = "note";
|
|
1053
|
-
const _o = "output";
|
|
1054
|
-
const _oCQ = "openCypherQuery";
|
|
1055
|
-
const _oL = "outputLocation";
|
|
1056
|
-
const _oN = "opNum";
|
|
1057
|
-
const _op = "opencypher";
|
|
1058
|
-
const _op_ = "op";
|
|
1059
|
-
const _p = "payload";
|
|
1060
|
-
const _pC = "parserConfiguration";
|
|
1061
|
-
const _pCr = "predicateCount";
|
|
1062
|
-
const _pDPJI = "previousDataProcessingJobId";
|
|
1063
|
-
const _pDSL = "processedDataS3Location";
|
|
1064
|
-
const _pIT = "processingInstanceType";
|
|
1065
|
-
const _pIVSIGB = "processingInstanceVolumeSizeInGB";
|
|
1066
|
-
const _pJ = "processingJob";
|
|
1067
|
-
const _pMTJI = "previousModelTrainingJobId";
|
|
1068
|
-
const _pO = "profile.indexOps";
|
|
1069
|
-
const _pTOIS = "processingTimeOutInSeconds";
|
|
1070
|
-
const _pa = "parameters";
|
|
1071
|
-
const _pag = "page";
|
|
1072
|
-
const _par = "parallelism";
|
|
1073
|
-
const _pr = "profile.results";
|
|
1074
|
-
const _pre = "predicates";
|
|
1075
|
-
const _pro = "profile.chop";
|
|
1076
|
-
const _prof = "profile.serializer";
|
|
1077
|
-
const _q = "query";
|
|
1078
|
-
const _qES = "queryEvalStats";
|
|
1079
|
-
const _qI = "queryId";
|
|
1080
|
-
const _qR = "queueRequest";
|
|
1081
|
-
const _qS = "queryString";
|
|
1082
|
-
const _qu = "queries";
|
|
1083
|
-
const _r = "results";
|
|
1084
|
-
const _rBTC = "rollingBackTrxCount";
|
|
1085
|
-
const _rBTEST = "rollingBackTrxEarliestStartTime";
|
|
1086
|
-
const _rI = "requestId";
|
|
1087
|
-
const _rMTJ = "remoteModelTransformJob";
|
|
1088
|
-
const _rQC = "runningQueryCount";
|
|
1089
|
-
const _re = "result";
|
|
1090
|
-
const _rec = "records";
|
|
1091
|
-
const _reg = "region";
|
|
1092
|
-
const _ro = "role";
|
|
1093
|
-
const _s = "status";
|
|
1094
|
-
const _sBR = "s3BucketRegion";
|
|
1095
|
-
const _sC = "statusCode";
|
|
1096
|
-
const _sCi = "signatureCount";
|
|
1097
|
-
const _sGI = "securityGroupIds";
|
|
1098
|
-
const _sI = "statisticsId";
|
|
1099
|
-
const _sIRA = "sagemakerIamRoleArn";
|
|
1100
|
-
const _sIi = "signatureInfo";
|
|
1101
|
-
const _sOEKMSK = "s3OutputEncryptionKMSKey";
|
|
1102
|
-
const _sS = "subjectStructures";
|
|
1103
|
-
const _sSDP = "sourceS3DirectoryPath";
|
|
1104
|
-
const _sT = "startTime";
|
|
1105
|
-
const _se = "server";
|
|
1106
|
-
const _ser = "serializer";
|
|
1107
|
-
const _set = "settings";
|
|
1108
|
-
const _si = "silent";
|
|
1109
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.neptunedata";
|
|
1110
|
-
const _so = "source";
|
|
1111
|
-
const _sp = "sparql";
|
|
1112
|
-
const _st = "stmt";
|
|
1113
|
-
const _su = "subqueries";
|
|
1114
|
-
const _sub = "subnets";
|
|
1115
|
-
const _t = "text/plain";
|
|
1116
|
-
const _tEPS = "trainingEntryPointScript";
|
|
1117
|
-
const _tEPSr = "transformEntryPointScript";
|
|
1118
|
-
const _tEPV = "totalEdgePropertyValues";
|
|
1119
|
-
const _tIT = "trainingInstanceType";
|
|
1120
|
-
const _tIVSIGB = "trainingInstanceVolumeSizeInGB";
|
|
1121
|
-
const _tJN = "trainingJobName";
|
|
1122
|
-
const _tMSL = "trainModelS3Location";
|
|
1123
|
-
const _tNPV = "totalNodePropertyValues";
|
|
1124
|
-
const _tR = "totalRecords";
|
|
1125
|
-
const _tTOIS = "trainingTimeOutInSeconds";
|
|
1126
|
-
const _to = "token";
|
|
1127
|
-
const _to_ = "to";
|
|
1128
|
-
const _ty = "type";
|
|
1129
|
-
const _u = "update";
|
|
1130
|
-
const _uPEI = "userProvidedEdgeIds";
|
|
1131
|
-
const _uSCP = "updateSingleCardinalityProperties";
|
|
1132
|
-
const _v = "value";
|
|
1133
|
-
const _vEKMSK = "volumeEncryptionKMSKey";
|
|
1134
|
-
const _ve = "version";
|
|
1135
|
-
const _w = "waited";
|
|
1136
|
-
const n0 = "com.amazonaws.neptunedata";
|
|
1137
|
-
var ReportAsText = [0, n0, _RAT, { [_mT]: _t }, 21];
|
|
1138
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
1139
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
1140
|
-
[_dM, _rI, _co],
|
|
1141
|
-
[0, 0, 0], 3
|
|
1142
|
-
];
|
|
1143
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
1144
|
-
var BadRequestException$ = [-3, n0, _BRE,
|
|
1145
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1146
|
-
[_dM, _rI, _co],
|
|
1147
|
-
[0, 0, 0], 3
|
|
1148
|
-
];
|
|
1149
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
1150
|
-
var BulkLoadIdNotFoundException$ = [-3, n0, _BLINFE,
|
|
1151
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1152
|
-
[_dM, _rI, _co],
|
|
1153
|
-
[0, 0, 0], 3
|
|
1154
|
-
];
|
|
1155
|
-
schema.TypeRegistry.for(n0).registerError(BulkLoadIdNotFoundException$, BulkLoadIdNotFoundException);
|
|
1156
|
-
var CancelGremlinQueryInput$ = [3, n0, _CGQI,
|
|
1157
|
-
0,
|
|
1158
|
-
[_qI],
|
|
1159
|
-
[[0, 1]], 1
|
|
1160
|
-
];
|
|
1161
|
-
var CancelGremlinQueryOutput$ = [3, n0, _CGQO,
|
|
1162
|
-
0,
|
|
1163
|
-
[_s],
|
|
1164
|
-
[0]
|
|
1165
|
-
];
|
|
1166
|
-
var CancelledByUserException$ = [-3, n0, _CBUE,
|
|
1167
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1168
|
-
[_dM, _rI, _co],
|
|
1169
|
-
[0, 0, 0], 3
|
|
1170
|
-
];
|
|
1171
|
-
schema.TypeRegistry.for(n0).registerError(CancelledByUserException$, CancelledByUserException);
|
|
1172
|
-
var CancelLoaderJobInput$ = [3, n0, _CLJI,
|
|
1173
|
-
0,
|
|
1174
|
-
[_lI],
|
|
1175
|
-
[[0, 1]], 1
|
|
1176
|
-
];
|
|
1177
|
-
var CancelLoaderJobOutput$ = [3, n0, _CLJO,
|
|
1178
|
-
0,
|
|
1179
|
-
[_s],
|
|
1180
|
-
[0]
|
|
1181
|
-
];
|
|
1182
|
-
var CancelMLDataProcessingJobInput$ = [3, n0, _CMLDPJI,
|
|
1183
|
-
0,
|
|
1184
|
-
[_i, _nIRA, _cl],
|
|
1185
|
-
[[0, 1], [0, { [_hQ]: _nIRA }], [2, { [_hQ]: _cl }]], 1
|
|
1186
|
-
];
|
|
1187
|
-
var CancelMLDataProcessingJobOutput$ = [3, n0, _CMLDPJO,
|
|
1188
|
-
0,
|
|
1189
|
-
[_s],
|
|
1190
|
-
[0]
|
|
1191
|
-
];
|
|
1192
|
-
var CancelMLModelTrainingJobInput$ = [3, n0, _CMLMTJI,
|
|
1193
|
-
0,
|
|
1194
|
-
[_i, _nIRA, _cl],
|
|
1195
|
-
[[0, 1], [0, { [_hQ]: _nIRA }], [2, { [_hQ]: _cl }]], 1
|
|
1196
|
-
];
|
|
1197
|
-
var CancelMLModelTrainingJobOutput$ = [3, n0, _CMLMTJO,
|
|
1198
|
-
0,
|
|
1199
|
-
[_s],
|
|
1200
|
-
[0]
|
|
1201
|
-
];
|
|
1202
|
-
var CancelMLModelTransformJobInput$ = [3, n0, _CMLMTJIa,
|
|
1203
|
-
0,
|
|
1204
|
-
[_i, _nIRA, _cl],
|
|
1205
|
-
[[0, 1], [0, { [_hQ]: _nIRA }], [2, { [_hQ]: _cl }]], 1
|
|
1206
|
-
];
|
|
1207
|
-
var CancelMLModelTransformJobOutput$ = [3, n0, _CMLMTJOa,
|
|
1208
|
-
0,
|
|
1209
|
-
[_s],
|
|
1210
|
-
[0]
|
|
1211
|
-
];
|
|
1212
|
-
var CancelOpenCypherQueryInput$ = [3, n0, _COCQI,
|
|
1213
|
-
0,
|
|
1214
|
-
[_qI, _si],
|
|
1215
|
-
[[0, 1], [2, { [_hQ]: _si }]], 1
|
|
1216
|
-
];
|
|
1217
|
-
var CancelOpenCypherQueryOutput$ = [3, n0, _COCQO,
|
|
1218
|
-
0,
|
|
1219
|
-
[_s, _p],
|
|
1220
|
-
[0, 2]
|
|
1221
|
-
];
|
|
1222
|
-
var ClientTimeoutException$ = [-3, n0, _CTE,
|
|
1223
|
-
{ [_e]: _c, [_hE]: 408 },
|
|
1224
|
-
[_dM, _rI, _co],
|
|
1225
|
-
[0, 0, 0], 3
|
|
1226
|
-
];
|
|
1227
|
-
schema.TypeRegistry.for(n0).registerError(ClientTimeoutException$, ClientTimeoutException);
|
|
1228
|
-
var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
1229
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1230
|
-
[_dM, _rI, _co],
|
|
1231
|
-
[0, 0, 0], 3
|
|
1232
|
-
];
|
|
1233
|
-
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
1234
|
-
var ConstraintViolationException$ = [-3, n0, _CVE,
|
|
1235
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1236
|
-
[_dM, _rI, _co],
|
|
1237
|
-
[0, 0, 0], 3
|
|
1238
|
-
];
|
|
1239
|
-
schema.TypeRegistry.for(n0).registerError(ConstraintViolationException$, ConstraintViolationException);
|
|
1240
|
-
var CreateMLEndpointInput$ = [3, n0, _CMLEI,
|
|
1241
|
-
0,
|
|
1242
|
-
[_i, _mMTJI, _mMTJIl, _u, _nIRA, _mN, _iT, _iC, _vEKMSK],
|
|
1243
|
-
[0, 0, 0, 2, 0, 0, 0, 1, 0]
|
|
1244
|
-
];
|
|
1245
|
-
var CreateMLEndpointOutput$ = [3, n0, _CMLEO,
|
|
1246
|
-
0,
|
|
1247
|
-
[_i, _a, _cTIM],
|
|
1248
|
-
[0, 0, 1]
|
|
1249
|
-
];
|
|
1250
|
-
var CustomModelTrainingParameters$ = [3, n0, _CMTP,
|
|
1251
|
-
0,
|
|
1252
|
-
[_sSDP, _tEPS, _tEPSr],
|
|
1253
|
-
[0, 0, 0], 1
|
|
1254
|
-
];
|
|
1255
|
-
var CustomModelTransformParameters$ = [3, n0, _CMTPu,
|
|
1256
|
-
0,
|
|
1257
|
-
[_sSDP, _tEPSr],
|
|
1258
|
-
[0, 0], 1
|
|
1259
|
-
];
|
|
1260
|
-
var DeleteMLEndpointInput$ = [3, n0, _DMLEI,
|
|
1261
|
-
0,
|
|
1262
|
-
[_i, _nIRA, _cl],
|
|
1263
|
-
[[0, 1], [0, { [_hQ]: _nIRA }], [2, { [_hQ]: _cl }]], 1
|
|
1264
|
-
];
|
|
1265
|
-
var DeleteMLEndpointOutput$ = [3, n0, _DMLEO,
|
|
1266
|
-
0,
|
|
1267
|
-
[_s],
|
|
1268
|
-
[0]
|
|
1269
|
-
];
|
|
1270
|
-
var DeletePropertygraphStatisticsOutput$ = [3, n0, _DPSO,
|
|
1271
|
-
0,
|
|
1272
|
-
[_sC, _s, _p],
|
|
1273
|
-
[[1, 32], 0, () => DeleteStatisticsValueMap$]
|
|
1274
|
-
];
|
|
1275
|
-
var DeleteSparqlStatisticsOutput$ = [3, n0, _DSSO,
|
|
1276
|
-
0,
|
|
1277
|
-
[_sC, _s, _p],
|
|
1278
|
-
[[1, 32], 0, () => DeleteStatisticsValueMap$]
|
|
1279
|
-
];
|
|
1280
|
-
var DeleteStatisticsValueMap$ = [3, n0, _DSVM,
|
|
1281
|
-
0,
|
|
1282
|
-
[_ac, _sI],
|
|
1283
|
-
[2, 0]
|
|
1284
|
-
];
|
|
1285
|
-
var EdgeStructure$ = [3, n0, _ES,
|
|
1286
|
-
0,
|
|
1287
|
-
[_cou, _eP],
|
|
1288
|
-
[1, 64 | 0]
|
|
1289
|
-
];
|
|
1290
|
-
var ExecuteFastResetInput$ = [3, n0, _EFRI,
|
|
1291
|
-
0,
|
|
1292
|
-
[_act, _to],
|
|
1293
|
-
[0, 0], 1
|
|
1294
|
-
];
|
|
1295
|
-
var ExecuteFastResetOutput$ = [3, n0, _EFRO,
|
|
1296
|
-
0,
|
|
1297
|
-
[_s, _p],
|
|
1298
|
-
[0, () => FastResetToken$], 1
|
|
1299
|
-
];
|
|
1300
|
-
var ExecuteGremlinExplainQueryInput$ = [3, n0, _EGEQI,
|
|
1301
|
-
0,
|
|
1302
|
-
[_gQ],
|
|
1303
|
-
[[0, { [_jN]: _g }]], 1
|
|
1304
|
-
];
|
|
1305
|
-
var ExecuteGremlinExplainQueryOutput$ = [3, n0, _EGEQO,
|
|
1306
|
-
0,
|
|
1307
|
-
[_o],
|
|
1308
|
-
[[() => ReportAsText, 16]]
|
|
1309
|
-
];
|
|
1310
|
-
var ExecuteGremlinProfileQueryInput$ = [3, n0, _EGPQI,
|
|
1311
|
-
0,
|
|
1312
|
-
[_gQ, _r, _ch, _ser, _iO],
|
|
1313
|
-
[[0, { [_jN]: _g }], [2, { [_jN]: _pr }], [1, { [_jN]: _pro }], [0, { [_jN]: _prof }], [2, { [_jN]: _pO }]], 1
|
|
1314
|
-
];
|
|
1315
|
-
var ExecuteGremlinProfileQueryOutput$ = [3, n0, _EGPQO,
|
|
1316
|
-
0,
|
|
1317
|
-
[_o],
|
|
1318
|
-
[[() => ReportAsText, 16]]
|
|
1319
|
-
];
|
|
1320
|
-
var ExecuteGremlinQueryInput$ = [3, n0, _EGQI,
|
|
1321
|
-
0,
|
|
1322
|
-
[_gQ, _ser],
|
|
1323
|
-
[[0, { [_jN]: _g }], [0, { [_hH]: _acc }]], 1
|
|
1324
|
-
];
|
|
1325
|
-
var ExecuteGremlinQueryOutput$ = [3, n0, _EGQO,
|
|
1326
|
-
0,
|
|
1327
|
-
[_rI, _s, _re, _m],
|
|
1328
|
-
[0, () => GremlinQueryStatusAttributes$, 15, 15]
|
|
1329
|
-
];
|
|
1330
|
-
var ExecuteOpenCypherExplainQueryInput$ = [3, n0, _EOCEQI,
|
|
1331
|
-
0,
|
|
1332
|
-
[_oCQ, _eM, _pa],
|
|
1333
|
-
[[0, { [_jN]: _q }], [0, { [_jN]: _ex }], 0], 2
|
|
1334
|
-
];
|
|
1335
|
-
var ExecuteOpenCypherExplainQueryOutput$ = [3, n0, _EOCEQO,
|
|
1336
|
-
0,
|
|
1337
|
-
[_r],
|
|
1338
|
-
[[21, 16]], 1
|
|
1339
|
-
];
|
|
1340
|
-
var ExecuteOpenCypherQueryInput$ = [3, n0, _EOCQI,
|
|
1341
|
-
0,
|
|
1342
|
-
[_oCQ, _pa],
|
|
1343
|
-
[[0, { [_jN]: _q }], 0], 1
|
|
1344
|
-
];
|
|
1345
|
-
var ExecuteOpenCypherQueryOutput$ = [3, n0, _EOCQO,
|
|
1346
|
-
0,
|
|
1347
|
-
[_r],
|
|
1348
|
-
[15], 1
|
|
1349
|
-
];
|
|
1350
|
-
var ExpiredStreamException$ = [-3, n0, _ESE,
|
|
1351
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1352
|
-
[_dM, _rI, _co],
|
|
1353
|
-
[0, 0, 0], 3
|
|
1354
|
-
];
|
|
1355
|
-
schema.TypeRegistry.for(n0).registerError(ExpiredStreamException$, ExpiredStreamException);
|
|
1356
|
-
var FailureByQueryException$ = [-3, n0, _FBQE,
|
|
1357
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1358
|
-
[_dM, _rI, _co],
|
|
1359
|
-
[0, 0, 0], 3
|
|
1360
|
-
];
|
|
1361
|
-
schema.TypeRegistry.for(n0).registerError(FailureByQueryException$, FailureByQueryException);
|
|
1362
|
-
var FastResetToken$ = [3, n0, _FRT,
|
|
1363
|
-
0,
|
|
1364
|
-
[_to],
|
|
1365
|
-
[0]
|
|
1366
|
-
];
|
|
1367
|
-
var GetEngineStatusOutput$ = [3, n0, _GESO,
|
|
1368
|
-
0,
|
|
1369
|
-
[_s, _sT, _dEV, _ro, _dQE, _g, _sp, _op, _lM, _rBTC, _rBTEST, _f, _set],
|
|
1370
|
-
[0, 0, 0, 0, 0, () => QueryLanguageVersion$, () => QueryLanguageVersion$, () => QueryLanguageVersion$, 128 | 0, 1, 0, 128 | 15, 128 | 0]
|
|
1371
|
-
];
|
|
1372
|
-
var GetGremlinQueryStatusInput$ = [3, n0, _GGQSI,
|
|
1373
|
-
0,
|
|
1374
|
-
[_qI],
|
|
1375
|
-
[[0, 1]], 1
|
|
1376
|
-
];
|
|
1377
|
-
var GetGremlinQueryStatusOutput$ = [3, n0, _GGQSO,
|
|
1378
|
-
0,
|
|
1379
|
-
[_qI, _qS, _qES],
|
|
1380
|
-
[0, 0, () => QueryEvalStats$]
|
|
1381
|
-
];
|
|
1382
|
-
var GetLoaderJobStatusInput$ = [3, n0, _GLJSI,
|
|
1383
|
-
0,
|
|
1384
|
-
[_lI, _d, _er, _pag, _ePP],
|
|
1385
|
-
[[0, 1], [2, { [_hQ]: _d }], [2, { [_hQ]: _er }], [1, { [_hQ]: _pag }], [1, { [_hQ]: _ePP }]], 1
|
|
1386
|
-
];
|
|
1387
|
-
var GetLoaderJobStatusOutput$ = [3, n0, _GLJSO,
|
|
1388
|
-
0,
|
|
1389
|
-
[_s, _p],
|
|
1390
|
-
[0, 15], 2
|
|
1391
|
-
];
|
|
1392
|
-
var GetMLDataProcessingJobInput$ = [3, n0, _GMLDPJI,
|
|
1393
|
-
0,
|
|
1394
|
-
[_i, _nIRA],
|
|
1395
|
-
[[0, 1], [0, { [_hQ]: _nIRA }]], 1
|
|
1396
|
-
];
|
|
1397
|
-
var GetMLDataProcessingJobOutput$ = [3, n0, _GMLDPJO,
|
|
1398
|
-
0,
|
|
1399
|
-
[_s, _i, _pJ],
|
|
1400
|
-
[0, 0, () => MlResourceDefinition$]
|
|
1401
|
-
];
|
|
1402
|
-
var GetMLEndpointInput$ = [3, n0, _GMLEI,
|
|
1403
|
-
0,
|
|
1404
|
-
[_i, _nIRA],
|
|
1405
|
-
[[0, 1], [0, { [_hQ]: _nIRA }]], 1
|
|
1406
|
-
];
|
|
1407
|
-
var GetMLEndpointOutput$ = [3, n0, _GMLEO,
|
|
1408
|
-
0,
|
|
1409
|
-
[_s, _i, _en, _eC],
|
|
1410
|
-
[0, 0, () => MlResourceDefinition$, () => MlConfigDefinition$]
|
|
1411
|
-
];
|
|
1412
|
-
var GetMLModelTrainingJobInput$ = [3, n0, _GMLMTJI,
|
|
1413
|
-
0,
|
|
1414
|
-
[_i, _nIRA],
|
|
1415
|
-
[[0, 1], [0, { [_hQ]: _nIRA }]], 1
|
|
1416
|
-
];
|
|
1417
|
-
var GetMLModelTrainingJobOutput$ = [3, n0, _GMLMTJO,
|
|
1418
|
-
0,
|
|
1419
|
-
[_s, _i, _pJ, _hJ, _mTJ, _mM],
|
|
1420
|
-
[0, 0, () => MlResourceDefinition$, () => MlResourceDefinition$, () => MlResourceDefinition$, () => MlModels]
|
|
1421
|
-
];
|
|
1422
|
-
var GetMLModelTransformJobInput$ = [3, n0, _GMLMTJIe,
|
|
1423
|
-
0,
|
|
1424
|
-
[_i, _nIRA],
|
|
1425
|
-
[[0, 1], [0, { [_hQ]: _nIRA }]], 1
|
|
1426
|
-
];
|
|
1427
|
-
var GetMLModelTransformJobOutput$ = [3, n0, _GMLMTJOe,
|
|
1428
|
-
0,
|
|
1429
|
-
[_s, _i, _bPJ, _rMTJ, _mo],
|
|
1430
|
-
[0, 0, () => MlResourceDefinition$, () => MlResourceDefinition$, () => Models]
|
|
1431
|
-
];
|
|
1432
|
-
var GetOpenCypherQueryStatusInput$ = [3, n0, _GOCQSI,
|
|
1433
|
-
0,
|
|
1434
|
-
[_qI],
|
|
1435
|
-
[[0, 1]], 1
|
|
1436
|
-
];
|
|
1437
|
-
var GetOpenCypherQueryStatusOutput$ = [3, n0, _GOCQSO,
|
|
1438
|
-
0,
|
|
1439
|
-
[_qI, _qS, _qES],
|
|
1440
|
-
[0, 0, () => QueryEvalStats$]
|
|
1441
|
-
];
|
|
1442
|
-
var GetPropertygraphStatisticsOutput$ = [3, n0, _GPSO,
|
|
1443
|
-
0,
|
|
1444
|
-
[_s, _p],
|
|
1445
|
-
[0, () => Statistics$], 2
|
|
1446
|
-
];
|
|
1447
|
-
var GetPropertygraphStreamInput$ = [3, n0, _GPSI,
|
|
1448
|
-
0,
|
|
1449
|
-
[_l, _iTt, _cN, _oN, _enc],
|
|
1450
|
-
[[1, { [_hQ]: _l }], [0, { [_hQ]: _iTt }], [1, { [_hQ]: _cN }], [1, { [_hQ]: _oN }], [0, { [_hH]: _AE }]]
|
|
1451
|
-
];
|
|
1452
|
-
var GetPropertygraphStreamOutput$ = [3, n0, _GPSOe,
|
|
1453
|
-
0,
|
|
1454
|
-
[_lEI, _lTTIM, _fo, _rec, _tR],
|
|
1455
|
-
[128 | 0, [1, { [_jN]: _lTT }], 0, [() => PropertygraphRecordsList, 0], 1], 5
|
|
1456
|
-
];
|
|
1457
|
-
var GetPropertygraphSummaryInput$ = [3, n0, _GPSIe,
|
|
1458
|
-
0,
|
|
1459
|
-
[_mod],
|
|
1460
|
-
[[0, { [_hQ]: _mod }]]
|
|
1461
|
-
];
|
|
1462
|
-
var GetPropertygraphSummaryOutput$ = [3, n0, _GPSOet,
|
|
1463
|
-
0,
|
|
1464
|
-
[_sC, _p],
|
|
1465
|
-
[[1, 32], () => PropertygraphSummaryValueMap$]
|
|
1466
|
-
];
|
|
1467
|
-
var GetRDFGraphSummaryInput$ = [3, n0, _GRDFGSI,
|
|
1468
|
-
0,
|
|
1469
|
-
[_mod],
|
|
1470
|
-
[[0, { [_hQ]: _mod }]]
|
|
1471
|
-
];
|
|
1472
|
-
var GetRDFGraphSummaryOutput$ = [3, n0, _GRDFGSO,
|
|
1473
|
-
0,
|
|
1474
|
-
[_sC, _p],
|
|
1475
|
-
[[1, 32], () => RDFGraphSummaryValueMap$]
|
|
1476
|
-
];
|
|
1477
|
-
var GetSparqlStatisticsOutput$ = [3, n0, _GSSO,
|
|
1478
|
-
0,
|
|
1479
|
-
[_s, _p],
|
|
1480
|
-
[0, () => Statistics$], 2
|
|
1481
|
-
];
|
|
1482
|
-
var GetSparqlStreamInput$ = [3, n0, _GSSI,
|
|
1483
|
-
0,
|
|
1484
|
-
[_l, _iTt, _cN, _oN, _enc],
|
|
1485
|
-
[[1, { [_hQ]: _l }], [0, { [_hQ]: _iTt }], [1, { [_hQ]: _cN }], [1, { [_hQ]: _oN }], [0, { [_hH]: _AE }]]
|
|
1486
|
-
];
|
|
1487
|
-
var GetSparqlStreamOutput$ = [3, n0, _GSSOe,
|
|
1488
|
-
0,
|
|
1489
|
-
[_lEI, _lTTIM, _fo, _rec, _tR],
|
|
1490
|
-
[128 | 0, [1, { [_jN]: _lTT }], 0, [() => SparqlRecordsList, 0], 1], 5
|
|
1491
|
-
];
|
|
1492
|
-
var GremlinQueryStatus$ = [3, n0, _GQS,
|
|
1493
|
-
0,
|
|
1494
|
-
[_qI, _qS, _qES],
|
|
1495
|
-
[0, 0, () => QueryEvalStats$]
|
|
1496
|
-
];
|
|
1497
|
-
var GremlinQueryStatusAttributes$ = [3, n0, _GQSA,
|
|
1498
|
-
0,
|
|
1499
|
-
[_me, _co, _at],
|
|
1500
|
-
[0, 1, 15]
|
|
1501
|
-
];
|
|
1502
|
-
var IllegalArgumentException$ = [-3, n0, _IAE,
|
|
1503
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1504
|
-
[_dM, _rI, _co],
|
|
1505
|
-
[0, 0, 0], 3
|
|
1506
|
-
];
|
|
1507
|
-
schema.TypeRegistry.for(n0).registerError(IllegalArgumentException$, IllegalArgumentException);
|
|
1508
|
-
var InternalFailureException$ = [-3, n0, _IFE,
|
|
1509
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1510
|
-
[_dM, _rI, _co],
|
|
1511
|
-
[0, 0, 0], 3
|
|
1512
|
-
];
|
|
1513
|
-
schema.TypeRegistry.for(n0).registerError(InternalFailureException$, InternalFailureException);
|
|
1514
|
-
var InvalidArgumentException$ = [-3, n0, _IAEn,
|
|
1515
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1516
|
-
[_dM, _rI, _co],
|
|
1517
|
-
[0, 0, 0], 3
|
|
1518
|
-
];
|
|
1519
|
-
schema.TypeRegistry.for(n0).registerError(InvalidArgumentException$, InvalidArgumentException);
|
|
1520
|
-
var InvalidNumericDataException$ = [-3, n0, _INDE,
|
|
1521
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1522
|
-
[_dM, _rI, _co],
|
|
1523
|
-
[0, 0, 0], 3
|
|
1524
|
-
];
|
|
1525
|
-
schema.TypeRegistry.for(n0).registerError(InvalidNumericDataException$, InvalidNumericDataException);
|
|
1526
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
1527
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1528
|
-
[_dM, _rI, _co],
|
|
1529
|
-
[0, 0, 0], 3
|
|
1530
|
-
];
|
|
1531
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
1532
|
-
var ListGremlinQueriesInput$ = [3, n0, _LGQI,
|
|
1533
|
-
0,
|
|
1534
|
-
[_iW],
|
|
1535
|
-
[[2, { [_hQ]: _iW }]]
|
|
1536
|
-
];
|
|
1537
|
-
var ListGremlinQueriesOutput$ = [3, n0, _LGQO,
|
|
1538
|
-
0,
|
|
1539
|
-
[_aQC, _rQC, _qu],
|
|
1540
|
-
[1, 1, () => GremlinQueries]
|
|
1541
|
-
];
|
|
1542
|
-
var ListLoaderJobsInput$ = [3, n0, _LLJI,
|
|
1543
|
-
0,
|
|
1544
|
-
[_l, _iQL],
|
|
1545
|
-
[[1, { [_hQ]: _l }], [2, { [_hQ]: _iQL }]]
|
|
1546
|
-
];
|
|
1547
|
-
var ListLoaderJobsOutput$ = [3, n0, _LLJO,
|
|
1548
|
-
0,
|
|
1549
|
-
[_s, _p],
|
|
1550
|
-
[0, () => LoaderIdResult$], 2
|
|
1551
|
-
];
|
|
1552
|
-
var ListMLDataProcessingJobsInput$ = [3, n0, _LMLDPJI,
|
|
1553
|
-
0,
|
|
1554
|
-
[_mI, _nIRA],
|
|
1555
|
-
[[1, { [_hQ]: _mI }], [0, { [_hQ]: _nIRA }]]
|
|
1556
|
-
];
|
|
1557
|
-
var ListMLDataProcessingJobsOutput$ = [3, n0, _LMLDPJO,
|
|
1558
|
-
0,
|
|
1559
|
-
[_id],
|
|
1560
|
-
[64 | 0]
|
|
1561
|
-
];
|
|
1562
|
-
var ListMLEndpointsInput$ = [3, n0, _LMLEI,
|
|
1563
|
-
0,
|
|
1564
|
-
[_mI, _nIRA],
|
|
1565
|
-
[[1, { [_hQ]: _mI }], [0, { [_hQ]: _nIRA }]]
|
|
1566
|
-
];
|
|
1567
|
-
var ListMLEndpointsOutput$ = [3, n0, _LMLEO,
|
|
1568
|
-
0,
|
|
1569
|
-
[_id],
|
|
1570
|
-
[64 | 0]
|
|
1571
|
-
];
|
|
1572
|
-
var ListMLModelTrainingJobsInput$ = [3, n0, _LMLMTJI,
|
|
1573
|
-
0,
|
|
1574
|
-
[_mI, _nIRA],
|
|
1575
|
-
[[1, { [_hQ]: _mI }], [0, { [_hQ]: _nIRA }]]
|
|
1576
|
-
];
|
|
1577
|
-
var ListMLModelTrainingJobsOutput$ = [3, n0, _LMLMTJO,
|
|
1578
|
-
0,
|
|
1579
|
-
[_id],
|
|
1580
|
-
[64 | 0]
|
|
1581
|
-
];
|
|
1582
|
-
var ListMLModelTransformJobsInput$ = [3, n0, _LMLMTJIi,
|
|
1583
|
-
0,
|
|
1584
|
-
[_mI, _nIRA],
|
|
1585
|
-
[[1, { [_hQ]: _mI }], [0, { [_hQ]: _nIRA }]]
|
|
1586
|
-
];
|
|
1587
|
-
var ListMLModelTransformJobsOutput$ = [3, n0, _LMLMTJOi,
|
|
1588
|
-
0,
|
|
1589
|
-
[_id],
|
|
1590
|
-
[64 | 0]
|
|
1591
|
-
];
|
|
1592
|
-
var ListOpenCypherQueriesInput$ = [3, n0, _LOCQI,
|
|
1593
|
-
0,
|
|
1594
|
-
[_iW],
|
|
1595
|
-
[[2, { [_hQ]: _iW }]]
|
|
1596
|
-
];
|
|
1597
|
-
var ListOpenCypherQueriesOutput$ = [3, n0, _LOCQO,
|
|
1598
|
-
0,
|
|
1599
|
-
[_aQC, _rQC, _qu],
|
|
1600
|
-
[1, 1, () => OpenCypherQueries]
|
|
1601
|
-
];
|
|
1602
|
-
var LoaderIdResult$ = [3, n0, _LIR,
|
|
1603
|
-
0,
|
|
1604
|
-
[_lIo],
|
|
1605
|
-
[64 | 0]
|
|
1606
|
-
];
|
|
1607
|
-
var LoadUrlAccessDeniedException$ = [-3, n0, _LUADE,
|
|
1608
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1609
|
-
[_dM, _rI, _co],
|
|
1610
|
-
[0, 0, 0], 3
|
|
1611
|
-
];
|
|
1612
|
-
schema.TypeRegistry.for(n0).registerError(LoadUrlAccessDeniedException$, LoadUrlAccessDeniedException);
|
|
1613
|
-
var MalformedQueryException$ = [-3, n0, _MQE,
|
|
1614
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1615
|
-
[_dM, _rI, _co],
|
|
1616
|
-
[0, 0, 0], 3
|
|
1617
|
-
];
|
|
1618
|
-
schema.TypeRegistry.for(n0).registerError(MalformedQueryException$, MalformedQueryException);
|
|
1619
|
-
var ManagePropertygraphStatisticsInput$ = [3, n0, _MPSI,
|
|
1620
|
-
0,
|
|
1621
|
-
[_mod],
|
|
1622
|
-
[0]
|
|
1623
|
-
];
|
|
1624
|
-
var ManagePropertygraphStatisticsOutput$ = [3, n0, _MPSO,
|
|
1625
|
-
0,
|
|
1626
|
-
[_s, _p],
|
|
1627
|
-
[0, () => RefreshStatisticsIdMap$], 1
|
|
1628
|
-
];
|
|
1629
|
-
var ManageSparqlStatisticsInput$ = [3, n0, _MSSI,
|
|
1630
|
-
0,
|
|
1631
|
-
[_mod],
|
|
1632
|
-
[0]
|
|
1633
|
-
];
|
|
1634
|
-
var ManageSparqlStatisticsOutput$ = [3, n0, _MSSO,
|
|
1635
|
-
0,
|
|
1636
|
-
[_s, _p],
|
|
1637
|
-
[0, () => RefreshStatisticsIdMap$], 1
|
|
1638
|
-
];
|
|
1639
|
-
var MemoryLimitExceededException$ = [-3, n0, _MLEE,
|
|
1640
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1641
|
-
[_dM, _rI, _co],
|
|
1642
|
-
[0, 0, 0], 3
|
|
1643
|
-
];
|
|
1644
|
-
schema.TypeRegistry.for(n0).registerError(MemoryLimitExceededException$, MemoryLimitExceededException);
|
|
1645
|
-
var MethodNotAllowedException$ = [-3, n0, _MNAE,
|
|
1646
|
-
{ [_e]: _c, [_hE]: 405 },
|
|
1647
|
-
[_dM, _rI, _co],
|
|
1648
|
-
[0, 0, 0], 3
|
|
1649
|
-
];
|
|
1650
|
-
schema.TypeRegistry.for(n0).registerError(MethodNotAllowedException$, MethodNotAllowedException);
|
|
1651
|
-
var MissingParameterException$ = [-3, n0, _MPE,
|
|
1652
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1653
|
-
[_dM, _rI, _co],
|
|
1654
|
-
[0, 0, 0], 3
|
|
1655
|
-
];
|
|
1656
|
-
schema.TypeRegistry.for(n0).registerError(MissingParameterException$, MissingParameterException);
|
|
1657
|
-
var MlConfigDefinition$ = [3, n0, _MCD,
|
|
1658
|
-
0,
|
|
1659
|
-
[_n, _a],
|
|
1660
|
-
[0, 0]
|
|
1661
|
-
];
|
|
1662
|
-
var MlResourceDefinition$ = [3, n0, _MRD,
|
|
1663
|
-
0,
|
|
1664
|
-
[_n, _a, _s, _oL, _fR, _cLU],
|
|
1665
|
-
[0, 0, 0, 0, 0, 0]
|
|
1666
|
-
];
|
|
1667
|
-
var MLResourceNotFoundException$ = [-3, n0, _MLRNFE,
|
|
1668
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1669
|
-
[_dM, _rI, _co],
|
|
1670
|
-
[0, 0, 0], 3
|
|
1671
|
-
];
|
|
1672
|
-
schema.TypeRegistry.for(n0).registerError(MLResourceNotFoundException$, MLResourceNotFoundException);
|
|
1673
|
-
var NodeStructure$ = [3, n0, _NS,
|
|
1674
|
-
0,
|
|
1675
|
-
[_cou, _nP, _dOEL],
|
|
1676
|
-
[1, 64 | 0, 64 | 0]
|
|
1677
|
-
];
|
|
1678
|
-
var ParsingException$ = [-3, n0, _PE,
|
|
1679
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1680
|
-
[_dM, _rI, _co],
|
|
1681
|
-
[0, 0, 0], 3
|
|
1682
|
-
];
|
|
1683
|
-
schema.TypeRegistry.for(n0).registerError(ParsingException$, ParsingException);
|
|
1684
|
-
var PreconditionsFailedException$ = [-3, n0, _PFE,
|
|
1685
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1686
|
-
[_dM, _rI, _co],
|
|
1687
|
-
[0, 0, 0], 3
|
|
1688
|
-
];
|
|
1689
|
-
schema.TypeRegistry.for(n0).registerError(PreconditionsFailedException$, PreconditionsFailedException);
|
|
1690
|
-
var PropertygraphData$ = [3, n0, _PD,
|
|
1691
|
-
0,
|
|
1692
|
-
[_i, _ty, _k, _v, _fr, _to_],
|
|
1693
|
-
[0, 0, 0, 15, 0, 0], 4
|
|
1694
|
-
];
|
|
1695
|
-
var PropertygraphRecord$ = [3, n0, _PR,
|
|
1696
|
-
0,
|
|
1697
|
-
[_cTIMo, _eI, _da, _op_, _iLO],
|
|
1698
|
-
[[1, { [_jN]: _cT }], 128 | 0, () => PropertygraphData$, 0, 2], 4
|
|
1699
|
-
];
|
|
1700
|
-
var PropertygraphSummary$ = [3, n0, _PS,
|
|
1701
|
-
0,
|
|
1702
|
-
[_nN, _nE, _nNL, _nEL, _nL, _eL, _nNP, _nEP, _nP, _eP, _tNPV, _tEPV, _nS, _eS],
|
|
1703
|
-
[1, 1, 1, 1, 64 | 0, 64 | 0, 1, 1, [1, n0, _LVML, 0, 128 | 1], [1, n0, _LVML, 0, 128 | 1], 1, 1, () => NodeStructures, () => EdgeStructures]
|
|
1704
|
-
];
|
|
1705
|
-
var PropertygraphSummaryValueMap$ = [3, n0, _PSVM,
|
|
1706
|
-
0,
|
|
1707
|
-
[_ve, _lSCT, _gS],
|
|
1708
|
-
[0, 5, () => PropertygraphSummary$]
|
|
1709
|
-
];
|
|
1710
|
-
var QueryEvalStats$ = [3, n0, _QES,
|
|
1711
|
-
0,
|
|
1712
|
-
[_w, _el, _ca, _su],
|
|
1713
|
-
[1, 1, 2, 15]
|
|
1714
|
-
];
|
|
1715
|
-
var QueryLanguageVersion$ = [3, n0, _QLV,
|
|
1716
|
-
0,
|
|
1717
|
-
[_ve],
|
|
1718
|
-
[0], 1
|
|
1719
|
-
];
|
|
1720
|
-
var QueryLimitExceededException$ = [-3, n0, _QLEE,
|
|
1721
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1722
|
-
[_dM, _rI, _co],
|
|
1723
|
-
[0, 0, 0], 3
|
|
1724
|
-
];
|
|
1725
|
-
schema.TypeRegistry.for(n0).registerError(QueryLimitExceededException$, QueryLimitExceededException);
|
|
1726
|
-
var QueryLimitException$ = [-3, n0, _QLE,
|
|
1727
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1728
|
-
[_dM, _rI, _co],
|
|
1729
|
-
[0, 0, 0], 3
|
|
1730
|
-
];
|
|
1731
|
-
schema.TypeRegistry.for(n0).registerError(QueryLimitException$, QueryLimitException);
|
|
1732
|
-
var QueryTooLargeException$ = [-3, n0, _QTLE,
|
|
1733
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1734
|
-
[_dM, _rI, _co],
|
|
1735
|
-
[0, 0, 0], 3
|
|
1736
|
-
];
|
|
1737
|
-
schema.TypeRegistry.for(n0).registerError(QueryTooLargeException$, QueryTooLargeException);
|
|
1738
|
-
var RDFGraphSummary$ = [3, n0, _RDFGS,
|
|
1739
|
-
0,
|
|
1740
|
-
[_nDS, _nDP, _nQ, _nC, _cla, _pre, _sS],
|
|
1741
|
-
[1, 1, 1, 1, 64 | 0, [1, n0, _LVML, 0, 128 | 1], () => SubjectStructures]
|
|
1742
|
-
];
|
|
1743
|
-
var RDFGraphSummaryValueMap$ = [3, n0, _RDFGSVM,
|
|
1744
|
-
0,
|
|
1745
|
-
[_ve, _lSCT, _gS],
|
|
1746
|
-
[0, 5, () => RDFGraphSummary$]
|
|
1747
|
-
];
|
|
1748
|
-
var ReadOnlyViolationException$ = [-3, n0, _ROVE,
|
|
1749
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1750
|
-
[_dM, _rI, _co],
|
|
1751
|
-
[0, 0, 0], 3
|
|
1752
|
-
];
|
|
1753
|
-
schema.TypeRegistry.for(n0).registerError(ReadOnlyViolationException$, ReadOnlyViolationException);
|
|
1754
|
-
var RefreshStatisticsIdMap$ = [3, n0, _RSIM,
|
|
1755
|
-
0,
|
|
1756
|
-
[_sI],
|
|
1757
|
-
[0]
|
|
1758
|
-
];
|
|
1759
|
-
var S3Exception$ = [-3, n0, _SE,
|
|
1760
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1761
|
-
[_dM, _rI, _co],
|
|
1762
|
-
[0, 0, 0], 3
|
|
1763
|
-
];
|
|
1764
|
-
schema.TypeRegistry.for(n0).registerError(S3Exception$, S3Exception);
|
|
1765
|
-
var ServerShutdownException$ = [-3, n0, _SSE,
|
|
1766
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1767
|
-
[_dM, _rI, _co],
|
|
1768
|
-
[0, 0, 0], 3
|
|
1769
|
-
];
|
|
1770
|
-
schema.TypeRegistry.for(n0).registerError(ServerShutdownException$, ServerShutdownException);
|
|
1771
|
-
var SparqlData$ = [3, n0, _SD,
|
|
1772
|
-
0,
|
|
1773
|
-
[_st],
|
|
1774
|
-
[0], 1
|
|
1775
|
-
];
|
|
1776
|
-
var SparqlRecord$ = [3, n0, _SR,
|
|
1777
|
-
0,
|
|
1778
|
-
[_cTIMo, _eI, _da, _op_, _iLO],
|
|
1779
|
-
[[1, { [_jN]: _cT }], 128 | 0, () => SparqlData$, 0, 2], 4
|
|
1780
|
-
];
|
|
1781
|
-
var StartLoaderJobInput$ = [3, n0, _SLJI,
|
|
1782
|
-
0,
|
|
1783
|
-
[_so, _fo, _sBR, _iRA, _mod, _fOE, _par, _pC, _uSCP, _qR, _de, _uPEI, _eOL],
|
|
1784
|
-
[0, 0, [0, { [_jN]: _reg }], 0, 0, 2, 0, 128 | 0, 2, 2, 64 | 0, 2, 2], 4
|
|
1785
|
-
];
|
|
1786
|
-
var StartLoaderJobOutput$ = [3, n0, _SLJO,
|
|
1787
|
-
0,
|
|
1788
|
-
[_s, _p],
|
|
1789
|
-
[0, 128 | 0], 2
|
|
1790
|
-
];
|
|
1791
|
-
var StartMLDataProcessingJobInput$ = [3, n0, _SMLDPJI,
|
|
1792
|
-
0,
|
|
1793
|
-
[_iDSL, _pDSL, _i, _pDPJI, _sIRA, _nIRA, _pIT, _pIVSIGB, _pTOIS, _mTo, _cFN, _sub, _sGI, _vEKMSK, _sOEKMSK],
|
|
1794
|
-
[0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 64 | 0, 64 | 0, 0, 0], 2
|
|
1795
|
-
];
|
|
1796
|
-
var StartMLDataProcessingJobOutput$ = [3, n0, _SMLDPJO,
|
|
1797
|
-
0,
|
|
1798
|
-
[_i, _a, _cTIM],
|
|
1799
|
-
[0, 0, 1]
|
|
1800
|
-
];
|
|
1801
|
-
var StartMLModelTrainingJobInput$ = [3, n0, _SMLMTJI,
|
|
1802
|
-
0,
|
|
1803
|
-
[_dPJI, _tMSL, _i, _pMTJI, _sIRA, _nIRA, _bPIT, _tIT, _tIVSIGB, _tTOIS, _mHPONOTJ, _mHPOPTJ, _sub, _sGI, _vEKMSK, _sOEKMSK, _eMST, _cMTP],
|
|
1804
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 64 | 0, 64 | 0, 0, 0, 2, () => CustomModelTrainingParameters$], 2
|
|
1805
|
-
];
|
|
1806
|
-
var StartMLModelTrainingJobOutput$ = [3, n0, _SMLMTJO,
|
|
1807
|
-
0,
|
|
1808
|
-
[_i, _a, _cTIM],
|
|
1809
|
-
[0, 0, 1]
|
|
1810
|
-
];
|
|
1811
|
-
var StartMLModelTransformJobInput$ = [3, n0, _SMLMTJIt,
|
|
1812
|
-
0,
|
|
1813
|
-
[_mTOSL, _i, _dPJI, _mMTJI, _tJN, _sIRA, _nIRA, _cMTPu, _bPIT, _bPIVSIGB, _sub, _sGI, _vEKMSK, _sOEKMSK],
|
|
1814
|
-
[0, 0, 0, 0, 0, 0, 0, () => CustomModelTransformParameters$, 0, 1, 64 | 0, 64 | 0, 0, 0], 1
|
|
1815
|
-
];
|
|
1816
|
-
var StartMLModelTransformJobOutput$ = [3, n0, _SMLMTJOt,
|
|
1817
|
-
0,
|
|
1818
|
-
[_i, _a, _cTIM],
|
|
1819
|
-
[0, 0, 1]
|
|
1820
|
-
];
|
|
1821
|
-
var Statistics$ = [3, n0, _S,
|
|
1822
|
-
0,
|
|
1823
|
-
[_aC, _ac, _sI, _dat, _no, _sIi],
|
|
1824
|
-
[2, 2, 0, 5, 0, () => StatisticsSummary$]
|
|
1825
|
-
];
|
|
1826
|
-
var StatisticsNotAvailableException$ = [-3, n0, _SNAE,
|
|
1827
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1828
|
-
[_dM, _rI, _co],
|
|
1829
|
-
[0, 0, 0], 3
|
|
1830
|
-
];
|
|
1831
|
-
schema.TypeRegistry.for(n0).registerError(StatisticsNotAvailableException$, StatisticsNotAvailableException);
|
|
1832
|
-
var StatisticsSummary$ = [3, n0, _SS,
|
|
1833
|
-
0,
|
|
1834
|
-
[_sCi, _iC, _pCr],
|
|
1835
|
-
[1, 1, 1]
|
|
1836
|
-
];
|
|
1837
|
-
var StreamRecordsNotFoundException$ = [-3, n0, _SRNFE,
|
|
1838
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1839
|
-
[_dM, _rI, _co],
|
|
1840
|
-
[0, 0, 0], 3
|
|
1841
|
-
];
|
|
1842
|
-
schema.TypeRegistry.for(n0).registerError(StreamRecordsNotFoundException$, StreamRecordsNotFoundException);
|
|
1843
|
-
var SubjectStructure$ = [3, n0, _SSu,
|
|
1844
|
-
0,
|
|
1845
|
-
[_cou, _pre],
|
|
1846
|
-
[1, 64 | 0]
|
|
1847
|
-
];
|
|
1848
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1849
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1850
|
-
[_dM, _rI, _co],
|
|
1851
|
-
[0, 0, 0], 3
|
|
1852
|
-
];
|
|
1853
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1854
|
-
var TimeLimitExceededException$ = [-3, n0, _TLEE,
|
|
1855
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1856
|
-
[_dM, _rI, _co],
|
|
1857
|
-
[0, 0, 0], 3
|
|
1858
|
-
];
|
|
1859
|
-
schema.TypeRegistry.for(n0).registerError(TimeLimitExceededException$, TimeLimitExceededException);
|
|
1860
|
-
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
1861
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1862
|
-
[_dM, _rI, _co],
|
|
1863
|
-
[0, 0, 0], 3
|
|
1864
|
-
];
|
|
1865
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
1866
|
-
var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
1867
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1868
|
-
[_dM, _rI, _co],
|
|
1869
|
-
[0, 0, 0], 3
|
|
1870
|
-
];
|
|
1871
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
1872
|
-
var __Unit = "unit";
|
|
1873
|
-
var NeptunedataServiceException$ = [-3, _sm, "NeptunedataServiceException", 0, [], []];
|
|
1874
|
-
schema.TypeRegistry.for(_sm).registerError(NeptunedataServiceException$, NeptunedataServiceException);
|
|
1875
|
-
var EdgeStructures = [1, n0, _ESd,
|
|
1876
|
-
0, () => EdgeStructure$
|
|
1877
|
-
];
|
|
1878
|
-
var GremlinQueries = [1, n0, _GQ,
|
|
1879
|
-
0, () => GremlinQueryStatus$
|
|
1880
|
-
];
|
|
1881
|
-
var MlModels = [1, n0, _MM,
|
|
1882
|
-
0, () => MlConfigDefinition$
|
|
1883
|
-
];
|
|
1884
|
-
var Models = [1, n0, _M,
|
|
1885
|
-
0, () => MlConfigDefinition$
|
|
1886
|
-
];
|
|
1887
|
-
var NodeStructures = [1, n0, _NSo,
|
|
1888
|
-
0, () => NodeStructure$
|
|
1889
|
-
];
|
|
1890
|
-
var OpenCypherQueries = [1, n0, _OCQ,
|
|
1891
|
-
0, () => GremlinQueryStatus$
|
|
1892
|
-
];
|
|
1893
|
-
var PropertygraphRecordsList = [1, n0, _PRL,
|
|
1894
|
-
0, [() => PropertygraphRecord$,
|
|
1895
|
-
0]
|
|
1896
|
-
];
|
|
1897
|
-
var SparqlRecordsList = [1, n0, _SRL,
|
|
1898
|
-
0, [() => SparqlRecord$,
|
|
1899
|
-
0]
|
|
1900
|
-
];
|
|
1901
|
-
var SubjectStructures = [1, n0, _SSub,
|
|
1902
|
-
0, () => SubjectStructure$
|
|
1903
|
-
];
|
|
1904
|
-
var CancelGremlinQuery$ = [9, n0, _CGQ,
|
|
1905
|
-
{ [_h]: ["DELETE", "/gremlin/status/{queryId}", 200] }, () => CancelGremlinQueryInput$, () => CancelGremlinQueryOutput$
|
|
1906
|
-
];
|
|
1907
|
-
var CancelLoaderJob$ = [9, n0, _CLJ,
|
|
1908
|
-
{ [_h]: ["DELETE", "/loader/{loadId}", 200] }, () => CancelLoaderJobInput$, () => CancelLoaderJobOutput$
|
|
1909
|
-
];
|
|
1910
|
-
var CancelMLDataProcessingJob$ = [9, n0, _CMLDPJ,
|
|
1911
|
-
{ [_h]: ["DELETE", "/ml/dataprocessing/{id}", 200] }, () => CancelMLDataProcessingJobInput$, () => CancelMLDataProcessingJobOutput$
|
|
1912
|
-
];
|
|
1913
|
-
var CancelMLModelTrainingJob$ = [9, n0, _CMLMTJ,
|
|
1914
|
-
{ [_h]: ["DELETE", "/ml/modeltraining/{id}", 200] }, () => CancelMLModelTrainingJobInput$, () => CancelMLModelTrainingJobOutput$
|
|
1915
|
-
];
|
|
1916
|
-
var CancelMLModelTransformJob$ = [9, n0, _CMLMTJa,
|
|
1917
|
-
{ [_h]: ["DELETE", "/ml/modeltransform/{id}", 200] }, () => CancelMLModelTransformJobInput$, () => CancelMLModelTransformJobOutput$
|
|
1918
|
-
];
|
|
1919
|
-
var CancelOpenCypherQuery$ = [9, n0, _COCQ,
|
|
1920
|
-
{ [_h]: ["DELETE", "/opencypher/status/{queryId}", 200] }, () => CancelOpenCypherQueryInput$, () => CancelOpenCypherQueryOutput$
|
|
1921
|
-
];
|
|
1922
|
-
var CreateMLEndpoint$ = [9, n0, _CMLE,
|
|
1923
|
-
{ [_h]: ["POST", "/ml/endpoints", 200] }, () => CreateMLEndpointInput$, () => CreateMLEndpointOutput$
|
|
1924
|
-
];
|
|
1925
|
-
var DeleteMLEndpoint$ = [9, n0, _DMLE,
|
|
1926
|
-
{ [_h]: ["DELETE", "/ml/endpoints/{id}", 200] }, () => DeleteMLEndpointInput$, () => DeleteMLEndpointOutput$
|
|
1927
|
-
];
|
|
1928
|
-
var DeletePropertygraphStatistics$ = [9, n0, _DPS,
|
|
1929
|
-
{ [_h]: ["DELETE", "/propertygraph/statistics", 200] }, () => __Unit, () => DeletePropertygraphStatisticsOutput$
|
|
1930
|
-
];
|
|
1931
|
-
var DeleteSparqlStatistics$ = [9, n0, _DSS,
|
|
1932
|
-
{ [_h]: ["DELETE", "/sparql/statistics", 200] }, () => __Unit, () => DeleteSparqlStatisticsOutput$
|
|
1933
|
-
];
|
|
1934
|
-
var ExecuteFastReset$ = [9, n0, _EFR,
|
|
1935
|
-
{ [_h]: ["POST", "/system", 200] }, () => ExecuteFastResetInput$, () => ExecuteFastResetOutput$
|
|
1936
|
-
];
|
|
1937
|
-
var ExecuteGremlinExplainQuery$ = [9, n0, _EGEQ,
|
|
1938
|
-
{ [_h]: ["POST", "/gremlin/explain", 200] }, () => ExecuteGremlinExplainQueryInput$, () => ExecuteGremlinExplainQueryOutput$
|
|
1939
|
-
];
|
|
1940
|
-
var ExecuteGremlinProfileQuery$ = [9, n0, _EGPQ,
|
|
1941
|
-
{ [_h]: ["POST", "/gremlin/profile", 200] }, () => ExecuteGremlinProfileQueryInput$, () => ExecuteGremlinProfileQueryOutput$
|
|
1942
|
-
];
|
|
1943
|
-
var ExecuteGremlinQuery$ = [9, n0, _EGQ,
|
|
1944
|
-
{ [_h]: ["POST", "/gremlin", 200] }, () => ExecuteGremlinQueryInput$, () => ExecuteGremlinQueryOutput$
|
|
1945
|
-
];
|
|
1946
|
-
var ExecuteOpenCypherExplainQuery$ = [9, n0, _EOCEQ,
|
|
1947
|
-
{ [_h]: ["POST", "/opencypher/explain", 200] }, () => ExecuteOpenCypherExplainQueryInput$, () => ExecuteOpenCypherExplainQueryOutput$
|
|
1948
|
-
];
|
|
1949
|
-
var ExecuteOpenCypherQuery$ = [9, n0, _EOCQ,
|
|
1950
|
-
{ [_h]: ["POST", "/opencypher", 200] }, () => ExecuteOpenCypherQueryInput$, () => ExecuteOpenCypherQueryOutput$
|
|
1951
|
-
];
|
|
1952
|
-
var GetEngineStatus$ = [9, n0, _GES,
|
|
1953
|
-
{ [_h]: ["GET", "/status", 200] }, () => __Unit, () => GetEngineStatusOutput$
|
|
1954
|
-
];
|
|
1955
|
-
var GetGremlinQueryStatus$ = [9, n0, _GGQS,
|
|
1956
|
-
{ [_h]: ["GET", "/gremlin/status/{queryId}", 200] }, () => GetGremlinQueryStatusInput$, () => GetGremlinQueryStatusOutput$
|
|
1957
|
-
];
|
|
1958
|
-
var GetLoaderJobStatus$ = [9, n0, _GLJS,
|
|
1959
|
-
{ [_h]: ["GET", "/loader/{loadId}", 200] }, () => GetLoaderJobStatusInput$, () => GetLoaderJobStatusOutput$
|
|
1960
|
-
];
|
|
1961
|
-
var GetMLDataProcessingJob$ = [9, n0, _GMLDPJ,
|
|
1962
|
-
{ [_h]: ["GET", "/ml/dataprocessing/{id}", 200] }, () => GetMLDataProcessingJobInput$, () => GetMLDataProcessingJobOutput$
|
|
1963
|
-
];
|
|
1964
|
-
var GetMLEndpoint$ = [9, n0, _GMLE,
|
|
1965
|
-
{ [_h]: ["GET", "/ml/endpoints/{id}", 200] }, () => GetMLEndpointInput$, () => GetMLEndpointOutput$
|
|
1966
|
-
];
|
|
1967
|
-
var GetMLModelTrainingJob$ = [9, n0, _GMLMTJ,
|
|
1968
|
-
{ [_h]: ["GET", "/ml/modeltraining/{id}", 200] }, () => GetMLModelTrainingJobInput$, () => GetMLModelTrainingJobOutput$
|
|
1969
|
-
];
|
|
1970
|
-
var GetMLModelTransformJob$ = [9, n0, _GMLMTJe,
|
|
1971
|
-
{ [_h]: ["GET", "/ml/modeltransform/{id}", 200] }, () => GetMLModelTransformJobInput$, () => GetMLModelTransformJobOutput$
|
|
1972
|
-
];
|
|
1973
|
-
var GetOpenCypherQueryStatus$ = [9, n0, _GOCQS,
|
|
1974
|
-
{ [_h]: ["GET", "/opencypher/status/{queryId}", 200] }, () => GetOpenCypherQueryStatusInput$, () => GetOpenCypherQueryStatusOutput$
|
|
1975
|
-
];
|
|
1976
|
-
var GetPropertygraphStatistics$ = [9, n0, _GPS,
|
|
1977
|
-
{ [_h]: ["GET", "/propertygraph/statistics", 200] }, () => __Unit, () => GetPropertygraphStatisticsOutput$
|
|
1978
|
-
];
|
|
1979
|
-
var GetPropertygraphStream$ = [9, n0, _GPSe,
|
|
1980
|
-
{ [_h]: ["GET", "/propertygraph/stream", 200] }, () => GetPropertygraphStreamInput$, () => GetPropertygraphStreamOutput$
|
|
1981
|
-
];
|
|
1982
|
-
var GetPropertygraphSummary$ = [9, n0, _GPSet,
|
|
1983
|
-
{ [_h]: ["GET", "/propertygraph/statistics/summary", 200] }, () => GetPropertygraphSummaryInput$, () => GetPropertygraphSummaryOutput$
|
|
1984
|
-
];
|
|
1985
|
-
var GetRDFGraphSummary$ = [9, n0, _GRDFGS,
|
|
1986
|
-
{ [_h]: ["GET", "/rdf/statistics/summary", 200] }, () => GetRDFGraphSummaryInput$, () => GetRDFGraphSummaryOutput$
|
|
1987
|
-
];
|
|
1988
|
-
var GetSparqlStatistics$ = [9, n0, _GSS,
|
|
1989
|
-
{ [_h]: ["GET", "/sparql/statistics", 200] }, () => __Unit, () => GetSparqlStatisticsOutput$
|
|
1990
|
-
];
|
|
1991
|
-
var GetSparqlStream$ = [9, n0, _GSSe,
|
|
1992
|
-
{ [_h]: ["GET", "/sparql/stream", 200] }, () => GetSparqlStreamInput$, () => GetSparqlStreamOutput$
|
|
1993
|
-
];
|
|
1994
|
-
var ListGremlinQueries$ = [9, n0, _LGQ,
|
|
1995
|
-
{ [_h]: ["GET", "/gremlin/status", 200] }, () => ListGremlinQueriesInput$, () => ListGremlinQueriesOutput$
|
|
1996
|
-
];
|
|
1997
|
-
var ListLoaderJobs$ = [9, n0, _LLJ,
|
|
1998
|
-
{ [_h]: ["GET", "/loader", 200] }, () => ListLoaderJobsInput$, () => ListLoaderJobsOutput$
|
|
1999
|
-
];
|
|
2000
|
-
var ListMLDataProcessingJobs$ = [9, n0, _LMLDPJ,
|
|
2001
|
-
{ [_h]: ["GET", "/ml/dataprocessing", 200] }, () => ListMLDataProcessingJobsInput$, () => ListMLDataProcessingJobsOutput$
|
|
2002
|
-
];
|
|
2003
|
-
var ListMLEndpoints$ = [9, n0, _LMLE,
|
|
2004
|
-
{ [_h]: ["GET", "/ml/endpoints", 200] }, () => ListMLEndpointsInput$, () => ListMLEndpointsOutput$
|
|
2005
|
-
];
|
|
2006
|
-
var ListMLModelTrainingJobs$ = [9, n0, _LMLMTJ,
|
|
2007
|
-
{ [_h]: ["GET", "/ml/modeltraining", 200] }, () => ListMLModelTrainingJobsInput$, () => ListMLModelTrainingJobsOutput$
|
|
2008
|
-
];
|
|
2009
|
-
var ListMLModelTransformJobs$ = [9, n0, _LMLMTJi,
|
|
2010
|
-
{ [_h]: ["GET", "/ml/modeltransform", 200] }, () => ListMLModelTransformJobsInput$, () => ListMLModelTransformJobsOutput$
|
|
2011
|
-
];
|
|
2012
|
-
var ListOpenCypherQueries$ = [9, n0, _LOCQ,
|
|
2013
|
-
{ [_h]: ["GET", "/opencypher/status", 200] }, () => ListOpenCypherQueriesInput$, () => ListOpenCypherQueriesOutput$
|
|
2014
|
-
];
|
|
2015
|
-
var ManagePropertygraphStatistics$ = [9, n0, _MPS,
|
|
2016
|
-
{ [_h]: ["POST", "/propertygraph/statistics", 200] }, () => ManagePropertygraphStatisticsInput$, () => ManagePropertygraphStatisticsOutput$
|
|
2017
|
-
];
|
|
2018
|
-
var ManageSparqlStatistics$ = [9, n0, _MSS,
|
|
2019
|
-
{ [_h]: ["POST", "/sparql/statistics", 200] }, () => ManageSparqlStatisticsInput$, () => ManageSparqlStatisticsOutput$
|
|
2020
|
-
];
|
|
2021
|
-
var StartLoaderJob$ = [9, n0, _SLJ,
|
|
2022
|
-
{ [_h]: ["POST", "/loader", 200] }, () => StartLoaderJobInput$, () => StartLoaderJobOutput$
|
|
2023
|
-
];
|
|
2024
|
-
var StartMLDataProcessingJob$ = [9, n0, _SMLDPJ,
|
|
2025
|
-
{ [_h]: ["POST", "/ml/dataprocessing", 200] }, () => StartMLDataProcessingJobInput$, () => StartMLDataProcessingJobOutput$
|
|
2026
|
-
];
|
|
2027
|
-
var StartMLModelTrainingJob$ = [9, n0, _SMLMTJ,
|
|
2028
|
-
{ [_h]: ["POST", "/ml/modeltraining", 200] }, () => StartMLModelTrainingJobInput$, () => StartMLModelTrainingJobOutput$
|
|
2029
|
-
];
|
|
2030
|
-
var StartMLModelTransformJob$ = [9, n0, _SMLMTJt,
|
|
2031
|
-
{ [_h]: ["POST", "/ml/modeltransform", 200] }, () => StartMLModelTransformJobInput$, () => StartMLModelTransformJobOutput$
|
|
2032
|
-
];
|
|
2033
|
-
|
|
2034
116
|
class CancelGremlinQueryCommand extends smithyClient.Command
|
|
2035
117
|
.classBuilder()
|
|
2036
118
|
.ep(commonParams)
|
|
@@ -2039,7 +121,7 @@ class CancelGremlinQueryCommand extends smithyClient.Command
|
|
|
2039
121
|
})
|
|
2040
122
|
.s("AmazonNeptuneDataplane", "CancelGremlinQuery", {})
|
|
2041
123
|
.n("NeptunedataClient", "CancelGremlinQueryCommand")
|
|
2042
|
-
.sc(CancelGremlinQuery$)
|
|
124
|
+
.sc(schemas_0.CancelGremlinQuery$)
|
|
2043
125
|
.build() {
|
|
2044
126
|
}
|
|
2045
127
|
|
|
@@ -2051,7 +133,7 @@ class CancelLoaderJobCommand extends smithyClient.Command
|
|
|
2051
133
|
})
|
|
2052
134
|
.s("AmazonNeptuneDataplane", "CancelLoaderJob", {})
|
|
2053
135
|
.n("NeptunedataClient", "CancelLoaderJobCommand")
|
|
2054
|
-
.sc(CancelLoaderJob$)
|
|
136
|
+
.sc(schemas_0.CancelLoaderJob$)
|
|
2055
137
|
.build() {
|
|
2056
138
|
}
|
|
2057
139
|
|
|
@@ -2063,7 +145,7 @@ class CancelMLDataProcessingJobCommand extends smithyClient.Command
|
|
|
2063
145
|
})
|
|
2064
146
|
.s("AmazonNeptuneDataplane", "CancelMLDataProcessingJob", {})
|
|
2065
147
|
.n("NeptunedataClient", "CancelMLDataProcessingJobCommand")
|
|
2066
|
-
.sc(CancelMLDataProcessingJob$)
|
|
148
|
+
.sc(schemas_0.CancelMLDataProcessingJob$)
|
|
2067
149
|
.build() {
|
|
2068
150
|
}
|
|
2069
151
|
|
|
@@ -2075,7 +157,7 @@ class CancelMLModelTrainingJobCommand extends smithyClient.Command
|
|
|
2075
157
|
})
|
|
2076
158
|
.s("AmazonNeptuneDataplane", "CancelMLModelTrainingJob", {})
|
|
2077
159
|
.n("NeptunedataClient", "CancelMLModelTrainingJobCommand")
|
|
2078
|
-
.sc(CancelMLModelTrainingJob$)
|
|
160
|
+
.sc(schemas_0.CancelMLModelTrainingJob$)
|
|
2079
161
|
.build() {
|
|
2080
162
|
}
|
|
2081
163
|
|
|
@@ -2087,7 +169,7 @@ class CancelMLModelTransformJobCommand extends smithyClient.Command
|
|
|
2087
169
|
})
|
|
2088
170
|
.s("AmazonNeptuneDataplane", "CancelMLModelTransformJob", {})
|
|
2089
171
|
.n("NeptunedataClient", "CancelMLModelTransformJobCommand")
|
|
2090
|
-
.sc(CancelMLModelTransformJob$)
|
|
172
|
+
.sc(schemas_0.CancelMLModelTransformJob$)
|
|
2091
173
|
.build() {
|
|
2092
174
|
}
|
|
2093
175
|
|
|
@@ -2099,7 +181,7 @@ class CancelOpenCypherQueryCommand extends smithyClient.Command
|
|
|
2099
181
|
})
|
|
2100
182
|
.s("AmazonNeptuneDataplane", "CancelOpenCypherQuery", {})
|
|
2101
183
|
.n("NeptunedataClient", "CancelOpenCypherQueryCommand")
|
|
2102
|
-
.sc(CancelOpenCypherQuery$)
|
|
184
|
+
.sc(schemas_0.CancelOpenCypherQuery$)
|
|
2103
185
|
.build() {
|
|
2104
186
|
}
|
|
2105
187
|
|
|
@@ -2111,7 +193,7 @@ class CreateMLEndpointCommand extends smithyClient.Command
|
|
|
2111
193
|
})
|
|
2112
194
|
.s("AmazonNeptuneDataplane", "CreateMLEndpoint", {})
|
|
2113
195
|
.n("NeptunedataClient", "CreateMLEndpointCommand")
|
|
2114
|
-
.sc(CreateMLEndpoint$)
|
|
196
|
+
.sc(schemas_0.CreateMLEndpoint$)
|
|
2115
197
|
.build() {
|
|
2116
198
|
}
|
|
2117
199
|
|
|
@@ -2123,7 +205,7 @@ class DeleteMLEndpointCommand extends smithyClient.Command
|
|
|
2123
205
|
})
|
|
2124
206
|
.s("AmazonNeptuneDataplane", "DeleteMLEndpoint", {})
|
|
2125
207
|
.n("NeptunedataClient", "DeleteMLEndpointCommand")
|
|
2126
|
-
.sc(DeleteMLEndpoint$)
|
|
208
|
+
.sc(schemas_0.DeleteMLEndpoint$)
|
|
2127
209
|
.build() {
|
|
2128
210
|
}
|
|
2129
211
|
|
|
@@ -2135,7 +217,7 @@ class DeletePropertygraphStatisticsCommand extends smithyClient.Command
|
|
|
2135
217
|
})
|
|
2136
218
|
.s("AmazonNeptuneDataplane", "DeletePropertygraphStatistics", {})
|
|
2137
219
|
.n("NeptunedataClient", "DeletePropertygraphStatisticsCommand")
|
|
2138
|
-
.sc(DeletePropertygraphStatistics$)
|
|
220
|
+
.sc(schemas_0.DeletePropertygraphStatistics$)
|
|
2139
221
|
.build() {
|
|
2140
222
|
}
|
|
2141
223
|
|
|
@@ -2147,7 +229,7 @@ class DeleteSparqlStatisticsCommand extends smithyClient.Command
|
|
|
2147
229
|
})
|
|
2148
230
|
.s("AmazonNeptuneDataplane", "DeleteSparqlStatistics", {})
|
|
2149
231
|
.n("NeptunedataClient", "DeleteSparqlStatisticsCommand")
|
|
2150
|
-
.sc(DeleteSparqlStatistics$)
|
|
232
|
+
.sc(schemas_0.DeleteSparqlStatistics$)
|
|
2151
233
|
.build() {
|
|
2152
234
|
}
|
|
2153
235
|
|
|
@@ -2159,7 +241,7 @@ class ExecuteFastResetCommand extends smithyClient.Command
|
|
|
2159
241
|
})
|
|
2160
242
|
.s("AmazonNeptuneDataplane", "ExecuteFastReset", {})
|
|
2161
243
|
.n("NeptunedataClient", "ExecuteFastResetCommand")
|
|
2162
|
-
.sc(ExecuteFastReset$)
|
|
244
|
+
.sc(schemas_0.ExecuteFastReset$)
|
|
2163
245
|
.build() {
|
|
2164
246
|
}
|
|
2165
247
|
|
|
@@ -2171,7 +253,7 @@ class ExecuteGremlinExplainQueryCommand extends smithyClient.Command
|
|
|
2171
253
|
})
|
|
2172
254
|
.s("AmazonNeptuneDataplane", "ExecuteGremlinExplainQuery", {})
|
|
2173
255
|
.n("NeptunedataClient", "ExecuteGremlinExplainQueryCommand")
|
|
2174
|
-
.sc(ExecuteGremlinExplainQuery$)
|
|
256
|
+
.sc(schemas_0.ExecuteGremlinExplainQuery$)
|
|
2175
257
|
.build() {
|
|
2176
258
|
}
|
|
2177
259
|
|
|
@@ -2183,7 +265,7 @@ class ExecuteGremlinProfileQueryCommand extends smithyClient.Command
|
|
|
2183
265
|
})
|
|
2184
266
|
.s("AmazonNeptuneDataplane", "ExecuteGremlinProfileQuery", {})
|
|
2185
267
|
.n("NeptunedataClient", "ExecuteGremlinProfileQueryCommand")
|
|
2186
|
-
.sc(ExecuteGremlinProfileQuery$)
|
|
268
|
+
.sc(schemas_0.ExecuteGremlinProfileQuery$)
|
|
2187
269
|
.build() {
|
|
2188
270
|
}
|
|
2189
271
|
|
|
@@ -2195,7 +277,7 @@ class ExecuteGremlinQueryCommand extends smithyClient.Command
|
|
|
2195
277
|
})
|
|
2196
278
|
.s("AmazonNeptuneDataplane", "ExecuteGremlinQuery", {})
|
|
2197
279
|
.n("NeptunedataClient", "ExecuteGremlinQueryCommand")
|
|
2198
|
-
.sc(ExecuteGremlinQuery$)
|
|
280
|
+
.sc(schemas_0.ExecuteGremlinQuery$)
|
|
2199
281
|
.build() {
|
|
2200
282
|
}
|
|
2201
283
|
|
|
@@ -2207,7 +289,7 @@ class ExecuteOpenCypherExplainQueryCommand extends smithyClient.Command
|
|
|
2207
289
|
})
|
|
2208
290
|
.s("AmazonNeptuneDataplane", "ExecuteOpenCypherExplainQuery", {})
|
|
2209
291
|
.n("NeptunedataClient", "ExecuteOpenCypherExplainQueryCommand")
|
|
2210
|
-
.sc(ExecuteOpenCypherExplainQuery$)
|
|
292
|
+
.sc(schemas_0.ExecuteOpenCypherExplainQuery$)
|
|
2211
293
|
.build() {
|
|
2212
294
|
}
|
|
2213
295
|
|
|
@@ -2219,7 +301,7 @@ class ExecuteOpenCypherQueryCommand extends smithyClient.Command
|
|
|
2219
301
|
})
|
|
2220
302
|
.s("AmazonNeptuneDataplane", "ExecuteOpenCypherQuery", {})
|
|
2221
303
|
.n("NeptunedataClient", "ExecuteOpenCypherQueryCommand")
|
|
2222
|
-
.sc(ExecuteOpenCypherQuery$)
|
|
304
|
+
.sc(schemas_0.ExecuteOpenCypherQuery$)
|
|
2223
305
|
.build() {
|
|
2224
306
|
}
|
|
2225
307
|
|
|
@@ -2231,7 +313,7 @@ class GetEngineStatusCommand extends smithyClient.Command
|
|
|
2231
313
|
})
|
|
2232
314
|
.s("AmazonNeptuneDataplane", "GetEngineStatus", {})
|
|
2233
315
|
.n("NeptunedataClient", "GetEngineStatusCommand")
|
|
2234
|
-
.sc(GetEngineStatus$)
|
|
316
|
+
.sc(schemas_0.GetEngineStatus$)
|
|
2235
317
|
.build() {
|
|
2236
318
|
}
|
|
2237
319
|
|
|
@@ -2243,7 +325,7 @@ class GetGremlinQueryStatusCommand extends smithyClient.Command
|
|
|
2243
325
|
})
|
|
2244
326
|
.s("AmazonNeptuneDataplane", "GetGremlinQueryStatus", {})
|
|
2245
327
|
.n("NeptunedataClient", "GetGremlinQueryStatusCommand")
|
|
2246
|
-
.sc(GetGremlinQueryStatus$)
|
|
328
|
+
.sc(schemas_0.GetGremlinQueryStatus$)
|
|
2247
329
|
.build() {
|
|
2248
330
|
}
|
|
2249
331
|
|
|
@@ -2255,7 +337,7 @@ class GetLoaderJobStatusCommand extends smithyClient.Command
|
|
|
2255
337
|
})
|
|
2256
338
|
.s("AmazonNeptuneDataplane", "GetLoaderJobStatus", {})
|
|
2257
339
|
.n("NeptunedataClient", "GetLoaderJobStatusCommand")
|
|
2258
|
-
.sc(GetLoaderJobStatus$)
|
|
340
|
+
.sc(schemas_0.GetLoaderJobStatus$)
|
|
2259
341
|
.build() {
|
|
2260
342
|
}
|
|
2261
343
|
|
|
@@ -2267,7 +349,7 @@ class GetMLDataProcessingJobCommand extends smithyClient.Command
|
|
|
2267
349
|
})
|
|
2268
350
|
.s("AmazonNeptuneDataplane", "GetMLDataProcessingJob", {})
|
|
2269
351
|
.n("NeptunedataClient", "GetMLDataProcessingJobCommand")
|
|
2270
|
-
.sc(GetMLDataProcessingJob$)
|
|
352
|
+
.sc(schemas_0.GetMLDataProcessingJob$)
|
|
2271
353
|
.build() {
|
|
2272
354
|
}
|
|
2273
355
|
|
|
@@ -2279,7 +361,7 @@ class GetMLEndpointCommand extends smithyClient.Command
|
|
|
2279
361
|
})
|
|
2280
362
|
.s("AmazonNeptuneDataplane", "GetMLEndpoint", {})
|
|
2281
363
|
.n("NeptunedataClient", "GetMLEndpointCommand")
|
|
2282
|
-
.sc(GetMLEndpoint$)
|
|
364
|
+
.sc(schemas_0.GetMLEndpoint$)
|
|
2283
365
|
.build() {
|
|
2284
366
|
}
|
|
2285
367
|
|
|
@@ -2291,7 +373,7 @@ class GetMLModelTrainingJobCommand extends smithyClient.Command
|
|
|
2291
373
|
})
|
|
2292
374
|
.s("AmazonNeptuneDataplane", "GetMLModelTrainingJob", {})
|
|
2293
375
|
.n("NeptunedataClient", "GetMLModelTrainingJobCommand")
|
|
2294
|
-
.sc(GetMLModelTrainingJob$)
|
|
376
|
+
.sc(schemas_0.GetMLModelTrainingJob$)
|
|
2295
377
|
.build() {
|
|
2296
378
|
}
|
|
2297
379
|
|
|
@@ -2303,7 +385,7 @@ class GetMLModelTransformJobCommand extends smithyClient.Command
|
|
|
2303
385
|
})
|
|
2304
386
|
.s("AmazonNeptuneDataplane", "GetMLModelTransformJob", {})
|
|
2305
387
|
.n("NeptunedataClient", "GetMLModelTransformJobCommand")
|
|
2306
|
-
.sc(GetMLModelTransformJob$)
|
|
388
|
+
.sc(schemas_0.GetMLModelTransformJob$)
|
|
2307
389
|
.build() {
|
|
2308
390
|
}
|
|
2309
391
|
|
|
@@ -2315,7 +397,7 @@ class GetOpenCypherQueryStatusCommand extends smithyClient.Command
|
|
|
2315
397
|
})
|
|
2316
398
|
.s("AmazonNeptuneDataplane", "GetOpenCypherQueryStatus", {})
|
|
2317
399
|
.n("NeptunedataClient", "GetOpenCypherQueryStatusCommand")
|
|
2318
|
-
.sc(GetOpenCypherQueryStatus$)
|
|
400
|
+
.sc(schemas_0.GetOpenCypherQueryStatus$)
|
|
2319
401
|
.build() {
|
|
2320
402
|
}
|
|
2321
403
|
|
|
@@ -2327,7 +409,7 @@ class GetPropertygraphStatisticsCommand extends smithyClient.Command
|
|
|
2327
409
|
})
|
|
2328
410
|
.s("AmazonNeptuneDataplane", "GetPropertygraphStatistics", {})
|
|
2329
411
|
.n("NeptunedataClient", "GetPropertygraphStatisticsCommand")
|
|
2330
|
-
.sc(GetPropertygraphStatistics$)
|
|
412
|
+
.sc(schemas_0.GetPropertygraphStatistics$)
|
|
2331
413
|
.build() {
|
|
2332
414
|
}
|
|
2333
415
|
|
|
@@ -2339,7 +421,7 @@ class GetPropertygraphStreamCommand extends smithyClient.Command
|
|
|
2339
421
|
})
|
|
2340
422
|
.s("AmazonNeptuneDataplane", "GetPropertygraphStream", {})
|
|
2341
423
|
.n("NeptunedataClient", "GetPropertygraphStreamCommand")
|
|
2342
|
-
.sc(GetPropertygraphStream$)
|
|
424
|
+
.sc(schemas_0.GetPropertygraphStream$)
|
|
2343
425
|
.build() {
|
|
2344
426
|
}
|
|
2345
427
|
|
|
@@ -2351,7 +433,7 @@ class GetPropertygraphSummaryCommand extends smithyClient.Command
|
|
|
2351
433
|
})
|
|
2352
434
|
.s("AmazonNeptuneDataplane", "GetPropertygraphSummary", {})
|
|
2353
435
|
.n("NeptunedataClient", "GetPropertygraphSummaryCommand")
|
|
2354
|
-
.sc(GetPropertygraphSummary$)
|
|
436
|
+
.sc(schemas_0.GetPropertygraphSummary$)
|
|
2355
437
|
.build() {
|
|
2356
438
|
}
|
|
2357
439
|
|
|
@@ -2363,7 +445,7 @@ class GetRDFGraphSummaryCommand extends smithyClient.Command
|
|
|
2363
445
|
})
|
|
2364
446
|
.s("AmazonNeptuneDataplane", "GetRDFGraphSummary", {})
|
|
2365
447
|
.n("NeptunedataClient", "GetRDFGraphSummaryCommand")
|
|
2366
|
-
.sc(GetRDFGraphSummary$)
|
|
448
|
+
.sc(schemas_0.GetRDFGraphSummary$)
|
|
2367
449
|
.build() {
|
|
2368
450
|
}
|
|
2369
451
|
|
|
@@ -2375,7 +457,7 @@ class GetSparqlStatisticsCommand extends smithyClient.Command
|
|
|
2375
457
|
})
|
|
2376
458
|
.s("AmazonNeptuneDataplane", "GetSparqlStatistics", {})
|
|
2377
459
|
.n("NeptunedataClient", "GetSparqlStatisticsCommand")
|
|
2378
|
-
.sc(GetSparqlStatistics$)
|
|
460
|
+
.sc(schemas_0.GetSparqlStatistics$)
|
|
2379
461
|
.build() {
|
|
2380
462
|
}
|
|
2381
463
|
|
|
@@ -2387,7 +469,7 @@ class GetSparqlStreamCommand extends smithyClient.Command
|
|
|
2387
469
|
})
|
|
2388
470
|
.s("AmazonNeptuneDataplane", "GetSparqlStream", {})
|
|
2389
471
|
.n("NeptunedataClient", "GetSparqlStreamCommand")
|
|
2390
|
-
.sc(GetSparqlStream$)
|
|
472
|
+
.sc(schemas_0.GetSparqlStream$)
|
|
2391
473
|
.build() {
|
|
2392
474
|
}
|
|
2393
475
|
|
|
@@ -2399,7 +481,7 @@ class ListGremlinQueriesCommand extends smithyClient.Command
|
|
|
2399
481
|
})
|
|
2400
482
|
.s("AmazonNeptuneDataplane", "ListGremlinQueries", {})
|
|
2401
483
|
.n("NeptunedataClient", "ListGremlinQueriesCommand")
|
|
2402
|
-
.sc(ListGremlinQueries$)
|
|
484
|
+
.sc(schemas_0.ListGremlinQueries$)
|
|
2403
485
|
.build() {
|
|
2404
486
|
}
|
|
2405
487
|
|
|
@@ -2411,7 +493,7 @@ class ListLoaderJobsCommand extends smithyClient.Command
|
|
|
2411
493
|
})
|
|
2412
494
|
.s("AmazonNeptuneDataplane", "ListLoaderJobs", {})
|
|
2413
495
|
.n("NeptunedataClient", "ListLoaderJobsCommand")
|
|
2414
|
-
.sc(ListLoaderJobs$)
|
|
496
|
+
.sc(schemas_0.ListLoaderJobs$)
|
|
2415
497
|
.build() {
|
|
2416
498
|
}
|
|
2417
499
|
|
|
@@ -2423,7 +505,7 @@ class ListMLDataProcessingJobsCommand extends smithyClient.Command
|
|
|
2423
505
|
})
|
|
2424
506
|
.s("AmazonNeptuneDataplane", "ListMLDataProcessingJobs", {})
|
|
2425
507
|
.n("NeptunedataClient", "ListMLDataProcessingJobsCommand")
|
|
2426
|
-
.sc(ListMLDataProcessingJobs$)
|
|
508
|
+
.sc(schemas_0.ListMLDataProcessingJobs$)
|
|
2427
509
|
.build() {
|
|
2428
510
|
}
|
|
2429
511
|
|
|
@@ -2435,7 +517,7 @@ class ListMLEndpointsCommand extends smithyClient.Command
|
|
|
2435
517
|
})
|
|
2436
518
|
.s("AmazonNeptuneDataplane", "ListMLEndpoints", {})
|
|
2437
519
|
.n("NeptunedataClient", "ListMLEndpointsCommand")
|
|
2438
|
-
.sc(ListMLEndpoints$)
|
|
520
|
+
.sc(schemas_0.ListMLEndpoints$)
|
|
2439
521
|
.build() {
|
|
2440
522
|
}
|
|
2441
523
|
|
|
@@ -2447,7 +529,7 @@ class ListMLModelTrainingJobsCommand extends smithyClient.Command
|
|
|
2447
529
|
})
|
|
2448
530
|
.s("AmazonNeptuneDataplane", "ListMLModelTrainingJobs", {})
|
|
2449
531
|
.n("NeptunedataClient", "ListMLModelTrainingJobsCommand")
|
|
2450
|
-
.sc(ListMLModelTrainingJobs$)
|
|
532
|
+
.sc(schemas_0.ListMLModelTrainingJobs$)
|
|
2451
533
|
.build() {
|
|
2452
534
|
}
|
|
2453
535
|
|
|
@@ -2459,7 +541,7 @@ class ListMLModelTransformJobsCommand extends smithyClient.Command
|
|
|
2459
541
|
})
|
|
2460
542
|
.s("AmazonNeptuneDataplane", "ListMLModelTransformJobs", {})
|
|
2461
543
|
.n("NeptunedataClient", "ListMLModelTransformJobsCommand")
|
|
2462
|
-
.sc(ListMLModelTransformJobs$)
|
|
544
|
+
.sc(schemas_0.ListMLModelTransformJobs$)
|
|
2463
545
|
.build() {
|
|
2464
546
|
}
|
|
2465
547
|
|
|
@@ -2471,7 +553,7 @@ class ListOpenCypherQueriesCommand extends smithyClient.Command
|
|
|
2471
553
|
})
|
|
2472
554
|
.s("AmazonNeptuneDataplane", "ListOpenCypherQueries", {})
|
|
2473
555
|
.n("NeptunedataClient", "ListOpenCypherQueriesCommand")
|
|
2474
|
-
.sc(ListOpenCypherQueries$)
|
|
556
|
+
.sc(schemas_0.ListOpenCypherQueries$)
|
|
2475
557
|
.build() {
|
|
2476
558
|
}
|
|
2477
559
|
|
|
@@ -2483,7 +565,7 @@ class ManagePropertygraphStatisticsCommand extends smithyClient.Command
|
|
|
2483
565
|
})
|
|
2484
566
|
.s("AmazonNeptuneDataplane", "ManagePropertygraphStatistics", {})
|
|
2485
567
|
.n("NeptunedataClient", "ManagePropertygraphStatisticsCommand")
|
|
2486
|
-
.sc(ManagePropertygraphStatistics$)
|
|
568
|
+
.sc(schemas_0.ManagePropertygraphStatistics$)
|
|
2487
569
|
.build() {
|
|
2488
570
|
}
|
|
2489
571
|
|
|
@@ -2495,7 +577,7 @@ class ManageSparqlStatisticsCommand extends smithyClient.Command
|
|
|
2495
577
|
})
|
|
2496
578
|
.s("AmazonNeptuneDataplane", "ManageSparqlStatistics", {})
|
|
2497
579
|
.n("NeptunedataClient", "ManageSparqlStatisticsCommand")
|
|
2498
|
-
.sc(ManageSparqlStatistics$)
|
|
580
|
+
.sc(schemas_0.ManageSparqlStatistics$)
|
|
2499
581
|
.build() {
|
|
2500
582
|
}
|
|
2501
583
|
|
|
@@ -2507,7 +589,7 @@ class StartLoaderJobCommand extends smithyClient.Command
|
|
|
2507
589
|
})
|
|
2508
590
|
.s("AmazonNeptuneDataplane", "StartLoaderJob", {})
|
|
2509
591
|
.n("NeptunedataClient", "StartLoaderJobCommand")
|
|
2510
|
-
.sc(StartLoaderJob$)
|
|
592
|
+
.sc(schemas_0.StartLoaderJob$)
|
|
2511
593
|
.build() {
|
|
2512
594
|
}
|
|
2513
595
|
|
|
@@ -2519,7 +601,7 @@ class StartMLDataProcessingJobCommand extends smithyClient.Command
|
|
|
2519
601
|
})
|
|
2520
602
|
.s("AmazonNeptuneDataplane", "StartMLDataProcessingJob", {})
|
|
2521
603
|
.n("NeptunedataClient", "StartMLDataProcessingJobCommand")
|
|
2522
|
-
.sc(StartMLDataProcessingJob$)
|
|
604
|
+
.sc(schemas_0.StartMLDataProcessingJob$)
|
|
2523
605
|
.build() {
|
|
2524
606
|
}
|
|
2525
607
|
|
|
@@ -2531,7 +613,7 @@ class StartMLModelTrainingJobCommand extends smithyClient.Command
|
|
|
2531
613
|
})
|
|
2532
614
|
.s("AmazonNeptuneDataplane", "StartMLModelTrainingJob", {})
|
|
2533
615
|
.n("NeptunedataClient", "StartMLModelTrainingJobCommand")
|
|
2534
|
-
.sc(StartMLModelTrainingJob$)
|
|
616
|
+
.sc(schemas_0.StartMLModelTrainingJob$)
|
|
2535
617
|
.build() {
|
|
2536
618
|
}
|
|
2537
619
|
|
|
@@ -2543,7 +625,7 @@ class StartMLModelTransformJobCommand extends smithyClient.Command
|
|
|
2543
625
|
})
|
|
2544
626
|
.s("AmazonNeptuneDataplane", "StartMLModelTransformJob", {})
|
|
2545
627
|
.n("NeptunedataClient", "StartMLModelTransformJobCommand")
|
|
2546
|
-
.sc(StartMLModelTransformJob$)
|
|
628
|
+
.sc(schemas_0.StartMLModelTransformJob$)
|
|
2547
629
|
.build() {
|
|
2548
630
|
}
|
|
2549
631
|
|
|
@@ -2689,277 +771,74 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2689
771
|
enumerable: true,
|
|
2690
772
|
get: function () { return smithyClient.Client; }
|
|
2691
773
|
});
|
|
2692
|
-
exports
|
|
2693
|
-
|
|
774
|
+
Object.defineProperty(exports, "NeptunedataServiceException", {
|
|
775
|
+
enumerable: true,
|
|
776
|
+
get: function () { return NeptunedataServiceException.NeptunedataServiceException; }
|
|
777
|
+
});
|
|
2694
778
|
exports.Action = Action;
|
|
2695
|
-
exports.BadRequestException = BadRequestException;
|
|
2696
|
-
exports.BadRequestException$ = BadRequestException$;
|
|
2697
|
-
exports.BulkLoadIdNotFoundException = BulkLoadIdNotFoundException;
|
|
2698
|
-
exports.BulkLoadIdNotFoundException$ = BulkLoadIdNotFoundException$;
|
|
2699
|
-
exports.CancelGremlinQuery$ = CancelGremlinQuery$;
|
|
2700
779
|
exports.CancelGremlinQueryCommand = CancelGremlinQueryCommand;
|
|
2701
|
-
exports.CancelGremlinQueryInput$ = CancelGremlinQueryInput$;
|
|
2702
|
-
exports.CancelGremlinQueryOutput$ = CancelGremlinQueryOutput$;
|
|
2703
|
-
exports.CancelLoaderJob$ = CancelLoaderJob$;
|
|
2704
780
|
exports.CancelLoaderJobCommand = CancelLoaderJobCommand;
|
|
2705
|
-
exports.CancelLoaderJobInput$ = CancelLoaderJobInput$;
|
|
2706
|
-
exports.CancelLoaderJobOutput$ = CancelLoaderJobOutput$;
|
|
2707
|
-
exports.CancelMLDataProcessingJob$ = CancelMLDataProcessingJob$;
|
|
2708
781
|
exports.CancelMLDataProcessingJobCommand = CancelMLDataProcessingJobCommand;
|
|
2709
|
-
exports.CancelMLDataProcessingJobInput$ = CancelMLDataProcessingJobInput$;
|
|
2710
|
-
exports.CancelMLDataProcessingJobOutput$ = CancelMLDataProcessingJobOutput$;
|
|
2711
|
-
exports.CancelMLModelTrainingJob$ = CancelMLModelTrainingJob$;
|
|
2712
782
|
exports.CancelMLModelTrainingJobCommand = CancelMLModelTrainingJobCommand;
|
|
2713
|
-
exports.CancelMLModelTrainingJobInput$ = CancelMLModelTrainingJobInput$;
|
|
2714
|
-
exports.CancelMLModelTrainingJobOutput$ = CancelMLModelTrainingJobOutput$;
|
|
2715
|
-
exports.CancelMLModelTransformJob$ = CancelMLModelTransformJob$;
|
|
2716
783
|
exports.CancelMLModelTransformJobCommand = CancelMLModelTransformJobCommand;
|
|
2717
|
-
exports.CancelMLModelTransformJobInput$ = CancelMLModelTransformJobInput$;
|
|
2718
|
-
exports.CancelMLModelTransformJobOutput$ = CancelMLModelTransformJobOutput$;
|
|
2719
|
-
exports.CancelOpenCypherQuery$ = CancelOpenCypherQuery$;
|
|
2720
784
|
exports.CancelOpenCypherQueryCommand = CancelOpenCypherQueryCommand;
|
|
2721
|
-
exports.CancelOpenCypherQueryInput$ = CancelOpenCypherQueryInput$;
|
|
2722
|
-
exports.CancelOpenCypherQueryOutput$ = CancelOpenCypherQueryOutput$;
|
|
2723
|
-
exports.CancelledByUserException = CancelledByUserException;
|
|
2724
|
-
exports.CancelledByUserException$ = CancelledByUserException$;
|
|
2725
|
-
exports.ClientTimeoutException = ClientTimeoutException;
|
|
2726
|
-
exports.ClientTimeoutException$ = ClientTimeoutException$;
|
|
2727
|
-
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
2728
|
-
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
2729
|
-
exports.ConstraintViolationException = ConstraintViolationException;
|
|
2730
|
-
exports.ConstraintViolationException$ = ConstraintViolationException$;
|
|
2731
|
-
exports.CreateMLEndpoint$ = CreateMLEndpoint$;
|
|
2732
785
|
exports.CreateMLEndpointCommand = CreateMLEndpointCommand;
|
|
2733
|
-
exports.CreateMLEndpointInput$ = CreateMLEndpointInput$;
|
|
2734
|
-
exports.CreateMLEndpointOutput$ = CreateMLEndpointOutput$;
|
|
2735
|
-
exports.CustomModelTrainingParameters$ = CustomModelTrainingParameters$;
|
|
2736
|
-
exports.CustomModelTransformParameters$ = CustomModelTransformParameters$;
|
|
2737
|
-
exports.DeleteMLEndpoint$ = DeleteMLEndpoint$;
|
|
2738
786
|
exports.DeleteMLEndpointCommand = DeleteMLEndpointCommand;
|
|
2739
|
-
exports.DeleteMLEndpointInput$ = DeleteMLEndpointInput$;
|
|
2740
|
-
exports.DeleteMLEndpointOutput$ = DeleteMLEndpointOutput$;
|
|
2741
|
-
exports.DeletePropertygraphStatistics$ = DeletePropertygraphStatistics$;
|
|
2742
787
|
exports.DeletePropertygraphStatisticsCommand = DeletePropertygraphStatisticsCommand;
|
|
2743
|
-
exports.DeletePropertygraphStatisticsOutput$ = DeletePropertygraphStatisticsOutput$;
|
|
2744
|
-
exports.DeleteSparqlStatistics$ = DeleteSparqlStatistics$;
|
|
2745
788
|
exports.DeleteSparqlStatisticsCommand = DeleteSparqlStatisticsCommand;
|
|
2746
|
-
exports.DeleteSparqlStatisticsOutput$ = DeleteSparqlStatisticsOutput$;
|
|
2747
|
-
exports.DeleteStatisticsValueMap$ = DeleteStatisticsValueMap$;
|
|
2748
|
-
exports.EdgeStructure$ = EdgeStructure$;
|
|
2749
789
|
exports.Encoding = Encoding;
|
|
2750
|
-
exports.ExecuteFastReset$ = ExecuteFastReset$;
|
|
2751
790
|
exports.ExecuteFastResetCommand = ExecuteFastResetCommand;
|
|
2752
|
-
exports.ExecuteFastResetInput$ = ExecuteFastResetInput$;
|
|
2753
|
-
exports.ExecuteFastResetOutput$ = ExecuteFastResetOutput$;
|
|
2754
|
-
exports.ExecuteGremlinExplainQuery$ = ExecuteGremlinExplainQuery$;
|
|
2755
791
|
exports.ExecuteGremlinExplainQueryCommand = ExecuteGremlinExplainQueryCommand;
|
|
2756
|
-
exports.ExecuteGremlinExplainQueryInput$ = ExecuteGremlinExplainQueryInput$;
|
|
2757
|
-
exports.ExecuteGremlinExplainQueryOutput$ = ExecuteGremlinExplainQueryOutput$;
|
|
2758
|
-
exports.ExecuteGremlinProfileQuery$ = ExecuteGremlinProfileQuery$;
|
|
2759
792
|
exports.ExecuteGremlinProfileQueryCommand = ExecuteGremlinProfileQueryCommand;
|
|
2760
|
-
exports.ExecuteGremlinProfileQueryInput$ = ExecuteGremlinProfileQueryInput$;
|
|
2761
|
-
exports.ExecuteGremlinProfileQueryOutput$ = ExecuteGremlinProfileQueryOutput$;
|
|
2762
|
-
exports.ExecuteGremlinQuery$ = ExecuteGremlinQuery$;
|
|
2763
793
|
exports.ExecuteGremlinQueryCommand = ExecuteGremlinQueryCommand;
|
|
2764
|
-
exports.ExecuteGremlinQueryInput$ = ExecuteGremlinQueryInput$;
|
|
2765
|
-
exports.ExecuteGremlinQueryOutput$ = ExecuteGremlinQueryOutput$;
|
|
2766
|
-
exports.ExecuteOpenCypherExplainQuery$ = ExecuteOpenCypherExplainQuery$;
|
|
2767
794
|
exports.ExecuteOpenCypherExplainQueryCommand = ExecuteOpenCypherExplainQueryCommand;
|
|
2768
|
-
exports.ExecuteOpenCypherExplainQueryInput$ = ExecuteOpenCypherExplainQueryInput$;
|
|
2769
|
-
exports.ExecuteOpenCypherExplainQueryOutput$ = ExecuteOpenCypherExplainQueryOutput$;
|
|
2770
|
-
exports.ExecuteOpenCypherQuery$ = ExecuteOpenCypherQuery$;
|
|
2771
795
|
exports.ExecuteOpenCypherQueryCommand = ExecuteOpenCypherQueryCommand;
|
|
2772
|
-
exports.ExecuteOpenCypherQueryInput$ = ExecuteOpenCypherQueryInput$;
|
|
2773
|
-
exports.ExecuteOpenCypherQueryOutput$ = ExecuteOpenCypherQueryOutput$;
|
|
2774
|
-
exports.ExpiredStreamException = ExpiredStreamException;
|
|
2775
|
-
exports.ExpiredStreamException$ = ExpiredStreamException$;
|
|
2776
|
-
exports.FailureByQueryException = FailureByQueryException;
|
|
2777
|
-
exports.FailureByQueryException$ = FailureByQueryException$;
|
|
2778
|
-
exports.FastResetToken$ = FastResetToken$;
|
|
2779
796
|
exports.Format = Format;
|
|
2780
|
-
exports.GetEngineStatus$ = GetEngineStatus$;
|
|
2781
797
|
exports.GetEngineStatusCommand = GetEngineStatusCommand;
|
|
2782
|
-
exports.GetEngineStatusOutput$ = GetEngineStatusOutput$;
|
|
2783
|
-
exports.GetGremlinQueryStatus$ = GetGremlinQueryStatus$;
|
|
2784
798
|
exports.GetGremlinQueryStatusCommand = GetGremlinQueryStatusCommand;
|
|
2785
|
-
exports.GetGremlinQueryStatusInput$ = GetGremlinQueryStatusInput$;
|
|
2786
|
-
exports.GetGremlinQueryStatusOutput$ = GetGremlinQueryStatusOutput$;
|
|
2787
|
-
exports.GetLoaderJobStatus$ = GetLoaderJobStatus$;
|
|
2788
799
|
exports.GetLoaderJobStatusCommand = GetLoaderJobStatusCommand;
|
|
2789
|
-
exports.GetLoaderJobStatusInput$ = GetLoaderJobStatusInput$;
|
|
2790
|
-
exports.GetLoaderJobStatusOutput$ = GetLoaderJobStatusOutput$;
|
|
2791
|
-
exports.GetMLDataProcessingJob$ = GetMLDataProcessingJob$;
|
|
2792
800
|
exports.GetMLDataProcessingJobCommand = GetMLDataProcessingJobCommand;
|
|
2793
|
-
exports.GetMLDataProcessingJobInput$ = GetMLDataProcessingJobInput$;
|
|
2794
|
-
exports.GetMLDataProcessingJobOutput$ = GetMLDataProcessingJobOutput$;
|
|
2795
|
-
exports.GetMLEndpoint$ = GetMLEndpoint$;
|
|
2796
801
|
exports.GetMLEndpointCommand = GetMLEndpointCommand;
|
|
2797
|
-
exports.GetMLEndpointInput$ = GetMLEndpointInput$;
|
|
2798
|
-
exports.GetMLEndpointOutput$ = GetMLEndpointOutput$;
|
|
2799
|
-
exports.GetMLModelTrainingJob$ = GetMLModelTrainingJob$;
|
|
2800
802
|
exports.GetMLModelTrainingJobCommand = GetMLModelTrainingJobCommand;
|
|
2801
|
-
exports.GetMLModelTrainingJobInput$ = GetMLModelTrainingJobInput$;
|
|
2802
|
-
exports.GetMLModelTrainingJobOutput$ = GetMLModelTrainingJobOutput$;
|
|
2803
|
-
exports.GetMLModelTransformJob$ = GetMLModelTransformJob$;
|
|
2804
803
|
exports.GetMLModelTransformJobCommand = GetMLModelTransformJobCommand;
|
|
2805
|
-
exports.GetMLModelTransformJobInput$ = GetMLModelTransformJobInput$;
|
|
2806
|
-
exports.GetMLModelTransformJobOutput$ = GetMLModelTransformJobOutput$;
|
|
2807
|
-
exports.GetOpenCypherQueryStatus$ = GetOpenCypherQueryStatus$;
|
|
2808
804
|
exports.GetOpenCypherQueryStatusCommand = GetOpenCypherQueryStatusCommand;
|
|
2809
|
-
exports.GetOpenCypherQueryStatusInput$ = GetOpenCypherQueryStatusInput$;
|
|
2810
|
-
exports.GetOpenCypherQueryStatusOutput$ = GetOpenCypherQueryStatusOutput$;
|
|
2811
|
-
exports.GetPropertygraphStatistics$ = GetPropertygraphStatistics$;
|
|
2812
805
|
exports.GetPropertygraphStatisticsCommand = GetPropertygraphStatisticsCommand;
|
|
2813
|
-
exports.GetPropertygraphStatisticsOutput$ = GetPropertygraphStatisticsOutput$;
|
|
2814
|
-
exports.GetPropertygraphStream$ = GetPropertygraphStream$;
|
|
2815
806
|
exports.GetPropertygraphStreamCommand = GetPropertygraphStreamCommand;
|
|
2816
|
-
exports.GetPropertygraphStreamInput$ = GetPropertygraphStreamInput$;
|
|
2817
|
-
exports.GetPropertygraphStreamOutput$ = GetPropertygraphStreamOutput$;
|
|
2818
|
-
exports.GetPropertygraphSummary$ = GetPropertygraphSummary$;
|
|
2819
807
|
exports.GetPropertygraphSummaryCommand = GetPropertygraphSummaryCommand;
|
|
2820
|
-
exports.GetPropertygraphSummaryInput$ = GetPropertygraphSummaryInput$;
|
|
2821
|
-
exports.GetPropertygraphSummaryOutput$ = GetPropertygraphSummaryOutput$;
|
|
2822
|
-
exports.GetRDFGraphSummary$ = GetRDFGraphSummary$;
|
|
2823
808
|
exports.GetRDFGraphSummaryCommand = GetRDFGraphSummaryCommand;
|
|
2824
|
-
exports.GetRDFGraphSummaryInput$ = GetRDFGraphSummaryInput$;
|
|
2825
|
-
exports.GetRDFGraphSummaryOutput$ = GetRDFGraphSummaryOutput$;
|
|
2826
|
-
exports.GetSparqlStatistics$ = GetSparqlStatistics$;
|
|
2827
809
|
exports.GetSparqlStatisticsCommand = GetSparqlStatisticsCommand;
|
|
2828
|
-
exports.GetSparqlStatisticsOutput$ = GetSparqlStatisticsOutput$;
|
|
2829
|
-
exports.GetSparqlStream$ = GetSparqlStream$;
|
|
2830
810
|
exports.GetSparqlStreamCommand = GetSparqlStreamCommand;
|
|
2831
|
-
exports.GetSparqlStreamInput$ = GetSparqlStreamInput$;
|
|
2832
|
-
exports.GetSparqlStreamOutput$ = GetSparqlStreamOutput$;
|
|
2833
811
|
exports.GraphSummaryType = GraphSummaryType;
|
|
2834
|
-
exports.GremlinQueryStatus$ = GremlinQueryStatus$;
|
|
2835
|
-
exports.GremlinQueryStatusAttributes$ = GremlinQueryStatusAttributes$;
|
|
2836
|
-
exports.IllegalArgumentException = IllegalArgumentException;
|
|
2837
|
-
exports.IllegalArgumentException$ = IllegalArgumentException$;
|
|
2838
|
-
exports.InternalFailureException = InternalFailureException;
|
|
2839
|
-
exports.InternalFailureException$ = InternalFailureException$;
|
|
2840
|
-
exports.InvalidArgumentException = InvalidArgumentException;
|
|
2841
|
-
exports.InvalidArgumentException$ = InvalidArgumentException$;
|
|
2842
|
-
exports.InvalidNumericDataException = InvalidNumericDataException;
|
|
2843
|
-
exports.InvalidNumericDataException$ = InvalidNumericDataException$;
|
|
2844
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
2845
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
2846
812
|
exports.IteratorType = IteratorType;
|
|
2847
|
-
exports.ListGremlinQueries$ = ListGremlinQueries$;
|
|
2848
813
|
exports.ListGremlinQueriesCommand = ListGremlinQueriesCommand;
|
|
2849
|
-
exports.ListGremlinQueriesInput$ = ListGremlinQueriesInput$;
|
|
2850
|
-
exports.ListGremlinQueriesOutput$ = ListGremlinQueriesOutput$;
|
|
2851
|
-
exports.ListLoaderJobs$ = ListLoaderJobs$;
|
|
2852
814
|
exports.ListLoaderJobsCommand = ListLoaderJobsCommand;
|
|
2853
|
-
exports.ListLoaderJobsInput$ = ListLoaderJobsInput$;
|
|
2854
|
-
exports.ListLoaderJobsOutput$ = ListLoaderJobsOutput$;
|
|
2855
|
-
exports.ListMLDataProcessingJobs$ = ListMLDataProcessingJobs$;
|
|
2856
815
|
exports.ListMLDataProcessingJobsCommand = ListMLDataProcessingJobsCommand;
|
|
2857
|
-
exports.ListMLDataProcessingJobsInput$ = ListMLDataProcessingJobsInput$;
|
|
2858
|
-
exports.ListMLDataProcessingJobsOutput$ = ListMLDataProcessingJobsOutput$;
|
|
2859
|
-
exports.ListMLEndpoints$ = ListMLEndpoints$;
|
|
2860
816
|
exports.ListMLEndpointsCommand = ListMLEndpointsCommand;
|
|
2861
|
-
exports.ListMLEndpointsInput$ = ListMLEndpointsInput$;
|
|
2862
|
-
exports.ListMLEndpointsOutput$ = ListMLEndpointsOutput$;
|
|
2863
|
-
exports.ListMLModelTrainingJobs$ = ListMLModelTrainingJobs$;
|
|
2864
817
|
exports.ListMLModelTrainingJobsCommand = ListMLModelTrainingJobsCommand;
|
|
2865
|
-
exports.ListMLModelTrainingJobsInput$ = ListMLModelTrainingJobsInput$;
|
|
2866
|
-
exports.ListMLModelTrainingJobsOutput$ = ListMLModelTrainingJobsOutput$;
|
|
2867
|
-
exports.ListMLModelTransformJobs$ = ListMLModelTransformJobs$;
|
|
2868
818
|
exports.ListMLModelTransformJobsCommand = ListMLModelTransformJobsCommand;
|
|
2869
|
-
exports.ListMLModelTransformJobsInput$ = ListMLModelTransformJobsInput$;
|
|
2870
|
-
exports.ListMLModelTransformJobsOutput$ = ListMLModelTransformJobsOutput$;
|
|
2871
|
-
exports.ListOpenCypherQueries$ = ListOpenCypherQueries$;
|
|
2872
819
|
exports.ListOpenCypherQueriesCommand = ListOpenCypherQueriesCommand;
|
|
2873
|
-
exports.ListOpenCypherQueriesInput$ = ListOpenCypherQueriesInput$;
|
|
2874
|
-
exports.ListOpenCypherQueriesOutput$ = ListOpenCypherQueriesOutput$;
|
|
2875
|
-
exports.LoadUrlAccessDeniedException = LoadUrlAccessDeniedException;
|
|
2876
|
-
exports.LoadUrlAccessDeniedException$ = LoadUrlAccessDeniedException$;
|
|
2877
|
-
exports.LoaderIdResult$ = LoaderIdResult$;
|
|
2878
|
-
exports.MLResourceNotFoundException = MLResourceNotFoundException;
|
|
2879
|
-
exports.MLResourceNotFoundException$ = MLResourceNotFoundException$;
|
|
2880
|
-
exports.MalformedQueryException = MalformedQueryException;
|
|
2881
|
-
exports.MalformedQueryException$ = MalformedQueryException$;
|
|
2882
|
-
exports.ManagePropertygraphStatistics$ = ManagePropertygraphStatistics$;
|
|
2883
820
|
exports.ManagePropertygraphStatisticsCommand = ManagePropertygraphStatisticsCommand;
|
|
2884
|
-
exports.ManagePropertygraphStatisticsInput$ = ManagePropertygraphStatisticsInput$;
|
|
2885
|
-
exports.ManagePropertygraphStatisticsOutput$ = ManagePropertygraphStatisticsOutput$;
|
|
2886
|
-
exports.ManageSparqlStatistics$ = ManageSparqlStatistics$;
|
|
2887
821
|
exports.ManageSparqlStatisticsCommand = ManageSparqlStatisticsCommand;
|
|
2888
|
-
exports.ManageSparqlStatisticsInput$ = ManageSparqlStatisticsInput$;
|
|
2889
|
-
exports.ManageSparqlStatisticsOutput$ = ManageSparqlStatisticsOutput$;
|
|
2890
|
-
exports.MemoryLimitExceededException = MemoryLimitExceededException;
|
|
2891
|
-
exports.MemoryLimitExceededException$ = MemoryLimitExceededException$;
|
|
2892
|
-
exports.MethodNotAllowedException = MethodNotAllowedException;
|
|
2893
|
-
exports.MethodNotAllowedException$ = MethodNotAllowedException$;
|
|
2894
|
-
exports.MissingParameterException = MissingParameterException;
|
|
2895
|
-
exports.MissingParameterException$ = MissingParameterException$;
|
|
2896
|
-
exports.MlConfigDefinition$ = MlConfigDefinition$;
|
|
2897
|
-
exports.MlResourceDefinition$ = MlResourceDefinition$;
|
|
2898
822
|
exports.Mode = Mode;
|
|
2899
823
|
exports.Neptunedata = Neptunedata;
|
|
2900
824
|
exports.NeptunedataClient = NeptunedataClient;
|
|
2901
|
-
exports.NeptunedataServiceException = NeptunedataServiceException;
|
|
2902
|
-
exports.NeptunedataServiceException$ = NeptunedataServiceException$;
|
|
2903
|
-
exports.NodeStructure$ = NodeStructure$;
|
|
2904
825
|
exports.OpenCypherExplainMode = OpenCypherExplainMode;
|
|
2905
826
|
exports.Parallelism = Parallelism;
|
|
2906
|
-
exports.ParsingException = ParsingException;
|
|
2907
|
-
exports.ParsingException$ = ParsingException$;
|
|
2908
|
-
exports.PreconditionsFailedException = PreconditionsFailedException;
|
|
2909
|
-
exports.PreconditionsFailedException$ = PreconditionsFailedException$;
|
|
2910
|
-
exports.PropertygraphData$ = PropertygraphData$;
|
|
2911
|
-
exports.PropertygraphRecord$ = PropertygraphRecord$;
|
|
2912
|
-
exports.PropertygraphSummary$ = PropertygraphSummary$;
|
|
2913
|
-
exports.PropertygraphSummaryValueMap$ = PropertygraphSummaryValueMap$;
|
|
2914
|
-
exports.QueryEvalStats$ = QueryEvalStats$;
|
|
2915
|
-
exports.QueryLanguageVersion$ = QueryLanguageVersion$;
|
|
2916
|
-
exports.QueryLimitExceededException = QueryLimitExceededException;
|
|
2917
|
-
exports.QueryLimitExceededException$ = QueryLimitExceededException$;
|
|
2918
|
-
exports.QueryLimitException = QueryLimitException;
|
|
2919
|
-
exports.QueryLimitException$ = QueryLimitException$;
|
|
2920
|
-
exports.QueryTooLargeException = QueryTooLargeException;
|
|
2921
|
-
exports.QueryTooLargeException$ = QueryTooLargeException$;
|
|
2922
|
-
exports.RDFGraphSummary$ = RDFGraphSummary$;
|
|
2923
|
-
exports.RDFGraphSummaryValueMap$ = RDFGraphSummaryValueMap$;
|
|
2924
|
-
exports.ReadOnlyViolationException = ReadOnlyViolationException;
|
|
2925
|
-
exports.ReadOnlyViolationException$ = ReadOnlyViolationException$;
|
|
2926
|
-
exports.RefreshStatisticsIdMap$ = RefreshStatisticsIdMap$;
|
|
2927
827
|
exports.S3BucketRegion = S3BucketRegion;
|
|
2928
|
-
exports.S3Exception = S3Exception;
|
|
2929
|
-
exports.S3Exception$ = S3Exception$;
|
|
2930
|
-
exports.ServerShutdownException = ServerShutdownException;
|
|
2931
|
-
exports.ServerShutdownException$ = ServerShutdownException$;
|
|
2932
|
-
exports.SparqlData$ = SparqlData$;
|
|
2933
|
-
exports.SparqlRecord$ = SparqlRecord$;
|
|
2934
|
-
exports.StartLoaderJob$ = StartLoaderJob$;
|
|
2935
828
|
exports.StartLoaderJobCommand = StartLoaderJobCommand;
|
|
2936
|
-
exports.StartLoaderJobInput$ = StartLoaderJobInput$;
|
|
2937
|
-
exports.StartLoaderJobOutput$ = StartLoaderJobOutput$;
|
|
2938
|
-
exports.StartMLDataProcessingJob$ = StartMLDataProcessingJob$;
|
|
2939
829
|
exports.StartMLDataProcessingJobCommand = StartMLDataProcessingJobCommand;
|
|
2940
|
-
exports.StartMLDataProcessingJobInput$ = StartMLDataProcessingJobInput$;
|
|
2941
|
-
exports.StartMLDataProcessingJobOutput$ = StartMLDataProcessingJobOutput$;
|
|
2942
|
-
exports.StartMLModelTrainingJob$ = StartMLModelTrainingJob$;
|
|
2943
830
|
exports.StartMLModelTrainingJobCommand = StartMLModelTrainingJobCommand;
|
|
2944
|
-
exports.StartMLModelTrainingJobInput$ = StartMLModelTrainingJobInput$;
|
|
2945
|
-
exports.StartMLModelTrainingJobOutput$ = StartMLModelTrainingJobOutput$;
|
|
2946
|
-
exports.StartMLModelTransformJob$ = StartMLModelTransformJob$;
|
|
2947
831
|
exports.StartMLModelTransformJobCommand = StartMLModelTransformJobCommand;
|
|
2948
|
-
exports.StartMLModelTransformJobInput$ = StartMLModelTransformJobInput$;
|
|
2949
|
-
exports.StartMLModelTransformJobOutput$ = StartMLModelTransformJobOutput$;
|
|
2950
|
-
exports.Statistics$ = Statistics$;
|
|
2951
832
|
exports.StatisticsAutoGenerationMode = StatisticsAutoGenerationMode;
|
|
2952
|
-
|
|
2953
|
-
exports.
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
exports.
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
exports.UnsupportedOperationException = UnsupportedOperationException;
|
|
2965
|
-
exports.UnsupportedOperationException$ = UnsupportedOperationException$;
|
|
833
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
834
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
835
|
+
enumerable: true,
|
|
836
|
+
get: function () { return schemas_0[k]; }
|
|
837
|
+
});
|
|
838
|
+
});
|
|
839
|
+
Object.keys(errors).forEach(function (k) {
|
|
840
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
841
|
+
enumerable: true,
|
|
842
|
+
get: function () { return errors[k]; }
|
|
843
|
+
});
|
|
844
|
+
});
|