@aws-sdk/client-neptunedata 3.721.0 → 3.726.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 CHANGED
@@ -211,7 +211,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
211
211
  }, "resolveRuntimeExtensions");
212
212
 
213
213
  // src/NeptunedataClient.ts
214
- var _NeptunedataClient = class _NeptunedataClient extends import_smithy_client.Client {
214
+ var NeptunedataClient = class extends import_smithy_client.Client {
215
+ static {
216
+ __name(this, "NeptunedataClient");
217
+ }
218
+ /**
219
+ * The resolved configuration of NeptunedataClient class. This is resolved and normalized from the {@link NeptunedataClientConfig | constructor configuration interface}.
220
+ */
221
+ config;
215
222
  constructor(...[configuration]) {
216
223
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
217
224
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -221,7 +228,7 @@ var _NeptunedataClient = class _NeptunedataClient extends import_smithy_client.C
221
228
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
222
229
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
223
230
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
224
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
231
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
225
232
  super(_config_8);
226
233
  this.config = _config_8;
227
234
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -249,8 +256,6 @@ var _NeptunedataClient = class _NeptunedataClient extends import_smithy_client.C
249
256
  super.destroy();
250
257
  }
251
258
  };
252
- __name(_NeptunedataClient, "NeptunedataClient");
253
- var NeptunedataClient = _NeptunedataClient;
254
259
 
255
260
  // src/Neptunedata.ts
256
261
 
@@ -267,7 +272,10 @@ var import_core2 = require("@aws-sdk/core");
267
272
 
268
273
  // src/models/NeptunedataServiceException.ts
269
274
 
270
- var _NeptunedataServiceException = class _NeptunedataServiceException extends import_smithy_client.ServiceException {
275
+ var NeptunedataServiceException = class _NeptunedataServiceException extends import_smithy_client.ServiceException {
276
+ static {
277
+ __name(this, "NeptunedataServiceException");
278
+ }
271
279
  /**
272
280
  * @internal
273
281
  */
@@ -276,11 +284,29 @@ var _NeptunedataServiceException = class _NeptunedataServiceException extends im
276
284
  Object.setPrototypeOf(this, _NeptunedataServiceException.prototype);
277
285
  }
278
286
  };
279
- __name(_NeptunedataServiceException, "NeptunedataServiceException");
280
- var NeptunedataServiceException = _NeptunedataServiceException;
281
287
 
282
288
  // src/models/models_0.ts
283
- var _AccessDeniedException = class _AccessDeniedException extends NeptunedataServiceException {
289
+ var AccessDeniedException = class _AccessDeniedException extends NeptunedataServiceException {
290
+ static {
291
+ __name(this, "AccessDeniedException");
292
+ }
293
+ name = "AccessDeniedException";
294
+ $fault = "client";
295
+ /**
296
+ * <p>A detailed message describing the problem.</p>
297
+ * @public
298
+ */
299
+ detailedMessage;
300
+ /**
301
+ * <p>The ID of the request in question.</p>
302
+ * @public
303
+ */
304
+ requestId;
305
+ /**
306
+ * <p>The HTTP status code returned with the exception.</p>
307
+ * @public
308
+ */
309
+ code;
284
310
  /**
285
311
  * @internal
286
312
  */
@@ -290,21 +316,37 @@ var _AccessDeniedException = class _AccessDeniedException extends NeptunedataSer
290
316
  $fault: "client",
291
317
  ...opts
292
318
  });
293
- this.name = "AccessDeniedException";
294
- this.$fault = "client";
295
319
  Object.setPrototypeOf(this, _AccessDeniedException.prototype);
296
320
  this.detailedMessage = opts.detailedMessage;
297
321
  this.requestId = opts.requestId;
298
322
  this.code = opts.code;
299
323
  }
300
324
  };
301
- __name(_AccessDeniedException, "AccessDeniedException");
302
- var AccessDeniedException = _AccessDeniedException;
303
325
  var Action = {
304
326
  INITIALIZE_RESET: "initiateDatabaseReset",
305
327
  PERFORM_RESET: "performDatabaseReset"
306
328
  };
307
- var _BadRequestException = class _BadRequestException extends NeptunedataServiceException {
329
+ var BadRequestException = class _BadRequestException extends NeptunedataServiceException {
330
+ static {
331
+ __name(this, "BadRequestException");
332
+ }
333
+ name = "BadRequestException";
334
+ $fault = "client";
335
+ /**
336
+ * <p>A detailed message describing the problem.</p>
337
+ * @public
338
+ */
339
+ detailedMessage;
340
+ /**
341
+ * <p>The ID of the bad request.</p>
342
+ * @public
343
+ */
344
+ requestId;
345
+ /**
346
+ * <p>The HTTP status code returned with the exception.</p>
347
+ * @public
348
+ */
349
+ code;
308
350
  /**
309
351
  * @internal
310
352
  */
@@ -314,17 +356,34 @@ var _BadRequestException = class _BadRequestException extends NeptunedataService
314
356
  $fault: "client",
315
357
  ...opts
316
358
  });
317
- this.name = "BadRequestException";
318
- this.$fault = "client";
319
359
  Object.setPrototypeOf(this, _BadRequestException.prototype);
320
360
  this.detailedMessage = opts.detailedMessage;
321
361
  this.requestId = opts.requestId;
322
362
  this.code = opts.code;
323
363
  }
324
364
  };
325
- __name(_BadRequestException, "BadRequestException");
326
- var BadRequestException = _BadRequestException;
327
- var _ClientTimeoutException = class _ClientTimeoutException extends NeptunedataServiceException {
365
+ var ClientTimeoutException = class _ClientTimeoutException extends NeptunedataServiceException {
366
+ static {
367
+ __name(this, "ClientTimeoutException");
368
+ }
369
+ name = "ClientTimeoutException";
370
+ $fault = "client";
371
+ $retryable = {};
372
+ /**
373
+ * <p>A detailed message describing the problem.</p>
374
+ * @public
375
+ */
376
+ detailedMessage;
377
+ /**
378
+ * <p>The ID of the request in question.</p>
379
+ * @public
380
+ */
381
+ requestId;
382
+ /**
383
+ * <p>The HTTP status code returned with the exception.</p>
384
+ * @public
385
+ */
386
+ code;
328
387
  /**
329
388
  * @internal
330
389
  */
@@ -334,18 +393,34 @@ var _ClientTimeoutException = class _ClientTimeoutException extends NeptunedataS
334
393
  $fault: "client",
335
394
  ...opts
336
395
  });
337
- this.name = "ClientTimeoutException";
338
- this.$fault = "client";
339
- this.$retryable = {};
340
396
  Object.setPrototypeOf(this, _ClientTimeoutException.prototype);
341
397
  this.detailedMessage = opts.detailedMessage;
342
398
  this.requestId = opts.requestId;
343
399
  this.code = opts.code;
344
400
  }
345
401
  };
346
- __name(_ClientTimeoutException, "ClientTimeoutException");
347
- var ClientTimeoutException = _ClientTimeoutException;
348
- var _ConcurrentModificationException = class _ConcurrentModificationException extends NeptunedataServiceException {
402
+ var ConcurrentModificationException = class _ConcurrentModificationException extends NeptunedataServiceException {
403
+ static {
404
+ __name(this, "ConcurrentModificationException");
405
+ }
406
+ name = "ConcurrentModificationException";
407
+ $fault = "server";
408
+ $retryable = {};
409
+ /**
410
+ * <p>A detailed message describing the problem.</p>
411
+ * @public
412
+ */
413
+ detailedMessage;
414
+ /**
415
+ * <p>The ID of the request in question.</p>
416
+ * @public
417
+ */
418
+ requestId;
419
+ /**
420
+ * <p>The HTTP status code returned with the exception.</p>
421
+ * @public
422
+ */
423
+ code;
349
424
  /**
350
425
  * @internal
351
426
  */
@@ -355,18 +430,34 @@ var _ConcurrentModificationException = class _ConcurrentModificationException ex
355
430
  $fault: "server",
356
431
  ...opts
357
432
  });
358
- this.name = "ConcurrentModificationException";
359
- this.$fault = "server";
360
- this.$retryable = {};
361
433
  Object.setPrototypeOf(this, _ConcurrentModificationException.prototype);
362
434
  this.detailedMessage = opts.detailedMessage;
363
435
  this.requestId = opts.requestId;
364
436
  this.code = opts.code;
365
437
  }
366
438
  };
367
- __name(_ConcurrentModificationException, "ConcurrentModificationException");
368
- var ConcurrentModificationException = _ConcurrentModificationException;
369
- var _ConstraintViolationException = class _ConstraintViolationException extends NeptunedataServiceException {
439
+ var ConstraintViolationException = class _ConstraintViolationException extends NeptunedataServiceException {
440
+ static {
441
+ __name(this, "ConstraintViolationException");
442
+ }
443
+ name = "ConstraintViolationException";
444
+ $fault = "client";
445
+ $retryable = {};
446
+ /**
447
+ * <p>A detailed message describing the problem.</p>
448
+ * @public
449
+ */
450
+ detailedMessage;
451
+ /**
452
+ * <p>The ID of the request in question.</p>
453
+ * @public
454
+ */
455
+ requestId;
456
+ /**
457
+ * <p>The HTTP status code returned with the exception.</p>
458
+ * @public
459
+ */
460
+ code;
370
461
  /**
371
462
  * @internal
372
463
  */
@@ -376,18 +467,34 @@ var _ConstraintViolationException = class _ConstraintViolationException extends
376
467
  $fault: "client",
377
468
  ...opts
378
469
  });
379
- this.name = "ConstraintViolationException";
380
- this.$fault = "client";
381
- this.$retryable = {};
382
470
  Object.setPrototypeOf(this, _ConstraintViolationException.prototype);
383
471
  this.detailedMessage = opts.detailedMessage;
384
472
  this.requestId = opts.requestId;
385
473
  this.code = opts.code;
386
474
  }
387
475
  };
388
- __name(_ConstraintViolationException, "ConstraintViolationException");
389
- var ConstraintViolationException = _ConstraintViolationException;
390
- var _FailureByQueryException = class _FailureByQueryException extends NeptunedataServiceException {
476
+ var FailureByQueryException = class _FailureByQueryException extends NeptunedataServiceException {
477
+ static {
478
+ __name(this, "FailureByQueryException");
479
+ }
480
+ name = "FailureByQueryException";
481
+ $fault = "server";
482
+ $retryable = {};
483
+ /**
484
+ * <p>A detailed message describing the problem.</p>
485
+ * @public
486
+ */
487
+ detailedMessage;
488
+ /**
489
+ * <p>The ID of the request in question.</p>
490
+ * @public
491
+ */
492
+ requestId;
493
+ /**
494
+ * <p>The HTTP status code returned with the exception.</p>
495
+ * @public
496
+ */
497
+ code;
391
498
  /**
392
499
  * @internal
393
500
  */
@@ -397,18 +504,33 @@ var _FailureByQueryException = class _FailureByQueryException extends Neptunedat
397
504
  $fault: "server",
398
505
  ...opts
399
506
  });
400
- this.name = "FailureByQueryException";
401
- this.$fault = "server";
402
- this.$retryable = {};
403
507
  Object.setPrototypeOf(this, _FailureByQueryException.prototype);
404
508
  this.detailedMessage = opts.detailedMessage;
405
509
  this.requestId = opts.requestId;
406
510
  this.code = opts.code;
407
511
  }
408
512
  };
409
- __name(_FailureByQueryException, "FailureByQueryException");
410
- var FailureByQueryException = _FailureByQueryException;
411
- var _IllegalArgumentException = class _IllegalArgumentException extends NeptunedataServiceException {
513
+ var IllegalArgumentException = class _IllegalArgumentException extends NeptunedataServiceException {
514
+ static {
515
+ __name(this, "IllegalArgumentException");
516
+ }
517
+ name = "IllegalArgumentException";
518
+ $fault = "client";
519
+ /**
520
+ * <p>A detailed message describing the problem.</p>
521
+ * @public
522
+ */
523
+ detailedMessage;
524
+ /**
525
+ * <p>The ID of the request in question.</p>
526
+ * @public
527
+ */
528
+ requestId;
529
+ /**
530
+ * <p>The HTTP status code returned with the exception.</p>
531
+ * @public
532
+ */
533
+ code;
412
534
  /**
413
535
  * @internal
414
536
  */
@@ -418,17 +540,33 @@ var _IllegalArgumentException = class _IllegalArgumentException extends Neptuned
418
540
  $fault: "client",
419
541
  ...opts
420
542
  });
421
- this.name = "IllegalArgumentException";
422
- this.$fault = "client";
423
543
  Object.setPrototypeOf(this, _IllegalArgumentException.prototype);
424
544
  this.detailedMessage = opts.detailedMessage;
425
545
  this.requestId = opts.requestId;
426
546
  this.code = opts.code;
427
547
  }
428
548
  };
429
- __name(_IllegalArgumentException, "IllegalArgumentException");
430
- var IllegalArgumentException = _IllegalArgumentException;
431
- var _InvalidArgumentException = class _InvalidArgumentException extends NeptunedataServiceException {
549
+ var InvalidArgumentException = class _InvalidArgumentException extends NeptunedataServiceException {
550
+ static {
551
+ __name(this, "InvalidArgumentException");
552
+ }
553
+ name = "InvalidArgumentException";
554
+ $fault = "client";
555
+ /**
556
+ * <p>A detailed message describing the problem.</p>
557
+ * @public
558
+ */
559
+ detailedMessage;
560
+ /**
561
+ * <p>The ID of the request in question.</p>
562
+ * @public
563
+ */
564
+ requestId;
565
+ /**
566
+ * <p>The HTTP status code returned with the exception.</p>
567
+ * @public
568
+ */
569
+ code;
432
570
  /**
433
571
  * @internal
434
572
  */
@@ -438,17 +576,33 @@ var _InvalidArgumentException = class _InvalidArgumentException extends Neptuned
438
576
  $fault: "client",
439
577
  ...opts
440
578
  });
441
- this.name = "InvalidArgumentException";
442
- this.$fault = "client";
443
579
  Object.setPrototypeOf(this, _InvalidArgumentException.prototype);
444
580
  this.detailedMessage = opts.detailedMessage;
445
581
  this.requestId = opts.requestId;
446
582
  this.code = opts.code;
447
583
  }
448
584
  };
449
- __name(_InvalidArgumentException, "InvalidArgumentException");
450
- var InvalidArgumentException = _InvalidArgumentException;
451
- var _InvalidParameterException = class _InvalidParameterException extends NeptunedataServiceException {
585
+ var InvalidParameterException = class _InvalidParameterException extends NeptunedataServiceException {
586
+ static {
587
+ __name(this, "InvalidParameterException");
588
+ }
589
+ name = "InvalidParameterException";
590
+ $fault = "client";
591
+ /**
592
+ * <p>A detailed message describing the problem.</p>
593
+ * @public
594
+ */
595
+ detailedMessage;
596
+ /**
597
+ * <p>The ID of the request that includes an invalid parameter.</p>
598
+ * @public
599
+ */
600
+ requestId;
601
+ /**
602
+ * <p>The HTTP status code returned with the exception.</p>
603
+ * @public
604
+ */
605
+ code;
452
606
  /**
453
607
  * @internal
454
608
  */
@@ -458,17 +612,33 @@ var _InvalidParameterException = class _InvalidParameterException extends Neptun
458
612
  $fault: "client",
459
613
  ...opts
460
614
  });
461
- this.name = "InvalidParameterException";
462
- this.$fault = "client";
463
615
  Object.setPrototypeOf(this, _InvalidParameterException.prototype);
464
616
  this.detailedMessage = opts.detailedMessage;
465
617
  this.requestId = opts.requestId;
466
618
  this.code = opts.code;
467
619
  }
468
620
  };
469
- __name(_InvalidParameterException, "InvalidParameterException");
470
- var InvalidParameterException = _InvalidParameterException;
471
- var _MissingParameterException = class _MissingParameterException extends NeptunedataServiceException {
621
+ var MissingParameterException = class _MissingParameterException extends NeptunedataServiceException {
622
+ static {
623
+ __name(this, "MissingParameterException");
624
+ }
625
+ name = "MissingParameterException";
626
+ $fault = "client";
627
+ /**
628
+ * <p>A detailed message describing the problem.</p>
629
+ * @public
630
+ */
631
+ detailedMessage;
632
+ /**
633
+ * <p>The ID of the request in which the parameter is missing.</p>
634
+ * @public
635
+ */
636
+ requestId;
637
+ /**
638
+ * <p>The HTTP status code returned with the exception.</p>
639
+ * @public
640
+ */
641
+ code;
472
642
  /**
473
643
  * @internal
474
644
  */
@@ -478,17 +648,33 @@ var _MissingParameterException = class _MissingParameterException extends Neptun
478
648
  $fault: "client",
479
649
  ...opts
480
650
  });
481
- this.name = "MissingParameterException";
482
- this.$fault = "client";
483
651
  Object.setPrototypeOf(this, _MissingParameterException.prototype);
484
652
  this.detailedMessage = opts.detailedMessage;
485
653
  this.requestId = opts.requestId;
486
654
  this.code = opts.code;
487
655
  }
488
656
  };
489
- __name(_MissingParameterException, "MissingParameterException");
490
- var MissingParameterException = _MissingParameterException;
491
- var _ParsingException = class _ParsingException extends NeptunedataServiceException {
657
+ var ParsingException = class _ParsingException extends NeptunedataServiceException {
658
+ static {
659
+ __name(this, "ParsingException");
660
+ }
661
+ name = "ParsingException";
662
+ $fault = "client";
663
+ /**
664
+ * <p>A detailed message describing the problem.</p>
665
+ * @public
666
+ */
667
+ detailedMessage;
668
+ /**
669
+ * <p>The ID of the request in question.</p>
670
+ * @public
671
+ */
672
+ requestId;
673
+ /**
674
+ * <p>The HTTP status code returned with the exception.</p>
675
+ * @public
676
+ */
677
+ code;
492
678
  /**
493
679
  * @internal
494
680
  */
@@ -498,17 +684,33 @@ var _ParsingException = class _ParsingException extends NeptunedataServiceExcept
498
684
  $fault: "client",
499
685
  ...opts
500
686
  });
501
- this.name = "ParsingException";
502
- this.$fault = "client";
503
687
  Object.setPrototypeOf(this, _ParsingException.prototype);
504
688
  this.detailedMessage = opts.detailedMessage;
505
689
  this.requestId = opts.requestId;
506
690
  this.code = opts.code;
507
691
  }
508
692
  };
509
- __name(_ParsingException, "ParsingException");
510
- var ParsingException = _ParsingException;
511
- var _PreconditionsFailedException = class _PreconditionsFailedException extends NeptunedataServiceException {
693
+ var PreconditionsFailedException = class _PreconditionsFailedException extends NeptunedataServiceException {
694
+ static {
695
+ __name(this, "PreconditionsFailedException");
696
+ }
697
+ name = "PreconditionsFailedException";
698
+ $fault = "client";
699
+ /**
700
+ * <p>A detailed message describing the problem.</p>
701
+ * @public
702
+ */
703
+ detailedMessage;
704
+ /**
705
+ * <p>The ID of the request in question.</p>
706
+ * @public
707
+ */
708
+ requestId;
709
+ /**
710
+ * <p>The HTTP status code returned with the exception.</p>
711
+ * @public
712
+ */
713
+ code;
512
714
  /**
513
715
  * @internal
514
716
  */
@@ -518,17 +720,34 @@ var _PreconditionsFailedException = class _PreconditionsFailedException extends
518
720
  $fault: "client",
519
721
  ...opts
520
722
  });
521
- this.name = "PreconditionsFailedException";
522
- this.$fault = "client";
523
723
  Object.setPrototypeOf(this, _PreconditionsFailedException.prototype);
524
724
  this.detailedMessage = opts.detailedMessage;
525
725
  this.requestId = opts.requestId;
526
726
  this.code = opts.code;
527
727
  }
528
728
  };
529
- __name(_PreconditionsFailedException, "PreconditionsFailedException");
530
- var PreconditionsFailedException = _PreconditionsFailedException;
531
- var _TimeLimitExceededException = class _TimeLimitExceededException extends NeptunedataServiceException {
729
+ var TimeLimitExceededException = class _TimeLimitExceededException extends NeptunedataServiceException {
730
+ static {
731
+ __name(this, "TimeLimitExceededException");
732
+ }
733
+ name = "TimeLimitExceededException";
734
+ $fault = "server";
735
+ $retryable = {};
736
+ /**
737
+ * <p>A detailed message describing the problem.</p>
738
+ * @public
739
+ */
740
+ detailedMessage;
741
+ /**
742
+ * <p>The ID of the request that could not be processed for this reason.</p>
743
+ * @public
744
+ */
745
+ requestId;
746
+ /**
747
+ * <p>The HTTP status code returned with the exception.</p>
748
+ * @public
749
+ */
750
+ code;
532
751
  /**
533
752
  * @internal
534
753
  */
@@ -538,18 +757,34 @@ var _TimeLimitExceededException = class _TimeLimitExceededException extends Nept
538
757
  $fault: "server",
539
758
  ...opts
540
759
  });
541
- this.name = "TimeLimitExceededException";
542
- this.$fault = "server";
543
- this.$retryable = {};
544
760
  Object.setPrototypeOf(this, _TimeLimitExceededException.prototype);
545
761
  this.detailedMessage = opts.detailedMessage;
546
762
  this.requestId = opts.requestId;
547
763
  this.code = opts.code;
548
764
  }
549
765
  };
550
- __name(_TimeLimitExceededException, "TimeLimitExceededException");
551
- var TimeLimitExceededException = _TimeLimitExceededException;
552
- var _TooManyRequestsException = class _TooManyRequestsException extends NeptunedataServiceException {
766
+ var TooManyRequestsException = class _TooManyRequestsException extends NeptunedataServiceException {
767
+ static {
768
+ __name(this, "TooManyRequestsException");
769
+ }
770
+ name = "TooManyRequestsException";
771
+ $fault = "client";
772
+ $retryable = {};
773
+ /**
774
+ * <p>A detailed message describing the problem.</p>
775
+ * @public
776
+ */
777
+ detailedMessage;
778
+ /**
779
+ * <p>The ID of the request that could not be processed for this reason.</p>
780
+ * @public
781
+ */
782
+ requestId;
783
+ /**
784
+ * <p>The HTTP status code returned with the exception.</p>
785
+ * @public
786
+ */
787
+ code;
553
788
  /**
554
789
  * @internal
555
790
  */
@@ -559,18 +794,33 @@ var _TooManyRequestsException = class _TooManyRequestsException extends Neptuned
559
794
  $fault: "client",
560
795
  ...opts
561
796
  });
562
- this.name = "TooManyRequestsException";
563
- this.$fault = "client";
564
- this.$retryable = {};
565
797
  Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
566
798
  this.detailedMessage = opts.detailedMessage;
567
799
  this.requestId = opts.requestId;
568
800
  this.code = opts.code;
569
801
  }
570
802
  };
571
- __name(_TooManyRequestsException, "TooManyRequestsException");
572
- var TooManyRequestsException = _TooManyRequestsException;
573
- var _UnsupportedOperationException = class _UnsupportedOperationException extends NeptunedataServiceException {
803
+ var UnsupportedOperationException = class _UnsupportedOperationException extends NeptunedataServiceException {
804
+ static {
805
+ __name(this, "UnsupportedOperationException");
806
+ }
807
+ name = "UnsupportedOperationException";
808
+ $fault = "client";
809
+ /**
810
+ * <p>A detailed message describing the problem.</p>
811
+ * @public
812
+ */
813
+ detailedMessage;
814
+ /**
815
+ * <p>The ID of the request in question.</p>
816
+ * @public
817
+ */
818
+ requestId;
819
+ /**
820
+ * <p>The HTTP status code returned with the exception.</p>
821
+ * @public
822
+ */
823
+ code;
574
824
  /**
575
825
  * @internal
576
826
  */
@@ -580,17 +830,34 @@ var _UnsupportedOperationException = class _UnsupportedOperationException extend
580
830
  $fault: "client",
581
831
  ...opts
582
832
  });
583
- this.name = "UnsupportedOperationException";
584
- this.$fault = "client";
585
833
  Object.setPrototypeOf(this, _UnsupportedOperationException.prototype);
586
834
  this.detailedMessage = opts.detailedMessage;
587
835
  this.requestId = opts.requestId;
588
836
  this.code = opts.code;
589
837
  }
590
838
  };
591
- __name(_UnsupportedOperationException, "UnsupportedOperationException");
592
- var UnsupportedOperationException = _UnsupportedOperationException;
593
- var _BulkLoadIdNotFoundException = class _BulkLoadIdNotFoundException extends NeptunedataServiceException {
839
+ var BulkLoadIdNotFoundException = class _BulkLoadIdNotFoundException extends NeptunedataServiceException {
840
+ static {
841
+ __name(this, "BulkLoadIdNotFoundException");
842
+ }
843
+ name = "BulkLoadIdNotFoundException";
844
+ $fault = "client";
845
+ $retryable = {};
846
+ /**
847
+ * <p>A detailed message describing the problem.</p>
848
+ * @public
849
+ */
850
+ detailedMessage;
851
+ /**
852
+ * <p>The bulk-load job ID that could not be found.</p>
853
+ * @public
854
+ */
855
+ requestId;
856
+ /**
857
+ * <p>The HTTP status code returned with the exception.</p>
858
+ * @public
859
+ */
860
+ code;
594
861
  /**
595
862
  * @internal
596
863
  */
@@ -600,18 +867,33 @@ var _BulkLoadIdNotFoundException = class _BulkLoadIdNotFoundException extends Ne
600
867
  $fault: "client",
601
868
  ...opts
602
869
  });
603
- this.name = "BulkLoadIdNotFoundException";
604
- this.$fault = "client";
605
- this.$retryable = {};
606
870
  Object.setPrototypeOf(this, _BulkLoadIdNotFoundException.prototype);
607
871
  this.detailedMessage = opts.detailedMessage;
608
872
  this.requestId = opts.requestId;
609
873
  this.code = opts.code;
610
874
  }
611
875
  };
612
- __name(_BulkLoadIdNotFoundException, "BulkLoadIdNotFoundException");
613
- var BulkLoadIdNotFoundException = _BulkLoadIdNotFoundException;
614
- var _InternalFailureException = class _InternalFailureException extends NeptunedataServiceException {
876
+ var InternalFailureException = class _InternalFailureException extends NeptunedataServiceException {
877
+ static {
878
+ __name(this, "InternalFailureException");
879
+ }
880
+ name = "InternalFailureException";
881
+ $fault = "server";
882
+ /**
883
+ * <p>A detailed message describing the problem.</p>
884
+ * @public
885
+ */
886
+ detailedMessage;
887
+ /**
888
+ * <p>The ID of the request in question.</p>
889
+ * @public
890
+ */
891
+ requestId;
892
+ /**
893
+ * <p>The HTTP status code returned with the exception.</p>
894
+ * @public
895
+ */
896
+ code;
615
897
  /**
616
898
  * @internal
617
899
  */
@@ -621,17 +903,33 @@ var _InternalFailureException = class _InternalFailureException extends Neptuned
621
903
  $fault: "server",
622
904
  ...opts
623
905
  });
624
- this.name = "InternalFailureException";
625
- this.$fault = "server";
626
906
  Object.setPrototypeOf(this, _InternalFailureException.prototype);
627
907
  this.detailedMessage = opts.detailedMessage;
628
908
  this.requestId = opts.requestId;
629
909
  this.code = opts.code;
630
910
  }
631
911
  };
632
- __name(_InternalFailureException, "InternalFailureException");
633
- var InternalFailureException = _InternalFailureException;
634
- var _LoadUrlAccessDeniedException = class _LoadUrlAccessDeniedException extends NeptunedataServiceException {
912
+ var LoadUrlAccessDeniedException = class _LoadUrlAccessDeniedException extends NeptunedataServiceException {
913
+ static {
914
+ __name(this, "LoadUrlAccessDeniedException");
915
+ }
916
+ name = "LoadUrlAccessDeniedException";
917
+ $fault = "client";
918
+ /**
919
+ * <p>A detailed message describing the problem.</p>
920
+ * @public
921
+ */
922
+ detailedMessage;
923
+ /**
924
+ * <p>The ID of the request in question.</p>
925
+ * @public
926
+ */
927
+ requestId;
928
+ /**
929
+ * <p>The HTTP status code returned with the exception.</p>
930
+ * @public
931
+ */
932
+ code;
635
933
  /**
636
934
  * @internal
637
935
  */
@@ -641,17 +939,33 @@ var _LoadUrlAccessDeniedException = class _LoadUrlAccessDeniedException extends
641
939
  $fault: "client",
642
940
  ...opts
643
941
  });
644
- this.name = "LoadUrlAccessDeniedException";
645
- this.$fault = "client";
646
942
  Object.setPrototypeOf(this, _LoadUrlAccessDeniedException.prototype);
647
943
  this.detailedMessage = opts.detailedMessage;
648
944
  this.requestId = opts.requestId;
649
945
  this.code = opts.code;
650
946
  }
651
947
  };
652
- __name(_LoadUrlAccessDeniedException, "LoadUrlAccessDeniedException");
653
- var LoadUrlAccessDeniedException = _LoadUrlAccessDeniedException;
654
- var _MLResourceNotFoundException = class _MLResourceNotFoundException extends NeptunedataServiceException {
948
+ var MLResourceNotFoundException = class _MLResourceNotFoundException extends NeptunedataServiceException {
949
+ static {
950
+ __name(this, "MLResourceNotFoundException");
951
+ }
952
+ name = "MLResourceNotFoundException";
953
+ $fault = "client";
954
+ /**
955
+ * <p>A detailed message describing the problem.</p>
956
+ * @public
957
+ */
958
+ detailedMessage;
959
+ /**
960
+ * <p>The ID of the request in question.</p>
961
+ * @public
962
+ */
963
+ requestId;
964
+ /**
965
+ * <p>The HTTP status code returned with the exception.</p>
966
+ * @public
967
+ */
968
+ code;
655
969
  /**
656
970
  * @internal
657
971
  */
@@ -661,17 +975,33 @@ var _MLResourceNotFoundException = class _MLResourceNotFoundException extends Ne
661
975
  $fault: "client",
662
976
  ...opts
663
977
  });
664
- this.name = "MLResourceNotFoundException";
665
- this.$fault = "client";
666
978
  Object.setPrototypeOf(this, _MLResourceNotFoundException.prototype);
667
979
  this.detailedMessage = opts.detailedMessage;
668
980
  this.requestId = opts.requestId;
669
981
  this.code = opts.code;
670
982
  }
671
983
  };
672
- __name(_MLResourceNotFoundException, "MLResourceNotFoundException");
673
- var MLResourceNotFoundException = _MLResourceNotFoundException;
674
- var _InvalidNumericDataException = class _InvalidNumericDataException extends NeptunedataServiceException {
984
+ var InvalidNumericDataException = class _InvalidNumericDataException extends NeptunedataServiceException {
985
+ static {
986
+ __name(this, "InvalidNumericDataException");
987
+ }
988
+ name = "InvalidNumericDataException";
989
+ $fault = "client";
990
+ /**
991
+ * <p>A detailed message describing the problem.</p>
992
+ * @public
993
+ */
994
+ detailedMessage;
995
+ /**
996
+ * <p>The ID of the request in question.</p>
997
+ * @public
998
+ */
999
+ requestId;
1000
+ /**
1001
+ * <p>The HTTP status code returned with the exception.</p>
1002
+ * @public
1003
+ */
1004
+ code;
675
1005
  /**
676
1006
  * @internal
677
1007
  */
@@ -681,17 +1011,33 @@ var _InvalidNumericDataException = class _InvalidNumericDataException extends Ne
681
1011
  $fault: "client",
682
1012
  ...opts
683
1013
  });
684
- this.name = "InvalidNumericDataException";
685
- this.$fault = "client";
686
1014
  Object.setPrototypeOf(this, _InvalidNumericDataException.prototype);
687
1015
  this.detailedMessage = opts.detailedMessage;
688
1016
  this.requestId = opts.requestId;
689
1017
  this.code = opts.code;
690
1018
  }
691
1019
  };
692
- __name(_InvalidNumericDataException, "InvalidNumericDataException");
693
- var InvalidNumericDataException = _InvalidNumericDataException;
694
- var _ReadOnlyViolationException = class _ReadOnlyViolationException extends NeptunedataServiceException {
1020
+ var ReadOnlyViolationException = class _ReadOnlyViolationException extends NeptunedataServiceException {
1021
+ static {
1022
+ __name(this, "ReadOnlyViolationException");
1023
+ }
1024
+ name = "ReadOnlyViolationException";
1025
+ $fault = "client";
1026
+ /**
1027
+ * <p>A detailed message describing the problem.</p>
1028
+ * @public
1029
+ */
1030
+ detailedMessage;
1031
+ /**
1032
+ * <p>The ID of the request in which the parameter is missing.</p>
1033
+ * @public
1034
+ */
1035
+ requestId;
1036
+ /**
1037
+ * <p>The HTTP status code returned with the exception.</p>
1038
+ * @public
1039
+ */
1040
+ code;
695
1041
  /**
696
1042
  * @internal
697
1043
  */
@@ -701,17 +1047,33 @@ var _ReadOnlyViolationException = class _ReadOnlyViolationException extends Nept
701
1047
  $fault: "client",
702
1048
  ...opts
703
1049
  });
704
- this.name = "ReadOnlyViolationException";
705
- this.$fault = "client";
706
1050
  Object.setPrototypeOf(this, _ReadOnlyViolationException.prototype);
707
1051
  this.detailedMessage = opts.detailedMessage;
708
1052
  this.requestId = opts.requestId;
709
1053
  this.code = opts.code;
710
1054
  }
711
1055
  };
712
- __name(_ReadOnlyViolationException, "ReadOnlyViolationException");
713
- var ReadOnlyViolationException = _ReadOnlyViolationException;
714
- var _StatisticsNotAvailableException = class _StatisticsNotAvailableException extends NeptunedataServiceException {
1056
+ var StatisticsNotAvailableException = class _StatisticsNotAvailableException extends NeptunedataServiceException {
1057
+ static {
1058
+ __name(this, "StatisticsNotAvailableException");
1059
+ }
1060
+ name = "StatisticsNotAvailableException";
1061
+ $fault = "client";
1062
+ /**
1063
+ * <p>A detailed message describing the problem.</p>
1064
+ * @public
1065
+ */
1066
+ detailedMessage;
1067
+ /**
1068
+ * <p>The ID of the request in question.</p>
1069
+ * @public
1070
+ */
1071
+ requestId;
1072
+ /**
1073
+ * <p>The HTTP status code returned with the exception.</p>
1074
+ * @public
1075
+ */
1076
+ code;
715
1077
  /**
716
1078
  * @internal
717
1079
  */
@@ -721,17 +1083,33 @@ var _StatisticsNotAvailableException = class _StatisticsNotAvailableException ex
721
1083
  $fault: "client",
722
1084
  ...opts
723
1085
  });
724
- this.name = "StatisticsNotAvailableException";
725
- this.$fault = "client";
726
1086
  Object.setPrototypeOf(this, _StatisticsNotAvailableException.prototype);
727
1087
  this.detailedMessage = opts.detailedMessage;
728
1088
  this.requestId = opts.requestId;
729
1089
  this.code = opts.code;
730
1090
  }
731
1091
  };
732
- __name(_StatisticsNotAvailableException, "StatisticsNotAvailableException");
733
- var StatisticsNotAvailableException = _StatisticsNotAvailableException;
734
- var _MethodNotAllowedException = class _MethodNotAllowedException extends NeptunedataServiceException {
1092
+ var MethodNotAllowedException = class _MethodNotAllowedException extends NeptunedataServiceException {
1093
+ static {
1094
+ __name(this, "MethodNotAllowedException");
1095
+ }
1096
+ name = "MethodNotAllowedException";
1097
+ $fault = "client";
1098
+ /**
1099
+ * <p>A detailed message describing the problem.</p>
1100
+ * @public
1101
+ */
1102
+ detailedMessage;
1103
+ /**
1104
+ * <p>The ID of the request in question.</p>
1105
+ * @public
1106
+ */
1107
+ requestId;
1108
+ /**
1109
+ * <p>The HTTP status code returned with the exception.</p>
1110
+ * @public
1111
+ */
1112
+ code;
735
1113
  /**
736
1114
  * @internal
737
1115
  */
@@ -741,17 +1119,33 @@ var _MethodNotAllowedException = class _MethodNotAllowedException extends Neptun
741
1119
  $fault: "client",
742
1120
  ...opts
743
1121
  });
744
- this.name = "MethodNotAllowedException";
745
- this.$fault = "client";
746
1122
  Object.setPrototypeOf(this, _MethodNotAllowedException.prototype);
747
1123
  this.detailedMessage = opts.detailedMessage;
748
1124
  this.requestId = opts.requestId;
749
1125
  this.code = opts.code;
750
1126
  }
751
1127
  };
752
- __name(_MethodNotAllowedException, "MethodNotAllowedException");
753
- var MethodNotAllowedException = _MethodNotAllowedException;
754
- var _ServerShutdownException = class _ServerShutdownException extends NeptunedataServiceException {
1128
+ var ServerShutdownException = class _ServerShutdownException extends NeptunedataServiceException {
1129
+ static {
1130
+ __name(this, "ServerShutdownException");
1131
+ }
1132
+ name = "ServerShutdownException";
1133
+ $fault = "server";
1134
+ /**
1135
+ * <p>A detailed message describing the problem.</p>
1136
+ * @public
1137
+ */
1138
+ detailedMessage;
1139
+ /**
1140
+ * <p>The ID of the request in question.</p>
1141
+ * @public
1142
+ */
1143
+ requestId;
1144
+ /**
1145
+ * <p>The HTTP status code returned with the exception.</p>
1146
+ * @public
1147
+ */
1148
+ code;
755
1149
  /**
756
1150
  * @internal
757
1151
  */
@@ -761,17 +1155,33 @@ var _ServerShutdownException = class _ServerShutdownException extends Neptunedat
761
1155
  $fault: "server",
762
1156
  ...opts
763
1157
  });
764
- this.name = "ServerShutdownException";
765
- this.$fault = "server";
766
1158
  Object.setPrototypeOf(this, _ServerShutdownException.prototype);
767
1159
  this.detailedMessage = opts.detailedMessage;
768
1160
  this.requestId = opts.requestId;
769
1161
  this.code = opts.code;
770
1162
  }
771
1163
  };
772
- __name(_ServerShutdownException, "ServerShutdownException");
773
- var ServerShutdownException = _ServerShutdownException;
774
- var _CancelledByUserException = class _CancelledByUserException extends NeptunedataServiceException {
1164
+ var CancelledByUserException = class _CancelledByUserException extends NeptunedataServiceException {
1165
+ static {
1166
+ __name(this, "CancelledByUserException");
1167
+ }
1168
+ name = "CancelledByUserException";
1169
+ $fault = "server";
1170
+ /**
1171
+ * <p>A detailed message describing the problem.</p>
1172
+ * @public
1173
+ */
1174
+ detailedMessage;
1175
+ /**
1176
+ * <p>The ID of the request in question.</p>
1177
+ * @public
1178
+ */
1179
+ requestId;
1180
+ /**
1181
+ * <p>The HTTP status code returned with the exception.</p>
1182
+ * @public
1183
+ */
1184
+ code;
775
1185
  /**
776
1186
  * @internal
777
1187
  */
@@ -781,17 +1191,33 @@ var _CancelledByUserException = class _CancelledByUserException extends Neptuned
781
1191
  $fault: "server",
782
1192
  ...opts
783
1193
  });
784
- this.name = "CancelledByUserException";
785
- this.$fault = "server";
786
1194
  Object.setPrototypeOf(this, _CancelledByUserException.prototype);
787
1195
  this.detailedMessage = opts.detailedMessage;
788
1196
  this.requestId = opts.requestId;
789
1197
  this.code = opts.code;
790
1198
  }
791
1199
  };
792
- __name(_CancelledByUserException, "CancelledByUserException");
793
- var CancelledByUserException = _CancelledByUserException;
794
- var _MalformedQueryException = class _MalformedQueryException extends NeptunedataServiceException {
1200
+ var MalformedQueryException = class _MalformedQueryException extends NeptunedataServiceException {
1201
+ static {
1202
+ __name(this, "MalformedQueryException");
1203
+ }
1204
+ name = "MalformedQueryException";
1205
+ $fault = "client";
1206
+ /**
1207
+ * <p>A detailed message describing the problem.</p>
1208
+ * @public
1209
+ */
1210
+ detailedMessage;
1211
+ /**
1212
+ * <p>The ID of the malformed query request.</p>
1213
+ * @public
1214
+ */
1215
+ requestId;
1216
+ /**
1217
+ * <p>The HTTP status code returned with the exception.</p>
1218
+ * @public
1219
+ */
1220
+ code;
795
1221
  /**
796
1222
  * @internal
797
1223
  */
@@ -801,17 +1227,34 @@ var _MalformedQueryException = class _MalformedQueryException extends Neptunedat
801
1227
  $fault: "client",
802
1228
  ...opts
803
1229
  });
804
- this.name = "MalformedQueryException";
805
- this.$fault = "client";
806
1230
  Object.setPrototypeOf(this, _MalformedQueryException.prototype);
807
1231
  this.detailedMessage = opts.detailedMessage;
808
1232
  this.requestId = opts.requestId;
809
1233
  this.code = opts.code;
810
1234
  }
811
1235
  };
812
- __name(_MalformedQueryException, "MalformedQueryException");
813
- var MalformedQueryException = _MalformedQueryException;
814
- var _MemoryLimitExceededException = class _MemoryLimitExceededException extends NeptunedataServiceException {
1236
+ var MemoryLimitExceededException = class _MemoryLimitExceededException extends NeptunedataServiceException {
1237
+ static {
1238
+ __name(this, "MemoryLimitExceededException");
1239
+ }
1240
+ name = "MemoryLimitExceededException";
1241
+ $fault = "server";
1242
+ $retryable = {};
1243
+ /**
1244
+ * <p>A detailed message describing the problem.</p>
1245
+ * @public
1246
+ */
1247
+ detailedMessage;
1248
+ /**
1249
+ * <p>The ID of the request that failed.</p>
1250
+ * @public
1251
+ */
1252
+ requestId;
1253
+ /**
1254
+ * <p>The HTTP status code returned with the exception.</p>
1255
+ * @public
1256
+ */
1257
+ code;
815
1258
  /**
816
1259
  * @internal
817
1260
  */
@@ -821,18 +1264,34 @@ var _MemoryLimitExceededException = class _MemoryLimitExceededException extends
821
1264
  $fault: "server",
822
1265
  ...opts
823
1266
  });
824
- this.name = "MemoryLimitExceededException";
825
- this.$fault = "server";
826
- this.$retryable = {};
827
1267
  Object.setPrototypeOf(this, _MemoryLimitExceededException.prototype);
828
1268
  this.detailedMessage = opts.detailedMessage;
829
1269
  this.requestId = opts.requestId;
830
1270
  this.code = opts.code;
831
1271
  }
832
1272
  };
833
- __name(_MemoryLimitExceededException, "MemoryLimitExceededException");
834
- var MemoryLimitExceededException = _MemoryLimitExceededException;
835
- var _QueryLimitExceededException = class _QueryLimitExceededException extends NeptunedataServiceException {
1273
+ var QueryLimitExceededException = class _QueryLimitExceededException extends NeptunedataServiceException {
1274
+ static {
1275
+ __name(this, "QueryLimitExceededException");
1276
+ }
1277
+ name = "QueryLimitExceededException";
1278
+ $fault = "server";
1279
+ $retryable = {};
1280
+ /**
1281
+ * <p>A detailed message describing the problem.</p>
1282
+ * @public
1283
+ */
1284
+ detailedMessage;
1285
+ /**
1286
+ * <p>The ID of the request which exceeded the limit.</p>
1287
+ * @public
1288
+ */
1289
+ requestId;
1290
+ /**
1291
+ * <p>The HTTP status code returned with the exception.</p>
1292
+ * @public
1293
+ */
1294
+ code;
836
1295
  /**
837
1296
  * @internal
838
1297
  */
@@ -842,18 +1301,33 @@ var _QueryLimitExceededException = class _QueryLimitExceededException extends Ne
842
1301
  $fault: "server",
843
1302
  ...opts
844
1303
  });
845
- this.name = "QueryLimitExceededException";
846
- this.$fault = "server";
847
- this.$retryable = {};
848
1304
  Object.setPrototypeOf(this, _QueryLimitExceededException.prototype);
849
1305
  this.detailedMessage = opts.detailedMessage;
850
1306
  this.requestId = opts.requestId;
851
1307
  this.code = opts.code;
852
1308
  }
853
1309
  };
854
- __name(_QueryLimitExceededException, "QueryLimitExceededException");
855
- var QueryLimitExceededException = _QueryLimitExceededException;
856
- var _QueryLimitException = class _QueryLimitException extends NeptunedataServiceException {
1310
+ var QueryLimitException = class _QueryLimitException extends NeptunedataServiceException {
1311
+ static {
1312
+ __name(this, "QueryLimitException");
1313
+ }
1314
+ name = "QueryLimitException";
1315
+ $fault = "client";
1316
+ /**
1317
+ * <p>A detailed message describing the problem.</p>
1318
+ * @public
1319
+ */
1320
+ detailedMessage;
1321
+ /**
1322
+ * <p>The ID of the request that exceeded the limit.</p>
1323
+ * @public
1324
+ */
1325
+ requestId;
1326
+ /**
1327
+ * <p>The HTTP status code returned with the exception.</p>
1328
+ * @public
1329
+ */
1330
+ code;
857
1331
  /**
858
1332
  * @internal
859
1333
  */
@@ -863,17 +1337,33 @@ var _QueryLimitException = class _QueryLimitException extends NeptunedataService
863
1337
  $fault: "client",
864
1338
  ...opts
865
1339
  });
866
- this.name = "QueryLimitException";
867
- this.$fault = "client";
868
1340
  Object.setPrototypeOf(this, _QueryLimitException.prototype);
869
1341
  this.detailedMessage = opts.detailedMessage;
870
1342
  this.requestId = opts.requestId;
871
1343
  this.code = opts.code;
872
1344
  }
873
1345
  };
874
- __name(_QueryLimitException, "QueryLimitException");
875
- var QueryLimitException = _QueryLimitException;
876
- var _QueryTooLargeException = class _QueryTooLargeException extends NeptunedataServiceException {
1346
+ var QueryTooLargeException = class _QueryTooLargeException extends NeptunedataServiceException {
1347
+ static {
1348
+ __name(this, "QueryTooLargeException");
1349
+ }
1350
+ name = "QueryTooLargeException";
1351
+ $fault = "client";
1352
+ /**
1353
+ * <p>A detailed message describing the problem.</p>
1354
+ * @public
1355
+ */
1356
+ detailedMessage;
1357
+ /**
1358
+ * <p>The ID of the request that is too large.</p>
1359
+ * @public
1360
+ */
1361
+ requestId;
1362
+ /**
1363
+ * <p>The HTTP status code returned with the exception.</p>
1364
+ * @public
1365
+ */
1366
+ code;
877
1367
  /**
878
1368
  * @internal
879
1369
  */
@@ -883,22 +1373,38 @@ var _QueryTooLargeException = class _QueryTooLargeException extends NeptunedataS
883
1373
  $fault: "client",
884
1374
  ...opts
885
1375
  });
886
- this.name = "QueryTooLargeException";
887
- this.$fault = "client";
888
1376
  Object.setPrototypeOf(this, _QueryTooLargeException.prototype);
889
1377
  this.detailedMessage = opts.detailedMessage;
890
1378
  this.requestId = opts.requestId;
891
1379
  this.code = opts.code;
892
1380
  }
893
1381
  };
894
- __name(_QueryTooLargeException, "QueryTooLargeException");
895
- var QueryTooLargeException = _QueryTooLargeException;
896
1382
  var OpenCypherExplainMode = {
897
1383
  DETAILS: "details",
898
1384
  DYNAMIC: "dynamic",
899
1385
  STATIC: "static"
900
1386
  };
901
- var _ExpiredStreamException = class _ExpiredStreamException extends NeptunedataServiceException {
1387
+ var ExpiredStreamException = class _ExpiredStreamException extends NeptunedataServiceException {
1388
+ static {
1389
+ __name(this, "ExpiredStreamException");
1390
+ }
1391
+ name = "ExpiredStreamException";
1392
+ $fault = "client";
1393
+ /**
1394
+ * <p>A detailed message describing the problem.</p>
1395
+ * @public
1396
+ */
1397
+ detailedMessage;
1398
+ /**
1399
+ * <p>The ID of the request in question.</p>
1400
+ * @public
1401
+ */
1402
+ requestId;
1403
+ /**
1404
+ * <p>The HTTP status code returned with the exception.</p>
1405
+ * @public
1406
+ */
1407
+ code;
902
1408
  /**
903
1409
  * @internal
904
1410
  */
@@ -908,16 +1414,12 @@ var _ExpiredStreamException = class _ExpiredStreamException extends NeptunedataS
908
1414
  $fault: "client",
909
1415
  ...opts
910
1416
  });
911
- this.name = "ExpiredStreamException";
912
- this.$fault = "client";
913
1417
  Object.setPrototypeOf(this, _ExpiredStreamException.prototype);
914
1418
  this.detailedMessage = opts.detailedMessage;
915
1419
  this.requestId = opts.requestId;
916
1420
  this.code = opts.code;
917
1421
  }
918
1422
  };
919
- __name(_ExpiredStreamException, "ExpiredStreamException");
920
- var ExpiredStreamException = _ExpiredStreamException;
921
1423
  var Encoding = {
922
1424
  GZIP: "gzip"
923
1425
  };
@@ -927,7 +1429,27 @@ var IteratorType = {
927
1429
  LATEST: "LATEST",
928
1430
  TRIM_HORIZON: "TRIM_HORIZON"
929
1431
  };
930
- var _StreamRecordsNotFoundException = class _StreamRecordsNotFoundException extends NeptunedataServiceException {
1432
+ var StreamRecordsNotFoundException = class _StreamRecordsNotFoundException extends NeptunedataServiceException {
1433
+ static {
1434
+ __name(this, "StreamRecordsNotFoundException");
1435
+ }
1436
+ name = "StreamRecordsNotFoundException";
1437
+ $fault = "client";
1438
+ /**
1439
+ * <p>A detailed message describing the problem.</p>
1440
+ * @public
1441
+ */
1442
+ detailedMessage;
1443
+ /**
1444
+ * <p>The ID of the request in question.</p>
1445
+ * @public
1446
+ */
1447
+ requestId;
1448
+ /**
1449
+ * <p>The HTTP status code returned with the exception.</p>
1450
+ * @public
1451
+ */
1452
+ code;
931
1453
  /**
932
1454
  * @internal
933
1455
  */
@@ -937,17 +1459,34 @@ var _StreamRecordsNotFoundException = class _StreamRecordsNotFoundException exte
937
1459
  $fault: "client",
938
1460
  ...opts
939
1461
  });
940
- this.name = "StreamRecordsNotFoundException";
941
- this.$fault = "client";
942
1462
  Object.setPrototypeOf(this, _StreamRecordsNotFoundException.prototype);
943
1463
  this.detailedMessage = opts.detailedMessage;
944
1464
  this.requestId = opts.requestId;
945
1465
  this.code = opts.code;
946
1466
  }
947
1467
  };
948
- __name(_StreamRecordsNotFoundException, "StreamRecordsNotFoundException");
949
- var StreamRecordsNotFoundException = _StreamRecordsNotFoundException;
950
- var _ThrottlingException = class _ThrottlingException extends NeptunedataServiceException {
1468
+ var ThrottlingException = class _ThrottlingException extends NeptunedataServiceException {
1469
+ static {
1470
+ __name(this, "ThrottlingException");
1471
+ }
1472
+ name = "ThrottlingException";
1473
+ $fault = "server";
1474
+ $retryable = {};
1475
+ /**
1476
+ * <p>A detailed message describing the problem.</p>
1477
+ * @public
1478
+ */
1479
+ detailedMessage;
1480
+ /**
1481
+ * <p>The ID of the request that could not be processed for this reason.</p>
1482
+ * @public
1483
+ */
1484
+ requestId;
1485
+ /**
1486
+ * <p>The HTTP status code returned with the exception.</p>
1487
+ * @public
1488
+ */
1489
+ code;
951
1490
  /**
952
1491
  * @internal
953
1492
  */
@@ -957,17 +1496,12 @@ var _ThrottlingException = class _ThrottlingException extends NeptunedataService
957
1496
  $fault: "server",
958
1497
  ...opts
959
1498
  });
960
- this.name = "ThrottlingException";
961
- this.$fault = "server";
962
- this.$retryable = {};
963
1499
  Object.setPrototypeOf(this, _ThrottlingException.prototype);
964
1500
  this.detailedMessage = opts.detailedMessage;
965
1501
  this.requestId = opts.requestId;
966
1502
  this.code = opts.code;
967
1503
  }
968
1504
  };
969
- __name(_ThrottlingException, "ThrottlingException");
970
- var ThrottlingException = _ThrottlingException;
971
1505
  var GraphSummaryType = {
972
1506
  BASIC: "basic",
973
1507
  DETAILED: "detailed"
@@ -977,7 +1511,28 @@ var StatisticsAutoGenerationMode = {
977
1511
  ENABLE_AUTOCOMPUTE: "enableAutoCompute",
978
1512
  REFRESH: "refresh"
979
1513
  };
980
- var _S3Exception = class _S3Exception extends NeptunedataServiceException {
1514
+ var S3Exception = class _S3Exception extends NeptunedataServiceException {
1515
+ static {
1516
+ __name(this, "S3Exception");
1517
+ }
1518
+ name = "S3Exception";
1519
+ $fault = "client";
1520
+ $retryable = {};
1521
+ /**
1522
+ * <p>A detailed message describing the problem.</p>
1523
+ * @public
1524
+ */
1525
+ detailedMessage;
1526
+ /**
1527
+ * <p>The ID of the request in question.</p>
1528
+ * @public
1529
+ */
1530
+ requestId;
1531
+ /**
1532
+ * <p>The HTTP status code returned with the exception.</p>
1533
+ * @public
1534
+ */
1535
+ code;
981
1536
  /**
982
1537
  * @internal
983
1538
  */
@@ -987,17 +1542,12 @@ var _S3Exception = class _S3Exception extends NeptunedataServiceException {
987
1542
  $fault: "client",
988
1543
  ...opts
989
1544
  });
990
- this.name = "S3Exception";
991
- this.$fault = "client";
992
- this.$retryable = {};
993
1545
  Object.setPrototypeOf(this, _S3Exception.prototype);
994
1546
  this.detailedMessage = opts.detailedMessage;
995
1547
  this.requestId = opts.requestId;
996
1548
  this.code = opts.code;
997
1549
  }
998
1550
  };
999
- __name(_S3Exception, "S3Exception");
1000
- var S3Exception = _S3Exception;
1001
1551
  var Format = {
1002
1552
  CSV: "csv",
1003
1553
  NQUADS: "nquads",
@@ -3085,603 +3635,646 @@ var _s = "silent";
3085
3635
  var _se = "serializer";
3086
3636
 
3087
3637
  // src/commands/CancelGremlinQueryCommand.ts
3088
- var _CancelGremlinQueryCommand = class _CancelGremlinQueryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3638
+ var CancelGremlinQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3089
3639
  return [
3090
3640
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3091
3641
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3092
3642
  ];
3093
3643
  }).s("AmazonNeptuneDataplane", "CancelGremlinQuery", {}).n("NeptunedataClient", "CancelGremlinQueryCommand").f(void 0, void 0).ser(se_CancelGremlinQueryCommand).de(de_CancelGremlinQueryCommand).build() {
3644
+ static {
3645
+ __name(this, "CancelGremlinQueryCommand");
3646
+ }
3094
3647
  };
3095
- __name(_CancelGremlinQueryCommand, "CancelGremlinQueryCommand");
3096
- var CancelGremlinQueryCommand = _CancelGremlinQueryCommand;
3097
3648
 
3098
3649
  // src/commands/CancelLoaderJobCommand.ts
3099
3650
 
3100
3651
 
3101
3652
 
3102
- var _CancelLoaderJobCommand = class _CancelLoaderJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3653
+ var CancelLoaderJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3103
3654
  return [
3104
3655
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3105
3656
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3106
3657
  ];
3107
3658
  }).s("AmazonNeptuneDataplane", "CancelLoaderJob", {}).n("NeptunedataClient", "CancelLoaderJobCommand").f(void 0, void 0).ser(se_CancelLoaderJobCommand).de(de_CancelLoaderJobCommand).build() {
3659
+ static {
3660
+ __name(this, "CancelLoaderJobCommand");
3661
+ }
3108
3662
  };
3109
- __name(_CancelLoaderJobCommand, "CancelLoaderJobCommand");
3110
- var CancelLoaderJobCommand = _CancelLoaderJobCommand;
3111
3663
 
3112
3664
  // src/commands/CancelMLDataProcessingJobCommand.ts
3113
3665
 
3114
3666
 
3115
3667
 
3116
- var _CancelMLDataProcessingJobCommand = class _CancelMLDataProcessingJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3668
+ var CancelMLDataProcessingJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3117
3669
  return [
3118
3670
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3119
3671
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3120
3672
  ];
3121
3673
  }).s("AmazonNeptuneDataplane", "CancelMLDataProcessingJob", {}).n("NeptunedataClient", "CancelMLDataProcessingJobCommand").f(void 0, void 0).ser(se_CancelMLDataProcessingJobCommand).de(de_CancelMLDataProcessingJobCommand).build() {
3674
+ static {
3675
+ __name(this, "CancelMLDataProcessingJobCommand");
3676
+ }
3122
3677
  };
3123
- __name(_CancelMLDataProcessingJobCommand, "CancelMLDataProcessingJobCommand");
3124
- var CancelMLDataProcessingJobCommand = _CancelMLDataProcessingJobCommand;
3125
3678
 
3126
3679
  // src/commands/CancelMLModelTrainingJobCommand.ts
3127
3680
 
3128
3681
 
3129
3682
 
3130
- var _CancelMLModelTrainingJobCommand = class _CancelMLModelTrainingJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3683
+ var CancelMLModelTrainingJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3131
3684
  return [
3132
3685
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3133
3686
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3134
3687
  ];
3135
3688
  }).s("AmazonNeptuneDataplane", "CancelMLModelTrainingJob", {}).n("NeptunedataClient", "CancelMLModelTrainingJobCommand").f(void 0, void 0).ser(se_CancelMLModelTrainingJobCommand).de(de_CancelMLModelTrainingJobCommand).build() {
3689
+ static {
3690
+ __name(this, "CancelMLModelTrainingJobCommand");
3691
+ }
3136
3692
  };
3137
- __name(_CancelMLModelTrainingJobCommand, "CancelMLModelTrainingJobCommand");
3138
- var CancelMLModelTrainingJobCommand = _CancelMLModelTrainingJobCommand;
3139
3693
 
3140
3694
  // src/commands/CancelMLModelTransformJobCommand.ts
3141
3695
 
3142
3696
 
3143
3697
 
3144
- var _CancelMLModelTransformJobCommand = class _CancelMLModelTransformJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3698
+ var CancelMLModelTransformJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3145
3699
  return [
3146
3700
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3147
3701
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3148
3702
  ];
3149
3703
  }).s("AmazonNeptuneDataplane", "CancelMLModelTransformJob", {}).n("NeptunedataClient", "CancelMLModelTransformJobCommand").f(void 0, void 0).ser(se_CancelMLModelTransformJobCommand).de(de_CancelMLModelTransformJobCommand).build() {
3704
+ static {
3705
+ __name(this, "CancelMLModelTransformJobCommand");
3706
+ }
3150
3707
  };
3151
- __name(_CancelMLModelTransformJobCommand, "CancelMLModelTransformJobCommand");
3152
- var CancelMLModelTransformJobCommand = _CancelMLModelTransformJobCommand;
3153
3708
 
3154
3709
  // src/commands/CancelOpenCypherQueryCommand.ts
3155
3710
 
3156
3711
 
3157
3712
 
3158
- var _CancelOpenCypherQueryCommand = class _CancelOpenCypherQueryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3713
+ var CancelOpenCypherQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3159
3714
  return [
3160
3715
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3161
3716
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3162
3717
  ];
3163
3718
  }).s("AmazonNeptuneDataplane", "CancelOpenCypherQuery", {}).n("NeptunedataClient", "CancelOpenCypherQueryCommand").f(void 0, void 0).ser(se_CancelOpenCypherQueryCommand).de(de_CancelOpenCypherQueryCommand).build() {
3719
+ static {
3720
+ __name(this, "CancelOpenCypherQueryCommand");
3721
+ }
3164
3722
  };
3165
- __name(_CancelOpenCypherQueryCommand, "CancelOpenCypherQueryCommand");
3166
- var CancelOpenCypherQueryCommand = _CancelOpenCypherQueryCommand;
3167
3723
 
3168
3724
  // src/commands/CreateMLEndpointCommand.ts
3169
3725
 
3170
3726
 
3171
3727
 
3172
- var _CreateMLEndpointCommand = class _CreateMLEndpointCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3728
+ var CreateMLEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3173
3729
  return [
3174
3730
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3175
3731
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3176
3732
  ];
3177
3733
  }).s("AmazonNeptuneDataplane", "CreateMLEndpoint", {}).n("NeptunedataClient", "CreateMLEndpointCommand").f(void 0, void 0).ser(se_CreateMLEndpointCommand).de(de_CreateMLEndpointCommand).build() {
3734
+ static {
3735
+ __name(this, "CreateMLEndpointCommand");
3736
+ }
3178
3737
  };
3179
- __name(_CreateMLEndpointCommand, "CreateMLEndpointCommand");
3180
- var CreateMLEndpointCommand = _CreateMLEndpointCommand;
3181
3738
 
3182
3739
  // src/commands/DeleteMLEndpointCommand.ts
3183
3740
 
3184
3741
 
3185
3742
 
3186
- var _DeleteMLEndpointCommand = class _DeleteMLEndpointCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3743
+ var DeleteMLEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3187
3744
  return [
3188
3745
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3189
3746
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3190
3747
  ];
3191
3748
  }).s("AmazonNeptuneDataplane", "DeleteMLEndpoint", {}).n("NeptunedataClient", "DeleteMLEndpointCommand").f(void 0, void 0).ser(se_DeleteMLEndpointCommand).de(de_DeleteMLEndpointCommand).build() {
3749
+ static {
3750
+ __name(this, "DeleteMLEndpointCommand");
3751
+ }
3192
3752
  };
3193
- __name(_DeleteMLEndpointCommand, "DeleteMLEndpointCommand");
3194
- var DeleteMLEndpointCommand = _DeleteMLEndpointCommand;
3195
3753
 
3196
3754
  // src/commands/DeletePropertygraphStatisticsCommand.ts
3197
3755
 
3198
3756
 
3199
3757
 
3200
- var _DeletePropertygraphStatisticsCommand = class _DeletePropertygraphStatisticsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3758
+ var DeletePropertygraphStatisticsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3201
3759
  return [
3202
3760
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3203
3761
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3204
3762
  ];
3205
3763
  }).s("AmazonNeptuneDataplane", "DeletePropertygraphStatistics", {}).n("NeptunedataClient", "DeletePropertygraphStatisticsCommand").f(void 0, void 0).ser(se_DeletePropertygraphStatisticsCommand).de(de_DeletePropertygraphStatisticsCommand).build() {
3764
+ static {
3765
+ __name(this, "DeletePropertygraphStatisticsCommand");
3766
+ }
3206
3767
  };
3207
- __name(_DeletePropertygraphStatisticsCommand, "DeletePropertygraphStatisticsCommand");
3208
- var DeletePropertygraphStatisticsCommand = _DeletePropertygraphStatisticsCommand;
3209
3768
 
3210
3769
  // src/commands/DeleteSparqlStatisticsCommand.ts
3211
3770
 
3212
3771
 
3213
3772
 
3214
- var _DeleteSparqlStatisticsCommand = class _DeleteSparqlStatisticsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3773
+ var DeleteSparqlStatisticsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3215
3774
  return [
3216
3775
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3217
3776
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3218
3777
  ];
3219
3778
  }).s("AmazonNeptuneDataplane", "DeleteSparqlStatistics", {}).n("NeptunedataClient", "DeleteSparqlStatisticsCommand").f(void 0, void 0).ser(se_DeleteSparqlStatisticsCommand).de(de_DeleteSparqlStatisticsCommand).build() {
3779
+ static {
3780
+ __name(this, "DeleteSparqlStatisticsCommand");
3781
+ }
3220
3782
  };
3221
- __name(_DeleteSparqlStatisticsCommand, "DeleteSparqlStatisticsCommand");
3222
- var DeleteSparqlStatisticsCommand = _DeleteSparqlStatisticsCommand;
3223
3783
 
3224
3784
  // src/commands/ExecuteFastResetCommand.ts
3225
3785
 
3226
3786
 
3227
3787
 
3228
- var _ExecuteFastResetCommand = class _ExecuteFastResetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3788
+ var ExecuteFastResetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3229
3789
  return [
3230
3790
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3231
3791
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3232
3792
  ];
3233
3793
  }).s("AmazonNeptuneDataplane", "ExecuteFastReset", {}).n("NeptunedataClient", "ExecuteFastResetCommand").f(void 0, void 0).ser(se_ExecuteFastResetCommand).de(de_ExecuteFastResetCommand).build() {
3794
+ static {
3795
+ __name(this, "ExecuteFastResetCommand");
3796
+ }
3234
3797
  };
3235
- __name(_ExecuteFastResetCommand, "ExecuteFastResetCommand");
3236
- var ExecuteFastResetCommand = _ExecuteFastResetCommand;
3237
3798
 
3238
3799
  // src/commands/ExecuteGremlinExplainQueryCommand.ts
3239
3800
 
3240
3801
 
3241
3802
 
3242
- var _ExecuteGremlinExplainQueryCommand = class _ExecuteGremlinExplainQueryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3803
+ var ExecuteGremlinExplainQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3243
3804
  return [
3244
3805
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3245
3806
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3246
3807
  ];
3247
3808
  }).s("AmazonNeptuneDataplane", "ExecuteGremlinExplainQuery", {}).n("NeptunedataClient", "ExecuteGremlinExplainQueryCommand").f(void 0, void 0).ser(se_ExecuteGremlinExplainQueryCommand).de(de_ExecuteGremlinExplainQueryCommand).build() {
3809
+ static {
3810
+ __name(this, "ExecuteGremlinExplainQueryCommand");
3811
+ }
3248
3812
  };
3249
- __name(_ExecuteGremlinExplainQueryCommand, "ExecuteGremlinExplainQueryCommand");
3250
- var ExecuteGremlinExplainQueryCommand = _ExecuteGremlinExplainQueryCommand;
3251
3813
 
3252
3814
  // src/commands/ExecuteGremlinProfileQueryCommand.ts
3253
3815
 
3254
3816
 
3255
3817
 
3256
- var _ExecuteGremlinProfileQueryCommand = class _ExecuteGremlinProfileQueryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3818
+ var ExecuteGremlinProfileQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3257
3819
  return [
3258
3820
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3259
3821
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3260
3822
  ];
3261
3823
  }).s("AmazonNeptuneDataplane", "ExecuteGremlinProfileQuery", {}).n("NeptunedataClient", "ExecuteGremlinProfileQueryCommand").f(void 0, void 0).ser(se_ExecuteGremlinProfileQueryCommand).de(de_ExecuteGremlinProfileQueryCommand).build() {
3824
+ static {
3825
+ __name(this, "ExecuteGremlinProfileQueryCommand");
3826
+ }
3262
3827
  };
3263
- __name(_ExecuteGremlinProfileQueryCommand, "ExecuteGremlinProfileQueryCommand");
3264
- var ExecuteGremlinProfileQueryCommand = _ExecuteGremlinProfileQueryCommand;
3265
3828
 
3266
3829
  // src/commands/ExecuteGremlinQueryCommand.ts
3267
3830
 
3268
3831
 
3269
3832
 
3270
- var _ExecuteGremlinQueryCommand = class _ExecuteGremlinQueryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3833
+ var ExecuteGremlinQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3271
3834
  return [
3272
3835
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3273
3836
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3274
3837
  ];
3275
3838
  }).s("AmazonNeptuneDataplane", "ExecuteGremlinQuery", {}).n("NeptunedataClient", "ExecuteGremlinQueryCommand").f(void 0, void 0).ser(se_ExecuteGremlinQueryCommand).de(de_ExecuteGremlinQueryCommand).build() {
3839
+ static {
3840
+ __name(this, "ExecuteGremlinQueryCommand");
3841
+ }
3276
3842
  };
3277
- __name(_ExecuteGremlinQueryCommand, "ExecuteGremlinQueryCommand");
3278
- var ExecuteGremlinQueryCommand = _ExecuteGremlinQueryCommand;
3279
3843
 
3280
3844
  // src/commands/ExecuteOpenCypherExplainQueryCommand.ts
3281
3845
 
3282
3846
 
3283
3847
 
3284
- var _ExecuteOpenCypherExplainQueryCommand = class _ExecuteOpenCypherExplainQueryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3848
+ var ExecuteOpenCypherExplainQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3285
3849
  return [
3286
3850
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3287
3851
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3288
3852
  ];
3289
3853
  }).s("AmazonNeptuneDataplane", "ExecuteOpenCypherExplainQuery", {}).n("NeptunedataClient", "ExecuteOpenCypherExplainQueryCommand").f(void 0, void 0).ser(se_ExecuteOpenCypherExplainQueryCommand).de(de_ExecuteOpenCypherExplainQueryCommand).build() {
3854
+ static {
3855
+ __name(this, "ExecuteOpenCypherExplainQueryCommand");
3856
+ }
3290
3857
  };
3291
- __name(_ExecuteOpenCypherExplainQueryCommand, "ExecuteOpenCypherExplainQueryCommand");
3292
- var ExecuteOpenCypherExplainQueryCommand = _ExecuteOpenCypherExplainQueryCommand;
3293
3858
 
3294
3859
  // src/commands/ExecuteOpenCypherQueryCommand.ts
3295
3860
 
3296
3861
 
3297
3862
 
3298
- var _ExecuteOpenCypherQueryCommand = class _ExecuteOpenCypherQueryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3863
+ var ExecuteOpenCypherQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3299
3864
  return [
3300
3865
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3301
3866
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3302
3867
  ];
3303
3868
  }).s("AmazonNeptuneDataplane", "ExecuteOpenCypherQuery", {}).n("NeptunedataClient", "ExecuteOpenCypherQueryCommand").f(void 0, void 0).ser(se_ExecuteOpenCypherQueryCommand).de(de_ExecuteOpenCypherQueryCommand).build() {
3869
+ static {
3870
+ __name(this, "ExecuteOpenCypherQueryCommand");
3871
+ }
3304
3872
  };
3305
- __name(_ExecuteOpenCypherQueryCommand, "ExecuteOpenCypherQueryCommand");
3306
- var ExecuteOpenCypherQueryCommand = _ExecuteOpenCypherQueryCommand;
3307
3873
 
3308
3874
  // src/commands/GetEngineStatusCommand.ts
3309
3875
 
3310
3876
 
3311
3877
 
3312
- var _GetEngineStatusCommand = class _GetEngineStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3878
+ var GetEngineStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3313
3879
  return [
3314
3880
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3315
3881
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3316
3882
  ];
3317
3883
  }).s("AmazonNeptuneDataplane", "GetEngineStatus", {}).n("NeptunedataClient", "GetEngineStatusCommand").f(void 0, void 0).ser(se_GetEngineStatusCommand).de(de_GetEngineStatusCommand).build() {
3884
+ static {
3885
+ __name(this, "GetEngineStatusCommand");
3886
+ }
3318
3887
  };
3319
- __name(_GetEngineStatusCommand, "GetEngineStatusCommand");
3320
- var GetEngineStatusCommand = _GetEngineStatusCommand;
3321
3888
 
3322
3889
  // src/commands/GetGremlinQueryStatusCommand.ts
3323
3890
 
3324
3891
 
3325
3892
 
3326
- var _GetGremlinQueryStatusCommand = class _GetGremlinQueryStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3893
+ var GetGremlinQueryStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3327
3894
  return [
3328
3895
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3329
3896
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3330
3897
  ];
3331
3898
  }).s("AmazonNeptuneDataplane", "GetGremlinQueryStatus", {}).n("NeptunedataClient", "GetGremlinQueryStatusCommand").f(void 0, void 0).ser(se_GetGremlinQueryStatusCommand).de(de_GetGremlinQueryStatusCommand).build() {
3899
+ static {
3900
+ __name(this, "GetGremlinQueryStatusCommand");
3901
+ }
3332
3902
  };
3333
- __name(_GetGremlinQueryStatusCommand, "GetGremlinQueryStatusCommand");
3334
- var GetGremlinQueryStatusCommand = _GetGremlinQueryStatusCommand;
3335
3903
 
3336
3904
  // src/commands/GetLoaderJobStatusCommand.ts
3337
3905
 
3338
3906
 
3339
3907
 
3340
- var _GetLoaderJobStatusCommand = class _GetLoaderJobStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3908
+ var GetLoaderJobStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3341
3909
  return [
3342
3910
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3343
3911
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3344
3912
  ];
3345
3913
  }).s("AmazonNeptuneDataplane", "GetLoaderJobStatus", {}).n("NeptunedataClient", "GetLoaderJobStatusCommand").f(void 0, void 0).ser(se_GetLoaderJobStatusCommand).de(de_GetLoaderJobStatusCommand).build() {
3914
+ static {
3915
+ __name(this, "GetLoaderJobStatusCommand");
3916
+ }
3346
3917
  };
3347
- __name(_GetLoaderJobStatusCommand, "GetLoaderJobStatusCommand");
3348
- var GetLoaderJobStatusCommand = _GetLoaderJobStatusCommand;
3349
3918
 
3350
3919
  // src/commands/GetMLDataProcessingJobCommand.ts
3351
3920
 
3352
3921
 
3353
3922
 
3354
- var _GetMLDataProcessingJobCommand = class _GetMLDataProcessingJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3923
+ var GetMLDataProcessingJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3355
3924
  return [
3356
3925
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3357
3926
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3358
3927
  ];
3359
3928
  }).s("AmazonNeptuneDataplane", "GetMLDataProcessingJob", {}).n("NeptunedataClient", "GetMLDataProcessingJobCommand").f(void 0, void 0).ser(se_GetMLDataProcessingJobCommand).de(de_GetMLDataProcessingJobCommand).build() {
3929
+ static {
3930
+ __name(this, "GetMLDataProcessingJobCommand");
3931
+ }
3360
3932
  };
3361
- __name(_GetMLDataProcessingJobCommand, "GetMLDataProcessingJobCommand");
3362
- var GetMLDataProcessingJobCommand = _GetMLDataProcessingJobCommand;
3363
3933
 
3364
3934
  // src/commands/GetMLEndpointCommand.ts
3365
3935
 
3366
3936
 
3367
3937
 
3368
- var _GetMLEndpointCommand = class _GetMLEndpointCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3938
+ var GetMLEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3369
3939
  return [
3370
3940
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3371
3941
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3372
3942
  ];
3373
3943
  }).s("AmazonNeptuneDataplane", "GetMLEndpoint", {}).n("NeptunedataClient", "GetMLEndpointCommand").f(void 0, void 0).ser(se_GetMLEndpointCommand).de(de_GetMLEndpointCommand).build() {
3944
+ static {
3945
+ __name(this, "GetMLEndpointCommand");
3946
+ }
3374
3947
  };
3375
- __name(_GetMLEndpointCommand, "GetMLEndpointCommand");
3376
- var GetMLEndpointCommand = _GetMLEndpointCommand;
3377
3948
 
3378
3949
  // src/commands/GetMLModelTrainingJobCommand.ts
3379
3950
 
3380
3951
 
3381
3952
 
3382
- var _GetMLModelTrainingJobCommand = class _GetMLModelTrainingJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3953
+ var GetMLModelTrainingJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3383
3954
  return [
3384
3955
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3385
3956
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3386
3957
  ];
3387
3958
  }).s("AmazonNeptuneDataplane", "GetMLModelTrainingJob", {}).n("NeptunedataClient", "GetMLModelTrainingJobCommand").f(void 0, void 0).ser(se_GetMLModelTrainingJobCommand).de(de_GetMLModelTrainingJobCommand).build() {
3959
+ static {
3960
+ __name(this, "GetMLModelTrainingJobCommand");
3961
+ }
3388
3962
  };
3389
- __name(_GetMLModelTrainingJobCommand, "GetMLModelTrainingJobCommand");
3390
- var GetMLModelTrainingJobCommand = _GetMLModelTrainingJobCommand;
3391
3963
 
3392
3964
  // src/commands/GetMLModelTransformJobCommand.ts
3393
3965
 
3394
3966
 
3395
3967
 
3396
- var _GetMLModelTransformJobCommand = class _GetMLModelTransformJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3968
+ var GetMLModelTransformJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3397
3969
  return [
3398
3970
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3399
3971
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3400
3972
  ];
3401
3973
  }).s("AmazonNeptuneDataplane", "GetMLModelTransformJob", {}).n("NeptunedataClient", "GetMLModelTransformJobCommand").f(void 0, void 0).ser(se_GetMLModelTransformJobCommand).de(de_GetMLModelTransformJobCommand).build() {
3974
+ static {
3975
+ __name(this, "GetMLModelTransformJobCommand");
3976
+ }
3402
3977
  };
3403
- __name(_GetMLModelTransformJobCommand, "GetMLModelTransformJobCommand");
3404
- var GetMLModelTransformJobCommand = _GetMLModelTransformJobCommand;
3405
3978
 
3406
3979
  // src/commands/GetOpenCypherQueryStatusCommand.ts
3407
3980
 
3408
3981
 
3409
3982
 
3410
- var _GetOpenCypherQueryStatusCommand = class _GetOpenCypherQueryStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3983
+ var GetOpenCypherQueryStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3411
3984
  return [
3412
3985
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3413
3986
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3414
3987
  ];
3415
3988
  }).s("AmazonNeptuneDataplane", "GetOpenCypherQueryStatus", {}).n("NeptunedataClient", "GetOpenCypherQueryStatusCommand").f(void 0, void 0).ser(se_GetOpenCypherQueryStatusCommand).de(de_GetOpenCypherQueryStatusCommand).build() {
3989
+ static {
3990
+ __name(this, "GetOpenCypherQueryStatusCommand");
3991
+ }
3416
3992
  };
3417
- __name(_GetOpenCypherQueryStatusCommand, "GetOpenCypherQueryStatusCommand");
3418
- var GetOpenCypherQueryStatusCommand = _GetOpenCypherQueryStatusCommand;
3419
3993
 
3420
3994
  // src/commands/GetPropertygraphStatisticsCommand.ts
3421
3995
 
3422
3996
 
3423
3997
 
3424
- var _GetPropertygraphStatisticsCommand = class _GetPropertygraphStatisticsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3998
+ var GetPropertygraphStatisticsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3425
3999
  return [
3426
4000
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3427
4001
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3428
4002
  ];
3429
4003
  }).s("AmazonNeptuneDataplane", "GetPropertygraphStatistics", {}).n("NeptunedataClient", "GetPropertygraphStatisticsCommand").f(void 0, void 0).ser(se_GetPropertygraphStatisticsCommand).de(de_GetPropertygraphStatisticsCommand).build() {
4004
+ static {
4005
+ __name(this, "GetPropertygraphStatisticsCommand");
4006
+ }
3430
4007
  };
3431
- __name(_GetPropertygraphStatisticsCommand, "GetPropertygraphStatisticsCommand");
3432
- var GetPropertygraphStatisticsCommand = _GetPropertygraphStatisticsCommand;
3433
4008
 
3434
4009
  // src/commands/GetPropertygraphStreamCommand.ts
3435
4010
 
3436
4011
 
3437
4012
 
3438
- var _GetPropertygraphStreamCommand = class _GetPropertygraphStreamCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4013
+ var GetPropertygraphStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3439
4014
  return [
3440
4015
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3441
4016
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3442
4017
  ];
3443
4018
  }).s("AmazonNeptuneDataplane", "GetPropertygraphStream", {}).n("NeptunedataClient", "GetPropertygraphStreamCommand").f(void 0, void 0).ser(se_GetPropertygraphStreamCommand).de(de_GetPropertygraphStreamCommand).build() {
4019
+ static {
4020
+ __name(this, "GetPropertygraphStreamCommand");
4021
+ }
3444
4022
  };
3445
- __name(_GetPropertygraphStreamCommand, "GetPropertygraphStreamCommand");
3446
- var GetPropertygraphStreamCommand = _GetPropertygraphStreamCommand;
3447
4023
 
3448
4024
  // src/commands/GetPropertygraphSummaryCommand.ts
3449
4025
 
3450
4026
 
3451
4027
 
3452
- var _GetPropertygraphSummaryCommand = class _GetPropertygraphSummaryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4028
+ var GetPropertygraphSummaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3453
4029
  return [
3454
4030
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3455
4031
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3456
4032
  ];
3457
4033
  }).s("AmazonNeptuneDataplane", "GetPropertygraphSummary", {}).n("NeptunedataClient", "GetPropertygraphSummaryCommand").f(void 0, void 0).ser(se_GetPropertygraphSummaryCommand).de(de_GetPropertygraphSummaryCommand).build() {
4034
+ static {
4035
+ __name(this, "GetPropertygraphSummaryCommand");
4036
+ }
3458
4037
  };
3459
- __name(_GetPropertygraphSummaryCommand, "GetPropertygraphSummaryCommand");
3460
- var GetPropertygraphSummaryCommand = _GetPropertygraphSummaryCommand;
3461
4038
 
3462
4039
  // src/commands/GetRDFGraphSummaryCommand.ts
3463
4040
 
3464
4041
 
3465
4042
 
3466
- var _GetRDFGraphSummaryCommand = class _GetRDFGraphSummaryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4043
+ var GetRDFGraphSummaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3467
4044
  return [
3468
4045
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3469
4046
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3470
4047
  ];
3471
4048
  }).s("AmazonNeptuneDataplane", "GetRDFGraphSummary", {}).n("NeptunedataClient", "GetRDFGraphSummaryCommand").f(void 0, void 0).ser(se_GetRDFGraphSummaryCommand).de(de_GetRDFGraphSummaryCommand).build() {
4049
+ static {
4050
+ __name(this, "GetRDFGraphSummaryCommand");
4051
+ }
3472
4052
  };
3473
- __name(_GetRDFGraphSummaryCommand, "GetRDFGraphSummaryCommand");
3474
- var GetRDFGraphSummaryCommand = _GetRDFGraphSummaryCommand;
3475
4053
 
3476
4054
  // src/commands/GetSparqlStatisticsCommand.ts
3477
4055
 
3478
4056
 
3479
4057
 
3480
- var _GetSparqlStatisticsCommand = class _GetSparqlStatisticsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4058
+ var GetSparqlStatisticsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3481
4059
  return [
3482
4060
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3483
4061
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3484
4062
  ];
3485
4063
  }).s("AmazonNeptuneDataplane", "GetSparqlStatistics", {}).n("NeptunedataClient", "GetSparqlStatisticsCommand").f(void 0, void 0).ser(se_GetSparqlStatisticsCommand).de(de_GetSparqlStatisticsCommand).build() {
4064
+ static {
4065
+ __name(this, "GetSparqlStatisticsCommand");
4066
+ }
3486
4067
  };
3487
- __name(_GetSparqlStatisticsCommand, "GetSparqlStatisticsCommand");
3488
- var GetSparqlStatisticsCommand = _GetSparqlStatisticsCommand;
3489
4068
 
3490
4069
  // src/commands/GetSparqlStreamCommand.ts
3491
4070
 
3492
4071
 
3493
4072
 
3494
- var _GetSparqlStreamCommand = class _GetSparqlStreamCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4073
+ var GetSparqlStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3495
4074
  return [
3496
4075
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3497
4076
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3498
4077
  ];
3499
4078
  }).s("AmazonNeptuneDataplane", "GetSparqlStream", {}).n("NeptunedataClient", "GetSparqlStreamCommand").f(void 0, void 0).ser(se_GetSparqlStreamCommand).de(de_GetSparqlStreamCommand).build() {
4079
+ static {
4080
+ __name(this, "GetSparqlStreamCommand");
4081
+ }
3500
4082
  };
3501
- __name(_GetSparqlStreamCommand, "GetSparqlStreamCommand");
3502
- var GetSparqlStreamCommand = _GetSparqlStreamCommand;
3503
4083
 
3504
4084
  // src/commands/ListGremlinQueriesCommand.ts
3505
4085
 
3506
4086
 
3507
4087
 
3508
- var _ListGremlinQueriesCommand = class _ListGremlinQueriesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4088
+ var ListGremlinQueriesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3509
4089
  return [
3510
4090
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3511
4091
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3512
4092
  ];
3513
4093
  }).s("AmazonNeptuneDataplane", "ListGremlinQueries", {}).n("NeptunedataClient", "ListGremlinQueriesCommand").f(void 0, void 0).ser(se_ListGremlinQueriesCommand).de(de_ListGremlinQueriesCommand).build() {
4094
+ static {
4095
+ __name(this, "ListGremlinQueriesCommand");
4096
+ }
3514
4097
  };
3515
- __name(_ListGremlinQueriesCommand, "ListGremlinQueriesCommand");
3516
- var ListGremlinQueriesCommand = _ListGremlinQueriesCommand;
3517
4098
 
3518
4099
  // src/commands/ListLoaderJobsCommand.ts
3519
4100
 
3520
4101
 
3521
4102
 
3522
- var _ListLoaderJobsCommand = class _ListLoaderJobsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4103
+ var ListLoaderJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3523
4104
  return [
3524
4105
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3525
4106
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3526
4107
  ];
3527
4108
  }).s("AmazonNeptuneDataplane", "ListLoaderJobs", {}).n("NeptunedataClient", "ListLoaderJobsCommand").f(void 0, void 0).ser(se_ListLoaderJobsCommand).de(de_ListLoaderJobsCommand).build() {
4109
+ static {
4110
+ __name(this, "ListLoaderJobsCommand");
4111
+ }
3528
4112
  };
3529
- __name(_ListLoaderJobsCommand, "ListLoaderJobsCommand");
3530
- var ListLoaderJobsCommand = _ListLoaderJobsCommand;
3531
4113
 
3532
4114
  // src/commands/ListMLDataProcessingJobsCommand.ts
3533
4115
 
3534
4116
 
3535
4117
 
3536
- var _ListMLDataProcessingJobsCommand = class _ListMLDataProcessingJobsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4118
+ var ListMLDataProcessingJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3537
4119
  return [
3538
4120
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3539
4121
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3540
4122
  ];
3541
4123
  }).s("AmazonNeptuneDataplane", "ListMLDataProcessingJobs", {}).n("NeptunedataClient", "ListMLDataProcessingJobsCommand").f(void 0, void 0).ser(se_ListMLDataProcessingJobsCommand).de(de_ListMLDataProcessingJobsCommand).build() {
4124
+ static {
4125
+ __name(this, "ListMLDataProcessingJobsCommand");
4126
+ }
3542
4127
  };
3543
- __name(_ListMLDataProcessingJobsCommand, "ListMLDataProcessingJobsCommand");
3544
- var ListMLDataProcessingJobsCommand = _ListMLDataProcessingJobsCommand;
3545
4128
 
3546
4129
  // src/commands/ListMLEndpointsCommand.ts
3547
4130
 
3548
4131
 
3549
4132
 
3550
- var _ListMLEndpointsCommand = class _ListMLEndpointsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4133
+ var ListMLEndpointsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3551
4134
  return [
3552
4135
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3553
4136
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3554
4137
  ];
3555
4138
  }).s("AmazonNeptuneDataplane", "ListMLEndpoints", {}).n("NeptunedataClient", "ListMLEndpointsCommand").f(void 0, void 0).ser(se_ListMLEndpointsCommand).de(de_ListMLEndpointsCommand).build() {
4139
+ static {
4140
+ __name(this, "ListMLEndpointsCommand");
4141
+ }
3556
4142
  };
3557
- __name(_ListMLEndpointsCommand, "ListMLEndpointsCommand");
3558
- var ListMLEndpointsCommand = _ListMLEndpointsCommand;
3559
4143
 
3560
4144
  // src/commands/ListMLModelTrainingJobsCommand.ts
3561
4145
 
3562
4146
 
3563
4147
 
3564
- var _ListMLModelTrainingJobsCommand = class _ListMLModelTrainingJobsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4148
+ var ListMLModelTrainingJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3565
4149
  return [
3566
4150
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3567
4151
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3568
4152
  ];
3569
4153
  }).s("AmazonNeptuneDataplane", "ListMLModelTrainingJobs", {}).n("NeptunedataClient", "ListMLModelTrainingJobsCommand").f(void 0, void 0).ser(se_ListMLModelTrainingJobsCommand).de(de_ListMLModelTrainingJobsCommand).build() {
4154
+ static {
4155
+ __name(this, "ListMLModelTrainingJobsCommand");
4156
+ }
3570
4157
  };
3571
- __name(_ListMLModelTrainingJobsCommand, "ListMLModelTrainingJobsCommand");
3572
- var ListMLModelTrainingJobsCommand = _ListMLModelTrainingJobsCommand;
3573
4158
 
3574
4159
  // src/commands/ListMLModelTransformJobsCommand.ts
3575
4160
 
3576
4161
 
3577
4162
 
3578
- var _ListMLModelTransformJobsCommand = class _ListMLModelTransformJobsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4163
+ var ListMLModelTransformJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3579
4164
  return [
3580
4165
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3581
4166
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3582
4167
  ];
3583
4168
  }).s("AmazonNeptuneDataplane", "ListMLModelTransformJobs", {}).n("NeptunedataClient", "ListMLModelTransformJobsCommand").f(void 0, void 0).ser(se_ListMLModelTransformJobsCommand).de(de_ListMLModelTransformJobsCommand).build() {
4169
+ static {
4170
+ __name(this, "ListMLModelTransformJobsCommand");
4171
+ }
3584
4172
  };
3585
- __name(_ListMLModelTransformJobsCommand, "ListMLModelTransformJobsCommand");
3586
- var ListMLModelTransformJobsCommand = _ListMLModelTransformJobsCommand;
3587
4173
 
3588
4174
  // src/commands/ListOpenCypherQueriesCommand.ts
3589
4175
 
3590
4176
 
3591
4177
 
3592
- var _ListOpenCypherQueriesCommand = class _ListOpenCypherQueriesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4178
+ var ListOpenCypherQueriesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3593
4179
  return [
3594
4180
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3595
4181
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3596
4182
  ];
3597
4183
  }).s("AmazonNeptuneDataplane", "ListOpenCypherQueries", {}).n("NeptunedataClient", "ListOpenCypherQueriesCommand").f(void 0, void 0).ser(se_ListOpenCypherQueriesCommand).de(de_ListOpenCypherQueriesCommand).build() {
4184
+ static {
4185
+ __name(this, "ListOpenCypherQueriesCommand");
4186
+ }
3598
4187
  };
3599
- __name(_ListOpenCypherQueriesCommand, "ListOpenCypherQueriesCommand");
3600
- var ListOpenCypherQueriesCommand = _ListOpenCypherQueriesCommand;
3601
4188
 
3602
4189
  // src/commands/ManagePropertygraphStatisticsCommand.ts
3603
4190
 
3604
4191
 
3605
4192
 
3606
- var _ManagePropertygraphStatisticsCommand = class _ManagePropertygraphStatisticsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4193
+ var ManagePropertygraphStatisticsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3607
4194
  return [
3608
4195
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3609
4196
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3610
4197
  ];
3611
4198
  }).s("AmazonNeptuneDataplane", "ManagePropertygraphStatistics", {}).n("NeptunedataClient", "ManagePropertygraphStatisticsCommand").f(void 0, void 0).ser(se_ManagePropertygraphStatisticsCommand).de(de_ManagePropertygraphStatisticsCommand).build() {
4199
+ static {
4200
+ __name(this, "ManagePropertygraphStatisticsCommand");
4201
+ }
3612
4202
  };
3613
- __name(_ManagePropertygraphStatisticsCommand, "ManagePropertygraphStatisticsCommand");
3614
- var ManagePropertygraphStatisticsCommand = _ManagePropertygraphStatisticsCommand;
3615
4203
 
3616
4204
  // src/commands/ManageSparqlStatisticsCommand.ts
3617
4205
 
3618
4206
 
3619
4207
 
3620
- var _ManageSparqlStatisticsCommand = class _ManageSparqlStatisticsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4208
+ var ManageSparqlStatisticsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3621
4209
  return [
3622
4210
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3623
4211
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3624
4212
  ];
3625
4213
  }).s("AmazonNeptuneDataplane", "ManageSparqlStatistics", {}).n("NeptunedataClient", "ManageSparqlStatisticsCommand").f(void 0, void 0).ser(se_ManageSparqlStatisticsCommand).de(de_ManageSparqlStatisticsCommand).build() {
4214
+ static {
4215
+ __name(this, "ManageSparqlStatisticsCommand");
4216
+ }
3626
4217
  };
3627
- __name(_ManageSparqlStatisticsCommand, "ManageSparqlStatisticsCommand");
3628
- var ManageSparqlStatisticsCommand = _ManageSparqlStatisticsCommand;
3629
4218
 
3630
4219
  // src/commands/StartLoaderJobCommand.ts
3631
4220
 
3632
4221
 
3633
4222
 
3634
- var _StartLoaderJobCommand = class _StartLoaderJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4223
+ var StartLoaderJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3635
4224
  return [
3636
4225
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3637
4226
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3638
4227
  ];
3639
4228
  }).s("AmazonNeptuneDataplane", "StartLoaderJob", {}).n("NeptunedataClient", "StartLoaderJobCommand").f(void 0, void 0).ser(se_StartLoaderJobCommand).de(de_StartLoaderJobCommand).build() {
4229
+ static {
4230
+ __name(this, "StartLoaderJobCommand");
4231
+ }
3640
4232
  };
3641
- __name(_StartLoaderJobCommand, "StartLoaderJobCommand");
3642
- var StartLoaderJobCommand = _StartLoaderJobCommand;
3643
4233
 
3644
4234
  // src/commands/StartMLDataProcessingJobCommand.ts
3645
4235
 
3646
4236
 
3647
4237
 
3648
- var _StartMLDataProcessingJobCommand = class _StartMLDataProcessingJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4238
+ var StartMLDataProcessingJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3649
4239
  return [
3650
4240
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3651
4241
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3652
4242
  ];
3653
4243
  }).s("AmazonNeptuneDataplane", "StartMLDataProcessingJob", {}).n("NeptunedataClient", "StartMLDataProcessingJobCommand").f(void 0, void 0).ser(se_StartMLDataProcessingJobCommand).de(de_StartMLDataProcessingJobCommand).build() {
4244
+ static {
4245
+ __name(this, "StartMLDataProcessingJobCommand");
4246
+ }
3654
4247
  };
3655
- __name(_StartMLDataProcessingJobCommand, "StartMLDataProcessingJobCommand");
3656
- var StartMLDataProcessingJobCommand = _StartMLDataProcessingJobCommand;
3657
4248
 
3658
4249
  // src/commands/StartMLModelTrainingJobCommand.ts
3659
4250
 
3660
4251
 
3661
4252
 
3662
- var _StartMLModelTrainingJobCommand = class _StartMLModelTrainingJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4253
+ var StartMLModelTrainingJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3663
4254
  return [
3664
4255
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3665
4256
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3666
4257
  ];
3667
4258
  }).s("AmazonNeptuneDataplane", "StartMLModelTrainingJob", {}).n("NeptunedataClient", "StartMLModelTrainingJobCommand").f(void 0, void 0).ser(se_StartMLModelTrainingJobCommand).de(de_StartMLModelTrainingJobCommand).build() {
4259
+ static {
4260
+ __name(this, "StartMLModelTrainingJobCommand");
4261
+ }
3668
4262
  };
3669
- __name(_StartMLModelTrainingJobCommand, "StartMLModelTrainingJobCommand");
3670
- var StartMLModelTrainingJobCommand = _StartMLModelTrainingJobCommand;
3671
4263
 
3672
4264
  // src/commands/StartMLModelTransformJobCommand.ts
3673
4265
 
3674
4266
 
3675
4267
 
3676
- var _StartMLModelTransformJobCommand = class _StartMLModelTransformJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4268
+ var StartMLModelTransformJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3677
4269
  return [
3678
4270
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3679
4271
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3680
4272
  ];
3681
4273
  }).s("AmazonNeptuneDataplane", "StartMLModelTransformJob", {}).n("NeptunedataClient", "StartMLModelTransformJobCommand").f(void 0, void 0).ser(se_StartMLModelTransformJobCommand).de(de_StartMLModelTransformJobCommand).build() {
4274
+ static {
4275
+ __name(this, "StartMLModelTransformJobCommand");
4276
+ }
3682
4277
  };
3683
- __name(_StartMLModelTransformJobCommand, "StartMLModelTransformJobCommand");
3684
- var StartMLModelTransformJobCommand = _StartMLModelTransformJobCommand;
3685
4278
 
3686
4279
  // src/Neptunedata.ts
3687
4280
  var commands = {
@@ -3729,10 +4322,11 @@ var commands = {
3729
4322
  StartMLModelTrainingJobCommand,
3730
4323
  StartMLModelTransformJobCommand
3731
4324
  };
3732
- var _Neptunedata = class _Neptunedata extends NeptunedataClient {
4325
+ var Neptunedata = class extends NeptunedataClient {
4326
+ static {
4327
+ __name(this, "Neptunedata");
4328
+ }
3733
4329
  };
3734
- __name(_Neptunedata, "Neptunedata");
3735
- var Neptunedata = _Neptunedata;
3736
4330
  (0, import_smithy_client.createAggregatedClient)(commands, Neptunedata);
3737
4331
  // Annotate the CommonJS export names for ESM import in node:
3738
4332