@aws-sdk/client-neptunedata 3.952.0 → 3.953.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 +679 -481
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CancelGremlinQueryCommand.js +2 -2
- package/dist-es/commands/CancelLoaderJobCommand.js +2 -2
- package/dist-es/commands/CancelMLDataProcessingJobCommand.js +2 -2
- package/dist-es/commands/CancelMLModelTrainingJobCommand.js +2 -2
- package/dist-es/commands/CancelMLModelTransformJobCommand.js +2 -2
- package/dist-es/commands/CancelOpenCypherQueryCommand.js +2 -2
- package/dist-es/commands/CreateMLEndpointCommand.js +2 -2
- package/dist-es/commands/DeleteMLEndpointCommand.js +2 -2
- package/dist-es/commands/DeletePropertygraphStatisticsCommand.js +2 -2
- package/dist-es/commands/DeleteSparqlStatisticsCommand.js +2 -2
- package/dist-es/commands/ExecuteFastResetCommand.js +2 -2
- package/dist-es/commands/ExecuteGremlinExplainQueryCommand.js +2 -2
- package/dist-es/commands/ExecuteGremlinProfileQueryCommand.js +2 -2
- package/dist-es/commands/ExecuteGremlinQueryCommand.js +2 -2
- package/dist-es/commands/ExecuteOpenCypherExplainQueryCommand.js +2 -2
- package/dist-es/commands/ExecuteOpenCypherQueryCommand.js +2 -2
- package/dist-es/commands/GetEngineStatusCommand.js +2 -2
- package/dist-es/commands/GetGremlinQueryStatusCommand.js +2 -2
- package/dist-es/commands/GetLoaderJobStatusCommand.js +2 -2
- package/dist-es/commands/GetMLDataProcessingJobCommand.js +2 -2
- package/dist-es/commands/GetMLEndpointCommand.js +2 -2
- package/dist-es/commands/GetMLModelTrainingJobCommand.js +2 -2
- package/dist-es/commands/GetMLModelTransformJobCommand.js +2 -2
- package/dist-es/commands/GetOpenCypherQueryStatusCommand.js +2 -2
- package/dist-es/commands/GetPropertygraphStatisticsCommand.js +2 -2
- package/dist-es/commands/GetPropertygraphStreamCommand.js +2 -2
- package/dist-es/commands/GetPropertygraphSummaryCommand.js +2 -2
- package/dist-es/commands/GetRDFGraphSummaryCommand.js +2 -2
- package/dist-es/commands/GetSparqlStatisticsCommand.js +2 -2
- package/dist-es/commands/GetSparqlStreamCommand.js +2 -2
- package/dist-es/commands/ListGremlinQueriesCommand.js +2 -2
- package/dist-es/commands/ListLoaderJobsCommand.js +2 -2
- package/dist-es/commands/ListMLDataProcessingJobsCommand.js +2 -2
- package/dist-es/commands/ListMLEndpointsCommand.js +2 -2
- package/dist-es/commands/ListMLModelTrainingJobsCommand.js +2 -2
- package/dist-es/commands/ListMLModelTransformJobsCommand.js +2 -2
- package/dist-es/commands/ListOpenCypherQueriesCommand.js +2 -2
- package/dist-es/commands/ManagePropertygraphStatisticsCommand.js +2 -2
- package/dist-es/commands/ManageSparqlStatisticsCommand.js +2 -2
- package/dist-es/commands/StartLoaderJobCommand.js +2 -2
- package/dist-es/commands/StartMLDataProcessingJobCommand.js +2 -2
- package/dist-es/commands/StartMLModelTrainingJobCommand.js +2 -2
- package/dist-es/commands/StartMLModelTransformJobCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +363 -349
- package/dist-types/NeptunedataClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +185 -208
- package/dist-types/ts3.4/NeptunedataClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +184 -209
- package/package.json +35 -35
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class NeptunedataClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class NeptunedataServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, NeptunedataServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessDeniedException extends NeptunedataServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
detailedMessage;
|
|
@@ -134,8 +134,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends NeptunedataSer
|
|
|
134
134
|
this.requestId = opts.requestId;
|
|
135
135
|
this.code = opts.code;
|
|
136
136
|
}
|
|
137
|
-
}
|
|
138
|
-
|
|
137
|
+
}
|
|
138
|
+
class BadRequestException extends NeptunedataServiceException {
|
|
139
139
|
name = "BadRequestException";
|
|
140
140
|
$fault = "client";
|
|
141
141
|
detailedMessage;
|
|
@@ -152,8 +152,8 @@ let BadRequestException$1 = class BadRequestException extends NeptunedataService
|
|
|
152
152
|
this.requestId = opts.requestId;
|
|
153
153
|
this.code = opts.code;
|
|
154
154
|
}
|
|
155
|
-
}
|
|
156
|
-
|
|
155
|
+
}
|
|
156
|
+
class ClientTimeoutException extends NeptunedataServiceException {
|
|
157
157
|
name = "ClientTimeoutException";
|
|
158
158
|
$fault = "client";
|
|
159
159
|
$retryable = {};
|
|
@@ -171,8 +171,8 @@ let ClientTimeoutException$1 = class ClientTimeoutException extends NeptunedataS
|
|
|
171
171
|
this.requestId = opts.requestId;
|
|
172
172
|
this.code = opts.code;
|
|
173
173
|
}
|
|
174
|
-
}
|
|
175
|
-
|
|
174
|
+
}
|
|
175
|
+
class ConcurrentModificationException extends NeptunedataServiceException {
|
|
176
176
|
name = "ConcurrentModificationException";
|
|
177
177
|
$fault = "server";
|
|
178
178
|
$retryable = {};
|
|
@@ -190,8 +190,8 @@ let ConcurrentModificationException$1 = class ConcurrentModificationException ex
|
|
|
190
190
|
this.requestId = opts.requestId;
|
|
191
191
|
this.code = opts.code;
|
|
192
192
|
}
|
|
193
|
-
}
|
|
194
|
-
|
|
193
|
+
}
|
|
194
|
+
class ConstraintViolationException extends NeptunedataServiceException {
|
|
195
195
|
name = "ConstraintViolationException";
|
|
196
196
|
$fault = "client";
|
|
197
197
|
$retryable = {};
|
|
@@ -209,8 +209,8 @@ let ConstraintViolationException$1 = class ConstraintViolationException extends
|
|
|
209
209
|
this.requestId = opts.requestId;
|
|
210
210
|
this.code = opts.code;
|
|
211
211
|
}
|
|
212
|
-
}
|
|
213
|
-
|
|
212
|
+
}
|
|
213
|
+
class FailureByQueryException extends NeptunedataServiceException {
|
|
214
214
|
name = "FailureByQueryException";
|
|
215
215
|
$fault = "server";
|
|
216
216
|
$retryable = {};
|
|
@@ -228,8 +228,8 @@ let FailureByQueryException$1 = class FailureByQueryException extends Neptunedat
|
|
|
228
228
|
this.requestId = opts.requestId;
|
|
229
229
|
this.code = opts.code;
|
|
230
230
|
}
|
|
231
|
-
}
|
|
232
|
-
|
|
231
|
+
}
|
|
232
|
+
class IllegalArgumentException extends NeptunedataServiceException {
|
|
233
233
|
name = "IllegalArgumentException";
|
|
234
234
|
$fault = "client";
|
|
235
235
|
detailedMessage;
|
|
@@ -246,8 +246,8 @@ let IllegalArgumentException$1 = class IllegalArgumentException extends Neptuned
|
|
|
246
246
|
this.requestId = opts.requestId;
|
|
247
247
|
this.code = opts.code;
|
|
248
248
|
}
|
|
249
|
-
}
|
|
250
|
-
|
|
249
|
+
}
|
|
250
|
+
class InvalidArgumentException extends NeptunedataServiceException {
|
|
251
251
|
name = "InvalidArgumentException";
|
|
252
252
|
$fault = "client";
|
|
253
253
|
detailedMessage;
|
|
@@ -264,8 +264,8 @@ let InvalidArgumentException$1 = class InvalidArgumentException extends Neptuned
|
|
|
264
264
|
this.requestId = opts.requestId;
|
|
265
265
|
this.code = opts.code;
|
|
266
266
|
}
|
|
267
|
-
}
|
|
268
|
-
|
|
267
|
+
}
|
|
268
|
+
class InvalidParameterException extends NeptunedataServiceException {
|
|
269
269
|
name = "InvalidParameterException";
|
|
270
270
|
$fault = "client";
|
|
271
271
|
detailedMessage;
|
|
@@ -282,8 +282,8 @@ let InvalidParameterException$1 = class InvalidParameterException extends Neptun
|
|
|
282
282
|
this.requestId = opts.requestId;
|
|
283
283
|
this.code = opts.code;
|
|
284
284
|
}
|
|
285
|
-
}
|
|
286
|
-
|
|
285
|
+
}
|
|
286
|
+
class MissingParameterException extends NeptunedataServiceException {
|
|
287
287
|
name = "MissingParameterException";
|
|
288
288
|
$fault = "client";
|
|
289
289
|
detailedMessage;
|
|
@@ -300,8 +300,8 @@ let MissingParameterException$1 = class MissingParameterException extends Neptun
|
|
|
300
300
|
this.requestId = opts.requestId;
|
|
301
301
|
this.code = opts.code;
|
|
302
302
|
}
|
|
303
|
-
}
|
|
304
|
-
|
|
303
|
+
}
|
|
304
|
+
class ParsingException extends NeptunedataServiceException {
|
|
305
305
|
name = "ParsingException";
|
|
306
306
|
$fault = "client";
|
|
307
307
|
detailedMessage;
|
|
@@ -318,8 +318,8 @@ let ParsingException$1 = class ParsingException extends NeptunedataServiceExcept
|
|
|
318
318
|
this.requestId = opts.requestId;
|
|
319
319
|
this.code = opts.code;
|
|
320
320
|
}
|
|
321
|
-
}
|
|
322
|
-
|
|
321
|
+
}
|
|
322
|
+
class PreconditionsFailedException extends NeptunedataServiceException {
|
|
323
323
|
name = "PreconditionsFailedException";
|
|
324
324
|
$fault = "client";
|
|
325
325
|
detailedMessage;
|
|
@@ -336,8 +336,8 @@ let PreconditionsFailedException$1 = class PreconditionsFailedException extends
|
|
|
336
336
|
this.requestId = opts.requestId;
|
|
337
337
|
this.code = opts.code;
|
|
338
338
|
}
|
|
339
|
-
}
|
|
340
|
-
|
|
339
|
+
}
|
|
340
|
+
class TimeLimitExceededException extends NeptunedataServiceException {
|
|
341
341
|
name = "TimeLimitExceededException";
|
|
342
342
|
$fault = "server";
|
|
343
343
|
$retryable = {};
|
|
@@ -355,8 +355,8 @@ let TimeLimitExceededException$1 = class TimeLimitExceededException extends Nept
|
|
|
355
355
|
this.requestId = opts.requestId;
|
|
356
356
|
this.code = opts.code;
|
|
357
357
|
}
|
|
358
|
-
}
|
|
359
|
-
|
|
358
|
+
}
|
|
359
|
+
class TooManyRequestsException extends NeptunedataServiceException {
|
|
360
360
|
name = "TooManyRequestsException";
|
|
361
361
|
$fault = "client";
|
|
362
362
|
$retryable = {};
|
|
@@ -374,8 +374,8 @@ let TooManyRequestsException$1 = class TooManyRequestsException extends Neptuned
|
|
|
374
374
|
this.requestId = opts.requestId;
|
|
375
375
|
this.code = opts.code;
|
|
376
376
|
}
|
|
377
|
-
}
|
|
378
|
-
|
|
377
|
+
}
|
|
378
|
+
class UnsupportedOperationException extends NeptunedataServiceException {
|
|
379
379
|
name = "UnsupportedOperationException";
|
|
380
380
|
$fault = "client";
|
|
381
381
|
detailedMessage;
|
|
@@ -392,8 +392,8 @@ let UnsupportedOperationException$1 = class UnsupportedOperationException extend
|
|
|
392
392
|
this.requestId = opts.requestId;
|
|
393
393
|
this.code = opts.code;
|
|
394
394
|
}
|
|
395
|
-
}
|
|
396
|
-
|
|
395
|
+
}
|
|
396
|
+
class BulkLoadIdNotFoundException extends NeptunedataServiceException {
|
|
397
397
|
name = "BulkLoadIdNotFoundException";
|
|
398
398
|
$fault = "client";
|
|
399
399
|
$retryable = {};
|
|
@@ -411,8 +411,8 @@ let BulkLoadIdNotFoundException$1 = class BulkLoadIdNotFoundException extends Ne
|
|
|
411
411
|
this.requestId = opts.requestId;
|
|
412
412
|
this.code = opts.code;
|
|
413
413
|
}
|
|
414
|
-
}
|
|
415
|
-
|
|
414
|
+
}
|
|
415
|
+
class InternalFailureException extends NeptunedataServiceException {
|
|
416
416
|
name = "InternalFailureException";
|
|
417
417
|
$fault = "server";
|
|
418
418
|
detailedMessage;
|
|
@@ -429,8 +429,8 @@ let InternalFailureException$1 = class InternalFailureException extends Neptuned
|
|
|
429
429
|
this.requestId = opts.requestId;
|
|
430
430
|
this.code = opts.code;
|
|
431
431
|
}
|
|
432
|
-
}
|
|
433
|
-
|
|
432
|
+
}
|
|
433
|
+
class LoadUrlAccessDeniedException extends NeptunedataServiceException {
|
|
434
434
|
name = "LoadUrlAccessDeniedException";
|
|
435
435
|
$fault = "client";
|
|
436
436
|
detailedMessage;
|
|
@@ -447,8 +447,8 @@ let LoadUrlAccessDeniedException$1 = class LoadUrlAccessDeniedException extends
|
|
|
447
447
|
this.requestId = opts.requestId;
|
|
448
448
|
this.code = opts.code;
|
|
449
449
|
}
|
|
450
|
-
}
|
|
451
|
-
|
|
450
|
+
}
|
|
451
|
+
class MLResourceNotFoundException extends NeptunedataServiceException {
|
|
452
452
|
name = "MLResourceNotFoundException";
|
|
453
453
|
$fault = "client";
|
|
454
454
|
detailedMessage;
|
|
@@ -465,8 +465,8 @@ let MLResourceNotFoundException$1 = class MLResourceNotFoundException extends Ne
|
|
|
465
465
|
this.requestId = opts.requestId;
|
|
466
466
|
this.code = opts.code;
|
|
467
467
|
}
|
|
468
|
-
}
|
|
469
|
-
|
|
468
|
+
}
|
|
469
|
+
class InvalidNumericDataException extends NeptunedataServiceException {
|
|
470
470
|
name = "InvalidNumericDataException";
|
|
471
471
|
$fault = "client";
|
|
472
472
|
detailedMessage;
|
|
@@ -483,8 +483,8 @@ let InvalidNumericDataException$1 = class InvalidNumericDataException extends Ne
|
|
|
483
483
|
this.requestId = opts.requestId;
|
|
484
484
|
this.code = opts.code;
|
|
485
485
|
}
|
|
486
|
-
}
|
|
487
|
-
|
|
486
|
+
}
|
|
487
|
+
class ReadOnlyViolationException extends NeptunedataServiceException {
|
|
488
488
|
name = "ReadOnlyViolationException";
|
|
489
489
|
$fault = "client";
|
|
490
490
|
detailedMessage;
|
|
@@ -501,8 +501,8 @@ let ReadOnlyViolationException$1 = class ReadOnlyViolationException extends Nept
|
|
|
501
501
|
this.requestId = opts.requestId;
|
|
502
502
|
this.code = opts.code;
|
|
503
503
|
}
|
|
504
|
-
}
|
|
505
|
-
|
|
504
|
+
}
|
|
505
|
+
class StatisticsNotAvailableException extends NeptunedataServiceException {
|
|
506
506
|
name = "StatisticsNotAvailableException";
|
|
507
507
|
$fault = "client";
|
|
508
508
|
detailedMessage;
|
|
@@ -519,8 +519,8 @@ let StatisticsNotAvailableException$1 = class StatisticsNotAvailableException ex
|
|
|
519
519
|
this.requestId = opts.requestId;
|
|
520
520
|
this.code = opts.code;
|
|
521
521
|
}
|
|
522
|
-
}
|
|
523
|
-
|
|
522
|
+
}
|
|
523
|
+
class MethodNotAllowedException extends NeptunedataServiceException {
|
|
524
524
|
name = "MethodNotAllowedException";
|
|
525
525
|
$fault = "client";
|
|
526
526
|
detailedMessage;
|
|
@@ -537,8 +537,8 @@ let MethodNotAllowedException$1 = class MethodNotAllowedException extends Neptun
|
|
|
537
537
|
this.requestId = opts.requestId;
|
|
538
538
|
this.code = opts.code;
|
|
539
539
|
}
|
|
540
|
-
}
|
|
541
|
-
|
|
540
|
+
}
|
|
541
|
+
class ServerShutdownException extends NeptunedataServiceException {
|
|
542
542
|
name = "ServerShutdownException";
|
|
543
543
|
$fault = "server";
|
|
544
544
|
detailedMessage;
|
|
@@ -555,8 +555,8 @@ let ServerShutdownException$1 = class ServerShutdownException extends Neptunedat
|
|
|
555
555
|
this.requestId = opts.requestId;
|
|
556
556
|
this.code = opts.code;
|
|
557
557
|
}
|
|
558
|
-
}
|
|
559
|
-
|
|
558
|
+
}
|
|
559
|
+
class CancelledByUserException extends NeptunedataServiceException {
|
|
560
560
|
name = "CancelledByUserException";
|
|
561
561
|
$fault = "server";
|
|
562
562
|
detailedMessage;
|
|
@@ -573,8 +573,8 @@ let CancelledByUserException$1 = class CancelledByUserException extends Neptuned
|
|
|
573
573
|
this.requestId = opts.requestId;
|
|
574
574
|
this.code = opts.code;
|
|
575
575
|
}
|
|
576
|
-
}
|
|
577
|
-
|
|
576
|
+
}
|
|
577
|
+
class MalformedQueryException extends NeptunedataServiceException {
|
|
578
578
|
name = "MalformedQueryException";
|
|
579
579
|
$fault = "client";
|
|
580
580
|
detailedMessage;
|
|
@@ -591,8 +591,8 @@ let MalformedQueryException$1 = class MalformedQueryException extends Neptunedat
|
|
|
591
591
|
this.requestId = opts.requestId;
|
|
592
592
|
this.code = opts.code;
|
|
593
593
|
}
|
|
594
|
-
}
|
|
595
|
-
|
|
594
|
+
}
|
|
595
|
+
class MemoryLimitExceededException extends NeptunedataServiceException {
|
|
596
596
|
name = "MemoryLimitExceededException";
|
|
597
597
|
$fault = "server";
|
|
598
598
|
$retryable = {};
|
|
@@ -610,8 +610,8 @@ let MemoryLimitExceededException$1 = class MemoryLimitExceededException extends
|
|
|
610
610
|
this.requestId = opts.requestId;
|
|
611
611
|
this.code = opts.code;
|
|
612
612
|
}
|
|
613
|
-
}
|
|
614
|
-
|
|
613
|
+
}
|
|
614
|
+
class QueryLimitExceededException extends NeptunedataServiceException {
|
|
615
615
|
name = "QueryLimitExceededException";
|
|
616
616
|
$fault = "server";
|
|
617
617
|
$retryable = {};
|
|
@@ -629,8 +629,8 @@ let QueryLimitExceededException$1 = class QueryLimitExceededException extends Ne
|
|
|
629
629
|
this.requestId = opts.requestId;
|
|
630
630
|
this.code = opts.code;
|
|
631
631
|
}
|
|
632
|
-
}
|
|
633
|
-
|
|
632
|
+
}
|
|
633
|
+
class QueryLimitException extends NeptunedataServiceException {
|
|
634
634
|
name = "QueryLimitException";
|
|
635
635
|
$fault = "client";
|
|
636
636
|
detailedMessage;
|
|
@@ -647,8 +647,8 @@ let QueryLimitException$1 = class QueryLimitException extends NeptunedataService
|
|
|
647
647
|
this.requestId = opts.requestId;
|
|
648
648
|
this.code = opts.code;
|
|
649
649
|
}
|
|
650
|
-
}
|
|
651
|
-
|
|
650
|
+
}
|
|
651
|
+
class QueryTooLargeException extends NeptunedataServiceException {
|
|
652
652
|
name = "QueryTooLargeException";
|
|
653
653
|
$fault = "client";
|
|
654
654
|
detailedMessage;
|
|
@@ -665,8 +665,8 @@ let QueryTooLargeException$1 = class QueryTooLargeException extends NeptunedataS
|
|
|
665
665
|
this.requestId = opts.requestId;
|
|
666
666
|
this.code = opts.code;
|
|
667
667
|
}
|
|
668
|
-
}
|
|
669
|
-
|
|
668
|
+
}
|
|
669
|
+
class ExpiredStreamException extends NeptunedataServiceException {
|
|
670
670
|
name = "ExpiredStreamException";
|
|
671
671
|
$fault = "client";
|
|
672
672
|
detailedMessage;
|
|
@@ -683,8 +683,8 @@ let ExpiredStreamException$1 = class ExpiredStreamException extends NeptunedataS
|
|
|
683
683
|
this.requestId = opts.requestId;
|
|
684
684
|
this.code = opts.code;
|
|
685
685
|
}
|
|
686
|
-
}
|
|
687
|
-
|
|
686
|
+
}
|
|
687
|
+
class StreamRecordsNotFoundException extends NeptunedataServiceException {
|
|
688
688
|
name = "StreamRecordsNotFoundException";
|
|
689
689
|
$fault = "client";
|
|
690
690
|
detailedMessage;
|
|
@@ -701,8 +701,8 @@ let StreamRecordsNotFoundException$1 = class StreamRecordsNotFoundException exte
|
|
|
701
701
|
this.requestId = opts.requestId;
|
|
702
702
|
this.code = opts.code;
|
|
703
703
|
}
|
|
704
|
-
}
|
|
705
|
-
|
|
704
|
+
}
|
|
705
|
+
class ThrottlingException extends NeptunedataServiceException {
|
|
706
706
|
name = "ThrottlingException";
|
|
707
707
|
$fault = "server";
|
|
708
708
|
$retryable = {};
|
|
@@ -720,8 +720,8 @@ let ThrottlingException$1 = class ThrottlingException extends NeptunedataService
|
|
|
720
720
|
this.requestId = opts.requestId;
|
|
721
721
|
this.code = opts.code;
|
|
722
722
|
}
|
|
723
|
-
}
|
|
724
|
-
|
|
723
|
+
}
|
|
724
|
+
class S3Exception extends NeptunedataServiceException {
|
|
725
725
|
name = "S3Exception";
|
|
726
726
|
$fault = "client";
|
|
727
727
|
$retryable = {};
|
|
@@ -739,7 +739,7 @@ let S3Exception$1 = class S3Exception extends NeptunedataServiceException$1 {
|
|
|
739
739
|
this.requestId = opts.requestId;
|
|
740
740
|
this.code = opts.code;
|
|
741
741
|
}
|
|
742
|
-
}
|
|
742
|
+
}
|
|
743
743
|
|
|
744
744
|
const _ADE = "AccessDeniedException";
|
|
745
745
|
const _AE = "Accept-Encoding";
|
|
@@ -1134,7 +1134,7 @@ const _ve = "version";
|
|
|
1134
1134
|
const _w = "waited";
|
|
1135
1135
|
const n0 = "com.amazonaws.neptunedata";
|
|
1136
1136
|
var ReportAsText = [0, n0, _RAT, { [_mT]: _t }, 21];
|
|
1137
|
-
var AccessDeniedException = [
|
|
1137
|
+
var AccessDeniedException$ = [
|
|
1138
1138
|
-3,
|
|
1139
1139
|
n0,
|
|
1140
1140
|
_ADE,
|
|
@@ -1142,8 +1142,8 @@ var AccessDeniedException = [
|
|
|
1142
1142
|
[_dM, _rI, _co],
|
|
1143
1143
|
[0, 0, 0],
|
|
1144
1144
|
];
|
|
1145
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
1146
|
-
var BadRequestException = [
|
|
1145
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
1146
|
+
var BadRequestException$ = [
|
|
1147
1147
|
-3,
|
|
1148
1148
|
n0,
|
|
1149
1149
|
_BRE,
|
|
@@ -1151,8 +1151,8 @@ var BadRequestException = [
|
|
|
1151
1151
|
[_dM, _rI, _co],
|
|
1152
1152
|
[0, 0, 0],
|
|
1153
1153
|
];
|
|
1154
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException
|
|
1155
|
-
var BulkLoadIdNotFoundException = [
|
|
1154
|
+
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
1155
|
+
var BulkLoadIdNotFoundException$ = [
|
|
1156
1156
|
-3,
|
|
1157
1157
|
n0,
|
|
1158
1158
|
_BLINFE,
|
|
@@ -1160,10 +1160,10 @@ var BulkLoadIdNotFoundException = [
|
|
|
1160
1160
|
[_dM, _rI, _co],
|
|
1161
1161
|
[0, 0, 0],
|
|
1162
1162
|
];
|
|
1163
|
-
schema.TypeRegistry.for(n0).registerError(BulkLoadIdNotFoundException
|
|
1164
|
-
var CancelGremlinQueryInput = [3, n0, _CGQI, 0, [_qI], [[0, 1]]];
|
|
1165
|
-
var CancelGremlinQueryOutput = [3, n0, _CGQO, 0, [_s], [0]];
|
|
1166
|
-
var CancelledByUserException = [
|
|
1163
|
+
schema.TypeRegistry.for(n0).registerError(BulkLoadIdNotFoundException$, BulkLoadIdNotFoundException);
|
|
1164
|
+
var CancelGremlinQueryInput$ = [3, n0, _CGQI, 0, [_qI], [[0, 1]]];
|
|
1165
|
+
var CancelGremlinQueryOutput$ = [3, n0, _CGQO, 0, [_s], [0]];
|
|
1166
|
+
var CancelledByUserException$ = [
|
|
1167
1167
|
-3,
|
|
1168
1168
|
n0,
|
|
1169
1169
|
_CBUE,
|
|
@@ -1171,10 +1171,10 @@ var CancelledByUserException = [
|
|
|
1171
1171
|
[_dM, _rI, _co],
|
|
1172
1172
|
[0, 0, 0],
|
|
1173
1173
|
];
|
|
1174
|
-
schema.TypeRegistry.for(n0).registerError(CancelledByUserException
|
|
1175
|
-
var CancelLoaderJobInput = [3, n0, _CLJI, 0, [_lI], [[0, 1]]];
|
|
1176
|
-
var CancelLoaderJobOutput = [3, n0, _CLJO, 0, [_s], [0]];
|
|
1177
|
-
var CancelMLDataProcessingJobInput = [
|
|
1174
|
+
schema.TypeRegistry.for(n0).registerError(CancelledByUserException$, CancelledByUserException);
|
|
1175
|
+
var CancelLoaderJobInput$ = [3, n0, _CLJI, 0, [_lI], [[0, 1]]];
|
|
1176
|
+
var CancelLoaderJobOutput$ = [3, n0, _CLJO, 0, [_s], [0]];
|
|
1177
|
+
var CancelMLDataProcessingJobInput$ = [
|
|
1178
1178
|
3,
|
|
1179
1179
|
n0,
|
|
1180
1180
|
_CMLDPJI,
|
|
@@ -1186,8 +1186,8 @@ var CancelMLDataProcessingJobInput = [
|
|
|
1186
1186
|
[2, { [_hQ]: _cl }],
|
|
1187
1187
|
],
|
|
1188
1188
|
];
|
|
1189
|
-
var CancelMLDataProcessingJobOutput = [3, n0, _CMLDPJO, 0, [_s], [0]];
|
|
1190
|
-
var CancelMLModelTrainingJobInput = [
|
|
1189
|
+
var CancelMLDataProcessingJobOutput$ = [3, n0, _CMLDPJO, 0, [_s], [0]];
|
|
1190
|
+
var CancelMLModelTrainingJobInput$ = [
|
|
1191
1191
|
3,
|
|
1192
1192
|
n0,
|
|
1193
1193
|
_CMLMTJI,
|
|
@@ -1199,8 +1199,8 @@ var CancelMLModelTrainingJobInput = [
|
|
|
1199
1199
|
[2, { [_hQ]: _cl }],
|
|
1200
1200
|
],
|
|
1201
1201
|
];
|
|
1202
|
-
var CancelMLModelTrainingJobOutput = [3, n0, _CMLMTJO, 0, [_s], [0]];
|
|
1203
|
-
var CancelMLModelTransformJobInput = [
|
|
1202
|
+
var CancelMLModelTrainingJobOutput$ = [3, n0, _CMLMTJO, 0, [_s], [0]];
|
|
1203
|
+
var CancelMLModelTransformJobInput$ = [
|
|
1204
1204
|
3,
|
|
1205
1205
|
n0,
|
|
1206
1206
|
_CMLMTJIa,
|
|
@@ -1212,8 +1212,8 @@ var CancelMLModelTransformJobInput = [
|
|
|
1212
1212
|
[2, { [_hQ]: _cl }],
|
|
1213
1213
|
],
|
|
1214
1214
|
];
|
|
1215
|
-
var CancelMLModelTransformJobOutput = [3, n0, _CMLMTJOa, 0, [_s], [0]];
|
|
1216
|
-
var CancelOpenCypherQueryInput = [
|
|
1215
|
+
var CancelMLModelTransformJobOutput$ = [3, n0, _CMLMTJOa, 0, [_s], [0]];
|
|
1216
|
+
var CancelOpenCypherQueryInput$ = [
|
|
1217
1217
|
3,
|
|
1218
1218
|
n0,
|
|
1219
1219
|
_COCQI,
|
|
@@ -1224,8 +1224,8 @@ var CancelOpenCypherQueryInput = [
|
|
|
1224
1224
|
[2, { [_hQ]: _si }],
|
|
1225
1225
|
],
|
|
1226
1226
|
];
|
|
1227
|
-
var CancelOpenCypherQueryOutput = [3, n0, _COCQO, 0, [_s, _p], [0, 2]];
|
|
1228
|
-
var ClientTimeoutException = [
|
|
1227
|
+
var CancelOpenCypherQueryOutput$ = [3, n0, _COCQO, 0, [_s, _p], [0, 2]];
|
|
1228
|
+
var ClientTimeoutException$ = [
|
|
1229
1229
|
-3,
|
|
1230
1230
|
n0,
|
|
1231
1231
|
_CTE,
|
|
@@ -1233,8 +1233,8 @@ var ClientTimeoutException = [
|
|
|
1233
1233
|
[_dM, _rI, _co],
|
|
1234
1234
|
[0, 0, 0],
|
|
1235
1235
|
];
|
|
1236
|
-
schema.TypeRegistry.for(n0).registerError(ClientTimeoutException
|
|
1237
|
-
var ConcurrentModificationException = [
|
|
1236
|
+
schema.TypeRegistry.for(n0).registerError(ClientTimeoutException$, ClientTimeoutException);
|
|
1237
|
+
var ConcurrentModificationException$ = [
|
|
1238
1238
|
-3,
|
|
1239
1239
|
n0,
|
|
1240
1240
|
_CME,
|
|
@@ -1242,8 +1242,8 @@ var ConcurrentModificationException = [
|
|
|
1242
1242
|
[_dM, _rI, _co],
|
|
1243
1243
|
[0, 0, 0],
|
|
1244
1244
|
];
|
|
1245
|
-
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException
|
|
1246
|
-
var ConstraintViolationException = [
|
|
1245
|
+
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
1246
|
+
var ConstraintViolationException$ = [
|
|
1247
1247
|
-3,
|
|
1248
1248
|
n0,
|
|
1249
1249
|
_CVE,
|
|
@@ -1251,8 +1251,8 @@ var ConstraintViolationException = [
|
|
|
1251
1251
|
[_dM, _rI, _co],
|
|
1252
1252
|
[0, 0, 0],
|
|
1253
1253
|
];
|
|
1254
|
-
schema.TypeRegistry.for(n0).registerError(ConstraintViolationException
|
|
1255
|
-
var CreateMLEndpointInput = [
|
|
1254
|
+
schema.TypeRegistry.for(n0).registerError(ConstraintViolationException$, ConstraintViolationException);
|
|
1255
|
+
var CreateMLEndpointInput$ = [
|
|
1256
1256
|
3,
|
|
1257
1257
|
n0,
|
|
1258
1258
|
_CMLEI,
|
|
@@ -1260,10 +1260,10 @@ var CreateMLEndpointInput = [
|
|
|
1260
1260
|
[_i, _mMTJI, _mMTJIl, _u, _nIRA, _mN, _iT, _iC, _vEKMSK],
|
|
1261
1261
|
[0, 0, 0, 2, 0, 0, 0, 1, 0],
|
|
1262
1262
|
];
|
|
1263
|
-
var CreateMLEndpointOutput = [3, n0, _CMLEO, 0, [_i, _a, _cTIM], [0, 0, 1]];
|
|
1264
|
-
var CustomModelTrainingParameters = [3, n0, _CMTP, 0, [_sSDP, _tEPS, _tEPSr], [0, 0, 0]];
|
|
1265
|
-
var CustomModelTransformParameters = [3, n0, _CMTPu, 0, [_sSDP, _tEPSr], [0, 0]];
|
|
1266
|
-
var DeleteMLEndpointInput = [
|
|
1263
|
+
var CreateMLEndpointOutput$ = [3, n0, _CMLEO, 0, [_i, _a, _cTIM], [0, 0, 1]];
|
|
1264
|
+
var CustomModelTrainingParameters$ = [3, n0, _CMTP, 0, [_sSDP, _tEPS, _tEPSr], [0, 0, 0]];
|
|
1265
|
+
var CustomModelTransformParameters$ = [3, n0, _CMTPu, 0, [_sSDP, _tEPSr], [0, 0]];
|
|
1266
|
+
var DeleteMLEndpointInput$ = [
|
|
1267
1267
|
3,
|
|
1268
1268
|
n0,
|
|
1269
1269
|
_DMLEI,
|
|
@@ -1275,29 +1275,29 @@ var DeleteMLEndpointInput = [
|
|
|
1275
1275
|
[2, { [_hQ]: _cl }],
|
|
1276
1276
|
],
|
|
1277
1277
|
];
|
|
1278
|
-
var DeleteMLEndpointOutput = [3, n0, _DMLEO, 0, [_s], [0]];
|
|
1279
|
-
var DeletePropertygraphStatisticsOutput = [
|
|
1278
|
+
var DeleteMLEndpointOutput$ = [3, n0, _DMLEO, 0, [_s], [0]];
|
|
1279
|
+
var DeletePropertygraphStatisticsOutput$ = [
|
|
1280
1280
|
3,
|
|
1281
1281
|
n0,
|
|
1282
1282
|
_DPSO,
|
|
1283
1283
|
0,
|
|
1284
1284
|
[_sC, _s, _p],
|
|
1285
|
-
[[1, 32], 0, () => DeleteStatisticsValueMap],
|
|
1285
|
+
[[1, 32], 0, () => DeleteStatisticsValueMap$],
|
|
1286
1286
|
];
|
|
1287
|
-
var DeleteSparqlStatisticsOutput = [
|
|
1287
|
+
var DeleteSparqlStatisticsOutput$ = [
|
|
1288
1288
|
3,
|
|
1289
1289
|
n0,
|
|
1290
1290
|
_DSSO,
|
|
1291
1291
|
0,
|
|
1292
1292
|
[_sC, _s, _p],
|
|
1293
|
-
[[1, 32], 0, () => DeleteStatisticsValueMap],
|
|
1294
|
-
];
|
|
1295
|
-
var DeleteStatisticsValueMap = [3, n0, _DSVM, 0, [_ac, _sI], [2, 0]];
|
|
1296
|
-
var EdgeStructure = [3, n0, _ES, 0, [_cou, _eP], [1, 64 | 0]];
|
|
1297
|
-
var ExecuteFastResetInput = [3, n0, _EFRI, 0, [_act, _to], [0, 0]];
|
|
1298
|
-
var ExecuteFastResetOutput = [3, n0, _EFRO, 0, [_s, _p], [0, () => FastResetToken]];
|
|
1299
|
-
var ExecuteGremlinExplainQueryInput = [3, n0, _EGEQI, 0, [_gQ], [[0, { [_jN]: _g }]]];
|
|
1300
|
-
var ExecuteGremlinExplainQueryOutput = [
|
|
1293
|
+
[[1, 32], 0, () => DeleteStatisticsValueMap$],
|
|
1294
|
+
];
|
|
1295
|
+
var DeleteStatisticsValueMap$ = [3, n0, _DSVM, 0, [_ac, _sI], [2, 0]];
|
|
1296
|
+
var EdgeStructure$ = [3, n0, _ES, 0, [_cou, _eP], [1, 64 | 0]];
|
|
1297
|
+
var ExecuteFastResetInput$ = [3, n0, _EFRI, 0, [_act, _to], [0, 0]];
|
|
1298
|
+
var ExecuteFastResetOutput$ = [3, n0, _EFRO, 0, [_s, _p], [0, () => FastResetToken$]];
|
|
1299
|
+
var ExecuteGremlinExplainQueryInput$ = [3, n0, _EGEQI, 0, [_gQ], [[0, { [_jN]: _g }]]];
|
|
1300
|
+
var ExecuteGremlinExplainQueryOutput$ = [
|
|
1301
1301
|
3,
|
|
1302
1302
|
n0,
|
|
1303
1303
|
_EGEQO,
|
|
@@ -1305,7 +1305,7 @@ var ExecuteGremlinExplainQueryOutput = [
|
|
|
1305
1305
|
[_o],
|
|
1306
1306
|
[[() => ReportAsText, 16]],
|
|
1307
1307
|
];
|
|
1308
|
-
var ExecuteGremlinProfileQueryInput = [
|
|
1308
|
+
var ExecuteGremlinProfileQueryInput$ = [
|
|
1309
1309
|
3,
|
|
1310
1310
|
n0,
|
|
1311
1311
|
_EGPQI,
|
|
@@ -1319,7 +1319,7 @@ var ExecuteGremlinProfileQueryInput = [
|
|
|
1319
1319
|
[2, { [_jN]: _pO }],
|
|
1320
1320
|
],
|
|
1321
1321
|
];
|
|
1322
|
-
var ExecuteGremlinProfileQueryOutput = [
|
|
1322
|
+
var ExecuteGremlinProfileQueryOutput$ = [
|
|
1323
1323
|
3,
|
|
1324
1324
|
n0,
|
|
1325
1325
|
_EGPQO,
|
|
@@ -1327,7 +1327,7 @@ var ExecuteGremlinProfileQueryOutput = [
|
|
|
1327
1327
|
[_o],
|
|
1328
1328
|
[[() => ReportAsText, 16]],
|
|
1329
1329
|
];
|
|
1330
|
-
var ExecuteGremlinQueryInput = [
|
|
1330
|
+
var ExecuteGremlinQueryInput$ = [
|
|
1331
1331
|
3,
|
|
1332
1332
|
n0,
|
|
1333
1333
|
_EGQI,
|
|
@@ -1338,15 +1338,15 @@ var ExecuteGremlinQueryInput = [
|
|
|
1338
1338
|
[0, { [_hH]: _acc }],
|
|
1339
1339
|
],
|
|
1340
1340
|
];
|
|
1341
|
-
var ExecuteGremlinQueryOutput = [
|
|
1341
|
+
var ExecuteGremlinQueryOutput$ = [
|
|
1342
1342
|
3,
|
|
1343
1343
|
n0,
|
|
1344
1344
|
_EGQO,
|
|
1345
1345
|
0,
|
|
1346
1346
|
[_rI, _s, _re, _m],
|
|
1347
|
-
[0, () => GremlinQueryStatusAttributes
|
|
1347
|
+
[0, () => GremlinQueryStatusAttributes$, 15, 15],
|
|
1348
1348
|
];
|
|
1349
|
-
var ExecuteOpenCypherExplainQueryInput = [
|
|
1349
|
+
var ExecuteOpenCypherExplainQueryInput$ = [
|
|
1350
1350
|
3,
|
|
1351
1351
|
n0,
|
|
1352
1352
|
_EOCEQI,
|
|
@@ -1354,8 +1354,8 @@ var ExecuteOpenCypherExplainQueryInput = [
|
|
|
1354
1354
|
[_oCQ, _pa, _eM],
|
|
1355
1355
|
[[0, { [_jN]: _q }], 0, [0, { [_jN]: _ex }]],
|
|
1356
1356
|
];
|
|
1357
|
-
var ExecuteOpenCypherExplainQueryOutput = [3, n0, _EOCEQO, 0, [_r], [[21, 16]]];
|
|
1358
|
-
var ExecuteOpenCypherQueryInput = [
|
|
1357
|
+
var ExecuteOpenCypherExplainQueryOutput$ = [3, n0, _EOCEQO, 0, [_r], [[21, 16]]];
|
|
1358
|
+
var ExecuteOpenCypherQueryInput$ = [
|
|
1359
1359
|
3,
|
|
1360
1360
|
n0,
|
|
1361
1361
|
_EOCQI,
|
|
@@ -1363,8 +1363,8 @@ var ExecuteOpenCypherQueryInput = [
|
|
|
1363
1363
|
[_oCQ, _pa],
|
|
1364
1364
|
[[0, { [_jN]: _q }], 0],
|
|
1365
1365
|
];
|
|
1366
|
-
var ExecuteOpenCypherQueryOutput = [3, n0, _EOCQO, 0, [_r], [15]];
|
|
1367
|
-
var ExpiredStreamException = [
|
|
1366
|
+
var ExecuteOpenCypherQueryOutput$ = [3, n0, _EOCQO, 0, [_r], [15]];
|
|
1367
|
+
var ExpiredStreamException$ = [
|
|
1368
1368
|
-3,
|
|
1369
1369
|
n0,
|
|
1370
1370
|
_ESE,
|
|
@@ -1372,8 +1372,8 @@ var ExpiredStreamException = [
|
|
|
1372
1372
|
[_dM, _rI, _co],
|
|
1373
1373
|
[0, 0, 0],
|
|
1374
1374
|
];
|
|
1375
|
-
schema.TypeRegistry.for(n0).registerError(ExpiredStreamException
|
|
1376
|
-
var FailureByQueryException = [
|
|
1375
|
+
schema.TypeRegistry.for(n0).registerError(ExpiredStreamException$, ExpiredStreamException);
|
|
1376
|
+
var FailureByQueryException$ = [
|
|
1377
1377
|
-3,
|
|
1378
1378
|
n0,
|
|
1379
1379
|
_FBQE,
|
|
@@ -1381,9 +1381,9 @@ var FailureByQueryException = [
|
|
|
1381
1381
|
[_dM, _rI, _co],
|
|
1382
1382
|
[0, 0, 0],
|
|
1383
1383
|
];
|
|
1384
|
-
schema.TypeRegistry.for(n0).registerError(FailureByQueryException
|
|
1385
|
-
var FastResetToken = [3, n0, _FRT, 0, [_to], [0]];
|
|
1386
|
-
var GetEngineStatusOutput = [
|
|
1384
|
+
schema.TypeRegistry.for(n0).registerError(FailureByQueryException$, FailureByQueryException);
|
|
1385
|
+
var FastResetToken$ = [3, n0, _FRT, 0, [_to], [0]];
|
|
1386
|
+
var GetEngineStatusOutput$ = [
|
|
1387
1387
|
3,
|
|
1388
1388
|
n0,
|
|
1389
1389
|
_GESO,
|
|
@@ -1395,9 +1395,9 @@ var GetEngineStatusOutput = [
|
|
|
1395
1395
|
0,
|
|
1396
1396
|
0,
|
|
1397
1397
|
0,
|
|
1398
|
-
() => QueryLanguageVersion
|
|
1399
|
-
() => QueryLanguageVersion
|
|
1400
|
-
() => QueryLanguageVersion
|
|
1398
|
+
() => QueryLanguageVersion$,
|
|
1399
|
+
() => QueryLanguageVersion$,
|
|
1400
|
+
() => QueryLanguageVersion$,
|
|
1401
1401
|
128 | 0,
|
|
1402
1402
|
1,
|
|
1403
1403
|
0,
|
|
@@ -1405,16 +1405,16 @@ var GetEngineStatusOutput = [
|
|
|
1405
1405
|
128 | 0,
|
|
1406
1406
|
],
|
|
1407
1407
|
];
|
|
1408
|
-
var GetGremlinQueryStatusInput = [3, n0, _GGQSI, 0, [_qI], [[0, 1]]];
|
|
1409
|
-
var GetGremlinQueryStatusOutput = [
|
|
1408
|
+
var GetGremlinQueryStatusInput$ = [3, n0, _GGQSI, 0, [_qI], [[0, 1]]];
|
|
1409
|
+
var GetGremlinQueryStatusOutput$ = [
|
|
1410
1410
|
3,
|
|
1411
1411
|
n0,
|
|
1412
1412
|
_GGQSO,
|
|
1413
1413
|
0,
|
|
1414
1414
|
[_qI, _qS, _qES],
|
|
1415
|
-
[0, 0, () => QueryEvalStats],
|
|
1415
|
+
[0, 0, () => QueryEvalStats$],
|
|
1416
1416
|
];
|
|
1417
|
-
var GetLoaderJobStatusInput = [
|
|
1417
|
+
var GetLoaderJobStatusInput$ = [
|
|
1418
1418
|
3,
|
|
1419
1419
|
n0,
|
|
1420
1420
|
_GLJSI,
|
|
@@ -1428,8 +1428,8 @@ var GetLoaderJobStatusInput = [
|
|
|
1428
1428
|
[1, { [_hQ]: _ePP }],
|
|
1429
1429
|
],
|
|
1430
1430
|
];
|
|
1431
|
-
var GetLoaderJobStatusOutput = [3, n0, _GLJSO, 0, [_s, _p], [0, 15]];
|
|
1432
|
-
var GetMLDataProcessingJobInput = [
|
|
1431
|
+
var GetLoaderJobStatusOutput$ = [3, n0, _GLJSO, 0, [_s, _p], [0, 15]];
|
|
1432
|
+
var GetMLDataProcessingJobInput$ = [
|
|
1433
1433
|
3,
|
|
1434
1434
|
n0,
|
|
1435
1435
|
_GMLDPJI,
|
|
@@ -1440,15 +1440,15 @@ var GetMLDataProcessingJobInput = [
|
|
|
1440
1440
|
[0, { [_hQ]: _nIRA }],
|
|
1441
1441
|
],
|
|
1442
1442
|
];
|
|
1443
|
-
var GetMLDataProcessingJobOutput = [
|
|
1443
|
+
var GetMLDataProcessingJobOutput$ = [
|
|
1444
1444
|
3,
|
|
1445
1445
|
n0,
|
|
1446
1446
|
_GMLDPJO,
|
|
1447
1447
|
0,
|
|
1448
1448
|
[_s, _i, _pJ],
|
|
1449
|
-
[0, 0, () => MlResourceDefinition],
|
|
1449
|
+
[0, 0, () => MlResourceDefinition$],
|
|
1450
1450
|
];
|
|
1451
|
-
var GetMLEndpointInput = [
|
|
1451
|
+
var GetMLEndpointInput$ = [
|
|
1452
1452
|
3,
|
|
1453
1453
|
n0,
|
|
1454
1454
|
_GMLEI,
|
|
@@ -1459,15 +1459,15 @@ var GetMLEndpointInput = [
|
|
|
1459
1459
|
[0, { [_hQ]: _nIRA }],
|
|
1460
1460
|
],
|
|
1461
1461
|
];
|
|
1462
|
-
var GetMLEndpointOutput = [
|
|
1462
|
+
var GetMLEndpointOutput$ = [
|
|
1463
1463
|
3,
|
|
1464
1464
|
n0,
|
|
1465
1465
|
_GMLEO,
|
|
1466
1466
|
0,
|
|
1467
1467
|
[_s, _i, _en, _eC],
|
|
1468
|
-
[0, 0, () => MlResourceDefinition
|
|
1468
|
+
[0, 0, () => MlResourceDefinition$, () => MlConfigDefinition$],
|
|
1469
1469
|
];
|
|
1470
|
-
var GetMLModelTrainingJobInput = [
|
|
1470
|
+
var GetMLModelTrainingJobInput$ = [
|
|
1471
1471
|
3,
|
|
1472
1472
|
n0,
|
|
1473
1473
|
_GMLMTJI,
|
|
@@ -1478,15 +1478,15 @@ var GetMLModelTrainingJobInput = [
|
|
|
1478
1478
|
[0, { [_hQ]: _nIRA }],
|
|
1479
1479
|
],
|
|
1480
1480
|
];
|
|
1481
|
-
var GetMLModelTrainingJobOutput = [
|
|
1481
|
+
var GetMLModelTrainingJobOutput$ = [
|
|
1482
1482
|
3,
|
|
1483
1483
|
n0,
|
|
1484
1484
|
_GMLMTJO,
|
|
1485
1485
|
0,
|
|
1486
1486
|
[_s, _i, _pJ, _hJ, _mTJ, _mM],
|
|
1487
|
-
[0, 0, () => MlResourceDefinition
|
|
1487
|
+
[0, 0, () => MlResourceDefinition$, () => MlResourceDefinition$, () => MlResourceDefinition$, () => MlModels],
|
|
1488
1488
|
];
|
|
1489
|
-
var GetMLModelTransformJobInput = [
|
|
1489
|
+
var GetMLModelTransformJobInput$ = [
|
|
1490
1490
|
3,
|
|
1491
1491
|
n0,
|
|
1492
1492
|
_GMLMTJIe,
|
|
@@ -1497,25 +1497,32 @@ var GetMLModelTransformJobInput = [
|
|
|
1497
1497
|
[0, { [_hQ]: _nIRA }],
|
|
1498
1498
|
],
|
|
1499
1499
|
];
|
|
1500
|
-
var GetMLModelTransformJobOutput = [
|
|
1500
|
+
var GetMLModelTransformJobOutput$ = [
|
|
1501
1501
|
3,
|
|
1502
1502
|
n0,
|
|
1503
1503
|
_GMLMTJOe,
|
|
1504
1504
|
0,
|
|
1505
1505
|
[_s, _i, _bPJ, _rMTJ, _mo],
|
|
1506
|
-
[0, 0, () => MlResourceDefinition
|
|
1506
|
+
[0, 0, () => MlResourceDefinition$, () => MlResourceDefinition$, () => Models],
|
|
1507
1507
|
];
|
|
1508
|
-
var GetOpenCypherQueryStatusInput = [3, n0, _GOCQSI, 0, [_qI], [[0, 1]]];
|
|
1509
|
-
var GetOpenCypherQueryStatusOutput = [
|
|
1508
|
+
var GetOpenCypherQueryStatusInput$ = [3, n0, _GOCQSI, 0, [_qI], [[0, 1]]];
|
|
1509
|
+
var GetOpenCypherQueryStatusOutput$ = [
|
|
1510
1510
|
3,
|
|
1511
1511
|
n0,
|
|
1512
1512
|
_GOCQSO,
|
|
1513
1513
|
0,
|
|
1514
1514
|
[_qI, _qS, _qES],
|
|
1515
|
-
[0, 0, () => QueryEvalStats],
|
|
1515
|
+
[0, 0, () => QueryEvalStats$],
|
|
1516
1516
|
];
|
|
1517
|
-
var GetPropertygraphStatisticsOutput = [
|
|
1518
|
-
|
|
1517
|
+
var GetPropertygraphStatisticsOutput$ = [
|
|
1518
|
+
3,
|
|
1519
|
+
n0,
|
|
1520
|
+
_GPSO,
|
|
1521
|
+
0,
|
|
1522
|
+
[_s, _p],
|
|
1523
|
+
[0, () => Statistics$],
|
|
1524
|
+
];
|
|
1525
|
+
var GetPropertygraphStreamInput$ = [
|
|
1519
1526
|
3,
|
|
1520
1527
|
n0,
|
|
1521
1528
|
_GPSI,
|
|
@@ -1529,7 +1536,7 @@ var GetPropertygraphStreamInput = [
|
|
|
1529
1536
|
[0, { [_hH]: _AE }],
|
|
1530
1537
|
],
|
|
1531
1538
|
];
|
|
1532
|
-
var GetPropertygraphStreamOutput = [
|
|
1539
|
+
var GetPropertygraphStreamOutput$ = [
|
|
1533
1540
|
3,
|
|
1534
1541
|
n0,
|
|
1535
1542
|
_GPSOe,
|
|
@@ -1537,26 +1544,26 @@ var GetPropertygraphStreamOutput = [
|
|
|
1537
1544
|
[_lEI, _lTTIM, _fo, _rec, _tR],
|
|
1538
1545
|
[128 | 0, [1, { [_jN]: _lTT }], 0, [() => PropertygraphRecordsList, 0], 1],
|
|
1539
1546
|
];
|
|
1540
|
-
var GetPropertygraphSummaryInput = [3, n0, _GPSIe, 0, [_mod], [[0, { [_hQ]: _mod }]]];
|
|
1541
|
-
var GetPropertygraphSummaryOutput = [
|
|
1547
|
+
var GetPropertygraphSummaryInput$ = [3, n0, _GPSIe, 0, [_mod], [[0, { [_hQ]: _mod }]]];
|
|
1548
|
+
var GetPropertygraphSummaryOutput$ = [
|
|
1542
1549
|
3,
|
|
1543
1550
|
n0,
|
|
1544
1551
|
_GPSOet,
|
|
1545
1552
|
0,
|
|
1546
1553
|
[_sC, _p],
|
|
1547
|
-
[[1, 32], () => PropertygraphSummaryValueMap],
|
|
1554
|
+
[[1, 32], () => PropertygraphSummaryValueMap$],
|
|
1548
1555
|
];
|
|
1549
|
-
var GetRDFGraphSummaryInput = [3, n0, _GRDFGSI, 0, [_mod], [[0, { [_hQ]: _mod }]]];
|
|
1550
|
-
var GetRDFGraphSummaryOutput = [
|
|
1556
|
+
var GetRDFGraphSummaryInput$ = [3, n0, _GRDFGSI, 0, [_mod], [[0, { [_hQ]: _mod }]]];
|
|
1557
|
+
var GetRDFGraphSummaryOutput$ = [
|
|
1551
1558
|
3,
|
|
1552
1559
|
n0,
|
|
1553
1560
|
_GRDFGSO,
|
|
1554
1561
|
0,
|
|
1555
1562
|
[_sC, _p],
|
|
1556
|
-
[[1, 32], () => RDFGraphSummaryValueMap],
|
|
1563
|
+
[[1, 32], () => RDFGraphSummaryValueMap$],
|
|
1557
1564
|
];
|
|
1558
|
-
var GetSparqlStatisticsOutput = [3, n0, _GSSO, 0, [_s, _p], [0, () => Statistics]];
|
|
1559
|
-
var GetSparqlStreamInput = [
|
|
1565
|
+
var GetSparqlStatisticsOutput$ = [3, n0, _GSSO, 0, [_s, _p], [0, () => Statistics$]];
|
|
1566
|
+
var GetSparqlStreamInput$ = [
|
|
1560
1567
|
3,
|
|
1561
1568
|
n0,
|
|
1562
1569
|
_GSSI,
|
|
@@ -1570,7 +1577,7 @@ var GetSparqlStreamInput = [
|
|
|
1570
1577
|
[0, { [_hH]: _AE }],
|
|
1571
1578
|
],
|
|
1572
1579
|
];
|
|
1573
|
-
var GetSparqlStreamOutput = [
|
|
1580
|
+
var GetSparqlStreamOutput$ = [
|
|
1574
1581
|
3,
|
|
1575
1582
|
n0,
|
|
1576
1583
|
_GSSOe,
|
|
@@ -1578,9 +1585,16 @@ var GetSparqlStreamOutput = [
|
|
|
1578
1585
|
[_lEI, _lTTIM, _fo, _rec, _tR],
|
|
1579
1586
|
[128 | 0, [1, { [_jN]: _lTT }], 0, [() => SparqlRecordsList, 0], 1],
|
|
1580
1587
|
];
|
|
1581
|
-
var GremlinQueryStatus = [
|
|
1582
|
-
|
|
1583
|
-
|
|
1588
|
+
var GremlinQueryStatus$ = [
|
|
1589
|
+
3,
|
|
1590
|
+
n0,
|
|
1591
|
+
_GQS,
|
|
1592
|
+
0,
|
|
1593
|
+
[_qI, _qS, _qES],
|
|
1594
|
+
[0, 0, () => QueryEvalStats$],
|
|
1595
|
+
];
|
|
1596
|
+
var GremlinQueryStatusAttributes$ = [3, n0, _GQSA, 0, [_me, _co, _at], [0, 1, 15]];
|
|
1597
|
+
var IllegalArgumentException$ = [
|
|
1584
1598
|
-3,
|
|
1585
1599
|
n0,
|
|
1586
1600
|
_IAE,
|
|
@@ -1588,8 +1602,8 @@ var IllegalArgumentException = [
|
|
|
1588
1602
|
[_dM, _rI, _co],
|
|
1589
1603
|
[0, 0, 0],
|
|
1590
1604
|
];
|
|
1591
|
-
schema.TypeRegistry.for(n0).registerError(IllegalArgumentException
|
|
1592
|
-
var InternalFailureException = [
|
|
1605
|
+
schema.TypeRegistry.for(n0).registerError(IllegalArgumentException$, IllegalArgumentException);
|
|
1606
|
+
var InternalFailureException$ = [
|
|
1593
1607
|
-3,
|
|
1594
1608
|
n0,
|
|
1595
1609
|
_IFE,
|
|
@@ -1597,8 +1611,8 @@ var InternalFailureException = [
|
|
|
1597
1611
|
[_dM, _rI, _co],
|
|
1598
1612
|
[0, 0, 0],
|
|
1599
1613
|
];
|
|
1600
|
-
schema.TypeRegistry.for(n0).registerError(InternalFailureException
|
|
1601
|
-
var InvalidArgumentException = [
|
|
1614
|
+
schema.TypeRegistry.for(n0).registerError(InternalFailureException$, InternalFailureException);
|
|
1615
|
+
var InvalidArgumentException$ = [
|
|
1602
1616
|
-3,
|
|
1603
1617
|
n0,
|
|
1604
1618
|
_IAEn,
|
|
@@ -1606,8 +1620,8 @@ var InvalidArgumentException = [
|
|
|
1606
1620
|
[_dM, _rI, _co],
|
|
1607
1621
|
[0, 0, 0],
|
|
1608
1622
|
];
|
|
1609
|
-
schema.TypeRegistry.for(n0).registerError(InvalidArgumentException
|
|
1610
|
-
var InvalidNumericDataException = [
|
|
1623
|
+
schema.TypeRegistry.for(n0).registerError(InvalidArgumentException$, InvalidArgumentException);
|
|
1624
|
+
var InvalidNumericDataException$ = [
|
|
1611
1625
|
-3,
|
|
1612
1626
|
n0,
|
|
1613
1627
|
_INDE,
|
|
@@ -1615,8 +1629,8 @@ var InvalidNumericDataException = [
|
|
|
1615
1629
|
[_dM, _rI, _co],
|
|
1616
1630
|
[0, 0, 0],
|
|
1617
1631
|
];
|
|
1618
|
-
schema.TypeRegistry.for(n0).registerError(InvalidNumericDataException
|
|
1619
|
-
var InvalidParameterException = [
|
|
1632
|
+
schema.TypeRegistry.for(n0).registerError(InvalidNumericDataException$, InvalidNumericDataException);
|
|
1633
|
+
var InvalidParameterException$ = [
|
|
1620
1634
|
-3,
|
|
1621
1635
|
n0,
|
|
1622
1636
|
_IPE,
|
|
@@ -1624,9 +1638,9 @@ var InvalidParameterException = [
|
|
|
1624
1638
|
[_dM, _rI, _co],
|
|
1625
1639
|
[0, 0, 0],
|
|
1626
1640
|
];
|
|
1627
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException
|
|
1628
|
-
var ListGremlinQueriesInput = [3, n0, _LGQI, 0, [_iW], [[2, { [_hQ]: _iW }]]];
|
|
1629
|
-
var ListGremlinQueriesOutput = [
|
|
1641
|
+
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
1642
|
+
var ListGremlinQueriesInput$ = [3, n0, _LGQI, 0, [_iW], [[2, { [_hQ]: _iW }]]];
|
|
1643
|
+
var ListGremlinQueriesOutput$ = [
|
|
1630
1644
|
3,
|
|
1631
1645
|
n0,
|
|
1632
1646
|
_LGQO,
|
|
@@ -1634,7 +1648,7 @@ var ListGremlinQueriesOutput = [
|
|
|
1634
1648
|
[_aQC, _rQC, _qu],
|
|
1635
1649
|
[1, 1, () => GremlinQueries],
|
|
1636
1650
|
];
|
|
1637
|
-
var ListLoaderJobsInput = [
|
|
1651
|
+
var ListLoaderJobsInput$ = [
|
|
1638
1652
|
3,
|
|
1639
1653
|
n0,
|
|
1640
1654
|
_LLJI,
|
|
@@ -1645,8 +1659,8 @@ var ListLoaderJobsInput = [
|
|
|
1645
1659
|
[2, { [_hQ]: _iQL }],
|
|
1646
1660
|
],
|
|
1647
1661
|
];
|
|
1648
|
-
var ListLoaderJobsOutput = [3, n0, _LLJO, 0, [_s, _p], [0, () => LoaderIdResult]];
|
|
1649
|
-
var ListMLDataProcessingJobsInput = [
|
|
1662
|
+
var ListLoaderJobsOutput$ = [3, n0, _LLJO, 0, [_s, _p], [0, () => LoaderIdResult$]];
|
|
1663
|
+
var ListMLDataProcessingJobsInput$ = [
|
|
1650
1664
|
3,
|
|
1651
1665
|
n0,
|
|
1652
1666
|
_LMLDPJI,
|
|
@@ -1657,8 +1671,8 @@ var ListMLDataProcessingJobsInput = [
|
|
|
1657
1671
|
[0, { [_hQ]: _nIRA }],
|
|
1658
1672
|
],
|
|
1659
1673
|
];
|
|
1660
|
-
var ListMLDataProcessingJobsOutput = [3, n0, _LMLDPJO, 0, [_id], [64 | 0]];
|
|
1661
|
-
var ListMLEndpointsInput = [
|
|
1674
|
+
var ListMLDataProcessingJobsOutput$ = [3, n0, _LMLDPJO, 0, [_id], [64 | 0]];
|
|
1675
|
+
var ListMLEndpointsInput$ = [
|
|
1662
1676
|
3,
|
|
1663
1677
|
n0,
|
|
1664
1678
|
_LMLEI,
|
|
@@ -1669,8 +1683,8 @@ var ListMLEndpointsInput = [
|
|
|
1669
1683
|
[0, { [_hQ]: _nIRA }],
|
|
1670
1684
|
],
|
|
1671
1685
|
];
|
|
1672
|
-
var ListMLEndpointsOutput = [3, n0, _LMLEO, 0, [_id], [64 | 0]];
|
|
1673
|
-
var ListMLModelTrainingJobsInput = [
|
|
1686
|
+
var ListMLEndpointsOutput$ = [3, n0, _LMLEO, 0, [_id], [64 | 0]];
|
|
1687
|
+
var ListMLModelTrainingJobsInput$ = [
|
|
1674
1688
|
3,
|
|
1675
1689
|
n0,
|
|
1676
1690
|
_LMLMTJI,
|
|
@@ -1681,8 +1695,8 @@ var ListMLModelTrainingJobsInput = [
|
|
|
1681
1695
|
[0, { [_hQ]: _nIRA }],
|
|
1682
1696
|
],
|
|
1683
1697
|
];
|
|
1684
|
-
var ListMLModelTrainingJobsOutput = [3, n0, _LMLMTJO, 0, [_id], [64 | 0]];
|
|
1685
|
-
var ListMLModelTransformJobsInput = [
|
|
1698
|
+
var ListMLModelTrainingJobsOutput$ = [3, n0, _LMLMTJO, 0, [_id], [64 | 0]];
|
|
1699
|
+
var ListMLModelTransformJobsInput$ = [
|
|
1686
1700
|
3,
|
|
1687
1701
|
n0,
|
|
1688
1702
|
_LMLMTJIi,
|
|
@@ -1693,9 +1707,9 @@ var ListMLModelTransformJobsInput = [
|
|
|
1693
1707
|
[0, { [_hQ]: _nIRA }],
|
|
1694
1708
|
],
|
|
1695
1709
|
];
|
|
1696
|
-
var ListMLModelTransformJobsOutput = [3, n0, _LMLMTJOi, 0, [_id], [64 | 0]];
|
|
1697
|
-
var ListOpenCypherQueriesInput = [3, n0, _LOCQI, 0, [_iW], [[2, { [_hQ]: _iW }]]];
|
|
1698
|
-
var ListOpenCypherQueriesOutput = [
|
|
1710
|
+
var ListMLModelTransformJobsOutput$ = [3, n0, _LMLMTJOi, 0, [_id], [64 | 0]];
|
|
1711
|
+
var ListOpenCypherQueriesInput$ = [3, n0, _LOCQI, 0, [_iW], [[2, { [_hQ]: _iW }]]];
|
|
1712
|
+
var ListOpenCypherQueriesOutput$ = [
|
|
1699
1713
|
3,
|
|
1700
1714
|
n0,
|
|
1701
1715
|
_LOCQO,
|
|
@@ -1703,8 +1717,8 @@ var ListOpenCypherQueriesOutput = [
|
|
|
1703
1717
|
[_aQC, _rQC, _qu],
|
|
1704
1718
|
[1, 1, () => OpenCypherQueries],
|
|
1705
1719
|
];
|
|
1706
|
-
var LoaderIdResult = [3, n0, _LIR, 0, [_lIo], [64 | 0]];
|
|
1707
|
-
var LoadUrlAccessDeniedException = [
|
|
1720
|
+
var LoaderIdResult$ = [3, n0, _LIR, 0, [_lIo], [64 | 0]];
|
|
1721
|
+
var LoadUrlAccessDeniedException$ = [
|
|
1708
1722
|
-3,
|
|
1709
1723
|
n0,
|
|
1710
1724
|
_LUADE,
|
|
@@ -1712,8 +1726,8 @@ var LoadUrlAccessDeniedException = [
|
|
|
1712
1726
|
[_dM, _rI, _co],
|
|
1713
1727
|
[0, 0, 0],
|
|
1714
1728
|
];
|
|
1715
|
-
schema.TypeRegistry.for(n0).registerError(LoadUrlAccessDeniedException
|
|
1716
|
-
var MalformedQueryException = [
|
|
1729
|
+
schema.TypeRegistry.for(n0).registerError(LoadUrlAccessDeniedException$, LoadUrlAccessDeniedException);
|
|
1730
|
+
var MalformedQueryException$ = [
|
|
1717
1731
|
-3,
|
|
1718
1732
|
n0,
|
|
1719
1733
|
_MQE,
|
|
@@ -1721,26 +1735,26 @@ var MalformedQueryException = [
|
|
|
1721
1735
|
[_dM, _rI, _co],
|
|
1722
1736
|
[0, 0, 0],
|
|
1723
1737
|
];
|
|
1724
|
-
schema.TypeRegistry.for(n0).registerError(MalformedQueryException
|
|
1725
|
-
var ManagePropertygraphStatisticsInput = [3, n0, _MPSI, 0, [_mod], [0]];
|
|
1726
|
-
var ManagePropertygraphStatisticsOutput = [
|
|
1738
|
+
schema.TypeRegistry.for(n0).registerError(MalformedQueryException$, MalformedQueryException);
|
|
1739
|
+
var ManagePropertygraphStatisticsInput$ = [3, n0, _MPSI, 0, [_mod], [0]];
|
|
1740
|
+
var ManagePropertygraphStatisticsOutput$ = [
|
|
1727
1741
|
3,
|
|
1728
1742
|
n0,
|
|
1729
1743
|
_MPSO,
|
|
1730
1744
|
0,
|
|
1731
1745
|
[_s, _p],
|
|
1732
|
-
[0, () => RefreshStatisticsIdMap],
|
|
1746
|
+
[0, () => RefreshStatisticsIdMap$],
|
|
1733
1747
|
];
|
|
1734
|
-
var ManageSparqlStatisticsInput = [3, n0, _MSSI, 0, [_mod], [0]];
|
|
1735
|
-
var ManageSparqlStatisticsOutput = [
|
|
1748
|
+
var ManageSparqlStatisticsInput$ = [3, n0, _MSSI, 0, [_mod], [0]];
|
|
1749
|
+
var ManageSparqlStatisticsOutput$ = [
|
|
1736
1750
|
3,
|
|
1737
1751
|
n0,
|
|
1738
1752
|
_MSSO,
|
|
1739
1753
|
0,
|
|
1740
1754
|
[_s, _p],
|
|
1741
|
-
[0, () => RefreshStatisticsIdMap],
|
|
1755
|
+
[0, () => RefreshStatisticsIdMap$],
|
|
1742
1756
|
];
|
|
1743
|
-
var MemoryLimitExceededException = [
|
|
1757
|
+
var MemoryLimitExceededException$ = [
|
|
1744
1758
|
-3,
|
|
1745
1759
|
n0,
|
|
1746
1760
|
_MLEE,
|
|
@@ -1748,8 +1762,8 @@ var MemoryLimitExceededException = [
|
|
|
1748
1762
|
[_dM, _rI, _co],
|
|
1749
1763
|
[0, 0, 0],
|
|
1750
1764
|
];
|
|
1751
|
-
schema.TypeRegistry.for(n0).registerError(MemoryLimitExceededException
|
|
1752
|
-
var MethodNotAllowedException = [
|
|
1765
|
+
schema.TypeRegistry.for(n0).registerError(MemoryLimitExceededException$, MemoryLimitExceededException);
|
|
1766
|
+
var MethodNotAllowedException$ = [
|
|
1753
1767
|
-3,
|
|
1754
1768
|
n0,
|
|
1755
1769
|
_MNAE,
|
|
@@ -1757,8 +1771,8 @@ var MethodNotAllowedException = [
|
|
|
1757
1771
|
[_dM, _rI, _co],
|
|
1758
1772
|
[0, 0, 0],
|
|
1759
1773
|
];
|
|
1760
|
-
schema.TypeRegistry.for(n0).registerError(MethodNotAllowedException
|
|
1761
|
-
var MissingParameterException = [
|
|
1774
|
+
schema.TypeRegistry.for(n0).registerError(MethodNotAllowedException$, MethodNotAllowedException);
|
|
1775
|
+
var MissingParameterException$ = [
|
|
1762
1776
|
-3,
|
|
1763
1777
|
n0,
|
|
1764
1778
|
_MPE,
|
|
@@ -1766,9 +1780,9 @@ var MissingParameterException = [
|
|
|
1766
1780
|
[_dM, _rI, _co],
|
|
1767
1781
|
[0, 0, 0],
|
|
1768
1782
|
];
|
|
1769
|
-
schema.TypeRegistry.for(n0).registerError(MissingParameterException
|
|
1770
|
-
var MlConfigDefinition = [3, n0, _MCD, 0, [_n, _a], [0, 0]];
|
|
1771
|
-
var MlResourceDefinition = [
|
|
1783
|
+
schema.TypeRegistry.for(n0).registerError(MissingParameterException$, MissingParameterException);
|
|
1784
|
+
var MlConfigDefinition$ = [3, n0, _MCD, 0, [_n, _a], [0, 0]];
|
|
1785
|
+
var MlResourceDefinition$ = [
|
|
1772
1786
|
3,
|
|
1773
1787
|
n0,
|
|
1774
1788
|
_MRD,
|
|
@@ -1776,7 +1790,7 @@ var MlResourceDefinition = [
|
|
|
1776
1790
|
[_n, _a, _s, _oL, _fR, _cLU],
|
|
1777
1791
|
[0, 0, 0, 0, 0, 0],
|
|
1778
1792
|
];
|
|
1779
|
-
var MLResourceNotFoundException = [
|
|
1793
|
+
var MLResourceNotFoundException$ = [
|
|
1780
1794
|
-3,
|
|
1781
1795
|
n0,
|
|
1782
1796
|
_MLRNFE,
|
|
@@ -1784,11 +1798,11 @@ var MLResourceNotFoundException = [
|
|
|
1784
1798
|
[_dM, _rI, _co],
|
|
1785
1799
|
[0, 0, 0],
|
|
1786
1800
|
];
|
|
1787
|
-
schema.TypeRegistry.for(n0).registerError(MLResourceNotFoundException
|
|
1788
|
-
var NodeStructure = [3, n0, _NS, 0, [_cou, _nP, _dOEL], [1, 64 | 0, 64 | 0]];
|
|
1789
|
-
var ParsingException = [-3, n0, _PE, { [_e]: _c, [_hE]: 400 }, [_dM, _rI, _co], [0, 0, 0]];
|
|
1790
|
-
schema.TypeRegistry.for(n0).registerError(ParsingException
|
|
1791
|
-
var PreconditionsFailedException = [
|
|
1801
|
+
schema.TypeRegistry.for(n0).registerError(MLResourceNotFoundException$, MLResourceNotFoundException);
|
|
1802
|
+
var NodeStructure$ = [3, n0, _NS, 0, [_cou, _nP, _dOEL], [1, 64 | 0, 64 | 0]];
|
|
1803
|
+
var ParsingException$ = [-3, n0, _PE, { [_e]: _c, [_hE]: 400 }, [_dM, _rI, _co], [0, 0, 0]];
|
|
1804
|
+
schema.TypeRegistry.for(n0).registerError(ParsingException$, ParsingException);
|
|
1805
|
+
var PreconditionsFailedException$ = [
|
|
1792
1806
|
-3,
|
|
1793
1807
|
n0,
|
|
1794
1808
|
_PFE,
|
|
@@ -1796,8 +1810,8 @@ var PreconditionsFailedException = [
|
|
|
1796
1810
|
[_dM, _rI, _co],
|
|
1797
1811
|
[0, 0, 0],
|
|
1798
1812
|
];
|
|
1799
|
-
schema.TypeRegistry.for(n0).registerError(PreconditionsFailedException
|
|
1800
|
-
var PropertygraphData = [
|
|
1813
|
+
schema.TypeRegistry.for(n0).registerError(PreconditionsFailedException$, PreconditionsFailedException);
|
|
1814
|
+
var PropertygraphData$ = [
|
|
1801
1815
|
3,
|
|
1802
1816
|
n0,
|
|
1803
1817
|
_PD,
|
|
@@ -1805,15 +1819,15 @@ var PropertygraphData = [
|
|
|
1805
1819
|
[_i, _ty, _k, _v, _fr, _to_],
|
|
1806
1820
|
[0, 0, 0, 15, 0, 0],
|
|
1807
1821
|
];
|
|
1808
|
-
var PropertygraphRecord = [
|
|
1822
|
+
var PropertygraphRecord$ = [
|
|
1809
1823
|
3,
|
|
1810
1824
|
n0,
|
|
1811
1825
|
_PR,
|
|
1812
1826
|
0,
|
|
1813
1827
|
[_cTIMo, _eI, _da, _op_, _iLO],
|
|
1814
|
-
[[1, { [_jN]: _cT }], 128 | 0, () => PropertygraphData
|
|
1828
|
+
[[1, { [_jN]: _cT }], 128 | 0, () => PropertygraphData$, 0, 2],
|
|
1815
1829
|
];
|
|
1816
|
-
var PropertygraphSummary = [
|
|
1830
|
+
var PropertygraphSummary$ = [
|
|
1817
1831
|
3,
|
|
1818
1832
|
n0,
|
|
1819
1833
|
_PS,
|
|
@@ -1836,17 +1850,17 @@ var PropertygraphSummary = [
|
|
|
1836
1850
|
() => EdgeStructures,
|
|
1837
1851
|
],
|
|
1838
1852
|
];
|
|
1839
|
-
var PropertygraphSummaryValueMap = [
|
|
1853
|
+
var PropertygraphSummaryValueMap$ = [
|
|
1840
1854
|
3,
|
|
1841
1855
|
n0,
|
|
1842
1856
|
_PSVM,
|
|
1843
1857
|
0,
|
|
1844
1858
|
[_ve, _lSCT, _gS],
|
|
1845
|
-
[0, 5, () => PropertygraphSummary],
|
|
1859
|
+
[0, 5, () => PropertygraphSummary$],
|
|
1846
1860
|
];
|
|
1847
|
-
var QueryEvalStats = [3, n0, _QES, 0, [_w, _el, _ca, _su], [1, 1, 2, 15]];
|
|
1848
|
-
var QueryLanguageVersion = [3, n0, _QLV, 0, [_ve], [0]];
|
|
1849
|
-
var QueryLimitExceededException = [
|
|
1861
|
+
var QueryEvalStats$ = [3, n0, _QES, 0, [_w, _el, _ca, _su], [1, 1, 2, 15]];
|
|
1862
|
+
var QueryLanguageVersion$ = [3, n0, _QLV, 0, [_ve], [0]];
|
|
1863
|
+
var QueryLimitExceededException$ = [
|
|
1850
1864
|
-3,
|
|
1851
1865
|
n0,
|
|
1852
1866
|
_QLEE,
|
|
@@ -1854,8 +1868,8 @@ var QueryLimitExceededException = [
|
|
|
1854
1868
|
[_dM, _rI, _co],
|
|
1855
1869
|
[0, 0, 0],
|
|
1856
1870
|
];
|
|
1857
|
-
schema.TypeRegistry.for(n0).registerError(QueryLimitExceededException
|
|
1858
|
-
var QueryLimitException = [
|
|
1871
|
+
schema.TypeRegistry.for(n0).registerError(QueryLimitExceededException$, QueryLimitExceededException);
|
|
1872
|
+
var QueryLimitException$ = [
|
|
1859
1873
|
-3,
|
|
1860
1874
|
n0,
|
|
1861
1875
|
_QLE,
|
|
@@ -1863,8 +1877,8 @@ var QueryLimitException = [
|
|
|
1863
1877
|
[_dM, _rI, _co],
|
|
1864
1878
|
[0, 0, 0],
|
|
1865
1879
|
];
|
|
1866
|
-
schema.TypeRegistry.for(n0).registerError(QueryLimitException
|
|
1867
|
-
var QueryTooLargeException = [
|
|
1880
|
+
schema.TypeRegistry.for(n0).registerError(QueryLimitException$, QueryLimitException);
|
|
1881
|
+
var QueryTooLargeException$ = [
|
|
1868
1882
|
-3,
|
|
1869
1883
|
n0,
|
|
1870
1884
|
_QTLE,
|
|
@@ -1872,8 +1886,8 @@ var QueryTooLargeException = [
|
|
|
1872
1886
|
[_dM, _rI, _co],
|
|
1873
1887
|
[0, 0, 0],
|
|
1874
1888
|
];
|
|
1875
|
-
schema.TypeRegistry.for(n0).registerError(QueryTooLargeException
|
|
1876
|
-
var RDFGraphSummary = [
|
|
1889
|
+
schema.TypeRegistry.for(n0).registerError(QueryTooLargeException$, QueryTooLargeException);
|
|
1890
|
+
var RDFGraphSummary$ = [
|
|
1877
1891
|
3,
|
|
1878
1892
|
n0,
|
|
1879
1893
|
_RDFGS,
|
|
@@ -1881,15 +1895,15 @@ var RDFGraphSummary = [
|
|
|
1881
1895
|
[_nDS, _nDP, _nQ, _nC, _cla, _pre, _sS],
|
|
1882
1896
|
[1, 1, 1, 1, 64 | 0, [1, n0, _LVML, 0, 128 | 1], () => SubjectStructures],
|
|
1883
1897
|
];
|
|
1884
|
-
var RDFGraphSummaryValueMap = [
|
|
1898
|
+
var RDFGraphSummaryValueMap$ = [
|
|
1885
1899
|
3,
|
|
1886
1900
|
n0,
|
|
1887
1901
|
_RDFGSVM,
|
|
1888
1902
|
0,
|
|
1889
1903
|
[_ve, _lSCT, _gS],
|
|
1890
|
-
[0, 5, () => RDFGraphSummary],
|
|
1904
|
+
[0, 5, () => RDFGraphSummary$],
|
|
1891
1905
|
];
|
|
1892
|
-
var ReadOnlyViolationException = [
|
|
1906
|
+
var ReadOnlyViolationException$ = [
|
|
1893
1907
|
-3,
|
|
1894
1908
|
n0,
|
|
1895
1909
|
_ROVE,
|
|
@@ -1897,11 +1911,11 @@ var ReadOnlyViolationException = [
|
|
|
1897
1911
|
[_dM, _rI, _co],
|
|
1898
1912
|
[0, 0, 0],
|
|
1899
1913
|
];
|
|
1900
|
-
schema.TypeRegistry.for(n0).registerError(ReadOnlyViolationException
|
|
1901
|
-
var RefreshStatisticsIdMap = [3, n0, _RSIM, 0, [_sI], [0]];
|
|
1902
|
-
var S3Exception = [-3, n0, _SE, { [_e]: _c, [_hE]: 400 }, [_dM, _rI, _co], [0, 0, 0]];
|
|
1903
|
-
schema.TypeRegistry.for(n0).registerError(S3Exception
|
|
1904
|
-
var ServerShutdownException = [
|
|
1914
|
+
schema.TypeRegistry.for(n0).registerError(ReadOnlyViolationException$, ReadOnlyViolationException);
|
|
1915
|
+
var RefreshStatisticsIdMap$ = [3, n0, _RSIM, 0, [_sI], [0]];
|
|
1916
|
+
var S3Exception$ = [-3, n0, _SE, { [_e]: _c, [_hE]: 400 }, [_dM, _rI, _co], [0, 0, 0]];
|
|
1917
|
+
schema.TypeRegistry.for(n0).registerError(S3Exception$, S3Exception);
|
|
1918
|
+
var ServerShutdownException$ = [
|
|
1905
1919
|
-3,
|
|
1906
1920
|
n0,
|
|
1907
1921
|
_SSE,
|
|
@@ -1909,17 +1923,17 @@ var ServerShutdownException = [
|
|
|
1909
1923
|
[_dM, _rI, _co],
|
|
1910
1924
|
[0, 0, 0],
|
|
1911
1925
|
];
|
|
1912
|
-
schema.TypeRegistry.for(n0).registerError(ServerShutdownException
|
|
1913
|
-
var SparqlData = [3, n0, _SD, 0, [_st], [0]];
|
|
1914
|
-
var SparqlRecord = [
|
|
1926
|
+
schema.TypeRegistry.for(n0).registerError(ServerShutdownException$, ServerShutdownException);
|
|
1927
|
+
var SparqlData$ = [3, n0, _SD, 0, [_st], [0]];
|
|
1928
|
+
var SparqlRecord$ = [
|
|
1915
1929
|
3,
|
|
1916
1930
|
n0,
|
|
1917
1931
|
_SR,
|
|
1918
1932
|
0,
|
|
1919
1933
|
[_cTIMo, _eI, _da, _op_, _iLO],
|
|
1920
|
-
[[1, { [_jN]: _cT }], 128 | 0, () => SparqlData
|
|
1934
|
+
[[1, { [_jN]: _cT }], 128 | 0, () => SparqlData$, 0, 2],
|
|
1921
1935
|
];
|
|
1922
|
-
var StartLoaderJobInput = [
|
|
1936
|
+
var StartLoaderJobInput$ = [
|
|
1923
1937
|
3,
|
|
1924
1938
|
n0,
|
|
1925
1939
|
_SLJI,
|
|
@@ -1927,8 +1941,8 @@ var StartLoaderJobInput = [
|
|
|
1927
1941
|
[_so, _fo, _sBR, _iRA, _mod, _fOE, _par, _pC, _uSCP, _qR, _de, _uPEI],
|
|
1928
1942
|
[0, 0, [0, { [_jN]: _reg }], 0, 0, 2, 0, 128 | 0, 2, 2, 64 | 0, 2],
|
|
1929
1943
|
];
|
|
1930
|
-
var StartLoaderJobOutput = [3, n0, _SLJO, 0, [_s, _p], [0, 128 | 0]];
|
|
1931
|
-
var StartMLDataProcessingJobInput = [
|
|
1944
|
+
var StartLoaderJobOutput$ = [3, n0, _SLJO, 0, [_s, _p], [0, 128 | 0]];
|
|
1945
|
+
var StartMLDataProcessingJobInput$ = [
|
|
1932
1946
|
3,
|
|
1933
1947
|
n0,
|
|
1934
1948
|
_SMLDPJI,
|
|
@@ -1936,8 +1950,8 @@ var StartMLDataProcessingJobInput = [
|
|
|
1936
1950
|
[_i, _pDPJI, _iDSL, _pDSL, _sIRA, _nIRA, _pIT, _pIVSIGB, _pTOIS, _mTo, _cFN, _sub, _sGI, _vEKMSK, _sOEKMSK],
|
|
1937
1951
|
[0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 64 | 0, 64 | 0, 0, 0],
|
|
1938
1952
|
];
|
|
1939
|
-
var StartMLDataProcessingJobOutput = [3, n0, _SMLDPJO, 0, [_i, _a, _cTIM], [0, 0, 1]];
|
|
1940
|
-
var StartMLModelTrainingJobInput = [
|
|
1953
|
+
var StartMLDataProcessingJobOutput$ = [3, n0, _SMLDPJO, 0, [_i, _a, _cTIM], [0, 0, 1]];
|
|
1954
|
+
var StartMLModelTrainingJobInput$ = [
|
|
1941
1955
|
3,
|
|
1942
1956
|
n0,
|
|
1943
1957
|
_SMLMTJI,
|
|
@@ -1962,27 +1976,27 @@ var StartMLModelTrainingJobInput = [
|
|
|
1962
1976
|
_eMST,
|
|
1963
1977
|
_cMTP,
|
|
1964
1978
|
],
|
|
1965
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 64 | 0, 64 | 0, 0, 0, 2, () => CustomModelTrainingParameters],
|
|
1979
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 64 | 0, 64 | 0, 0, 0, 2, () => CustomModelTrainingParameters$],
|
|
1966
1980
|
];
|
|
1967
|
-
var StartMLModelTrainingJobOutput = [3, n0, _SMLMTJO, 0, [_i, _a, _cTIM], [0, 0, 1]];
|
|
1968
|
-
var StartMLModelTransformJobInput = [
|
|
1981
|
+
var StartMLModelTrainingJobOutput$ = [3, n0, _SMLMTJO, 0, [_i, _a, _cTIM], [0, 0, 1]];
|
|
1982
|
+
var StartMLModelTransformJobInput$ = [
|
|
1969
1983
|
3,
|
|
1970
1984
|
n0,
|
|
1971
1985
|
_SMLMTJIt,
|
|
1972
1986
|
0,
|
|
1973
1987
|
[_i, _dPJI, _mMTJI, _tJN, _mTOSL, _sIRA, _nIRA, _cMTPu, _bPIT, _bPIVSIGB, _sub, _sGI, _vEKMSK, _sOEKMSK],
|
|
1974
|
-
[0, 0, 0, 0, 0, 0, 0, () => CustomModelTransformParameters
|
|
1988
|
+
[0, 0, 0, 0, 0, 0, 0, () => CustomModelTransformParameters$, 0, 1, 64 | 0, 64 | 0, 0, 0],
|
|
1975
1989
|
];
|
|
1976
|
-
var StartMLModelTransformJobOutput = [3, n0, _SMLMTJOt, 0, [_i, _a, _cTIM], [0, 0, 1]];
|
|
1977
|
-
var Statistics = [
|
|
1990
|
+
var StartMLModelTransformJobOutput$ = [3, n0, _SMLMTJOt, 0, [_i, _a, _cTIM], [0, 0, 1]];
|
|
1991
|
+
var Statistics$ = [
|
|
1978
1992
|
3,
|
|
1979
1993
|
n0,
|
|
1980
1994
|
_S,
|
|
1981
1995
|
0,
|
|
1982
1996
|
[_aC, _ac, _sI, _dat, _no, _sIi],
|
|
1983
|
-
[2, 2, 0, 5, 0, () => StatisticsSummary],
|
|
1997
|
+
[2, 2, 0, 5, 0, () => StatisticsSummary$],
|
|
1984
1998
|
];
|
|
1985
|
-
var StatisticsNotAvailableException = [
|
|
1999
|
+
var StatisticsNotAvailableException$ = [
|
|
1986
2000
|
-3,
|
|
1987
2001
|
n0,
|
|
1988
2002
|
_SNAE,
|
|
@@ -1990,9 +2004,9 @@ var StatisticsNotAvailableException = [
|
|
|
1990
2004
|
[_dM, _rI, _co],
|
|
1991
2005
|
[0, 0, 0],
|
|
1992
2006
|
];
|
|
1993
|
-
schema.TypeRegistry.for(n0).registerError(StatisticsNotAvailableException
|
|
1994
|
-
var StatisticsSummary = [3, n0, _SS, 0, [_sCi, _iC, _pCr], [1, 1, 1]];
|
|
1995
|
-
var StreamRecordsNotFoundException = [
|
|
2007
|
+
schema.TypeRegistry.for(n0).registerError(StatisticsNotAvailableException$, StatisticsNotAvailableException);
|
|
2008
|
+
var StatisticsSummary$ = [3, n0, _SS, 0, [_sCi, _iC, _pCr], [1, 1, 1]];
|
|
2009
|
+
var StreamRecordsNotFoundException$ = [
|
|
1996
2010
|
-3,
|
|
1997
2011
|
n0,
|
|
1998
2012
|
_SRNFE,
|
|
@@ -2000,9 +2014,9 @@ var StreamRecordsNotFoundException = [
|
|
|
2000
2014
|
[_dM, _rI, _co],
|
|
2001
2015
|
[0, 0, 0],
|
|
2002
2016
|
];
|
|
2003
|
-
schema.TypeRegistry.for(n0).registerError(StreamRecordsNotFoundException
|
|
2004
|
-
var SubjectStructure = [3, n0, _SSu, 0, [_cou, _pre], [1, 64 | 0]];
|
|
2005
|
-
var ThrottlingException = [
|
|
2017
|
+
schema.TypeRegistry.for(n0).registerError(StreamRecordsNotFoundException$, StreamRecordsNotFoundException);
|
|
2018
|
+
var SubjectStructure$ = [3, n0, _SSu, 0, [_cou, _pre], [1, 64 | 0]];
|
|
2019
|
+
var ThrottlingException$ = [
|
|
2006
2020
|
-3,
|
|
2007
2021
|
n0,
|
|
2008
2022
|
_TE,
|
|
@@ -2010,8 +2024,8 @@ var ThrottlingException = [
|
|
|
2010
2024
|
[_dM, _rI, _co],
|
|
2011
2025
|
[0, 0, 0],
|
|
2012
2026
|
];
|
|
2013
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
2014
|
-
var TimeLimitExceededException = [
|
|
2027
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
2028
|
+
var TimeLimitExceededException$ = [
|
|
2015
2029
|
-3,
|
|
2016
2030
|
n0,
|
|
2017
2031
|
_TLEE,
|
|
@@ -2019,8 +2033,8 @@ var TimeLimitExceededException = [
|
|
|
2019
2033
|
[_dM, _rI, _co],
|
|
2020
2034
|
[0, 0, 0],
|
|
2021
2035
|
];
|
|
2022
|
-
schema.TypeRegistry.for(n0).registerError(TimeLimitExceededException
|
|
2023
|
-
var TooManyRequestsException = [
|
|
2036
|
+
schema.TypeRegistry.for(n0).registerError(TimeLimitExceededException$, TimeLimitExceededException);
|
|
2037
|
+
var TooManyRequestsException$ = [
|
|
2024
2038
|
-3,
|
|
2025
2039
|
n0,
|
|
2026
2040
|
_TMRE,
|
|
@@ -2028,8 +2042,8 @@ var TooManyRequestsException = [
|
|
|
2028
2042
|
[_dM, _rI, _co],
|
|
2029
2043
|
[0, 0, 0],
|
|
2030
2044
|
];
|
|
2031
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException
|
|
2032
|
-
var UnsupportedOperationException = [
|
|
2045
|
+
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
2046
|
+
var UnsupportedOperationException$ = [
|
|
2033
2047
|
-3,
|
|
2034
2048
|
n0,
|
|
2035
2049
|
_UOE,
|
|
@@ -2037,362 +2051,362 @@ var UnsupportedOperationException = [
|
|
|
2037
2051
|
[_dM, _rI, _co],
|
|
2038
2052
|
[0, 0, 0],
|
|
2039
2053
|
];
|
|
2040
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedOperationException
|
|
2054
|
+
schema.TypeRegistry.for(n0).registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
2041
2055
|
var __Unit = "unit";
|
|
2042
|
-
var NeptunedataServiceException = [-3, _sm, "NeptunedataServiceException", 0, [], []];
|
|
2043
|
-
schema.TypeRegistry.for(_sm).registerError(NeptunedataServiceException
|
|
2044
|
-
var EdgeStructures = [1, n0, _ESd, 0, () => EdgeStructure];
|
|
2045
|
-
var GremlinQueries = [1, n0, _GQ, 0, () => GremlinQueryStatus];
|
|
2046
|
-
var MlModels = [1, n0, _MM, 0, () => MlConfigDefinition];
|
|
2047
|
-
var Models = [1, n0, _M, 0, () => MlConfigDefinition];
|
|
2048
|
-
var NodeStructures = [1, n0, _NSo, 0, () => NodeStructure];
|
|
2049
|
-
var OpenCypherQueries = [1, n0, _OCQ, 0, () => GremlinQueryStatus];
|
|
2050
|
-
var PropertygraphRecordsList = [1, n0, _PRL, 0, [() => PropertygraphRecord
|
|
2051
|
-
var SparqlRecordsList = [1, n0, _SRL, 0, [() => SparqlRecord
|
|
2052
|
-
var SubjectStructures = [1, n0, _SSub, 0, () => SubjectStructure];
|
|
2053
|
-
var CancelGremlinQuery = [
|
|
2056
|
+
var NeptunedataServiceException$ = [-3, _sm, "NeptunedataServiceException", 0, [], []];
|
|
2057
|
+
schema.TypeRegistry.for(_sm).registerError(NeptunedataServiceException$, NeptunedataServiceException);
|
|
2058
|
+
var EdgeStructures = [1, n0, _ESd, 0, () => EdgeStructure$];
|
|
2059
|
+
var GremlinQueries = [1, n0, _GQ, 0, () => GremlinQueryStatus$];
|
|
2060
|
+
var MlModels = [1, n0, _MM, 0, () => MlConfigDefinition$];
|
|
2061
|
+
var Models = [1, n0, _M, 0, () => MlConfigDefinition$];
|
|
2062
|
+
var NodeStructures = [1, n0, _NSo, 0, () => NodeStructure$];
|
|
2063
|
+
var OpenCypherQueries = [1, n0, _OCQ, 0, () => GremlinQueryStatus$];
|
|
2064
|
+
var PropertygraphRecordsList = [1, n0, _PRL, 0, [() => PropertygraphRecord$, 0]];
|
|
2065
|
+
var SparqlRecordsList = [1, n0, _SRL, 0, [() => SparqlRecord$, 0]];
|
|
2066
|
+
var SubjectStructures = [1, n0, _SSub, 0, () => SubjectStructure$];
|
|
2067
|
+
var CancelGremlinQuery$ = [
|
|
2054
2068
|
9,
|
|
2055
2069
|
n0,
|
|
2056
2070
|
_CGQ,
|
|
2057
2071
|
{ [_h]: ["DELETE", "/gremlin/status/{queryId}", 200] },
|
|
2058
|
-
() => CancelGremlinQueryInput
|
|
2059
|
-
() => CancelGremlinQueryOutput
|
|
2072
|
+
() => CancelGremlinQueryInput$,
|
|
2073
|
+
() => CancelGremlinQueryOutput$,
|
|
2060
2074
|
];
|
|
2061
|
-
var CancelLoaderJob = [
|
|
2075
|
+
var CancelLoaderJob$ = [
|
|
2062
2076
|
9,
|
|
2063
2077
|
n0,
|
|
2064
2078
|
_CLJ,
|
|
2065
2079
|
{ [_h]: ["DELETE", "/loader/{loadId}", 200] },
|
|
2066
|
-
() => CancelLoaderJobInput
|
|
2067
|
-
() => CancelLoaderJobOutput
|
|
2080
|
+
() => CancelLoaderJobInput$,
|
|
2081
|
+
() => CancelLoaderJobOutput$,
|
|
2068
2082
|
];
|
|
2069
|
-
var CancelMLDataProcessingJob = [
|
|
2083
|
+
var CancelMLDataProcessingJob$ = [
|
|
2070
2084
|
9,
|
|
2071
2085
|
n0,
|
|
2072
2086
|
_CMLDPJ,
|
|
2073
2087
|
{ [_h]: ["DELETE", "/ml/dataprocessing/{id}", 200] },
|
|
2074
|
-
() => CancelMLDataProcessingJobInput
|
|
2075
|
-
() => CancelMLDataProcessingJobOutput
|
|
2088
|
+
() => CancelMLDataProcessingJobInput$,
|
|
2089
|
+
() => CancelMLDataProcessingJobOutput$,
|
|
2076
2090
|
];
|
|
2077
|
-
var CancelMLModelTrainingJob = [
|
|
2091
|
+
var CancelMLModelTrainingJob$ = [
|
|
2078
2092
|
9,
|
|
2079
2093
|
n0,
|
|
2080
2094
|
_CMLMTJ,
|
|
2081
2095
|
{ [_h]: ["DELETE", "/ml/modeltraining/{id}", 200] },
|
|
2082
|
-
() => CancelMLModelTrainingJobInput
|
|
2083
|
-
() => CancelMLModelTrainingJobOutput
|
|
2096
|
+
() => CancelMLModelTrainingJobInput$,
|
|
2097
|
+
() => CancelMLModelTrainingJobOutput$,
|
|
2084
2098
|
];
|
|
2085
|
-
var CancelMLModelTransformJob = [
|
|
2099
|
+
var CancelMLModelTransformJob$ = [
|
|
2086
2100
|
9,
|
|
2087
2101
|
n0,
|
|
2088
2102
|
_CMLMTJa,
|
|
2089
2103
|
{ [_h]: ["DELETE", "/ml/modeltransform/{id}", 200] },
|
|
2090
|
-
() => CancelMLModelTransformJobInput
|
|
2091
|
-
() => CancelMLModelTransformJobOutput
|
|
2104
|
+
() => CancelMLModelTransformJobInput$,
|
|
2105
|
+
() => CancelMLModelTransformJobOutput$,
|
|
2092
2106
|
];
|
|
2093
|
-
var CancelOpenCypherQuery = [
|
|
2107
|
+
var CancelOpenCypherQuery$ = [
|
|
2094
2108
|
9,
|
|
2095
2109
|
n0,
|
|
2096
2110
|
_COCQ,
|
|
2097
2111
|
{ [_h]: ["DELETE", "/opencypher/status/{queryId}", 200] },
|
|
2098
|
-
() => CancelOpenCypherQueryInput
|
|
2099
|
-
() => CancelOpenCypherQueryOutput
|
|
2112
|
+
() => CancelOpenCypherQueryInput$,
|
|
2113
|
+
() => CancelOpenCypherQueryOutput$,
|
|
2100
2114
|
];
|
|
2101
|
-
var CreateMLEndpoint = [
|
|
2115
|
+
var CreateMLEndpoint$ = [
|
|
2102
2116
|
9,
|
|
2103
2117
|
n0,
|
|
2104
2118
|
_CMLE,
|
|
2105
2119
|
{ [_h]: ["POST", "/ml/endpoints", 200] },
|
|
2106
|
-
() => CreateMLEndpointInput
|
|
2107
|
-
() => CreateMLEndpointOutput
|
|
2120
|
+
() => CreateMLEndpointInput$,
|
|
2121
|
+
() => CreateMLEndpointOutput$,
|
|
2108
2122
|
];
|
|
2109
|
-
var DeleteMLEndpoint = [
|
|
2123
|
+
var DeleteMLEndpoint$ = [
|
|
2110
2124
|
9,
|
|
2111
2125
|
n0,
|
|
2112
2126
|
_DMLE,
|
|
2113
2127
|
{ [_h]: ["DELETE", "/ml/endpoints/{id}", 200] },
|
|
2114
|
-
() => DeleteMLEndpointInput
|
|
2115
|
-
() => DeleteMLEndpointOutput
|
|
2128
|
+
() => DeleteMLEndpointInput$,
|
|
2129
|
+
() => DeleteMLEndpointOutput$,
|
|
2116
2130
|
];
|
|
2117
|
-
var DeletePropertygraphStatistics = [
|
|
2131
|
+
var DeletePropertygraphStatistics$ = [
|
|
2118
2132
|
9,
|
|
2119
2133
|
n0,
|
|
2120
2134
|
_DPS,
|
|
2121
2135
|
{ [_h]: ["DELETE", "/propertygraph/statistics", 200] },
|
|
2122
2136
|
() => __Unit,
|
|
2123
|
-
() => DeletePropertygraphStatisticsOutput
|
|
2137
|
+
() => DeletePropertygraphStatisticsOutput$,
|
|
2124
2138
|
];
|
|
2125
|
-
var DeleteSparqlStatistics = [
|
|
2139
|
+
var DeleteSparqlStatistics$ = [
|
|
2126
2140
|
9,
|
|
2127
2141
|
n0,
|
|
2128
2142
|
_DSS,
|
|
2129
2143
|
{ [_h]: ["DELETE", "/sparql/statistics", 200] },
|
|
2130
2144
|
() => __Unit,
|
|
2131
|
-
() => DeleteSparqlStatisticsOutput
|
|
2145
|
+
() => DeleteSparqlStatisticsOutput$,
|
|
2132
2146
|
];
|
|
2133
|
-
var ExecuteFastReset = [
|
|
2147
|
+
var ExecuteFastReset$ = [
|
|
2134
2148
|
9,
|
|
2135
2149
|
n0,
|
|
2136
2150
|
_EFR,
|
|
2137
2151
|
{ [_h]: ["POST", "/system", 200] },
|
|
2138
|
-
() => ExecuteFastResetInput
|
|
2139
|
-
() => ExecuteFastResetOutput
|
|
2152
|
+
() => ExecuteFastResetInput$,
|
|
2153
|
+
() => ExecuteFastResetOutput$,
|
|
2140
2154
|
];
|
|
2141
|
-
var ExecuteGremlinExplainQuery = [
|
|
2155
|
+
var ExecuteGremlinExplainQuery$ = [
|
|
2142
2156
|
9,
|
|
2143
2157
|
n0,
|
|
2144
2158
|
_EGEQ,
|
|
2145
2159
|
{ [_h]: ["POST", "/gremlin/explain", 200] },
|
|
2146
|
-
() => ExecuteGremlinExplainQueryInput
|
|
2147
|
-
() => ExecuteGremlinExplainQueryOutput
|
|
2160
|
+
() => ExecuteGremlinExplainQueryInput$,
|
|
2161
|
+
() => ExecuteGremlinExplainQueryOutput$,
|
|
2148
2162
|
];
|
|
2149
|
-
var ExecuteGremlinProfileQuery = [
|
|
2163
|
+
var ExecuteGremlinProfileQuery$ = [
|
|
2150
2164
|
9,
|
|
2151
2165
|
n0,
|
|
2152
2166
|
_EGPQ,
|
|
2153
2167
|
{ [_h]: ["POST", "/gremlin/profile", 200] },
|
|
2154
|
-
() => ExecuteGremlinProfileQueryInput
|
|
2155
|
-
() => ExecuteGremlinProfileQueryOutput
|
|
2168
|
+
() => ExecuteGremlinProfileQueryInput$,
|
|
2169
|
+
() => ExecuteGremlinProfileQueryOutput$,
|
|
2156
2170
|
];
|
|
2157
|
-
var ExecuteGremlinQuery = [
|
|
2171
|
+
var ExecuteGremlinQuery$ = [
|
|
2158
2172
|
9,
|
|
2159
2173
|
n0,
|
|
2160
2174
|
_EGQ,
|
|
2161
2175
|
{ [_h]: ["POST", "/gremlin", 200] },
|
|
2162
|
-
() => ExecuteGremlinQueryInput
|
|
2163
|
-
() => ExecuteGremlinQueryOutput
|
|
2176
|
+
() => ExecuteGremlinQueryInput$,
|
|
2177
|
+
() => ExecuteGremlinQueryOutput$,
|
|
2164
2178
|
];
|
|
2165
|
-
var ExecuteOpenCypherExplainQuery = [
|
|
2179
|
+
var ExecuteOpenCypherExplainQuery$ = [
|
|
2166
2180
|
9,
|
|
2167
2181
|
n0,
|
|
2168
2182
|
_EOCEQ,
|
|
2169
2183
|
{ [_h]: ["POST", "/opencypher/explain", 200] },
|
|
2170
|
-
() => ExecuteOpenCypherExplainQueryInput
|
|
2171
|
-
() => ExecuteOpenCypherExplainQueryOutput
|
|
2184
|
+
() => ExecuteOpenCypherExplainQueryInput$,
|
|
2185
|
+
() => ExecuteOpenCypherExplainQueryOutput$,
|
|
2172
2186
|
];
|
|
2173
|
-
var ExecuteOpenCypherQuery = [
|
|
2187
|
+
var ExecuteOpenCypherQuery$ = [
|
|
2174
2188
|
9,
|
|
2175
2189
|
n0,
|
|
2176
2190
|
_EOCQ,
|
|
2177
2191
|
{ [_h]: ["POST", "/opencypher", 200] },
|
|
2178
|
-
() => ExecuteOpenCypherQueryInput
|
|
2179
|
-
() => ExecuteOpenCypherQueryOutput
|
|
2192
|
+
() => ExecuteOpenCypherQueryInput$,
|
|
2193
|
+
() => ExecuteOpenCypherQueryOutput$,
|
|
2180
2194
|
];
|
|
2181
|
-
var GetEngineStatus = [
|
|
2195
|
+
var GetEngineStatus$ = [
|
|
2182
2196
|
9,
|
|
2183
2197
|
n0,
|
|
2184
2198
|
_GES,
|
|
2185
2199
|
{ [_h]: ["GET", "/status", 200] },
|
|
2186
2200
|
() => __Unit,
|
|
2187
|
-
() => GetEngineStatusOutput
|
|
2201
|
+
() => GetEngineStatusOutput$,
|
|
2188
2202
|
];
|
|
2189
|
-
var GetGremlinQueryStatus = [
|
|
2203
|
+
var GetGremlinQueryStatus$ = [
|
|
2190
2204
|
9,
|
|
2191
2205
|
n0,
|
|
2192
2206
|
_GGQS,
|
|
2193
2207
|
{ [_h]: ["GET", "/gremlin/status/{queryId}", 200] },
|
|
2194
|
-
() => GetGremlinQueryStatusInput
|
|
2195
|
-
() => GetGremlinQueryStatusOutput
|
|
2208
|
+
() => GetGremlinQueryStatusInput$,
|
|
2209
|
+
() => GetGremlinQueryStatusOutput$,
|
|
2196
2210
|
];
|
|
2197
|
-
var GetLoaderJobStatus = [
|
|
2211
|
+
var GetLoaderJobStatus$ = [
|
|
2198
2212
|
9,
|
|
2199
2213
|
n0,
|
|
2200
2214
|
_GLJS,
|
|
2201
2215
|
{ [_h]: ["GET", "/loader/{loadId}", 200] },
|
|
2202
|
-
() => GetLoaderJobStatusInput
|
|
2203
|
-
() => GetLoaderJobStatusOutput
|
|
2216
|
+
() => GetLoaderJobStatusInput$,
|
|
2217
|
+
() => GetLoaderJobStatusOutput$,
|
|
2204
2218
|
];
|
|
2205
|
-
var GetMLDataProcessingJob = [
|
|
2219
|
+
var GetMLDataProcessingJob$ = [
|
|
2206
2220
|
9,
|
|
2207
2221
|
n0,
|
|
2208
2222
|
_GMLDPJ,
|
|
2209
2223
|
{ [_h]: ["GET", "/ml/dataprocessing/{id}", 200] },
|
|
2210
|
-
() => GetMLDataProcessingJobInput
|
|
2211
|
-
() => GetMLDataProcessingJobOutput
|
|
2224
|
+
() => GetMLDataProcessingJobInput$,
|
|
2225
|
+
() => GetMLDataProcessingJobOutput$,
|
|
2212
2226
|
];
|
|
2213
|
-
var GetMLEndpoint = [
|
|
2227
|
+
var GetMLEndpoint$ = [
|
|
2214
2228
|
9,
|
|
2215
2229
|
n0,
|
|
2216
2230
|
_GMLE,
|
|
2217
2231
|
{ [_h]: ["GET", "/ml/endpoints/{id}", 200] },
|
|
2218
|
-
() => GetMLEndpointInput
|
|
2219
|
-
() => GetMLEndpointOutput
|
|
2232
|
+
() => GetMLEndpointInput$,
|
|
2233
|
+
() => GetMLEndpointOutput$,
|
|
2220
2234
|
];
|
|
2221
|
-
var GetMLModelTrainingJob = [
|
|
2235
|
+
var GetMLModelTrainingJob$ = [
|
|
2222
2236
|
9,
|
|
2223
2237
|
n0,
|
|
2224
2238
|
_GMLMTJ,
|
|
2225
2239
|
{ [_h]: ["GET", "/ml/modeltraining/{id}", 200] },
|
|
2226
|
-
() => GetMLModelTrainingJobInput
|
|
2227
|
-
() => GetMLModelTrainingJobOutput
|
|
2240
|
+
() => GetMLModelTrainingJobInput$,
|
|
2241
|
+
() => GetMLModelTrainingJobOutput$,
|
|
2228
2242
|
];
|
|
2229
|
-
var GetMLModelTransformJob = [
|
|
2243
|
+
var GetMLModelTransformJob$ = [
|
|
2230
2244
|
9,
|
|
2231
2245
|
n0,
|
|
2232
2246
|
_GMLMTJe,
|
|
2233
2247
|
{ [_h]: ["GET", "/ml/modeltransform/{id}", 200] },
|
|
2234
|
-
() => GetMLModelTransformJobInput
|
|
2235
|
-
() => GetMLModelTransformJobOutput
|
|
2248
|
+
() => GetMLModelTransformJobInput$,
|
|
2249
|
+
() => GetMLModelTransformJobOutput$,
|
|
2236
2250
|
];
|
|
2237
|
-
var GetOpenCypherQueryStatus = [
|
|
2251
|
+
var GetOpenCypherQueryStatus$ = [
|
|
2238
2252
|
9,
|
|
2239
2253
|
n0,
|
|
2240
2254
|
_GOCQS,
|
|
2241
2255
|
{ [_h]: ["GET", "/opencypher/status/{queryId}", 200] },
|
|
2242
|
-
() => GetOpenCypherQueryStatusInput
|
|
2243
|
-
() => GetOpenCypherQueryStatusOutput
|
|
2256
|
+
() => GetOpenCypherQueryStatusInput$,
|
|
2257
|
+
() => GetOpenCypherQueryStatusOutput$,
|
|
2244
2258
|
];
|
|
2245
|
-
var GetPropertygraphStatistics = [
|
|
2259
|
+
var GetPropertygraphStatistics$ = [
|
|
2246
2260
|
9,
|
|
2247
2261
|
n0,
|
|
2248
2262
|
_GPS,
|
|
2249
2263
|
{ [_h]: ["GET", "/propertygraph/statistics", 200] },
|
|
2250
2264
|
() => __Unit,
|
|
2251
|
-
() => GetPropertygraphStatisticsOutput
|
|
2265
|
+
() => GetPropertygraphStatisticsOutput$,
|
|
2252
2266
|
];
|
|
2253
|
-
var GetPropertygraphStream = [
|
|
2267
|
+
var GetPropertygraphStream$ = [
|
|
2254
2268
|
9,
|
|
2255
2269
|
n0,
|
|
2256
2270
|
_GPSe,
|
|
2257
2271
|
{ [_h]: ["GET", "/propertygraph/stream", 200] },
|
|
2258
|
-
() => GetPropertygraphStreamInput
|
|
2259
|
-
() => GetPropertygraphStreamOutput
|
|
2272
|
+
() => GetPropertygraphStreamInput$,
|
|
2273
|
+
() => GetPropertygraphStreamOutput$,
|
|
2260
2274
|
];
|
|
2261
|
-
var GetPropertygraphSummary = [
|
|
2275
|
+
var GetPropertygraphSummary$ = [
|
|
2262
2276
|
9,
|
|
2263
2277
|
n0,
|
|
2264
2278
|
_GPSet,
|
|
2265
2279
|
{ [_h]: ["GET", "/propertygraph/statistics/summary", 200] },
|
|
2266
|
-
() => GetPropertygraphSummaryInput
|
|
2267
|
-
() => GetPropertygraphSummaryOutput
|
|
2280
|
+
() => GetPropertygraphSummaryInput$,
|
|
2281
|
+
() => GetPropertygraphSummaryOutput$,
|
|
2268
2282
|
];
|
|
2269
|
-
var GetRDFGraphSummary = [
|
|
2283
|
+
var GetRDFGraphSummary$ = [
|
|
2270
2284
|
9,
|
|
2271
2285
|
n0,
|
|
2272
2286
|
_GRDFGS,
|
|
2273
2287
|
{ [_h]: ["GET", "/rdf/statistics/summary", 200] },
|
|
2274
|
-
() => GetRDFGraphSummaryInput
|
|
2275
|
-
() => GetRDFGraphSummaryOutput
|
|
2288
|
+
() => GetRDFGraphSummaryInput$,
|
|
2289
|
+
() => GetRDFGraphSummaryOutput$,
|
|
2276
2290
|
];
|
|
2277
|
-
var GetSparqlStatistics = [
|
|
2291
|
+
var GetSparqlStatistics$ = [
|
|
2278
2292
|
9,
|
|
2279
2293
|
n0,
|
|
2280
2294
|
_GSS,
|
|
2281
2295
|
{ [_h]: ["GET", "/sparql/statistics", 200] },
|
|
2282
2296
|
() => __Unit,
|
|
2283
|
-
() => GetSparqlStatisticsOutput
|
|
2297
|
+
() => GetSparqlStatisticsOutput$,
|
|
2284
2298
|
];
|
|
2285
|
-
var GetSparqlStream = [
|
|
2299
|
+
var GetSparqlStream$ = [
|
|
2286
2300
|
9,
|
|
2287
2301
|
n0,
|
|
2288
2302
|
_GSSe,
|
|
2289
2303
|
{ [_h]: ["GET", "/sparql/stream", 200] },
|
|
2290
|
-
() => GetSparqlStreamInput
|
|
2291
|
-
() => GetSparqlStreamOutput
|
|
2304
|
+
() => GetSparqlStreamInput$,
|
|
2305
|
+
() => GetSparqlStreamOutput$,
|
|
2292
2306
|
];
|
|
2293
|
-
var ListGremlinQueries = [
|
|
2307
|
+
var ListGremlinQueries$ = [
|
|
2294
2308
|
9,
|
|
2295
2309
|
n0,
|
|
2296
2310
|
_LGQ,
|
|
2297
2311
|
{ [_h]: ["GET", "/gremlin/status", 200] },
|
|
2298
|
-
() => ListGremlinQueriesInput
|
|
2299
|
-
() => ListGremlinQueriesOutput
|
|
2312
|
+
() => ListGremlinQueriesInput$,
|
|
2313
|
+
() => ListGremlinQueriesOutput$,
|
|
2300
2314
|
];
|
|
2301
|
-
var ListLoaderJobs = [
|
|
2315
|
+
var ListLoaderJobs$ = [
|
|
2302
2316
|
9,
|
|
2303
2317
|
n0,
|
|
2304
2318
|
_LLJ,
|
|
2305
2319
|
{ [_h]: ["GET", "/loader", 200] },
|
|
2306
|
-
() => ListLoaderJobsInput
|
|
2307
|
-
() => ListLoaderJobsOutput
|
|
2320
|
+
() => ListLoaderJobsInput$,
|
|
2321
|
+
() => ListLoaderJobsOutput$,
|
|
2308
2322
|
];
|
|
2309
|
-
var ListMLDataProcessingJobs = [
|
|
2323
|
+
var ListMLDataProcessingJobs$ = [
|
|
2310
2324
|
9,
|
|
2311
2325
|
n0,
|
|
2312
2326
|
_LMLDPJ,
|
|
2313
2327
|
{ [_h]: ["GET", "/ml/dataprocessing", 200] },
|
|
2314
|
-
() => ListMLDataProcessingJobsInput
|
|
2315
|
-
() => ListMLDataProcessingJobsOutput
|
|
2328
|
+
() => ListMLDataProcessingJobsInput$,
|
|
2329
|
+
() => ListMLDataProcessingJobsOutput$,
|
|
2316
2330
|
];
|
|
2317
|
-
var ListMLEndpoints = [
|
|
2331
|
+
var ListMLEndpoints$ = [
|
|
2318
2332
|
9,
|
|
2319
2333
|
n0,
|
|
2320
2334
|
_LMLE,
|
|
2321
2335
|
{ [_h]: ["GET", "/ml/endpoints", 200] },
|
|
2322
|
-
() => ListMLEndpointsInput
|
|
2323
|
-
() => ListMLEndpointsOutput
|
|
2336
|
+
() => ListMLEndpointsInput$,
|
|
2337
|
+
() => ListMLEndpointsOutput$,
|
|
2324
2338
|
];
|
|
2325
|
-
var ListMLModelTrainingJobs = [
|
|
2339
|
+
var ListMLModelTrainingJobs$ = [
|
|
2326
2340
|
9,
|
|
2327
2341
|
n0,
|
|
2328
2342
|
_LMLMTJ,
|
|
2329
2343
|
{ [_h]: ["GET", "/ml/modeltraining", 200] },
|
|
2330
|
-
() => ListMLModelTrainingJobsInput
|
|
2331
|
-
() => ListMLModelTrainingJobsOutput
|
|
2344
|
+
() => ListMLModelTrainingJobsInput$,
|
|
2345
|
+
() => ListMLModelTrainingJobsOutput$,
|
|
2332
2346
|
];
|
|
2333
|
-
var ListMLModelTransformJobs = [
|
|
2347
|
+
var ListMLModelTransformJobs$ = [
|
|
2334
2348
|
9,
|
|
2335
2349
|
n0,
|
|
2336
2350
|
_LMLMTJi,
|
|
2337
2351
|
{ [_h]: ["GET", "/ml/modeltransform", 200] },
|
|
2338
|
-
() => ListMLModelTransformJobsInput
|
|
2339
|
-
() => ListMLModelTransformJobsOutput
|
|
2352
|
+
() => ListMLModelTransformJobsInput$,
|
|
2353
|
+
() => ListMLModelTransformJobsOutput$,
|
|
2340
2354
|
];
|
|
2341
|
-
var ListOpenCypherQueries = [
|
|
2355
|
+
var ListOpenCypherQueries$ = [
|
|
2342
2356
|
9,
|
|
2343
2357
|
n0,
|
|
2344
2358
|
_LOCQ,
|
|
2345
2359
|
{ [_h]: ["GET", "/opencypher/status", 200] },
|
|
2346
|
-
() => ListOpenCypherQueriesInput
|
|
2347
|
-
() => ListOpenCypherQueriesOutput
|
|
2360
|
+
() => ListOpenCypherQueriesInput$,
|
|
2361
|
+
() => ListOpenCypherQueriesOutput$,
|
|
2348
2362
|
];
|
|
2349
|
-
var ManagePropertygraphStatistics = [
|
|
2363
|
+
var ManagePropertygraphStatistics$ = [
|
|
2350
2364
|
9,
|
|
2351
2365
|
n0,
|
|
2352
2366
|
_MPS,
|
|
2353
2367
|
{ [_h]: ["POST", "/propertygraph/statistics", 200] },
|
|
2354
|
-
() => ManagePropertygraphStatisticsInput
|
|
2355
|
-
() => ManagePropertygraphStatisticsOutput
|
|
2368
|
+
() => ManagePropertygraphStatisticsInput$,
|
|
2369
|
+
() => ManagePropertygraphStatisticsOutput$,
|
|
2356
2370
|
];
|
|
2357
|
-
var ManageSparqlStatistics = [
|
|
2371
|
+
var ManageSparqlStatistics$ = [
|
|
2358
2372
|
9,
|
|
2359
2373
|
n0,
|
|
2360
2374
|
_MSS,
|
|
2361
2375
|
{ [_h]: ["POST", "/sparql/statistics", 200] },
|
|
2362
|
-
() => ManageSparqlStatisticsInput
|
|
2363
|
-
() => ManageSparqlStatisticsOutput
|
|
2376
|
+
() => ManageSparqlStatisticsInput$,
|
|
2377
|
+
() => ManageSparqlStatisticsOutput$,
|
|
2364
2378
|
];
|
|
2365
|
-
var StartLoaderJob = [
|
|
2379
|
+
var StartLoaderJob$ = [
|
|
2366
2380
|
9,
|
|
2367
2381
|
n0,
|
|
2368
2382
|
_SLJ,
|
|
2369
2383
|
{ [_h]: ["POST", "/loader", 200] },
|
|
2370
|
-
() => StartLoaderJobInput
|
|
2371
|
-
() => StartLoaderJobOutput
|
|
2384
|
+
() => StartLoaderJobInput$,
|
|
2385
|
+
() => StartLoaderJobOutput$,
|
|
2372
2386
|
];
|
|
2373
|
-
var StartMLDataProcessingJob = [
|
|
2387
|
+
var StartMLDataProcessingJob$ = [
|
|
2374
2388
|
9,
|
|
2375
2389
|
n0,
|
|
2376
2390
|
_SMLDPJ,
|
|
2377
2391
|
{ [_h]: ["POST", "/ml/dataprocessing", 200] },
|
|
2378
|
-
() => StartMLDataProcessingJobInput
|
|
2379
|
-
() => StartMLDataProcessingJobOutput
|
|
2392
|
+
() => StartMLDataProcessingJobInput$,
|
|
2393
|
+
() => StartMLDataProcessingJobOutput$,
|
|
2380
2394
|
];
|
|
2381
|
-
var StartMLModelTrainingJob = [
|
|
2395
|
+
var StartMLModelTrainingJob$ = [
|
|
2382
2396
|
9,
|
|
2383
2397
|
n0,
|
|
2384
2398
|
_SMLMTJ,
|
|
2385
2399
|
{ [_h]: ["POST", "/ml/modeltraining", 200] },
|
|
2386
|
-
() => StartMLModelTrainingJobInput
|
|
2387
|
-
() => StartMLModelTrainingJobOutput
|
|
2400
|
+
() => StartMLModelTrainingJobInput$,
|
|
2401
|
+
() => StartMLModelTrainingJobOutput$,
|
|
2388
2402
|
];
|
|
2389
|
-
var StartMLModelTransformJob = [
|
|
2403
|
+
var StartMLModelTransformJob$ = [
|
|
2390
2404
|
9,
|
|
2391
2405
|
n0,
|
|
2392
2406
|
_SMLMTJt,
|
|
2393
2407
|
{ [_h]: ["POST", "/ml/modeltransform", 200] },
|
|
2394
|
-
() => StartMLModelTransformJobInput
|
|
2395
|
-
() => StartMLModelTransformJobOutput
|
|
2408
|
+
() => StartMLModelTransformJobInput$,
|
|
2409
|
+
() => StartMLModelTransformJobOutput$,
|
|
2396
2410
|
];
|
|
2397
2411
|
|
|
2398
2412
|
class CancelGremlinQueryCommand extends smithyClient.Command
|
|
@@ -2403,7 +2417,7 @@ class CancelGremlinQueryCommand extends smithyClient.Command
|
|
|
2403
2417
|
})
|
|
2404
2418
|
.s("AmazonNeptuneDataplane", "CancelGremlinQuery", {})
|
|
2405
2419
|
.n("NeptunedataClient", "CancelGremlinQueryCommand")
|
|
2406
|
-
.sc(CancelGremlinQuery)
|
|
2420
|
+
.sc(CancelGremlinQuery$)
|
|
2407
2421
|
.build() {
|
|
2408
2422
|
}
|
|
2409
2423
|
|
|
@@ -2415,7 +2429,7 @@ class CancelLoaderJobCommand extends smithyClient.Command
|
|
|
2415
2429
|
})
|
|
2416
2430
|
.s("AmazonNeptuneDataplane", "CancelLoaderJob", {})
|
|
2417
2431
|
.n("NeptunedataClient", "CancelLoaderJobCommand")
|
|
2418
|
-
.sc(CancelLoaderJob)
|
|
2432
|
+
.sc(CancelLoaderJob$)
|
|
2419
2433
|
.build() {
|
|
2420
2434
|
}
|
|
2421
2435
|
|
|
@@ -2427,7 +2441,7 @@ class CancelMLDataProcessingJobCommand extends smithyClient.Command
|
|
|
2427
2441
|
})
|
|
2428
2442
|
.s("AmazonNeptuneDataplane", "CancelMLDataProcessingJob", {})
|
|
2429
2443
|
.n("NeptunedataClient", "CancelMLDataProcessingJobCommand")
|
|
2430
|
-
.sc(CancelMLDataProcessingJob)
|
|
2444
|
+
.sc(CancelMLDataProcessingJob$)
|
|
2431
2445
|
.build() {
|
|
2432
2446
|
}
|
|
2433
2447
|
|
|
@@ -2439,7 +2453,7 @@ class CancelMLModelTrainingJobCommand extends smithyClient.Command
|
|
|
2439
2453
|
})
|
|
2440
2454
|
.s("AmazonNeptuneDataplane", "CancelMLModelTrainingJob", {})
|
|
2441
2455
|
.n("NeptunedataClient", "CancelMLModelTrainingJobCommand")
|
|
2442
|
-
.sc(CancelMLModelTrainingJob)
|
|
2456
|
+
.sc(CancelMLModelTrainingJob$)
|
|
2443
2457
|
.build() {
|
|
2444
2458
|
}
|
|
2445
2459
|
|
|
@@ -2451,7 +2465,7 @@ class CancelMLModelTransformJobCommand extends smithyClient.Command
|
|
|
2451
2465
|
})
|
|
2452
2466
|
.s("AmazonNeptuneDataplane", "CancelMLModelTransformJob", {})
|
|
2453
2467
|
.n("NeptunedataClient", "CancelMLModelTransformJobCommand")
|
|
2454
|
-
.sc(CancelMLModelTransformJob)
|
|
2468
|
+
.sc(CancelMLModelTransformJob$)
|
|
2455
2469
|
.build() {
|
|
2456
2470
|
}
|
|
2457
2471
|
|
|
@@ -2463,7 +2477,7 @@ class CancelOpenCypherQueryCommand extends smithyClient.Command
|
|
|
2463
2477
|
})
|
|
2464
2478
|
.s("AmazonNeptuneDataplane", "CancelOpenCypherQuery", {})
|
|
2465
2479
|
.n("NeptunedataClient", "CancelOpenCypherQueryCommand")
|
|
2466
|
-
.sc(CancelOpenCypherQuery)
|
|
2480
|
+
.sc(CancelOpenCypherQuery$)
|
|
2467
2481
|
.build() {
|
|
2468
2482
|
}
|
|
2469
2483
|
|
|
@@ -2475,7 +2489,7 @@ class CreateMLEndpointCommand extends smithyClient.Command
|
|
|
2475
2489
|
})
|
|
2476
2490
|
.s("AmazonNeptuneDataplane", "CreateMLEndpoint", {})
|
|
2477
2491
|
.n("NeptunedataClient", "CreateMLEndpointCommand")
|
|
2478
|
-
.sc(CreateMLEndpoint)
|
|
2492
|
+
.sc(CreateMLEndpoint$)
|
|
2479
2493
|
.build() {
|
|
2480
2494
|
}
|
|
2481
2495
|
|
|
@@ -2487,7 +2501,7 @@ class DeleteMLEndpointCommand extends smithyClient.Command
|
|
|
2487
2501
|
})
|
|
2488
2502
|
.s("AmazonNeptuneDataplane", "DeleteMLEndpoint", {})
|
|
2489
2503
|
.n("NeptunedataClient", "DeleteMLEndpointCommand")
|
|
2490
|
-
.sc(DeleteMLEndpoint)
|
|
2504
|
+
.sc(DeleteMLEndpoint$)
|
|
2491
2505
|
.build() {
|
|
2492
2506
|
}
|
|
2493
2507
|
|
|
@@ -2499,7 +2513,7 @@ class DeletePropertygraphStatisticsCommand extends smithyClient.Command
|
|
|
2499
2513
|
})
|
|
2500
2514
|
.s("AmazonNeptuneDataplane", "DeletePropertygraphStatistics", {})
|
|
2501
2515
|
.n("NeptunedataClient", "DeletePropertygraphStatisticsCommand")
|
|
2502
|
-
.sc(DeletePropertygraphStatistics)
|
|
2516
|
+
.sc(DeletePropertygraphStatistics$)
|
|
2503
2517
|
.build() {
|
|
2504
2518
|
}
|
|
2505
2519
|
|
|
@@ -2511,7 +2525,7 @@ class DeleteSparqlStatisticsCommand extends smithyClient.Command
|
|
|
2511
2525
|
})
|
|
2512
2526
|
.s("AmazonNeptuneDataplane", "DeleteSparqlStatistics", {})
|
|
2513
2527
|
.n("NeptunedataClient", "DeleteSparqlStatisticsCommand")
|
|
2514
|
-
.sc(DeleteSparqlStatistics)
|
|
2528
|
+
.sc(DeleteSparqlStatistics$)
|
|
2515
2529
|
.build() {
|
|
2516
2530
|
}
|
|
2517
2531
|
|
|
@@ -2523,7 +2537,7 @@ class ExecuteFastResetCommand extends smithyClient.Command
|
|
|
2523
2537
|
})
|
|
2524
2538
|
.s("AmazonNeptuneDataplane", "ExecuteFastReset", {})
|
|
2525
2539
|
.n("NeptunedataClient", "ExecuteFastResetCommand")
|
|
2526
|
-
.sc(ExecuteFastReset)
|
|
2540
|
+
.sc(ExecuteFastReset$)
|
|
2527
2541
|
.build() {
|
|
2528
2542
|
}
|
|
2529
2543
|
|
|
@@ -2535,7 +2549,7 @@ class ExecuteGremlinExplainQueryCommand extends smithyClient.Command
|
|
|
2535
2549
|
})
|
|
2536
2550
|
.s("AmazonNeptuneDataplane", "ExecuteGremlinExplainQuery", {})
|
|
2537
2551
|
.n("NeptunedataClient", "ExecuteGremlinExplainQueryCommand")
|
|
2538
|
-
.sc(ExecuteGremlinExplainQuery)
|
|
2552
|
+
.sc(ExecuteGremlinExplainQuery$)
|
|
2539
2553
|
.build() {
|
|
2540
2554
|
}
|
|
2541
2555
|
|
|
@@ -2547,7 +2561,7 @@ class ExecuteGremlinProfileQueryCommand extends smithyClient.Command
|
|
|
2547
2561
|
})
|
|
2548
2562
|
.s("AmazonNeptuneDataplane", "ExecuteGremlinProfileQuery", {})
|
|
2549
2563
|
.n("NeptunedataClient", "ExecuteGremlinProfileQueryCommand")
|
|
2550
|
-
.sc(ExecuteGremlinProfileQuery)
|
|
2564
|
+
.sc(ExecuteGremlinProfileQuery$)
|
|
2551
2565
|
.build() {
|
|
2552
2566
|
}
|
|
2553
2567
|
|
|
@@ -2559,7 +2573,7 @@ class ExecuteGremlinQueryCommand extends smithyClient.Command
|
|
|
2559
2573
|
})
|
|
2560
2574
|
.s("AmazonNeptuneDataplane", "ExecuteGremlinQuery", {})
|
|
2561
2575
|
.n("NeptunedataClient", "ExecuteGremlinQueryCommand")
|
|
2562
|
-
.sc(ExecuteGremlinQuery)
|
|
2576
|
+
.sc(ExecuteGremlinQuery$)
|
|
2563
2577
|
.build() {
|
|
2564
2578
|
}
|
|
2565
2579
|
|
|
@@ -2571,7 +2585,7 @@ class ExecuteOpenCypherExplainQueryCommand extends smithyClient.Command
|
|
|
2571
2585
|
})
|
|
2572
2586
|
.s("AmazonNeptuneDataplane", "ExecuteOpenCypherExplainQuery", {})
|
|
2573
2587
|
.n("NeptunedataClient", "ExecuteOpenCypherExplainQueryCommand")
|
|
2574
|
-
.sc(ExecuteOpenCypherExplainQuery)
|
|
2588
|
+
.sc(ExecuteOpenCypherExplainQuery$)
|
|
2575
2589
|
.build() {
|
|
2576
2590
|
}
|
|
2577
2591
|
|
|
@@ -2583,7 +2597,7 @@ class ExecuteOpenCypherQueryCommand extends smithyClient.Command
|
|
|
2583
2597
|
})
|
|
2584
2598
|
.s("AmazonNeptuneDataplane", "ExecuteOpenCypherQuery", {})
|
|
2585
2599
|
.n("NeptunedataClient", "ExecuteOpenCypherQueryCommand")
|
|
2586
|
-
.sc(ExecuteOpenCypherQuery)
|
|
2600
|
+
.sc(ExecuteOpenCypherQuery$)
|
|
2587
2601
|
.build() {
|
|
2588
2602
|
}
|
|
2589
2603
|
|
|
@@ -2595,7 +2609,7 @@ class GetEngineStatusCommand extends smithyClient.Command
|
|
|
2595
2609
|
})
|
|
2596
2610
|
.s("AmazonNeptuneDataplane", "GetEngineStatus", {})
|
|
2597
2611
|
.n("NeptunedataClient", "GetEngineStatusCommand")
|
|
2598
|
-
.sc(GetEngineStatus)
|
|
2612
|
+
.sc(GetEngineStatus$)
|
|
2599
2613
|
.build() {
|
|
2600
2614
|
}
|
|
2601
2615
|
|
|
@@ -2607,7 +2621,7 @@ class GetGremlinQueryStatusCommand extends smithyClient.Command
|
|
|
2607
2621
|
})
|
|
2608
2622
|
.s("AmazonNeptuneDataplane", "GetGremlinQueryStatus", {})
|
|
2609
2623
|
.n("NeptunedataClient", "GetGremlinQueryStatusCommand")
|
|
2610
|
-
.sc(GetGremlinQueryStatus)
|
|
2624
|
+
.sc(GetGremlinQueryStatus$)
|
|
2611
2625
|
.build() {
|
|
2612
2626
|
}
|
|
2613
2627
|
|
|
@@ -2619,7 +2633,7 @@ class GetLoaderJobStatusCommand extends smithyClient.Command
|
|
|
2619
2633
|
})
|
|
2620
2634
|
.s("AmazonNeptuneDataplane", "GetLoaderJobStatus", {})
|
|
2621
2635
|
.n("NeptunedataClient", "GetLoaderJobStatusCommand")
|
|
2622
|
-
.sc(GetLoaderJobStatus)
|
|
2636
|
+
.sc(GetLoaderJobStatus$)
|
|
2623
2637
|
.build() {
|
|
2624
2638
|
}
|
|
2625
2639
|
|
|
@@ -2631,7 +2645,7 @@ class GetMLDataProcessingJobCommand extends smithyClient.Command
|
|
|
2631
2645
|
})
|
|
2632
2646
|
.s("AmazonNeptuneDataplane", "GetMLDataProcessingJob", {})
|
|
2633
2647
|
.n("NeptunedataClient", "GetMLDataProcessingJobCommand")
|
|
2634
|
-
.sc(GetMLDataProcessingJob)
|
|
2648
|
+
.sc(GetMLDataProcessingJob$)
|
|
2635
2649
|
.build() {
|
|
2636
2650
|
}
|
|
2637
2651
|
|
|
@@ -2643,7 +2657,7 @@ class GetMLEndpointCommand extends smithyClient.Command
|
|
|
2643
2657
|
})
|
|
2644
2658
|
.s("AmazonNeptuneDataplane", "GetMLEndpoint", {})
|
|
2645
2659
|
.n("NeptunedataClient", "GetMLEndpointCommand")
|
|
2646
|
-
.sc(GetMLEndpoint)
|
|
2660
|
+
.sc(GetMLEndpoint$)
|
|
2647
2661
|
.build() {
|
|
2648
2662
|
}
|
|
2649
2663
|
|
|
@@ -2655,7 +2669,7 @@ class GetMLModelTrainingJobCommand extends smithyClient.Command
|
|
|
2655
2669
|
})
|
|
2656
2670
|
.s("AmazonNeptuneDataplane", "GetMLModelTrainingJob", {})
|
|
2657
2671
|
.n("NeptunedataClient", "GetMLModelTrainingJobCommand")
|
|
2658
|
-
.sc(GetMLModelTrainingJob)
|
|
2672
|
+
.sc(GetMLModelTrainingJob$)
|
|
2659
2673
|
.build() {
|
|
2660
2674
|
}
|
|
2661
2675
|
|
|
@@ -2667,7 +2681,7 @@ class GetMLModelTransformJobCommand extends smithyClient.Command
|
|
|
2667
2681
|
})
|
|
2668
2682
|
.s("AmazonNeptuneDataplane", "GetMLModelTransformJob", {})
|
|
2669
2683
|
.n("NeptunedataClient", "GetMLModelTransformJobCommand")
|
|
2670
|
-
.sc(GetMLModelTransformJob)
|
|
2684
|
+
.sc(GetMLModelTransformJob$)
|
|
2671
2685
|
.build() {
|
|
2672
2686
|
}
|
|
2673
2687
|
|
|
@@ -2679,7 +2693,7 @@ class GetOpenCypherQueryStatusCommand extends smithyClient.Command
|
|
|
2679
2693
|
})
|
|
2680
2694
|
.s("AmazonNeptuneDataplane", "GetOpenCypherQueryStatus", {})
|
|
2681
2695
|
.n("NeptunedataClient", "GetOpenCypherQueryStatusCommand")
|
|
2682
|
-
.sc(GetOpenCypherQueryStatus)
|
|
2696
|
+
.sc(GetOpenCypherQueryStatus$)
|
|
2683
2697
|
.build() {
|
|
2684
2698
|
}
|
|
2685
2699
|
|
|
@@ -2691,7 +2705,7 @@ class GetPropertygraphStatisticsCommand extends smithyClient.Command
|
|
|
2691
2705
|
})
|
|
2692
2706
|
.s("AmazonNeptuneDataplane", "GetPropertygraphStatistics", {})
|
|
2693
2707
|
.n("NeptunedataClient", "GetPropertygraphStatisticsCommand")
|
|
2694
|
-
.sc(GetPropertygraphStatistics)
|
|
2708
|
+
.sc(GetPropertygraphStatistics$)
|
|
2695
2709
|
.build() {
|
|
2696
2710
|
}
|
|
2697
2711
|
|
|
@@ -2703,7 +2717,7 @@ class GetPropertygraphStreamCommand extends smithyClient.Command
|
|
|
2703
2717
|
})
|
|
2704
2718
|
.s("AmazonNeptuneDataplane", "GetPropertygraphStream", {})
|
|
2705
2719
|
.n("NeptunedataClient", "GetPropertygraphStreamCommand")
|
|
2706
|
-
.sc(GetPropertygraphStream)
|
|
2720
|
+
.sc(GetPropertygraphStream$)
|
|
2707
2721
|
.build() {
|
|
2708
2722
|
}
|
|
2709
2723
|
|
|
@@ -2715,7 +2729,7 @@ class GetPropertygraphSummaryCommand extends smithyClient.Command
|
|
|
2715
2729
|
})
|
|
2716
2730
|
.s("AmazonNeptuneDataplane", "GetPropertygraphSummary", {})
|
|
2717
2731
|
.n("NeptunedataClient", "GetPropertygraphSummaryCommand")
|
|
2718
|
-
.sc(GetPropertygraphSummary)
|
|
2732
|
+
.sc(GetPropertygraphSummary$)
|
|
2719
2733
|
.build() {
|
|
2720
2734
|
}
|
|
2721
2735
|
|
|
@@ -2727,7 +2741,7 @@ class GetRDFGraphSummaryCommand extends smithyClient.Command
|
|
|
2727
2741
|
})
|
|
2728
2742
|
.s("AmazonNeptuneDataplane", "GetRDFGraphSummary", {})
|
|
2729
2743
|
.n("NeptunedataClient", "GetRDFGraphSummaryCommand")
|
|
2730
|
-
.sc(GetRDFGraphSummary)
|
|
2744
|
+
.sc(GetRDFGraphSummary$)
|
|
2731
2745
|
.build() {
|
|
2732
2746
|
}
|
|
2733
2747
|
|
|
@@ -2739,7 +2753,7 @@ class GetSparqlStatisticsCommand extends smithyClient.Command
|
|
|
2739
2753
|
})
|
|
2740
2754
|
.s("AmazonNeptuneDataplane", "GetSparqlStatistics", {})
|
|
2741
2755
|
.n("NeptunedataClient", "GetSparqlStatisticsCommand")
|
|
2742
|
-
.sc(GetSparqlStatistics)
|
|
2756
|
+
.sc(GetSparqlStatistics$)
|
|
2743
2757
|
.build() {
|
|
2744
2758
|
}
|
|
2745
2759
|
|
|
@@ -2751,7 +2765,7 @@ class GetSparqlStreamCommand extends smithyClient.Command
|
|
|
2751
2765
|
})
|
|
2752
2766
|
.s("AmazonNeptuneDataplane", "GetSparqlStream", {})
|
|
2753
2767
|
.n("NeptunedataClient", "GetSparqlStreamCommand")
|
|
2754
|
-
.sc(GetSparqlStream)
|
|
2768
|
+
.sc(GetSparqlStream$)
|
|
2755
2769
|
.build() {
|
|
2756
2770
|
}
|
|
2757
2771
|
|
|
@@ -2763,7 +2777,7 @@ class ListGremlinQueriesCommand extends smithyClient.Command
|
|
|
2763
2777
|
})
|
|
2764
2778
|
.s("AmazonNeptuneDataplane", "ListGremlinQueries", {})
|
|
2765
2779
|
.n("NeptunedataClient", "ListGremlinQueriesCommand")
|
|
2766
|
-
.sc(ListGremlinQueries)
|
|
2780
|
+
.sc(ListGremlinQueries$)
|
|
2767
2781
|
.build() {
|
|
2768
2782
|
}
|
|
2769
2783
|
|
|
@@ -2775,7 +2789,7 @@ class ListLoaderJobsCommand extends smithyClient.Command
|
|
|
2775
2789
|
})
|
|
2776
2790
|
.s("AmazonNeptuneDataplane", "ListLoaderJobs", {})
|
|
2777
2791
|
.n("NeptunedataClient", "ListLoaderJobsCommand")
|
|
2778
|
-
.sc(ListLoaderJobs)
|
|
2792
|
+
.sc(ListLoaderJobs$)
|
|
2779
2793
|
.build() {
|
|
2780
2794
|
}
|
|
2781
2795
|
|
|
@@ -2787,7 +2801,7 @@ class ListMLDataProcessingJobsCommand extends smithyClient.Command
|
|
|
2787
2801
|
})
|
|
2788
2802
|
.s("AmazonNeptuneDataplane", "ListMLDataProcessingJobs", {})
|
|
2789
2803
|
.n("NeptunedataClient", "ListMLDataProcessingJobsCommand")
|
|
2790
|
-
.sc(ListMLDataProcessingJobs)
|
|
2804
|
+
.sc(ListMLDataProcessingJobs$)
|
|
2791
2805
|
.build() {
|
|
2792
2806
|
}
|
|
2793
2807
|
|
|
@@ -2799,7 +2813,7 @@ class ListMLEndpointsCommand extends smithyClient.Command
|
|
|
2799
2813
|
})
|
|
2800
2814
|
.s("AmazonNeptuneDataplane", "ListMLEndpoints", {})
|
|
2801
2815
|
.n("NeptunedataClient", "ListMLEndpointsCommand")
|
|
2802
|
-
.sc(ListMLEndpoints)
|
|
2816
|
+
.sc(ListMLEndpoints$)
|
|
2803
2817
|
.build() {
|
|
2804
2818
|
}
|
|
2805
2819
|
|
|
@@ -2811,7 +2825,7 @@ class ListMLModelTrainingJobsCommand extends smithyClient.Command
|
|
|
2811
2825
|
})
|
|
2812
2826
|
.s("AmazonNeptuneDataplane", "ListMLModelTrainingJobs", {})
|
|
2813
2827
|
.n("NeptunedataClient", "ListMLModelTrainingJobsCommand")
|
|
2814
|
-
.sc(ListMLModelTrainingJobs)
|
|
2828
|
+
.sc(ListMLModelTrainingJobs$)
|
|
2815
2829
|
.build() {
|
|
2816
2830
|
}
|
|
2817
2831
|
|
|
@@ -2823,7 +2837,7 @@ class ListMLModelTransformJobsCommand extends smithyClient.Command
|
|
|
2823
2837
|
})
|
|
2824
2838
|
.s("AmazonNeptuneDataplane", "ListMLModelTransformJobs", {})
|
|
2825
2839
|
.n("NeptunedataClient", "ListMLModelTransformJobsCommand")
|
|
2826
|
-
.sc(ListMLModelTransformJobs)
|
|
2840
|
+
.sc(ListMLModelTransformJobs$)
|
|
2827
2841
|
.build() {
|
|
2828
2842
|
}
|
|
2829
2843
|
|
|
@@ -2835,7 +2849,7 @@ class ListOpenCypherQueriesCommand extends smithyClient.Command
|
|
|
2835
2849
|
})
|
|
2836
2850
|
.s("AmazonNeptuneDataplane", "ListOpenCypherQueries", {})
|
|
2837
2851
|
.n("NeptunedataClient", "ListOpenCypherQueriesCommand")
|
|
2838
|
-
.sc(ListOpenCypherQueries)
|
|
2852
|
+
.sc(ListOpenCypherQueries$)
|
|
2839
2853
|
.build() {
|
|
2840
2854
|
}
|
|
2841
2855
|
|
|
@@ -2847,7 +2861,7 @@ class ManagePropertygraphStatisticsCommand extends smithyClient.Command
|
|
|
2847
2861
|
})
|
|
2848
2862
|
.s("AmazonNeptuneDataplane", "ManagePropertygraphStatistics", {})
|
|
2849
2863
|
.n("NeptunedataClient", "ManagePropertygraphStatisticsCommand")
|
|
2850
|
-
.sc(ManagePropertygraphStatistics)
|
|
2864
|
+
.sc(ManagePropertygraphStatistics$)
|
|
2851
2865
|
.build() {
|
|
2852
2866
|
}
|
|
2853
2867
|
|
|
@@ -2859,7 +2873,7 @@ class ManageSparqlStatisticsCommand extends smithyClient.Command
|
|
|
2859
2873
|
})
|
|
2860
2874
|
.s("AmazonNeptuneDataplane", "ManageSparqlStatistics", {})
|
|
2861
2875
|
.n("NeptunedataClient", "ManageSparqlStatisticsCommand")
|
|
2862
|
-
.sc(ManageSparqlStatistics)
|
|
2876
|
+
.sc(ManageSparqlStatistics$)
|
|
2863
2877
|
.build() {
|
|
2864
2878
|
}
|
|
2865
2879
|
|
|
@@ -2871,7 +2885,7 @@ class StartLoaderJobCommand extends smithyClient.Command
|
|
|
2871
2885
|
})
|
|
2872
2886
|
.s("AmazonNeptuneDataplane", "StartLoaderJob", {})
|
|
2873
2887
|
.n("NeptunedataClient", "StartLoaderJobCommand")
|
|
2874
|
-
.sc(StartLoaderJob)
|
|
2888
|
+
.sc(StartLoaderJob$)
|
|
2875
2889
|
.build() {
|
|
2876
2890
|
}
|
|
2877
2891
|
|
|
@@ -2883,7 +2897,7 @@ class StartMLDataProcessingJobCommand extends smithyClient.Command
|
|
|
2883
2897
|
})
|
|
2884
2898
|
.s("AmazonNeptuneDataplane", "StartMLDataProcessingJob", {})
|
|
2885
2899
|
.n("NeptunedataClient", "StartMLDataProcessingJobCommand")
|
|
2886
|
-
.sc(StartMLDataProcessingJob)
|
|
2900
|
+
.sc(StartMLDataProcessingJob$)
|
|
2887
2901
|
.build() {
|
|
2888
2902
|
}
|
|
2889
2903
|
|
|
@@ -2895,7 +2909,7 @@ class StartMLModelTrainingJobCommand extends smithyClient.Command
|
|
|
2895
2909
|
})
|
|
2896
2910
|
.s("AmazonNeptuneDataplane", "StartMLModelTrainingJob", {})
|
|
2897
2911
|
.n("NeptunedataClient", "StartMLModelTrainingJobCommand")
|
|
2898
|
-
.sc(StartMLModelTrainingJob)
|
|
2912
|
+
.sc(StartMLModelTrainingJob$)
|
|
2899
2913
|
.build() {
|
|
2900
2914
|
}
|
|
2901
2915
|
|
|
@@ -2907,7 +2921,7 @@ class StartMLModelTransformJobCommand extends smithyClient.Command
|
|
|
2907
2921
|
})
|
|
2908
2922
|
.s("AmazonNeptuneDataplane", "StartMLModelTransformJob", {})
|
|
2909
2923
|
.n("NeptunedataClient", "StartMLModelTransformJobCommand")
|
|
2910
|
-
.sc(StartMLModelTransformJob)
|
|
2924
|
+
.sc(StartMLModelTransformJob$)
|
|
2911
2925
|
.build() {
|
|
2912
2926
|
}
|
|
2913
2927
|
|
|
@@ -3053,93 +3067,277 @@ Object.defineProperty(exports, "__Client", {
|
|
|
3053
3067
|
enumerable: true,
|
|
3054
3068
|
get: function () { return smithyClient.Client; }
|
|
3055
3069
|
});
|
|
3056
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
3070
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
3071
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
3057
3072
|
exports.Action = Action;
|
|
3058
|
-
exports.BadRequestException = BadRequestException
|
|
3059
|
-
exports.
|
|
3073
|
+
exports.BadRequestException = BadRequestException;
|
|
3074
|
+
exports.BadRequestException$ = BadRequestException$;
|
|
3075
|
+
exports.BulkLoadIdNotFoundException = BulkLoadIdNotFoundException;
|
|
3076
|
+
exports.BulkLoadIdNotFoundException$ = BulkLoadIdNotFoundException$;
|
|
3077
|
+
exports.CancelGremlinQuery$ = CancelGremlinQuery$;
|
|
3060
3078
|
exports.CancelGremlinQueryCommand = CancelGremlinQueryCommand;
|
|
3079
|
+
exports.CancelGremlinQueryInput$ = CancelGremlinQueryInput$;
|
|
3080
|
+
exports.CancelGremlinQueryOutput$ = CancelGremlinQueryOutput$;
|
|
3081
|
+
exports.CancelLoaderJob$ = CancelLoaderJob$;
|
|
3061
3082
|
exports.CancelLoaderJobCommand = CancelLoaderJobCommand;
|
|
3083
|
+
exports.CancelLoaderJobInput$ = CancelLoaderJobInput$;
|
|
3084
|
+
exports.CancelLoaderJobOutput$ = CancelLoaderJobOutput$;
|
|
3085
|
+
exports.CancelMLDataProcessingJob$ = CancelMLDataProcessingJob$;
|
|
3062
3086
|
exports.CancelMLDataProcessingJobCommand = CancelMLDataProcessingJobCommand;
|
|
3087
|
+
exports.CancelMLDataProcessingJobInput$ = CancelMLDataProcessingJobInput$;
|
|
3088
|
+
exports.CancelMLDataProcessingJobOutput$ = CancelMLDataProcessingJobOutput$;
|
|
3089
|
+
exports.CancelMLModelTrainingJob$ = CancelMLModelTrainingJob$;
|
|
3063
3090
|
exports.CancelMLModelTrainingJobCommand = CancelMLModelTrainingJobCommand;
|
|
3091
|
+
exports.CancelMLModelTrainingJobInput$ = CancelMLModelTrainingJobInput$;
|
|
3092
|
+
exports.CancelMLModelTrainingJobOutput$ = CancelMLModelTrainingJobOutput$;
|
|
3093
|
+
exports.CancelMLModelTransformJob$ = CancelMLModelTransformJob$;
|
|
3064
3094
|
exports.CancelMLModelTransformJobCommand = CancelMLModelTransformJobCommand;
|
|
3095
|
+
exports.CancelMLModelTransformJobInput$ = CancelMLModelTransformJobInput$;
|
|
3096
|
+
exports.CancelMLModelTransformJobOutput$ = CancelMLModelTransformJobOutput$;
|
|
3097
|
+
exports.CancelOpenCypherQuery$ = CancelOpenCypherQuery$;
|
|
3065
3098
|
exports.CancelOpenCypherQueryCommand = CancelOpenCypherQueryCommand;
|
|
3066
|
-
exports.
|
|
3067
|
-
exports.
|
|
3068
|
-
exports.
|
|
3069
|
-
exports.
|
|
3099
|
+
exports.CancelOpenCypherQueryInput$ = CancelOpenCypherQueryInput$;
|
|
3100
|
+
exports.CancelOpenCypherQueryOutput$ = CancelOpenCypherQueryOutput$;
|
|
3101
|
+
exports.CancelledByUserException = CancelledByUserException;
|
|
3102
|
+
exports.CancelledByUserException$ = CancelledByUserException$;
|
|
3103
|
+
exports.ClientTimeoutException = ClientTimeoutException;
|
|
3104
|
+
exports.ClientTimeoutException$ = ClientTimeoutException$;
|
|
3105
|
+
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
3106
|
+
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
3107
|
+
exports.ConstraintViolationException = ConstraintViolationException;
|
|
3108
|
+
exports.ConstraintViolationException$ = ConstraintViolationException$;
|
|
3109
|
+
exports.CreateMLEndpoint$ = CreateMLEndpoint$;
|
|
3070
3110
|
exports.CreateMLEndpointCommand = CreateMLEndpointCommand;
|
|
3111
|
+
exports.CreateMLEndpointInput$ = CreateMLEndpointInput$;
|
|
3112
|
+
exports.CreateMLEndpointOutput$ = CreateMLEndpointOutput$;
|
|
3113
|
+
exports.CustomModelTrainingParameters$ = CustomModelTrainingParameters$;
|
|
3114
|
+
exports.CustomModelTransformParameters$ = CustomModelTransformParameters$;
|
|
3115
|
+
exports.DeleteMLEndpoint$ = DeleteMLEndpoint$;
|
|
3071
3116
|
exports.DeleteMLEndpointCommand = DeleteMLEndpointCommand;
|
|
3117
|
+
exports.DeleteMLEndpointInput$ = DeleteMLEndpointInput$;
|
|
3118
|
+
exports.DeleteMLEndpointOutput$ = DeleteMLEndpointOutput$;
|
|
3119
|
+
exports.DeletePropertygraphStatistics$ = DeletePropertygraphStatistics$;
|
|
3072
3120
|
exports.DeletePropertygraphStatisticsCommand = DeletePropertygraphStatisticsCommand;
|
|
3121
|
+
exports.DeletePropertygraphStatisticsOutput$ = DeletePropertygraphStatisticsOutput$;
|
|
3122
|
+
exports.DeleteSparqlStatistics$ = DeleteSparqlStatistics$;
|
|
3073
3123
|
exports.DeleteSparqlStatisticsCommand = DeleteSparqlStatisticsCommand;
|
|
3124
|
+
exports.DeleteSparqlStatisticsOutput$ = DeleteSparqlStatisticsOutput$;
|
|
3125
|
+
exports.DeleteStatisticsValueMap$ = DeleteStatisticsValueMap$;
|
|
3126
|
+
exports.EdgeStructure$ = EdgeStructure$;
|
|
3074
3127
|
exports.Encoding = Encoding;
|
|
3128
|
+
exports.ExecuteFastReset$ = ExecuteFastReset$;
|
|
3075
3129
|
exports.ExecuteFastResetCommand = ExecuteFastResetCommand;
|
|
3130
|
+
exports.ExecuteFastResetInput$ = ExecuteFastResetInput$;
|
|
3131
|
+
exports.ExecuteFastResetOutput$ = ExecuteFastResetOutput$;
|
|
3132
|
+
exports.ExecuteGremlinExplainQuery$ = ExecuteGremlinExplainQuery$;
|
|
3076
3133
|
exports.ExecuteGremlinExplainQueryCommand = ExecuteGremlinExplainQueryCommand;
|
|
3134
|
+
exports.ExecuteGremlinExplainQueryInput$ = ExecuteGremlinExplainQueryInput$;
|
|
3135
|
+
exports.ExecuteGremlinExplainQueryOutput$ = ExecuteGremlinExplainQueryOutput$;
|
|
3136
|
+
exports.ExecuteGremlinProfileQuery$ = ExecuteGremlinProfileQuery$;
|
|
3077
3137
|
exports.ExecuteGremlinProfileQueryCommand = ExecuteGremlinProfileQueryCommand;
|
|
3138
|
+
exports.ExecuteGremlinProfileQueryInput$ = ExecuteGremlinProfileQueryInput$;
|
|
3139
|
+
exports.ExecuteGremlinProfileQueryOutput$ = ExecuteGremlinProfileQueryOutput$;
|
|
3140
|
+
exports.ExecuteGremlinQuery$ = ExecuteGremlinQuery$;
|
|
3078
3141
|
exports.ExecuteGremlinQueryCommand = ExecuteGremlinQueryCommand;
|
|
3142
|
+
exports.ExecuteGremlinQueryInput$ = ExecuteGremlinQueryInput$;
|
|
3143
|
+
exports.ExecuteGremlinQueryOutput$ = ExecuteGremlinQueryOutput$;
|
|
3144
|
+
exports.ExecuteOpenCypherExplainQuery$ = ExecuteOpenCypherExplainQuery$;
|
|
3079
3145
|
exports.ExecuteOpenCypherExplainQueryCommand = ExecuteOpenCypherExplainQueryCommand;
|
|
3146
|
+
exports.ExecuteOpenCypherExplainQueryInput$ = ExecuteOpenCypherExplainQueryInput$;
|
|
3147
|
+
exports.ExecuteOpenCypherExplainQueryOutput$ = ExecuteOpenCypherExplainQueryOutput$;
|
|
3148
|
+
exports.ExecuteOpenCypherQuery$ = ExecuteOpenCypherQuery$;
|
|
3080
3149
|
exports.ExecuteOpenCypherQueryCommand = ExecuteOpenCypherQueryCommand;
|
|
3081
|
-
exports.
|
|
3082
|
-
exports.
|
|
3150
|
+
exports.ExecuteOpenCypherQueryInput$ = ExecuteOpenCypherQueryInput$;
|
|
3151
|
+
exports.ExecuteOpenCypherQueryOutput$ = ExecuteOpenCypherQueryOutput$;
|
|
3152
|
+
exports.ExpiredStreamException = ExpiredStreamException;
|
|
3153
|
+
exports.ExpiredStreamException$ = ExpiredStreamException$;
|
|
3154
|
+
exports.FailureByQueryException = FailureByQueryException;
|
|
3155
|
+
exports.FailureByQueryException$ = FailureByQueryException$;
|
|
3156
|
+
exports.FastResetToken$ = FastResetToken$;
|
|
3083
3157
|
exports.Format = Format;
|
|
3158
|
+
exports.GetEngineStatus$ = GetEngineStatus$;
|
|
3084
3159
|
exports.GetEngineStatusCommand = GetEngineStatusCommand;
|
|
3160
|
+
exports.GetEngineStatusOutput$ = GetEngineStatusOutput$;
|
|
3161
|
+
exports.GetGremlinQueryStatus$ = GetGremlinQueryStatus$;
|
|
3085
3162
|
exports.GetGremlinQueryStatusCommand = GetGremlinQueryStatusCommand;
|
|
3163
|
+
exports.GetGremlinQueryStatusInput$ = GetGremlinQueryStatusInput$;
|
|
3164
|
+
exports.GetGremlinQueryStatusOutput$ = GetGremlinQueryStatusOutput$;
|
|
3165
|
+
exports.GetLoaderJobStatus$ = GetLoaderJobStatus$;
|
|
3086
3166
|
exports.GetLoaderJobStatusCommand = GetLoaderJobStatusCommand;
|
|
3167
|
+
exports.GetLoaderJobStatusInput$ = GetLoaderJobStatusInput$;
|
|
3168
|
+
exports.GetLoaderJobStatusOutput$ = GetLoaderJobStatusOutput$;
|
|
3169
|
+
exports.GetMLDataProcessingJob$ = GetMLDataProcessingJob$;
|
|
3087
3170
|
exports.GetMLDataProcessingJobCommand = GetMLDataProcessingJobCommand;
|
|
3171
|
+
exports.GetMLDataProcessingJobInput$ = GetMLDataProcessingJobInput$;
|
|
3172
|
+
exports.GetMLDataProcessingJobOutput$ = GetMLDataProcessingJobOutput$;
|
|
3173
|
+
exports.GetMLEndpoint$ = GetMLEndpoint$;
|
|
3088
3174
|
exports.GetMLEndpointCommand = GetMLEndpointCommand;
|
|
3175
|
+
exports.GetMLEndpointInput$ = GetMLEndpointInput$;
|
|
3176
|
+
exports.GetMLEndpointOutput$ = GetMLEndpointOutput$;
|
|
3177
|
+
exports.GetMLModelTrainingJob$ = GetMLModelTrainingJob$;
|
|
3089
3178
|
exports.GetMLModelTrainingJobCommand = GetMLModelTrainingJobCommand;
|
|
3179
|
+
exports.GetMLModelTrainingJobInput$ = GetMLModelTrainingJobInput$;
|
|
3180
|
+
exports.GetMLModelTrainingJobOutput$ = GetMLModelTrainingJobOutput$;
|
|
3181
|
+
exports.GetMLModelTransformJob$ = GetMLModelTransformJob$;
|
|
3090
3182
|
exports.GetMLModelTransformJobCommand = GetMLModelTransformJobCommand;
|
|
3183
|
+
exports.GetMLModelTransformJobInput$ = GetMLModelTransformJobInput$;
|
|
3184
|
+
exports.GetMLModelTransformJobOutput$ = GetMLModelTransformJobOutput$;
|
|
3185
|
+
exports.GetOpenCypherQueryStatus$ = GetOpenCypherQueryStatus$;
|
|
3091
3186
|
exports.GetOpenCypherQueryStatusCommand = GetOpenCypherQueryStatusCommand;
|
|
3187
|
+
exports.GetOpenCypherQueryStatusInput$ = GetOpenCypherQueryStatusInput$;
|
|
3188
|
+
exports.GetOpenCypherQueryStatusOutput$ = GetOpenCypherQueryStatusOutput$;
|
|
3189
|
+
exports.GetPropertygraphStatistics$ = GetPropertygraphStatistics$;
|
|
3092
3190
|
exports.GetPropertygraphStatisticsCommand = GetPropertygraphStatisticsCommand;
|
|
3191
|
+
exports.GetPropertygraphStatisticsOutput$ = GetPropertygraphStatisticsOutput$;
|
|
3192
|
+
exports.GetPropertygraphStream$ = GetPropertygraphStream$;
|
|
3093
3193
|
exports.GetPropertygraphStreamCommand = GetPropertygraphStreamCommand;
|
|
3194
|
+
exports.GetPropertygraphStreamInput$ = GetPropertygraphStreamInput$;
|
|
3195
|
+
exports.GetPropertygraphStreamOutput$ = GetPropertygraphStreamOutput$;
|
|
3196
|
+
exports.GetPropertygraphSummary$ = GetPropertygraphSummary$;
|
|
3094
3197
|
exports.GetPropertygraphSummaryCommand = GetPropertygraphSummaryCommand;
|
|
3198
|
+
exports.GetPropertygraphSummaryInput$ = GetPropertygraphSummaryInput$;
|
|
3199
|
+
exports.GetPropertygraphSummaryOutput$ = GetPropertygraphSummaryOutput$;
|
|
3200
|
+
exports.GetRDFGraphSummary$ = GetRDFGraphSummary$;
|
|
3095
3201
|
exports.GetRDFGraphSummaryCommand = GetRDFGraphSummaryCommand;
|
|
3202
|
+
exports.GetRDFGraphSummaryInput$ = GetRDFGraphSummaryInput$;
|
|
3203
|
+
exports.GetRDFGraphSummaryOutput$ = GetRDFGraphSummaryOutput$;
|
|
3204
|
+
exports.GetSparqlStatistics$ = GetSparqlStatistics$;
|
|
3096
3205
|
exports.GetSparqlStatisticsCommand = GetSparqlStatisticsCommand;
|
|
3206
|
+
exports.GetSparqlStatisticsOutput$ = GetSparqlStatisticsOutput$;
|
|
3207
|
+
exports.GetSparqlStream$ = GetSparqlStream$;
|
|
3097
3208
|
exports.GetSparqlStreamCommand = GetSparqlStreamCommand;
|
|
3209
|
+
exports.GetSparqlStreamInput$ = GetSparqlStreamInput$;
|
|
3210
|
+
exports.GetSparqlStreamOutput$ = GetSparqlStreamOutput$;
|
|
3098
3211
|
exports.GraphSummaryType = GraphSummaryType;
|
|
3099
|
-
exports.
|
|
3100
|
-
exports.
|
|
3101
|
-
exports.
|
|
3102
|
-
exports.
|
|
3103
|
-
exports.
|
|
3212
|
+
exports.GremlinQueryStatus$ = GremlinQueryStatus$;
|
|
3213
|
+
exports.GremlinQueryStatusAttributes$ = GremlinQueryStatusAttributes$;
|
|
3214
|
+
exports.IllegalArgumentException = IllegalArgumentException;
|
|
3215
|
+
exports.IllegalArgumentException$ = IllegalArgumentException$;
|
|
3216
|
+
exports.InternalFailureException = InternalFailureException;
|
|
3217
|
+
exports.InternalFailureException$ = InternalFailureException$;
|
|
3218
|
+
exports.InvalidArgumentException = InvalidArgumentException;
|
|
3219
|
+
exports.InvalidArgumentException$ = InvalidArgumentException$;
|
|
3220
|
+
exports.InvalidNumericDataException = InvalidNumericDataException;
|
|
3221
|
+
exports.InvalidNumericDataException$ = InvalidNumericDataException$;
|
|
3222
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
3223
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
3104
3224
|
exports.IteratorType = IteratorType;
|
|
3225
|
+
exports.ListGremlinQueries$ = ListGremlinQueries$;
|
|
3105
3226
|
exports.ListGremlinQueriesCommand = ListGremlinQueriesCommand;
|
|
3227
|
+
exports.ListGremlinQueriesInput$ = ListGremlinQueriesInput$;
|
|
3228
|
+
exports.ListGremlinQueriesOutput$ = ListGremlinQueriesOutput$;
|
|
3229
|
+
exports.ListLoaderJobs$ = ListLoaderJobs$;
|
|
3106
3230
|
exports.ListLoaderJobsCommand = ListLoaderJobsCommand;
|
|
3231
|
+
exports.ListLoaderJobsInput$ = ListLoaderJobsInput$;
|
|
3232
|
+
exports.ListLoaderJobsOutput$ = ListLoaderJobsOutput$;
|
|
3233
|
+
exports.ListMLDataProcessingJobs$ = ListMLDataProcessingJobs$;
|
|
3107
3234
|
exports.ListMLDataProcessingJobsCommand = ListMLDataProcessingJobsCommand;
|
|
3235
|
+
exports.ListMLDataProcessingJobsInput$ = ListMLDataProcessingJobsInput$;
|
|
3236
|
+
exports.ListMLDataProcessingJobsOutput$ = ListMLDataProcessingJobsOutput$;
|
|
3237
|
+
exports.ListMLEndpoints$ = ListMLEndpoints$;
|
|
3108
3238
|
exports.ListMLEndpointsCommand = ListMLEndpointsCommand;
|
|
3239
|
+
exports.ListMLEndpointsInput$ = ListMLEndpointsInput$;
|
|
3240
|
+
exports.ListMLEndpointsOutput$ = ListMLEndpointsOutput$;
|
|
3241
|
+
exports.ListMLModelTrainingJobs$ = ListMLModelTrainingJobs$;
|
|
3109
3242
|
exports.ListMLModelTrainingJobsCommand = ListMLModelTrainingJobsCommand;
|
|
3243
|
+
exports.ListMLModelTrainingJobsInput$ = ListMLModelTrainingJobsInput$;
|
|
3244
|
+
exports.ListMLModelTrainingJobsOutput$ = ListMLModelTrainingJobsOutput$;
|
|
3245
|
+
exports.ListMLModelTransformJobs$ = ListMLModelTransformJobs$;
|
|
3110
3246
|
exports.ListMLModelTransformJobsCommand = ListMLModelTransformJobsCommand;
|
|
3247
|
+
exports.ListMLModelTransformJobsInput$ = ListMLModelTransformJobsInput$;
|
|
3248
|
+
exports.ListMLModelTransformJobsOutput$ = ListMLModelTransformJobsOutput$;
|
|
3249
|
+
exports.ListOpenCypherQueries$ = ListOpenCypherQueries$;
|
|
3111
3250
|
exports.ListOpenCypherQueriesCommand = ListOpenCypherQueriesCommand;
|
|
3112
|
-
exports.
|
|
3113
|
-
exports.
|
|
3114
|
-
exports.
|
|
3251
|
+
exports.ListOpenCypherQueriesInput$ = ListOpenCypherQueriesInput$;
|
|
3252
|
+
exports.ListOpenCypherQueriesOutput$ = ListOpenCypherQueriesOutput$;
|
|
3253
|
+
exports.LoadUrlAccessDeniedException = LoadUrlAccessDeniedException;
|
|
3254
|
+
exports.LoadUrlAccessDeniedException$ = LoadUrlAccessDeniedException$;
|
|
3255
|
+
exports.LoaderIdResult$ = LoaderIdResult$;
|
|
3256
|
+
exports.MLResourceNotFoundException = MLResourceNotFoundException;
|
|
3257
|
+
exports.MLResourceNotFoundException$ = MLResourceNotFoundException$;
|
|
3258
|
+
exports.MalformedQueryException = MalformedQueryException;
|
|
3259
|
+
exports.MalformedQueryException$ = MalformedQueryException$;
|
|
3260
|
+
exports.ManagePropertygraphStatistics$ = ManagePropertygraphStatistics$;
|
|
3115
3261
|
exports.ManagePropertygraphStatisticsCommand = ManagePropertygraphStatisticsCommand;
|
|
3262
|
+
exports.ManagePropertygraphStatisticsInput$ = ManagePropertygraphStatisticsInput$;
|
|
3263
|
+
exports.ManagePropertygraphStatisticsOutput$ = ManagePropertygraphStatisticsOutput$;
|
|
3264
|
+
exports.ManageSparqlStatistics$ = ManageSparqlStatistics$;
|
|
3116
3265
|
exports.ManageSparqlStatisticsCommand = ManageSparqlStatisticsCommand;
|
|
3117
|
-
exports.
|
|
3118
|
-
exports.
|
|
3119
|
-
exports.
|
|
3266
|
+
exports.ManageSparqlStatisticsInput$ = ManageSparqlStatisticsInput$;
|
|
3267
|
+
exports.ManageSparqlStatisticsOutput$ = ManageSparqlStatisticsOutput$;
|
|
3268
|
+
exports.MemoryLimitExceededException = MemoryLimitExceededException;
|
|
3269
|
+
exports.MemoryLimitExceededException$ = MemoryLimitExceededException$;
|
|
3270
|
+
exports.MethodNotAllowedException = MethodNotAllowedException;
|
|
3271
|
+
exports.MethodNotAllowedException$ = MethodNotAllowedException$;
|
|
3272
|
+
exports.MissingParameterException = MissingParameterException;
|
|
3273
|
+
exports.MissingParameterException$ = MissingParameterException$;
|
|
3274
|
+
exports.MlConfigDefinition$ = MlConfigDefinition$;
|
|
3275
|
+
exports.MlResourceDefinition$ = MlResourceDefinition$;
|
|
3120
3276
|
exports.Mode = Mode;
|
|
3121
3277
|
exports.Neptunedata = Neptunedata;
|
|
3122
3278
|
exports.NeptunedataClient = NeptunedataClient;
|
|
3123
|
-
exports.NeptunedataServiceException = NeptunedataServiceException
|
|
3279
|
+
exports.NeptunedataServiceException = NeptunedataServiceException;
|
|
3280
|
+
exports.NeptunedataServiceException$ = NeptunedataServiceException$;
|
|
3281
|
+
exports.NodeStructure$ = NodeStructure$;
|
|
3124
3282
|
exports.OpenCypherExplainMode = OpenCypherExplainMode;
|
|
3125
3283
|
exports.Parallelism = Parallelism;
|
|
3126
|
-
exports.ParsingException = ParsingException
|
|
3127
|
-
exports.
|
|
3128
|
-
exports.
|
|
3129
|
-
exports.
|
|
3130
|
-
exports.
|
|
3131
|
-
exports.
|
|
3284
|
+
exports.ParsingException = ParsingException;
|
|
3285
|
+
exports.ParsingException$ = ParsingException$;
|
|
3286
|
+
exports.PreconditionsFailedException = PreconditionsFailedException;
|
|
3287
|
+
exports.PreconditionsFailedException$ = PreconditionsFailedException$;
|
|
3288
|
+
exports.PropertygraphData$ = PropertygraphData$;
|
|
3289
|
+
exports.PropertygraphRecord$ = PropertygraphRecord$;
|
|
3290
|
+
exports.PropertygraphSummary$ = PropertygraphSummary$;
|
|
3291
|
+
exports.PropertygraphSummaryValueMap$ = PropertygraphSummaryValueMap$;
|
|
3292
|
+
exports.QueryEvalStats$ = QueryEvalStats$;
|
|
3293
|
+
exports.QueryLanguageVersion$ = QueryLanguageVersion$;
|
|
3294
|
+
exports.QueryLimitExceededException = QueryLimitExceededException;
|
|
3295
|
+
exports.QueryLimitExceededException$ = QueryLimitExceededException$;
|
|
3296
|
+
exports.QueryLimitException = QueryLimitException;
|
|
3297
|
+
exports.QueryLimitException$ = QueryLimitException$;
|
|
3298
|
+
exports.QueryTooLargeException = QueryTooLargeException;
|
|
3299
|
+
exports.QueryTooLargeException$ = QueryTooLargeException$;
|
|
3300
|
+
exports.RDFGraphSummary$ = RDFGraphSummary$;
|
|
3301
|
+
exports.RDFGraphSummaryValueMap$ = RDFGraphSummaryValueMap$;
|
|
3302
|
+
exports.ReadOnlyViolationException = ReadOnlyViolationException;
|
|
3303
|
+
exports.ReadOnlyViolationException$ = ReadOnlyViolationException$;
|
|
3304
|
+
exports.RefreshStatisticsIdMap$ = RefreshStatisticsIdMap$;
|
|
3132
3305
|
exports.S3BucketRegion = S3BucketRegion;
|
|
3133
|
-
exports.S3Exception = S3Exception
|
|
3134
|
-
exports.
|
|
3306
|
+
exports.S3Exception = S3Exception;
|
|
3307
|
+
exports.S3Exception$ = S3Exception$;
|
|
3308
|
+
exports.ServerShutdownException = ServerShutdownException;
|
|
3309
|
+
exports.ServerShutdownException$ = ServerShutdownException$;
|
|
3310
|
+
exports.SparqlData$ = SparqlData$;
|
|
3311
|
+
exports.SparqlRecord$ = SparqlRecord$;
|
|
3312
|
+
exports.StartLoaderJob$ = StartLoaderJob$;
|
|
3135
3313
|
exports.StartLoaderJobCommand = StartLoaderJobCommand;
|
|
3314
|
+
exports.StartLoaderJobInput$ = StartLoaderJobInput$;
|
|
3315
|
+
exports.StartLoaderJobOutput$ = StartLoaderJobOutput$;
|
|
3316
|
+
exports.StartMLDataProcessingJob$ = StartMLDataProcessingJob$;
|
|
3136
3317
|
exports.StartMLDataProcessingJobCommand = StartMLDataProcessingJobCommand;
|
|
3318
|
+
exports.StartMLDataProcessingJobInput$ = StartMLDataProcessingJobInput$;
|
|
3319
|
+
exports.StartMLDataProcessingJobOutput$ = StartMLDataProcessingJobOutput$;
|
|
3320
|
+
exports.StartMLModelTrainingJob$ = StartMLModelTrainingJob$;
|
|
3137
3321
|
exports.StartMLModelTrainingJobCommand = StartMLModelTrainingJobCommand;
|
|
3322
|
+
exports.StartMLModelTrainingJobInput$ = StartMLModelTrainingJobInput$;
|
|
3323
|
+
exports.StartMLModelTrainingJobOutput$ = StartMLModelTrainingJobOutput$;
|
|
3324
|
+
exports.StartMLModelTransformJob$ = StartMLModelTransformJob$;
|
|
3138
3325
|
exports.StartMLModelTransformJobCommand = StartMLModelTransformJobCommand;
|
|
3326
|
+
exports.StartMLModelTransformJobInput$ = StartMLModelTransformJobInput$;
|
|
3327
|
+
exports.StartMLModelTransformJobOutput$ = StartMLModelTransformJobOutput$;
|
|
3328
|
+
exports.Statistics$ = Statistics$;
|
|
3139
3329
|
exports.StatisticsAutoGenerationMode = StatisticsAutoGenerationMode;
|
|
3140
|
-
exports.StatisticsNotAvailableException = StatisticsNotAvailableException
|
|
3141
|
-
exports.
|
|
3142
|
-
exports.
|
|
3143
|
-
exports.
|
|
3144
|
-
exports.
|
|
3145
|
-
exports.
|
|
3330
|
+
exports.StatisticsNotAvailableException = StatisticsNotAvailableException;
|
|
3331
|
+
exports.StatisticsNotAvailableException$ = StatisticsNotAvailableException$;
|
|
3332
|
+
exports.StatisticsSummary$ = StatisticsSummary$;
|
|
3333
|
+
exports.StreamRecordsNotFoundException = StreamRecordsNotFoundException;
|
|
3334
|
+
exports.StreamRecordsNotFoundException$ = StreamRecordsNotFoundException$;
|
|
3335
|
+
exports.SubjectStructure$ = SubjectStructure$;
|
|
3336
|
+
exports.ThrottlingException = ThrottlingException;
|
|
3337
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
3338
|
+
exports.TimeLimitExceededException = TimeLimitExceededException;
|
|
3339
|
+
exports.TimeLimitExceededException$ = TimeLimitExceededException$;
|
|
3340
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
3341
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
3342
|
+
exports.UnsupportedOperationException = UnsupportedOperationException;
|
|
3343
|
+
exports.UnsupportedOperationException$ = UnsupportedOperationException$;
|