@aws-sdk/client-neptune-graph 3.948.0 → 3.953.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/dist-cjs/index.js +420 -293
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CancelExportTaskCommand.js +2 -2
  4. package/dist-es/commands/CancelImportTaskCommand.js +2 -2
  5. package/dist-es/commands/CancelQueryCommand.js +2 -2
  6. package/dist-es/commands/CreateGraphCommand.js +2 -2
  7. package/dist-es/commands/CreateGraphSnapshotCommand.js +2 -2
  8. package/dist-es/commands/CreateGraphUsingImportTaskCommand.js +2 -2
  9. package/dist-es/commands/CreatePrivateGraphEndpointCommand.js +2 -2
  10. package/dist-es/commands/DeleteGraphCommand.js +2 -2
  11. package/dist-es/commands/DeleteGraphSnapshotCommand.js +2 -2
  12. package/dist-es/commands/DeletePrivateGraphEndpointCommand.js +2 -2
  13. package/dist-es/commands/ExecuteQueryCommand.js +2 -2
  14. package/dist-es/commands/GetExportTaskCommand.js +2 -2
  15. package/dist-es/commands/GetGraphCommand.js +2 -2
  16. package/dist-es/commands/GetGraphSnapshotCommand.js +2 -2
  17. package/dist-es/commands/GetGraphSummaryCommand.js +2 -2
  18. package/dist-es/commands/GetImportTaskCommand.js +2 -2
  19. package/dist-es/commands/GetPrivateGraphEndpointCommand.js +2 -2
  20. package/dist-es/commands/GetQueryCommand.js +2 -2
  21. package/dist-es/commands/ListExportTasksCommand.js +2 -2
  22. package/dist-es/commands/ListGraphSnapshotsCommand.js +2 -2
  23. package/dist-es/commands/ListGraphsCommand.js +2 -2
  24. package/dist-es/commands/ListImportTasksCommand.js +2 -2
  25. package/dist-es/commands/ListPrivateGraphEndpointsCommand.js +2 -2
  26. package/dist-es/commands/ListQueriesCommand.js +2 -2
  27. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  28. package/dist-es/commands/ResetGraphCommand.js +2 -2
  29. package/dist-es/commands/RestoreGraphFromSnapshotCommand.js +2 -2
  30. package/dist-es/commands/StartExportTaskCommand.js +2 -2
  31. package/dist-es/commands/StartGraphCommand.js +2 -2
  32. package/dist-es/commands/StartImportTaskCommand.js +2 -2
  33. package/dist-es/commands/StopGraphCommand.js +2 -2
  34. package/dist-es/commands/TagResourceCommand.js +2 -2
  35. package/dist-es/commands/UntagResourceCommand.js +2 -2
  36. package/dist-es/commands/UpdateGraphCommand.js +2 -2
  37. package/dist-es/index.js +1 -0
  38. package/dist-es/runtimeConfig.shared.js +6 -1
  39. package/dist-es/schemas/schemas_0.js +249 -249
  40. package/dist-types/NeptuneGraphClient.d.ts +1 -10
  41. package/dist-types/index.d.ts +1 -0
  42. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  43. package/dist-types/runtimeConfig.d.ts +6 -2
  44. package/dist-types/runtimeConfig.native.d.ts +6 -2
  45. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  46. package/dist-types/schemas/schemas_0.d.ts +128 -152
  47. package/dist-types/ts3.4/NeptuneGraphClient.d.ts +0 -4
  48. package/dist-types/ts3.4/index.d.ts +1 -0
  49. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  50. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  51. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  52. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  53. package/dist-types/ts3.4/schemas/schemas_0.d.ts +127 -154
  54. package/package.json +36 -36
package/dist-cjs/index.js CHANGED
@@ -111,14 +111,14 @@ class NeptuneGraphClient extends smithyClient.Client {
111
111
  }
112
112
  }
113
113
 
114
- let NeptuneGraphServiceException$1 = class NeptuneGraphServiceException extends smithyClient.ServiceException {
114
+ class NeptuneGraphServiceException extends smithyClient.ServiceException {
115
115
  constructor(options) {
116
116
  super(options);
117
117
  Object.setPrototypeOf(this, NeptuneGraphServiceException.prototype);
118
118
  }
119
- };
119
+ }
120
120
 
121
- let AccessDeniedException$1 = class AccessDeniedException extends NeptuneGraphServiceException$1 {
121
+ class AccessDeniedException extends NeptuneGraphServiceException {
122
122
  name = "AccessDeniedException";
123
123
  $fault = "client";
124
124
  constructor(opts) {
@@ -129,8 +129,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends NeptuneGraphSe
129
129
  });
130
130
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
131
  }
132
- };
133
- let InternalServerException$1 = class InternalServerException extends NeptuneGraphServiceException$1 {
132
+ }
133
+ class InternalServerException extends NeptuneGraphServiceException {
134
134
  name = "InternalServerException";
135
135
  $fault = "server";
136
136
  $retryable = {};
@@ -142,8 +142,8 @@ let InternalServerException$1 = class InternalServerException extends NeptuneGra
142
142
  });
143
143
  Object.setPrototypeOf(this, InternalServerException.prototype);
144
144
  }
145
- };
146
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends NeptuneGraphServiceException$1 {
145
+ }
146
+ class ResourceNotFoundException extends NeptuneGraphServiceException {
147
147
  name = "ResourceNotFoundException";
148
148
  $fault = "client";
149
149
  constructor(opts) {
@@ -154,8 +154,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Neptun
154
154
  });
155
155
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
156
156
  }
157
- };
158
- let ThrottlingException$1 = class ThrottlingException extends NeptuneGraphServiceException$1 {
157
+ }
158
+ class ThrottlingException extends NeptuneGraphServiceException {
159
159
  name = "ThrottlingException";
160
160
  $fault = "client";
161
161
  $retryable = {
@@ -169,8 +169,8 @@ let ThrottlingException$1 = class ThrottlingException extends NeptuneGraphServic
169
169
  });
170
170
  Object.setPrototypeOf(this, ThrottlingException.prototype);
171
171
  }
172
- };
173
- let ValidationException$1 = class ValidationException extends NeptuneGraphServiceException$1 {
172
+ }
173
+ class ValidationException extends NeptuneGraphServiceException {
174
174
  name = "ValidationException";
175
175
  $fault = "client";
176
176
  reason;
@@ -183,8 +183,8 @@ let ValidationException$1 = class ValidationException extends NeptuneGraphServic
183
183
  Object.setPrototypeOf(this, ValidationException.prototype);
184
184
  this.reason = opts.reason;
185
185
  }
186
- };
187
- let ConflictException$1 = class ConflictException extends NeptuneGraphServiceException$1 {
186
+ }
187
+ class ConflictException extends NeptuneGraphServiceException {
188
188
  name = "ConflictException";
189
189
  $fault = "client";
190
190
  reason;
@@ -197,8 +197,8 @@ let ConflictException$1 = class ConflictException extends NeptuneGraphServiceExc
197
197
  Object.setPrototypeOf(this, ConflictException.prototype);
198
198
  this.reason = opts.reason;
199
199
  }
200
- };
201
- let UnprocessableException$1 = class UnprocessableException extends NeptuneGraphServiceException$1 {
200
+ }
201
+ class UnprocessableException extends NeptuneGraphServiceException {
202
202
  name = "UnprocessableException";
203
203
  $fault = "client";
204
204
  reason;
@@ -211,8 +211,8 @@ let UnprocessableException$1 = class UnprocessableException extends NeptuneGraph
211
211
  Object.setPrototypeOf(this, UnprocessableException.prototype);
212
212
  this.reason = opts.reason;
213
213
  }
214
- };
215
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends NeptuneGraphServiceException$1 {
214
+ }
215
+ class ServiceQuotaExceededException extends NeptuneGraphServiceException {
216
216
  name = "ServiceQuotaExceededException";
217
217
  $fault = "client";
218
218
  resourceId;
@@ -231,7 +231,7 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
231
231
  this.serviceCode = opts.serviceCode;
232
232
  this.quotaCode = opts.quotaCode;
233
233
  }
234
- };
234
+ }
235
235
 
236
236
  const _ADE = "AccessDeniedException";
237
237
  const _CE = "ConflictException";
@@ -497,10 +497,10 @@ const _vSGI = "vpcSecurityGroupIds";
497
497
  const _w = "waited";
498
498
  const n0 = "com.amazonaws.neptunegraph";
499
499
  var QueryResponseBlob = [0, n0, _QRB, { [_s]: 1 }, 42];
500
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
501
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
502
- var CancelExportTaskInput = [3, n0, _CETI, 0, [_tI], [[0, 1]]];
503
- var CancelExportTaskOutput = [
500
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
501
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
502
+ var CancelExportTaskInput$ = [3, n0, _CETI, 0, [_tI], [[0, 1]]];
503
+ var CancelExportTaskOutput$ = [
504
504
  3,
505
505
  n0,
506
506
  _CETO,
@@ -508,8 +508,8 @@ var CancelExportTaskOutput = [
508
508
  [_gI, _rA, _tIa, _st, _f, _d, _kKI, _pT, _sR],
509
509
  [0, 0, 0, 0, 0, 0, 0, 0, 0],
510
510
  ];
511
- var CancelImportTaskInput = [3, n0, _CITI, 0, [_tI], [[0, 1]]];
512
- var CancelImportTaskOutput = [
511
+ var CancelImportTaskInput$ = [3, n0, _CITI, 0, [_tI], [[0, 1]]];
512
+ var CancelImportTaskOutput$ = [
513
513
  3,
514
514
  n0,
515
515
  _CITO,
@@ -517,7 +517,7 @@ var CancelImportTaskOutput = [
517
517
  [_gI, _tIa, _so, _f, _pT, _rA, _st],
518
518
  [0, 0, 0, 0, 0, 0, 0],
519
519
  ];
520
- var CancelQueryInput = [
520
+ var CancelQueryInput$ = [
521
521
  3,
522
522
  n0,
523
523
  _CQI,
@@ -528,26 +528,26 @@ var CancelQueryInput = [
528
528
  [0, 1],
529
529
  ],
530
530
  ];
531
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _r], [0, 0]];
532
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
533
- var CreateGraphInput = [
531
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _r], [0, 0]];
532
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
533
+ var CreateGraphInput$ = [
534
534
  3,
535
535
  n0,
536
536
  _CGI,
537
537
  0,
538
538
  [_gN, _t, _pC, _kKI, _vSC, _rC, _dP, _pM],
539
- [0, 128 | 0, 2, 0, () => VectorSearchConfiguration, 1, 2, 1],
539
+ [0, 128 | 0, 2, 0, () => VectorSearchConfiguration$, 1, 2, 1],
540
540
  ];
541
- var CreateGraphOutput = [
541
+ var CreateGraphOutput$ = [
542
542
  3,
543
543
  n0,
544
544
  _CGO,
545
545
  0,
546
546
  [_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
547
- [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
547
+ [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0],
548
548
  ];
549
- var CreateGraphSnapshotInput = [3, n0, _CGSI, 0, [_gIr, _sN, _t], [0, 0, 128 | 0]];
550
- var CreateGraphSnapshotOutput = [
549
+ var CreateGraphSnapshotInput$ = [3, n0, _CGSI, 0, [_gIr, _sN, _t], [0, 0, 128 | 0]];
550
+ var CreateGraphSnapshotOutput$ = [
551
551
  3,
552
552
  n0,
553
553
  _CGSO,
@@ -555,23 +555,23 @@ var CreateGraphSnapshotOutput = [
555
555
  [_i, _n, _a, _sGI, _sCT, _st, _kKI],
556
556
  [0, 0, 0, 0, 4, 0, 0],
557
557
  ];
558
- var CreateGraphUsingImportTaskInput = [
558
+ var CreateGraphUsingImportTaskInput$ = [
559
559
  3,
560
560
  n0,
561
561
  _CGUITI,
562
562
  0,
563
563
  [_gN, _t, _pC, _kKI, _vSC, _rC, _dP, _iO, _mPM, _mPMi, _fOE, _so, _f, _pT, _bNH, _rA],
564
- [0, 128 | 0, 2, 0, () => VectorSearchConfiguration, 1, 2, () => ImportOptions, 1, 1, 2, 0, 0, 0, 0, 0],
564
+ [0, 128 | 0, 2, 0, () => VectorSearchConfiguration$, 1, 2, () => ImportOptions$, 1, 1, 2, 0, 0, 0, 0, 0],
565
565
  ];
566
- var CreateGraphUsingImportTaskOutput = [
566
+ var CreateGraphUsingImportTaskOutput$ = [
567
567
  3,
568
568
  n0,
569
569
  _CGUITO,
570
570
  0,
571
571
  [_gI, _tIa, _so, _f, _pT, _rA, _st, _iO],
572
- [0, 0, 0, 0, 0, 0, 0, () => ImportOptions],
572
+ [0, 0, 0, 0, 0, 0, 0, () => ImportOptions$],
573
573
  ];
574
- var CreatePrivateGraphEndpointInput = [
574
+ var CreatePrivateGraphEndpointInput$ = [
575
575
  3,
576
576
  n0,
577
577
  _CPGEI,
@@ -579,7 +579,7 @@ var CreatePrivateGraphEndpointInput = [
579
579
  [_gIr, _vI, _sI, _vSGI],
580
580
  [[0, 1], 0, 64 | 0, 64 | 0],
581
581
  ];
582
- var CreatePrivateGraphEndpointOutput = [
582
+ var CreatePrivateGraphEndpointOutput$ = [
583
583
  3,
584
584
  n0,
585
585
  _CPGEO,
@@ -587,7 +587,7 @@ var CreatePrivateGraphEndpointOutput = [
587
587
  [_vI, _sI, _st, _vEI],
588
588
  [0, 64 | 0, 0, 0],
589
589
  ];
590
- var DeleteGraphInput = [
590
+ var DeleteGraphInput$ = [
591
591
  3,
592
592
  n0,
593
593
  _DGI,
@@ -598,16 +598,16 @@ var DeleteGraphInput = [
598
598
  [2, { [_hQ]: _sS }],
599
599
  ],
600
600
  ];
601
- var DeleteGraphOutput = [
601
+ var DeleteGraphOutput$ = [
602
602
  3,
603
603
  n0,
604
604
  _DGO,
605
605
  0,
606
606
  [_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
607
- [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
607
+ [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0],
608
608
  ];
609
- var DeleteGraphSnapshotInput = [3, n0, _DGSI, 0, [_sIn], [[0, 1]]];
610
- var DeleteGraphSnapshotOutput = [
609
+ var DeleteGraphSnapshotInput$ = [3, n0, _DGSI, 0, [_sIn], [[0, 1]]];
610
+ var DeleteGraphSnapshotOutput$ = [
611
611
  3,
612
612
  n0,
613
613
  _DGSO,
@@ -615,7 +615,7 @@ var DeleteGraphSnapshotOutput = [
615
615
  [_i, _n, _a, _sGI, _sCT, _st, _kKI],
616
616
  [0, 0, 0, 0, 4, 0, 0],
617
617
  ];
618
- var DeletePrivateGraphEndpointInput = [
618
+ var DeletePrivateGraphEndpointInput$ = [
619
619
  3,
620
620
  n0,
621
621
  _DPGEI,
@@ -626,7 +626,7 @@ var DeletePrivateGraphEndpointInput = [
626
626
  [0, 1],
627
627
  ],
628
628
  ];
629
- var DeletePrivateGraphEndpointOutput = [
629
+ var DeletePrivateGraphEndpointOutput$ = [
630
630
  3,
631
631
  n0,
632
632
  _DPGEO,
@@ -634,8 +634,8 @@ var DeletePrivateGraphEndpointOutput = [
634
634
  [_vI, _sI, _st, _vEI],
635
635
  [0, 64 | 0, 0, 0],
636
636
  ];
637
- var EdgeStructure = [3, n0, _ES, 0, [_co, _eP], [1, 64 | 0]];
638
- var ExecuteQueryInput = [
637
+ var EdgeStructure$ = [3, n0, _ES, 0, [_co, _eP], [1, 64 | 0]];
638
+ var ExecuteQueryInput$ = [
639
639
  3,
640
640
  n0,
641
641
  _EQI,
@@ -643,8 +643,8 @@ var ExecuteQueryInput = [
643
643
  [_gIr, _qS, _l, _p, _pCl, _eM, _qTM],
644
644
  [[0, { [_hL]: 1, [_hH]: _gIr }], [0, { [_jN]: _q }], 0, 128 | 15, 0, [0, { [_jN]: _ex }], 1],
645
645
  ];
646
- var ExecuteQueryOutput = [3, n0, _EQO, 0, [_pa], [[() => QueryResponseBlob, 16]]];
647
- var ExportFilter = [
646
+ var ExecuteQueryOutput$ = [3, n0, _EQO, 0, [_pa], [[() => QueryResponseBlob, 16]]];
647
+ var ExportFilter$ = [
648
648
  3,
649
649
  n0,
650
650
  _EF,
@@ -652,10 +652,10 @@ var ExportFilter = [
652
652
  [_vF, _eF],
653
653
  [() => ExportFilterPerLabelMap, () => ExportFilterPerLabelMap],
654
654
  ];
655
- var ExportFilterElement = [3, n0, _EFE, 0, [_pr], [() => ExportFilterPropertyMap]];
656
- var ExportFilterPropertyAttributes = [3, n0, _EFPA, 0, [_oT, _sPN, _mVH], [0, 0, 0]];
657
- var ExportTaskDetails = [3, n0, _ETD, 0, [_sT, _tES, _pP, _nVW, _nEW], [4, 1, 1, 1, 1]];
658
- var ExportTaskSummary = [
655
+ var ExportFilterElement$ = [3, n0, _EFE, 0, [_pr], [() => ExportFilterPropertyMap]];
656
+ var ExportFilterPropertyAttributes$ = [3, n0, _EFPA, 0, [_oT, _sPN, _mVH], [0, 0, 0]];
657
+ var ExportTaskDetails$ = [3, n0, _ETD, 0, [_sT, _tES, _pP, _nVW, _nEW], [4, 1, 1, 1, 1]];
658
+ var ExportTaskSummary$ = [
659
659
  3,
660
660
  n0,
661
661
  _ETS,
@@ -663,26 +663,26 @@ var ExportTaskSummary = [
663
663
  [_gI, _rA, _tIa, _st, _f, _d, _kKI, _pT, _sR],
664
664
  [0, 0, 0, 0, 0, 0, 0, 0, 0],
665
665
  ];
666
- var GetExportTaskInput = [3, n0, _GETI, 0, [_tI], [[0, 1]]];
667
- var GetExportTaskOutput = [
666
+ var GetExportTaskInput$ = [3, n0, _GETI, 0, [_tI], [[0, 1]]];
667
+ var GetExportTaskOutput$ = [
668
668
  3,
669
669
  n0,
670
670
  _GETO,
671
671
  0,
672
672
  [_gI, _rA, _tIa, _st, _f, _d, _kKI, _pT, _sR, _eTD, _eFx],
673
- [0, 0, 0, 0, 0, 0, 0, 0, 0, () => ExportTaskDetails, () => ExportFilter],
673
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, () => ExportTaskDetails$, () => ExportFilter$],
674
674
  ];
675
- var GetGraphInput = [3, n0, _GGI, 0, [_gIr], [[0, 1]]];
676
- var GetGraphOutput = [
675
+ var GetGraphInput$ = [3, n0, _GGI, 0, [_gIr], [[0, 1]]];
676
+ var GetGraphOutput$ = [
677
677
  3,
678
678
  n0,
679
679
  _GGO,
680
680
  0,
681
681
  [_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
682
- [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
682
+ [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0],
683
683
  ];
684
- var GetGraphSnapshotInput = [3, n0, _GGSI, 0, [_sIn], [[0, 1]]];
685
- var GetGraphSnapshotOutput = [
684
+ var GetGraphSnapshotInput$ = [3, n0, _GGSI, 0, [_sIn], [[0, 1]]];
685
+ var GetGraphSnapshotOutput$ = [
686
686
  3,
687
687
  n0,
688
688
  _GGSO,
@@ -690,7 +690,7 @@ var GetGraphSnapshotOutput = [
690
690
  [_i, _n, _a, _sGI, _sCT, _st, _kKI],
691
691
  [0, 0, 0, 0, 4, 0, 0],
692
692
  ];
693
- var GetGraphSummaryInput = [
693
+ var GetGraphSummaryInput$ = [
694
694
  3,
695
695
  n0,
696
696
  _GGSIe,
@@ -701,24 +701,24 @@ var GetGraphSummaryInput = [
701
701
  [0, { [_hQ]: _mo }],
702
702
  ],
703
703
  ];
704
- var GetGraphSummaryOutput = [
704
+ var GetGraphSummaryOutput$ = [
705
705
  3,
706
706
  n0,
707
707
  _GGSOe,
708
708
  0,
709
709
  [_v, _lSCT, _gS],
710
- [0, 5, () => GraphDataSummary],
710
+ [0, 5, () => GraphDataSummary$],
711
711
  ];
712
- var GetImportTaskInput = [3, n0, _GITI, 0, [_tI], [[0, 1]]];
713
- var GetImportTaskOutput = [
712
+ var GetImportTaskInput$ = [3, n0, _GITI, 0, [_tI], [[0, 1]]];
713
+ var GetImportTaskOutput$ = [
714
714
  3,
715
715
  n0,
716
716
  _GITO,
717
717
  0,
718
718
  [_gI, _tIa, _so, _f, _pT, _rA, _st, _iO, _iTD, _aN, _sR],
719
- [0, 0, 0, 0, 0, 0, 0, () => ImportOptions, () => ImportTaskDetails, 1, 0],
719
+ [0, 0, 0, 0, 0, 0, 0, () => ImportOptions$, () => ImportTaskDetails$, 1, 0],
720
720
  ];
721
- var GetPrivateGraphEndpointInput = [
721
+ var GetPrivateGraphEndpointInput$ = [
722
722
  3,
723
723
  n0,
724
724
  _GPGEI,
@@ -729,7 +729,7 @@ var GetPrivateGraphEndpointInput = [
729
729
  [0, 1],
730
730
  ],
731
731
  ];
732
- var GetPrivateGraphEndpointOutput = [
732
+ var GetPrivateGraphEndpointOutput$ = [
733
733
  3,
734
734
  n0,
735
735
  _GPGEO,
@@ -737,7 +737,7 @@ var GetPrivateGraphEndpointOutput = [
737
737
  [_vI, _sI, _st, _vEI],
738
738
  [0, 64 | 0, 0, 0],
739
739
  ];
740
- var GetQueryInput = [
740
+ var GetQueryInput$ = [
741
741
  3,
742
742
  n0,
743
743
  _GQI,
@@ -748,8 +748,8 @@ var GetQueryInput = [
748
748
  [0, 1],
749
749
  ],
750
750
  ];
751
- var GetQueryOutput = [3, n0, _GQO, 0, [_i, _qS, _w, _el, _sta], [0, 0, 1, 1, 0]];
752
- var GraphDataSummary = [
751
+ var GetQueryOutput$ = [3, n0, _GQO, 0, [_i, _qS, _w, _el, _sta], [0, 0, 1, 1, 0]];
752
+ var GraphDataSummary$ = [
753
753
  3,
754
754
  n0,
755
755
  _GDS,
@@ -772,7 +772,7 @@ var GraphDataSummary = [
772
772
  () => EdgeStructures,
773
773
  ],
774
774
  ];
775
- var GraphSnapshotSummary = [
775
+ var GraphSnapshotSummary$ = [
776
776
  3,
777
777
  n0,
778
778
  _GSS,
@@ -780,7 +780,7 @@ var GraphSnapshotSummary = [
780
780
  [_i, _n, _a, _sGI, _sCT, _st, _kKI],
781
781
  [0, 0, 0, 0, 4, 0, 0],
782
782
  ];
783
- var GraphSummary = [
783
+ var GraphSummary$ = [
784
784
  3,
785
785
  n0,
786
786
  _GS,
@@ -788,7 +788,7 @@ var GraphSummary = [
788
788
  [_i, _n, _a, _st, _pM, _pC, _en, _rC, _kKI, _dP],
789
789
  [0, 0, 0, 0, 1, 2, 0, 1, 0, 2],
790
790
  ];
791
- var ImportTaskDetails = [
791
+ var ImportTaskDetails$ = [
792
792
  3,
793
793
  n0,
794
794
  _ITD,
@@ -796,7 +796,7 @@ var ImportTaskDetails = [
796
796
  [_st, _sT, _tES, _pP, _eC, _eD, _sC, _dEC],
797
797
  [0, 4, 1, 1, 1, 0, 1, 1],
798
798
  ];
799
- var ImportTaskSummary = [
799
+ var ImportTaskSummary$ = [
800
800
  3,
801
801
  n0,
802
802
  _ITS,
@@ -804,9 +804,9 @@ var ImportTaskSummary = [
804
804
  [_gI, _tIa, _so, _f, _pT, _rA, _st],
805
805
  [0, 0, 0, 0, 0, 0, 0],
806
806
  ];
807
- var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
808
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
809
- var ListExportTasksInput = [
807
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
808
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
809
+ var ListExportTasksInput$ = [
810
810
  3,
811
811
  n0,
812
812
  _LETI,
@@ -818,7 +818,7 @@ var ListExportTasksInput = [
818
818
  [1, { [_hQ]: _mR }],
819
819
  ],
820
820
  ];
821
- var ListExportTasksOutput = [
821
+ var ListExportTasksOutput$ = [
822
822
  3,
823
823
  n0,
824
824
  _LETO,
@@ -826,7 +826,7 @@ var ListExportTasksOutput = [
826
826
  [_ta, _nT],
827
827
  [() => ExportTaskSummaryList, 0],
828
828
  ];
829
- var ListGraphsInput = [
829
+ var ListGraphsInput$ = [
830
830
  3,
831
831
  n0,
832
832
  _LGI,
@@ -837,7 +837,7 @@ var ListGraphsInput = [
837
837
  [1, { [_hQ]: _mR }],
838
838
  ],
839
839
  ];
840
- var ListGraphSnapshotsInput = [
840
+ var ListGraphSnapshotsInput$ = [
841
841
  3,
842
842
  n0,
843
843
  _LGSI,
@@ -849,7 +849,7 @@ var ListGraphSnapshotsInput = [
849
849
  [1, { [_hQ]: _mR }],
850
850
  ],
851
851
  ];
852
- var ListGraphSnapshotsOutput = [
852
+ var ListGraphSnapshotsOutput$ = [
853
853
  3,
854
854
  n0,
855
855
  _LGSO,
@@ -857,8 +857,8 @@ var ListGraphSnapshotsOutput = [
857
857
  [_gSr, _nT],
858
858
  [() => GraphSnapshotSummaryList, 0],
859
859
  ];
860
- var ListGraphsOutput = [3, n0, _LGO, 0, [_g, _nT], [() => GraphSummaryList, 0]];
861
- var ListImportTasksInput = [
860
+ var ListGraphsOutput$ = [3, n0, _LGO, 0, [_g, _nT], [() => GraphSummaryList, 0]];
861
+ var ListImportTasksInput$ = [
862
862
  3,
863
863
  n0,
864
864
  _LITI,
@@ -869,7 +869,7 @@ var ListImportTasksInput = [
869
869
  [1, { [_hQ]: _mR }],
870
870
  ],
871
871
  ];
872
- var ListImportTasksOutput = [
872
+ var ListImportTasksOutput$ = [
873
873
  3,
874
874
  n0,
875
875
  _LITO,
@@ -877,7 +877,7 @@ var ListImportTasksOutput = [
877
877
  [_ta, _nT],
878
878
  [() => ImportTaskSummaryList, 0],
879
879
  ];
880
- var ListPrivateGraphEndpointsInput = [
880
+ var ListPrivateGraphEndpointsInput$ = [
881
881
  3,
882
882
  n0,
883
883
  _LPGEI,
@@ -889,7 +889,7 @@ var ListPrivateGraphEndpointsInput = [
889
889
  [1, { [_hQ]: _mR }],
890
890
  ],
891
891
  ];
892
- var ListPrivateGraphEndpointsOutput = [
892
+ var ListPrivateGraphEndpointsOutput$ = [
893
893
  3,
894
894
  n0,
895
895
  _LPGEO,
@@ -897,7 +897,7 @@ var ListPrivateGraphEndpointsOutput = [
897
897
  [_pGE, _nT],
898
898
  [() => PrivateGraphEndpointSummaryList, 0],
899
899
  ];
900
- var ListQueriesInput = [
900
+ var ListQueriesInput$ = [
901
901
  3,
902
902
  n0,
903
903
  _LQI,
@@ -909,12 +909,12 @@ var ListQueriesInput = [
909
909
  [0, { [_hQ]: _sta }],
910
910
  ],
911
911
  ];
912
- var ListQueriesOutput = [3, n0, _LQO, 0, [_qu], [() => QuerySummaryList]];
913
- var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_rAe], [[0, 1]]];
914
- var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_t], [128 | 0]];
915
- var NeptuneImportOptions = [3, n0, _NIO, 0, [_sEP, _sEKKI, _pDVL, _pEI], [0, 0, 2, 2]];
916
- var NodeStructure = [3, n0, _NS, 0, [_co, _nP, _dOEL], [1, 64 | 0, 64 | 0]];
917
- var PrivateGraphEndpointSummary = [
912
+ var ListQueriesOutput$ = [3, n0, _LQO, 0, [_qu], [() => QuerySummaryList]];
913
+ var ListTagsForResourceInput$ = [3, n0, _LTFRI, 0, [_rAe], [[0, 1]]];
914
+ var ListTagsForResourceOutput$ = [3, n0, _LTFRO, 0, [_t], [128 | 0]];
915
+ var NeptuneImportOptions$ = [3, n0, _NIO, 0, [_sEP, _sEKKI, _pDVL, _pEI], [0, 0, 2, 2]];
916
+ var NodeStructure$ = [3, n0, _NS, 0, [_co, _nP, _dOEL], [1, 64 | 0, 64 | 0]];
917
+ var PrivateGraphEndpointSummary$ = [
918
918
  3,
919
919
  n0,
920
920
  _PGES,
@@ -922,19 +922,19 @@ var PrivateGraphEndpointSummary = [
922
922
  [_vI, _sI, _st, _vEI],
923
923
  [0, 64 | 0, 0, 0],
924
924
  ];
925
- var QuerySummary = [3, n0, _QS, 0, [_i, _qS, _w, _el, _sta], [0, 0, 1, 1, 0]];
926
- var ResetGraphInput = [3, n0, _RGI, 0, [_gIr, _sS], [[0, 1], 2]];
927
- var ResetGraphOutput = [
925
+ var QuerySummary$ = [3, n0, _QS, 0, [_i, _qS, _w, _el, _sta], [0, 0, 1, 1, 0]];
926
+ var ResetGraphInput$ = [3, n0, _RGI, 0, [_gIr, _sS], [[0, 1], 2]];
927
+ var ResetGraphOutput$ = [
928
928
  3,
929
929
  n0,
930
930
  _RGO,
931
931
  0,
932
932
  [_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
933
- [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
933
+ [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0],
934
934
  ];
935
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
936
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
937
- var RestoreGraphFromSnapshotInput = [
935
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
936
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
937
+ var RestoreGraphFromSnapshotInput$ = [
938
938
  3,
939
939
  n0,
940
940
  _RGFSI,
@@ -942,15 +942,15 @@ var RestoreGraphFromSnapshotInput = [
942
942
  [_sIn, _gN, _pM, _dP, _t, _rC, _pC],
943
943
  [[0, 1], 0, 1, 2, 128 | 0, 1, 2],
944
944
  ];
945
- var RestoreGraphFromSnapshotOutput = [
945
+ var RestoreGraphFromSnapshotOutput$ = [
946
946
  3,
947
947
  n0,
948
948
  _RGFSO,
949
949
  0,
950
950
  [_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
951
- [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
951
+ [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0],
952
952
  ];
953
- var ServiceQuotaExceededException = [
953
+ var ServiceQuotaExceededException$ = [
954
954
  -3,
955
955
  n0,
956
956
  _SQEE,
@@ -958,64 +958,64 @@ var ServiceQuotaExceededException = [
958
958
  [_m, _rI, _rT, _sCe, _qC],
959
959
  [0, 0, 0, 0, 0],
960
960
  ];
961
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
962
- var StartExportTaskInput = [
961
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
962
+ var StartExportTaskInput$ = [
963
963
  3,
964
964
  n0,
965
965
  _SETI,
966
966
  0,
967
967
  [_gIr, _rA, _f, _d, _kKI, _pT, _eFx, _t],
968
- [0, 0, 0, 0, 0, 0, () => ExportFilter, 128 | 0],
968
+ [0, 0, 0, 0, 0, 0, () => ExportFilter$, 128 | 0],
969
969
  ];
970
- var StartExportTaskOutput = [
970
+ var StartExportTaskOutput$ = [
971
971
  3,
972
972
  n0,
973
973
  _SETO,
974
974
  0,
975
975
  [_gI, _rA, _tIa, _st, _f, _d, _kKI, _pT, _sR, _eFx],
976
- [0, 0, 0, 0, 0, 0, 0, 0, 0, () => ExportFilter],
976
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, () => ExportFilter$],
977
977
  ];
978
- var StartGraphInput = [3, n0, _SGI, 0, [_gIr], [[0, 1]]];
979
- var StartGraphOutput = [
978
+ var StartGraphInput$ = [3, n0, _SGI, 0, [_gIr], [[0, 1]]];
979
+ var StartGraphOutput$ = [
980
980
  3,
981
981
  n0,
982
982
  _SGO,
983
983
  0,
984
984
  [_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
985
- [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
985
+ [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0],
986
986
  ];
987
- var StartImportTaskInput = [
987
+ var StartImportTaskInput$ = [
988
988
  3,
989
989
  n0,
990
990
  _SITI,
991
991
  0,
992
992
  [_iO, _fOE, _so, _f, _pT, _bNH, _gIr, _rA],
993
- [() => ImportOptions, 2, 0, 0, 0, 0, [0, 1], 0],
993
+ [() => ImportOptions$, 2, 0, 0, 0, 0, [0, 1], 0],
994
994
  ];
995
- var StartImportTaskOutput = [
995
+ var StartImportTaskOutput$ = [
996
996
  3,
997
997
  n0,
998
998
  _SITO,
999
999
  0,
1000
1000
  [_gI, _tIa, _so, _f, _pT, _rA, _st, _iO],
1001
- [0, 0, 0, 0, 0, 0, 0, () => ImportOptions],
1001
+ [0, 0, 0, 0, 0, 0, 0, () => ImportOptions$],
1002
1002
  ];
1003
- var StopGraphInput = [3, n0, _SGIt, 0, [_gIr], [[0, 1]]];
1004
- var StopGraphOutput = [
1003
+ var StopGraphInput$ = [3, n0, _SGIt, 0, [_gIr], [[0, 1]]];
1004
+ var StopGraphOutput$ = [
1005
1005
  3,
1006
1006
  n0,
1007
1007
  _SGOt,
1008
1008
  0,
1009
1009
  [_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
1010
- [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
1011
- ];
1012
- var TagResourceInput = [3, n0, _TRI, 0, [_rAe, _t], [[0, 1], 128 | 0]];
1013
- var TagResourceOutput = [3, n0, _TRO, 0, [], []];
1014
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1015
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1016
- var UnprocessableException = [-3, n0, _UE, { [_e]: _c, [_hE]: 422 }, [_m, _r], [0, 0]];
1017
- schema.TypeRegistry.for(n0).registerError(UnprocessableException, UnprocessableException$1);
1018
- var UntagResourceInput = [
1010
+ [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0],
1011
+ ];
1012
+ var TagResourceInput$ = [3, n0, _TRI, 0, [_rAe, _t], [[0, 1], 128 | 0]];
1013
+ var TagResourceOutput$ = [3, n0, _TRO, 0, [], []];
1014
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1015
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
1016
+ var UnprocessableException$ = [-3, n0, _UE, { [_e]: _c, [_hE]: 422 }, [_m, _r], [0, 0]];
1017
+ schema.TypeRegistry.for(n0).registerError(UnprocessableException$, UnprocessableException);
1018
+ var UntagResourceInput$ = [
1019
1019
  3,
1020
1020
  n0,
1021
1021
  _URI,
@@ -1026,304 +1026,304 @@ var UntagResourceInput = [
1026
1026
  [64 | 0, { [_hQ]: _tK }],
1027
1027
  ],
1028
1028
  ];
1029
- var UntagResourceOutput = [3, n0, _URO, 0, [], []];
1030
- var UpdateGraphInput = [3, n0, _UGI, 0, [_gIr, _pC, _pM, _dP], [[0, 1], 2, 1, 2]];
1031
- var UpdateGraphOutput = [
1029
+ var UntagResourceOutput$ = [3, n0, _URO, 0, [], []];
1030
+ var UpdateGraphInput$ = [3, n0, _UGI, 0, [_gIr, _pC, _pM, _dP], [[0, 1], 2, 1, 2]];
1031
+ var UpdateGraphOutput$ = [
1032
1032
  3,
1033
1033
  n0,
1034
1034
  _UGO,
1035
1035
  0,
1036
1036
  [_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
1037
- [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
1037
+ [0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0],
1038
1038
  ];
1039
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m, _r], [0, 0]];
1040
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1041
- var VectorSearchConfiguration = [3, n0, _VSC, 0, [_di], [1]];
1039
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m, _r], [0, 0]];
1040
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1041
+ var VectorSearchConfiguration$ = [3, n0, _VSC, 0, [_di], [1]];
1042
1042
  var __Unit = "unit";
1043
- var NeptuneGraphServiceException = [-3, _sm, "NeptuneGraphServiceException", 0, [], []];
1044
- schema.TypeRegistry.for(_sm).registerError(NeptuneGraphServiceException, NeptuneGraphServiceException$1);
1045
- var EdgeStructures = [1, n0, _ESd, 0, () => EdgeStructure];
1046
- var ExportTaskSummaryList = [1, n0, _ETSL, 0, () => ExportTaskSummary];
1047
- var GraphSnapshotSummaryList = [1, n0, _GSSL, 0, () => GraphSnapshotSummary];
1048
- var GraphSummaryList = [1, n0, _GSL, 0, () => GraphSummary];
1049
- var ImportTaskSummaryList = [1, n0, _ITSL, 0, () => ImportTaskSummary];
1050
- var NodeStructures = [1, n0, _NSo, 0, () => NodeStructure];
1051
- var PrivateGraphEndpointSummaryList = [1, n0, _PGESL, 0, () => PrivateGraphEndpointSummary];
1052
- var QuerySummaryList = [1, n0, _QSL, 0, () => QuerySummary];
1053
- var ExportFilterPerLabelMap = [2, n0, _EFPLM, 0, 0, () => ExportFilterElement];
1054
- var ExportFilterPropertyMap = [2, n0, _EFPM, 0, 0, () => ExportFilterPropertyAttributes];
1055
- var ImportOptions = [3, n0, _IO, 0, [_ne], [() => NeptuneImportOptions]];
1056
- var CancelExportTask = [
1043
+ var NeptuneGraphServiceException$ = [-3, _sm, "NeptuneGraphServiceException", 0, [], []];
1044
+ schema.TypeRegistry.for(_sm).registerError(NeptuneGraphServiceException$, NeptuneGraphServiceException);
1045
+ var EdgeStructures = [1, n0, _ESd, 0, () => EdgeStructure$];
1046
+ var ExportTaskSummaryList = [1, n0, _ETSL, 0, () => ExportTaskSummary$];
1047
+ var GraphSnapshotSummaryList = [1, n0, _GSSL, 0, () => GraphSnapshotSummary$];
1048
+ var GraphSummaryList = [1, n0, _GSL, 0, () => GraphSummary$];
1049
+ var ImportTaskSummaryList = [1, n0, _ITSL, 0, () => ImportTaskSummary$];
1050
+ var NodeStructures = [1, n0, _NSo, 0, () => NodeStructure$];
1051
+ var PrivateGraphEndpointSummaryList = [1, n0, _PGESL, 0, () => PrivateGraphEndpointSummary$];
1052
+ var QuerySummaryList = [1, n0, _QSL, 0, () => QuerySummary$];
1053
+ var ExportFilterPerLabelMap = [2, n0, _EFPLM, 0, 0, () => ExportFilterElement$];
1054
+ var ExportFilterPropertyMap = [2, n0, _EFPM, 0, 0, () => ExportFilterPropertyAttributes$];
1055
+ var ImportOptions$ = [3, n0, _IO, 0, [_ne], [() => NeptuneImportOptions$]];
1056
+ var CancelExportTask$ = [
1057
1057
  9,
1058
1058
  n0,
1059
1059
  _CET,
1060
1060
  { [_h]: ["DELETE", "/exporttasks/{taskIdentifier}", 200] },
1061
- () => CancelExportTaskInput,
1062
- () => CancelExportTaskOutput,
1061
+ () => CancelExportTaskInput$,
1062
+ () => CancelExportTaskOutput$,
1063
1063
  ];
1064
- var CancelImportTask = [
1064
+ var CancelImportTask$ = [
1065
1065
  9,
1066
1066
  n0,
1067
1067
  _CIT,
1068
1068
  { [_h]: ["DELETE", "/importtasks/{taskIdentifier}", 200] },
1069
- () => CancelImportTaskInput,
1070
- () => CancelImportTaskOutput,
1069
+ () => CancelImportTaskInput$,
1070
+ () => CancelImportTaskOutput$,
1071
1071
  ];
1072
- var CancelQuery = [
1072
+ var CancelQuery$ = [
1073
1073
  9,
1074
1074
  n0,
1075
1075
  _CQ,
1076
1076
  { [_en]: ["{graphIdentifier}."], [_h]: ["DELETE", "/queries/{queryId}", 200] },
1077
- () => CancelQueryInput,
1077
+ () => CancelQueryInput$,
1078
1078
  () => __Unit,
1079
1079
  ];
1080
- var CreateGraph = [
1080
+ var CreateGraph$ = [
1081
1081
  9,
1082
1082
  n0,
1083
1083
  _CG,
1084
1084
  { [_h]: ["POST", "/graphs", 201] },
1085
- () => CreateGraphInput,
1086
- () => CreateGraphOutput,
1085
+ () => CreateGraphInput$,
1086
+ () => CreateGraphOutput$,
1087
1087
  ];
1088
- var CreateGraphSnapshot = [
1088
+ var CreateGraphSnapshot$ = [
1089
1089
  9,
1090
1090
  n0,
1091
1091
  _CGS,
1092
1092
  { [_h]: ["POST", "/snapshots", 201] },
1093
- () => CreateGraphSnapshotInput,
1094
- () => CreateGraphSnapshotOutput,
1093
+ () => CreateGraphSnapshotInput$,
1094
+ () => CreateGraphSnapshotOutput$,
1095
1095
  ];
1096
- var CreateGraphUsingImportTask = [
1096
+ var CreateGraphUsingImportTask$ = [
1097
1097
  9,
1098
1098
  n0,
1099
1099
  _CGUIT,
1100
1100
  { [_h]: ["POST", "/importtasks", 201] },
1101
- () => CreateGraphUsingImportTaskInput,
1102
- () => CreateGraphUsingImportTaskOutput,
1101
+ () => CreateGraphUsingImportTaskInput$,
1102
+ () => CreateGraphUsingImportTaskOutput$,
1103
1103
  ];
1104
- var CreatePrivateGraphEndpoint = [
1104
+ var CreatePrivateGraphEndpoint$ = [
1105
1105
  9,
1106
1106
  n0,
1107
1107
  _CPGE,
1108
1108
  { [_h]: ["POST", "/graphs/{graphIdentifier}/endpoints/", 201] },
1109
- () => CreatePrivateGraphEndpointInput,
1110
- () => CreatePrivateGraphEndpointOutput,
1109
+ () => CreatePrivateGraphEndpointInput$,
1110
+ () => CreatePrivateGraphEndpointOutput$,
1111
1111
  ];
1112
- var DeleteGraph = [
1112
+ var DeleteGraph$ = [
1113
1113
  9,
1114
1114
  n0,
1115
1115
  _DG,
1116
1116
  { [_h]: ["DELETE", "/graphs/{graphIdentifier}", 200] },
1117
- () => DeleteGraphInput,
1118
- () => DeleteGraphOutput,
1117
+ () => DeleteGraphInput$,
1118
+ () => DeleteGraphOutput$,
1119
1119
  ];
1120
- var DeleteGraphSnapshot = [
1120
+ var DeleteGraphSnapshot$ = [
1121
1121
  9,
1122
1122
  n0,
1123
1123
  _DGS,
1124
1124
  { [_h]: ["DELETE", "/snapshots/{snapshotIdentifier}", 200] },
1125
- () => DeleteGraphSnapshotInput,
1126
- () => DeleteGraphSnapshotOutput,
1125
+ () => DeleteGraphSnapshotInput$,
1126
+ () => DeleteGraphSnapshotOutput$,
1127
1127
  ];
1128
- var DeletePrivateGraphEndpoint = [
1128
+ var DeletePrivateGraphEndpoint$ = [
1129
1129
  9,
1130
1130
  n0,
1131
1131
  _DPGE,
1132
1132
  { [_h]: ["DELETE", "/graphs/{graphIdentifier}/endpoints/{vpcId}", 200] },
1133
- () => DeletePrivateGraphEndpointInput,
1134
- () => DeletePrivateGraphEndpointOutput,
1133
+ () => DeletePrivateGraphEndpointInput$,
1134
+ () => DeletePrivateGraphEndpointOutput$,
1135
1135
  ];
1136
- var ExecuteQuery = [
1136
+ var ExecuteQuery$ = [
1137
1137
  9,
1138
1138
  n0,
1139
1139
  _EQ,
1140
1140
  { [_h]: ["POST", "/queries", 200], [_en]: ["{graphIdentifier}."] },
1141
- () => ExecuteQueryInput,
1142
- () => ExecuteQueryOutput,
1141
+ () => ExecuteQueryInput$,
1142
+ () => ExecuteQueryOutput$,
1143
1143
  ];
1144
- var GetExportTask = [
1144
+ var GetExportTask$ = [
1145
1145
  9,
1146
1146
  n0,
1147
1147
  _GET,
1148
1148
  { [_h]: ["GET", "/exporttasks/{taskIdentifier}", 200] },
1149
- () => GetExportTaskInput,
1150
- () => GetExportTaskOutput,
1149
+ () => GetExportTaskInput$,
1150
+ () => GetExportTaskOutput$,
1151
1151
  ];
1152
- var GetGraph = [
1152
+ var GetGraph$ = [
1153
1153
  9,
1154
1154
  n0,
1155
1155
  _GG,
1156
1156
  { [_h]: ["GET", "/graphs/{graphIdentifier}", 200] },
1157
- () => GetGraphInput,
1158
- () => GetGraphOutput,
1157
+ () => GetGraphInput$,
1158
+ () => GetGraphOutput$,
1159
1159
  ];
1160
- var GetGraphSnapshot = [
1160
+ var GetGraphSnapshot$ = [
1161
1161
  9,
1162
1162
  n0,
1163
1163
  _GGS,
1164
1164
  { [_h]: ["GET", "/snapshots/{snapshotIdentifier}", 200] },
1165
- () => GetGraphSnapshotInput,
1166
- () => GetGraphSnapshotOutput,
1165
+ () => GetGraphSnapshotInput$,
1166
+ () => GetGraphSnapshotOutput$,
1167
1167
  ];
1168
- var GetGraphSummary = [
1168
+ var GetGraphSummary$ = [
1169
1169
  9,
1170
1170
  n0,
1171
1171
  _GGSe,
1172
1172
  { [_en]: ["{graphIdentifier}."], [_h]: ["GET", "/summary", 200] },
1173
- () => GetGraphSummaryInput,
1174
- () => GetGraphSummaryOutput,
1173
+ () => GetGraphSummaryInput$,
1174
+ () => GetGraphSummaryOutput$,
1175
1175
  ];
1176
- var GetImportTask = [
1176
+ var GetImportTask$ = [
1177
1177
  9,
1178
1178
  n0,
1179
1179
  _GIT,
1180
1180
  { [_h]: ["GET", "/importtasks/{taskIdentifier}", 200] },
1181
- () => GetImportTaskInput,
1182
- () => GetImportTaskOutput,
1181
+ () => GetImportTaskInput$,
1182
+ () => GetImportTaskOutput$,
1183
1183
  ];
1184
- var GetPrivateGraphEndpoint = [
1184
+ var GetPrivateGraphEndpoint$ = [
1185
1185
  9,
1186
1186
  n0,
1187
1187
  _GPGE,
1188
1188
  { [_h]: ["GET", "/graphs/{graphIdentifier}/endpoints/{vpcId}", 200] },
1189
- () => GetPrivateGraphEndpointInput,
1190
- () => GetPrivateGraphEndpointOutput,
1189
+ () => GetPrivateGraphEndpointInput$,
1190
+ () => GetPrivateGraphEndpointOutput$,
1191
1191
  ];
1192
- var GetQuery = [
1192
+ var GetQuery$ = [
1193
1193
  9,
1194
1194
  n0,
1195
1195
  _GQ,
1196
1196
  { [_en]: ["{graphIdentifier}."], [_h]: ["GET", "/queries/{queryId}", 200] },
1197
- () => GetQueryInput,
1198
- () => GetQueryOutput,
1197
+ () => GetQueryInput$,
1198
+ () => GetQueryOutput$,
1199
1199
  ];
1200
- var ListExportTasks = [
1200
+ var ListExportTasks$ = [
1201
1201
  9,
1202
1202
  n0,
1203
1203
  _LET,
1204
1204
  { [_h]: ["GET", "/exporttasks", 200] },
1205
- () => ListExportTasksInput,
1206
- () => ListExportTasksOutput,
1205
+ () => ListExportTasksInput$,
1206
+ () => ListExportTasksOutput$,
1207
1207
  ];
1208
- var ListGraphs = [
1208
+ var ListGraphs$ = [
1209
1209
  9,
1210
1210
  n0,
1211
1211
  _LG,
1212
1212
  { [_h]: ["GET", "/graphs", 200] },
1213
- () => ListGraphsInput,
1214
- () => ListGraphsOutput,
1213
+ () => ListGraphsInput$,
1214
+ () => ListGraphsOutput$,
1215
1215
  ];
1216
- var ListGraphSnapshots = [
1216
+ var ListGraphSnapshots$ = [
1217
1217
  9,
1218
1218
  n0,
1219
1219
  _LGS,
1220
1220
  { [_h]: ["GET", "/snapshots", 200] },
1221
- () => ListGraphSnapshotsInput,
1222
- () => ListGraphSnapshotsOutput,
1221
+ () => ListGraphSnapshotsInput$,
1222
+ () => ListGraphSnapshotsOutput$,
1223
1223
  ];
1224
- var ListImportTasks = [
1224
+ var ListImportTasks$ = [
1225
1225
  9,
1226
1226
  n0,
1227
1227
  _LIT,
1228
1228
  { [_h]: ["GET", "/importtasks", 200] },
1229
- () => ListImportTasksInput,
1230
- () => ListImportTasksOutput,
1229
+ () => ListImportTasksInput$,
1230
+ () => ListImportTasksOutput$,
1231
1231
  ];
1232
- var ListPrivateGraphEndpoints = [
1232
+ var ListPrivateGraphEndpoints$ = [
1233
1233
  9,
1234
1234
  n0,
1235
1235
  _LPGE,
1236
1236
  { [_h]: ["GET", "/graphs/{graphIdentifier}/endpoints/", 200] },
1237
- () => ListPrivateGraphEndpointsInput,
1238
- () => ListPrivateGraphEndpointsOutput,
1237
+ () => ListPrivateGraphEndpointsInput$,
1238
+ () => ListPrivateGraphEndpointsOutput$,
1239
1239
  ];
1240
- var ListQueries = [
1240
+ var ListQueries$ = [
1241
1241
  9,
1242
1242
  n0,
1243
1243
  _LQ,
1244
1244
  { [_en]: ["{graphIdentifier}."], [_h]: ["GET", "/queries", 200] },
1245
- () => ListQueriesInput,
1246
- () => ListQueriesOutput,
1245
+ () => ListQueriesInput$,
1246
+ () => ListQueriesOutput$,
1247
1247
  ];
1248
- var ListTagsForResource = [
1248
+ var ListTagsForResource$ = [
1249
1249
  9,
1250
1250
  n0,
1251
1251
  _LTFR,
1252
1252
  { [_h]: ["GET", "/tags/{resourceArn}", 200] },
1253
- () => ListTagsForResourceInput,
1254
- () => ListTagsForResourceOutput,
1253
+ () => ListTagsForResourceInput$,
1254
+ () => ListTagsForResourceOutput$,
1255
1255
  ];
1256
- var ResetGraph = [
1256
+ var ResetGraph$ = [
1257
1257
  9,
1258
1258
  n0,
1259
1259
  _RG,
1260
1260
  { [_h]: ["PUT", "/graphs/{graphIdentifier}", 200] },
1261
- () => ResetGraphInput,
1262
- () => ResetGraphOutput,
1261
+ () => ResetGraphInput$,
1262
+ () => ResetGraphOutput$,
1263
1263
  ];
1264
- var RestoreGraphFromSnapshot = [
1264
+ var RestoreGraphFromSnapshot$ = [
1265
1265
  9,
1266
1266
  n0,
1267
1267
  _RGFS,
1268
1268
  { [_h]: ["POST", "/snapshots/{snapshotIdentifier}/restore", 201] },
1269
- () => RestoreGraphFromSnapshotInput,
1270
- () => RestoreGraphFromSnapshotOutput,
1269
+ () => RestoreGraphFromSnapshotInput$,
1270
+ () => RestoreGraphFromSnapshotOutput$,
1271
1271
  ];
1272
- var StartExportTask = [
1272
+ var StartExportTask$ = [
1273
1273
  9,
1274
1274
  n0,
1275
1275
  _SET,
1276
1276
  { [_h]: ["POST", "/exporttasks", 201] },
1277
- () => StartExportTaskInput,
1278
- () => StartExportTaskOutput,
1277
+ () => StartExportTaskInput$,
1278
+ () => StartExportTaskOutput$,
1279
1279
  ];
1280
- var StartGraph = [
1280
+ var StartGraph$ = [
1281
1281
  9,
1282
1282
  n0,
1283
1283
  _SG,
1284
1284
  { [_h]: ["POST", "/graphs/{graphIdentifier}/start", 200] },
1285
- () => StartGraphInput,
1286
- () => StartGraphOutput,
1285
+ () => StartGraphInput$,
1286
+ () => StartGraphOutput$,
1287
1287
  ];
1288
- var StartImportTask = [
1288
+ var StartImportTask$ = [
1289
1289
  9,
1290
1290
  n0,
1291
1291
  _SIT,
1292
1292
  { [_h]: ["POST", "/graphs/{graphIdentifier}/importtasks", 201] },
1293
- () => StartImportTaskInput,
1294
- () => StartImportTaskOutput,
1293
+ () => StartImportTaskInput$,
1294
+ () => StartImportTaskOutput$,
1295
1295
  ];
1296
- var StopGraph = [
1296
+ var StopGraph$ = [
1297
1297
  9,
1298
1298
  n0,
1299
1299
  _SGt,
1300
1300
  { [_h]: ["POST", "/graphs/{graphIdentifier}/stop", 200] },
1301
- () => StopGraphInput,
1302
- () => StopGraphOutput,
1301
+ () => StopGraphInput$,
1302
+ () => StopGraphOutput$,
1303
1303
  ];
1304
- var TagResource = [
1304
+ var TagResource$ = [
1305
1305
  9,
1306
1306
  n0,
1307
1307
  _TR,
1308
1308
  { [_h]: ["POST", "/tags/{resourceArn}", 200] },
1309
- () => TagResourceInput,
1310
- () => TagResourceOutput,
1309
+ () => TagResourceInput$,
1310
+ () => TagResourceOutput$,
1311
1311
  ];
1312
- var UntagResource = [
1312
+ var UntagResource$ = [
1313
1313
  9,
1314
1314
  n0,
1315
1315
  _UR,
1316
1316
  { [_h]: ["DELETE", "/tags/{resourceArn}", 200] },
1317
- () => UntagResourceInput,
1318
- () => UntagResourceOutput,
1317
+ () => UntagResourceInput$,
1318
+ () => UntagResourceOutput$,
1319
1319
  ];
1320
- var UpdateGraph = [
1320
+ var UpdateGraph$ = [
1321
1321
  9,
1322
1322
  n0,
1323
1323
  _UG,
1324
1324
  { [_h]: ["PATCH", "/graphs/{graphIdentifier}", 200] },
1325
- () => UpdateGraphInput,
1326
- () => UpdateGraphOutput,
1325
+ () => UpdateGraphInput$,
1326
+ () => UpdateGraphOutput$,
1327
1327
  ];
1328
1328
 
1329
1329
  class CancelExportTaskCommand extends smithyClient.Command
@@ -1337,7 +1337,7 @@ class CancelExportTaskCommand extends smithyClient.Command
1337
1337
  })
1338
1338
  .s("AmazonNeptuneGraph", "CancelExportTask", {})
1339
1339
  .n("NeptuneGraphClient", "CancelExportTaskCommand")
1340
- .sc(CancelExportTask)
1340
+ .sc(CancelExportTask$)
1341
1341
  .build() {
1342
1342
  }
1343
1343
 
@@ -1352,7 +1352,7 @@ class CancelImportTaskCommand extends smithyClient.Command
1352
1352
  })
1353
1353
  .s("AmazonNeptuneGraph", "CancelImportTask", {})
1354
1354
  .n("NeptuneGraphClient", "CancelImportTaskCommand")
1355
- .sc(CancelImportTask)
1355
+ .sc(CancelImportTask$)
1356
1356
  .build() {
1357
1357
  }
1358
1358
 
@@ -1367,7 +1367,7 @@ class CancelQueryCommand extends smithyClient.Command
1367
1367
  })
1368
1368
  .s("AmazonNeptuneGraph", "CancelQuery", {})
1369
1369
  .n("NeptuneGraphClient", "CancelQueryCommand")
1370
- .sc(CancelQuery)
1370
+ .sc(CancelQuery$)
1371
1371
  .build() {
1372
1372
  }
1373
1373
 
@@ -1382,7 +1382,7 @@ class CreateGraphCommand extends smithyClient.Command
1382
1382
  })
1383
1383
  .s("AmazonNeptuneGraph", "CreateGraph", {})
1384
1384
  .n("NeptuneGraphClient", "CreateGraphCommand")
1385
- .sc(CreateGraph)
1385
+ .sc(CreateGraph$)
1386
1386
  .build() {
1387
1387
  }
1388
1388
 
@@ -1397,7 +1397,7 @@ class CreateGraphSnapshotCommand extends smithyClient.Command
1397
1397
  })
1398
1398
  .s("AmazonNeptuneGraph", "CreateGraphSnapshot", {})
1399
1399
  .n("NeptuneGraphClient", "CreateGraphSnapshotCommand")
1400
- .sc(CreateGraphSnapshot)
1400
+ .sc(CreateGraphSnapshot$)
1401
1401
  .build() {
1402
1402
  }
1403
1403
 
@@ -1412,7 +1412,7 @@ class CreateGraphUsingImportTaskCommand extends smithyClient.Command
1412
1412
  })
1413
1413
  .s("AmazonNeptuneGraph", "CreateGraphUsingImportTask", {})
1414
1414
  .n("NeptuneGraphClient", "CreateGraphUsingImportTaskCommand")
1415
- .sc(CreateGraphUsingImportTask)
1415
+ .sc(CreateGraphUsingImportTask$)
1416
1416
  .build() {
1417
1417
  }
1418
1418
 
@@ -1427,7 +1427,7 @@ class CreatePrivateGraphEndpointCommand extends smithyClient.Command
1427
1427
  })
1428
1428
  .s("AmazonNeptuneGraph", "CreatePrivateGraphEndpoint", {})
1429
1429
  .n("NeptuneGraphClient", "CreatePrivateGraphEndpointCommand")
1430
- .sc(CreatePrivateGraphEndpoint)
1430
+ .sc(CreatePrivateGraphEndpoint$)
1431
1431
  .build() {
1432
1432
  }
1433
1433
 
@@ -1442,7 +1442,7 @@ class DeleteGraphCommand extends smithyClient.Command
1442
1442
  })
1443
1443
  .s("AmazonNeptuneGraph", "DeleteGraph", {})
1444
1444
  .n("NeptuneGraphClient", "DeleteGraphCommand")
1445
- .sc(DeleteGraph)
1445
+ .sc(DeleteGraph$)
1446
1446
  .build() {
1447
1447
  }
1448
1448
 
@@ -1457,7 +1457,7 @@ class DeleteGraphSnapshotCommand extends smithyClient.Command
1457
1457
  })
1458
1458
  .s("AmazonNeptuneGraph", "DeleteGraphSnapshot", {})
1459
1459
  .n("NeptuneGraphClient", "DeleteGraphSnapshotCommand")
1460
- .sc(DeleteGraphSnapshot)
1460
+ .sc(DeleteGraphSnapshot$)
1461
1461
  .build() {
1462
1462
  }
1463
1463
 
@@ -1472,7 +1472,7 @@ class DeletePrivateGraphEndpointCommand extends smithyClient.Command
1472
1472
  })
1473
1473
  .s("AmazonNeptuneGraph", "DeletePrivateGraphEndpoint", {})
1474
1474
  .n("NeptuneGraphClient", "DeletePrivateGraphEndpointCommand")
1475
- .sc(DeletePrivateGraphEndpoint)
1475
+ .sc(DeletePrivateGraphEndpoint$)
1476
1476
  .build() {
1477
1477
  }
1478
1478
 
@@ -1487,7 +1487,7 @@ class ExecuteQueryCommand extends smithyClient.Command
1487
1487
  })
1488
1488
  .s("AmazonNeptuneGraph", "ExecuteQuery", {})
1489
1489
  .n("NeptuneGraphClient", "ExecuteQueryCommand")
1490
- .sc(ExecuteQuery)
1490
+ .sc(ExecuteQuery$)
1491
1491
  .build() {
1492
1492
  }
1493
1493
 
@@ -1502,7 +1502,7 @@ class GetExportTaskCommand extends smithyClient.Command
1502
1502
  })
1503
1503
  .s("AmazonNeptuneGraph", "GetExportTask", {})
1504
1504
  .n("NeptuneGraphClient", "GetExportTaskCommand")
1505
- .sc(GetExportTask)
1505
+ .sc(GetExportTask$)
1506
1506
  .build() {
1507
1507
  }
1508
1508
 
@@ -1517,7 +1517,7 @@ class GetGraphCommand extends smithyClient.Command
1517
1517
  })
1518
1518
  .s("AmazonNeptuneGraph", "GetGraph", {})
1519
1519
  .n("NeptuneGraphClient", "GetGraphCommand")
1520
- .sc(GetGraph)
1520
+ .sc(GetGraph$)
1521
1521
  .build() {
1522
1522
  }
1523
1523
 
@@ -1532,7 +1532,7 @@ class GetGraphSnapshotCommand extends smithyClient.Command
1532
1532
  })
1533
1533
  .s("AmazonNeptuneGraph", "GetGraphSnapshot", {})
1534
1534
  .n("NeptuneGraphClient", "GetGraphSnapshotCommand")
1535
- .sc(GetGraphSnapshot)
1535
+ .sc(GetGraphSnapshot$)
1536
1536
  .build() {
1537
1537
  }
1538
1538
 
@@ -1547,7 +1547,7 @@ class GetGraphSummaryCommand extends smithyClient.Command
1547
1547
  })
1548
1548
  .s("AmazonNeptuneGraph", "GetGraphSummary", {})
1549
1549
  .n("NeptuneGraphClient", "GetGraphSummaryCommand")
1550
- .sc(GetGraphSummary)
1550
+ .sc(GetGraphSummary$)
1551
1551
  .build() {
1552
1552
  }
1553
1553
 
@@ -1562,7 +1562,7 @@ class GetImportTaskCommand extends smithyClient.Command
1562
1562
  })
1563
1563
  .s("AmazonNeptuneGraph", "GetImportTask", {})
1564
1564
  .n("NeptuneGraphClient", "GetImportTaskCommand")
1565
- .sc(GetImportTask)
1565
+ .sc(GetImportTask$)
1566
1566
  .build() {
1567
1567
  }
1568
1568
 
@@ -1577,7 +1577,7 @@ class GetPrivateGraphEndpointCommand extends smithyClient.Command
1577
1577
  })
1578
1578
  .s("AmazonNeptuneGraph", "GetPrivateGraphEndpoint", {})
1579
1579
  .n("NeptuneGraphClient", "GetPrivateGraphEndpointCommand")
1580
- .sc(GetPrivateGraphEndpoint)
1580
+ .sc(GetPrivateGraphEndpoint$)
1581
1581
  .build() {
1582
1582
  }
1583
1583
 
@@ -1592,7 +1592,7 @@ class GetQueryCommand extends smithyClient.Command
1592
1592
  })
1593
1593
  .s("AmazonNeptuneGraph", "GetQuery", {})
1594
1594
  .n("NeptuneGraphClient", "GetQueryCommand")
1595
- .sc(GetQuery)
1595
+ .sc(GetQuery$)
1596
1596
  .build() {
1597
1597
  }
1598
1598
 
@@ -1607,7 +1607,7 @@ class ListExportTasksCommand extends smithyClient.Command
1607
1607
  })
1608
1608
  .s("AmazonNeptuneGraph", "ListExportTasks", {})
1609
1609
  .n("NeptuneGraphClient", "ListExportTasksCommand")
1610
- .sc(ListExportTasks)
1610
+ .sc(ListExportTasks$)
1611
1611
  .build() {
1612
1612
  }
1613
1613
 
@@ -1622,7 +1622,7 @@ class ListGraphsCommand extends smithyClient.Command
1622
1622
  })
1623
1623
  .s("AmazonNeptuneGraph", "ListGraphs", {})
1624
1624
  .n("NeptuneGraphClient", "ListGraphsCommand")
1625
- .sc(ListGraphs)
1625
+ .sc(ListGraphs$)
1626
1626
  .build() {
1627
1627
  }
1628
1628
 
@@ -1637,7 +1637,7 @@ class ListGraphSnapshotsCommand extends smithyClient.Command
1637
1637
  })
1638
1638
  .s("AmazonNeptuneGraph", "ListGraphSnapshots", {})
1639
1639
  .n("NeptuneGraphClient", "ListGraphSnapshotsCommand")
1640
- .sc(ListGraphSnapshots)
1640
+ .sc(ListGraphSnapshots$)
1641
1641
  .build() {
1642
1642
  }
1643
1643
 
@@ -1652,7 +1652,7 @@ class ListImportTasksCommand extends smithyClient.Command
1652
1652
  })
1653
1653
  .s("AmazonNeptuneGraph", "ListImportTasks", {})
1654
1654
  .n("NeptuneGraphClient", "ListImportTasksCommand")
1655
- .sc(ListImportTasks)
1655
+ .sc(ListImportTasks$)
1656
1656
  .build() {
1657
1657
  }
1658
1658
 
@@ -1667,7 +1667,7 @@ class ListPrivateGraphEndpointsCommand extends smithyClient.Command
1667
1667
  })
1668
1668
  .s("AmazonNeptuneGraph", "ListPrivateGraphEndpoints", {})
1669
1669
  .n("NeptuneGraphClient", "ListPrivateGraphEndpointsCommand")
1670
- .sc(ListPrivateGraphEndpoints)
1670
+ .sc(ListPrivateGraphEndpoints$)
1671
1671
  .build() {
1672
1672
  }
1673
1673
 
@@ -1682,7 +1682,7 @@ class ListQueriesCommand extends smithyClient.Command
1682
1682
  })
1683
1683
  .s("AmazonNeptuneGraph", "ListQueries", {})
1684
1684
  .n("NeptuneGraphClient", "ListQueriesCommand")
1685
- .sc(ListQueries)
1685
+ .sc(ListQueries$)
1686
1686
  .build() {
1687
1687
  }
1688
1688
 
@@ -1697,7 +1697,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1697
1697
  })
1698
1698
  .s("AmazonNeptuneGraph", "ListTagsForResource", {})
1699
1699
  .n("NeptuneGraphClient", "ListTagsForResourceCommand")
1700
- .sc(ListTagsForResource)
1700
+ .sc(ListTagsForResource$)
1701
1701
  .build() {
1702
1702
  }
1703
1703
 
@@ -1712,7 +1712,7 @@ class ResetGraphCommand extends smithyClient.Command
1712
1712
  })
1713
1713
  .s("AmazonNeptuneGraph", "ResetGraph", {})
1714
1714
  .n("NeptuneGraphClient", "ResetGraphCommand")
1715
- .sc(ResetGraph)
1715
+ .sc(ResetGraph$)
1716
1716
  .build() {
1717
1717
  }
1718
1718
 
@@ -1727,7 +1727,7 @@ class RestoreGraphFromSnapshotCommand extends smithyClient.Command
1727
1727
  })
1728
1728
  .s("AmazonNeptuneGraph", "RestoreGraphFromSnapshot", {})
1729
1729
  .n("NeptuneGraphClient", "RestoreGraphFromSnapshotCommand")
1730
- .sc(RestoreGraphFromSnapshot)
1730
+ .sc(RestoreGraphFromSnapshot$)
1731
1731
  .build() {
1732
1732
  }
1733
1733
 
@@ -1742,7 +1742,7 @@ class StartExportTaskCommand extends smithyClient.Command
1742
1742
  })
1743
1743
  .s("AmazonNeptuneGraph", "StartExportTask", {})
1744
1744
  .n("NeptuneGraphClient", "StartExportTaskCommand")
1745
- .sc(StartExportTask)
1745
+ .sc(StartExportTask$)
1746
1746
  .build() {
1747
1747
  }
1748
1748
 
@@ -1757,7 +1757,7 @@ class StartGraphCommand extends smithyClient.Command
1757
1757
  })
1758
1758
  .s("AmazonNeptuneGraph", "StartGraph", {})
1759
1759
  .n("NeptuneGraphClient", "StartGraphCommand")
1760
- .sc(StartGraph)
1760
+ .sc(StartGraph$)
1761
1761
  .build() {
1762
1762
  }
1763
1763
 
@@ -1772,7 +1772,7 @@ class StartImportTaskCommand extends smithyClient.Command
1772
1772
  })
1773
1773
  .s("AmazonNeptuneGraph", "StartImportTask", {})
1774
1774
  .n("NeptuneGraphClient", "StartImportTaskCommand")
1775
- .sc(StartImportTask)
1775
+ .sc(StartImportTask$)
1776
1776
  .build() {
1777
1777
  }
1778
1778
 
@@ -1787,7 +1787,7 @@ class StopGraphCommand extends smithyClient.Command
1787
1787
  })
1788
1788
  .s("AmazonNeptuneGraph", "StopGraph", {})
1789
1789
  .n("NeptuneGraphClient", "StopGraphCommand")
1790
- .sc(StopGraph)
1790
+ .sc(StopGraph$)
1791
1791
  .build() {
1792
1792
  }
1793
1793
 
@@ -1802,7 +1802,7 @@ class TagResourceCommand extends smithyClient.Command
1802
1802
  })
1803
1803
  .s("AmazonNeptuneGraph", "TagResource", {})
1804
1804
  .n("NeptuneGraphClient", "TagResourceCommand")
1805
- .sc(TagResource)
1805
+ .sc(TagResource$)
1806
1806
  .build() {
1807
1807
  }
1808
1808
 
@@ -1817,7 +1817,7 @@ class UntagResourceCommand extends smithyClient.Command
1817
1817
  })
1818
1818
  .s("AmazonNeptuneGraph", "UntagResource", {})
1819
1819
  .n("NeptuneGraphClient", "UntagResourceCommand")
1820
- .sc(UntagResource)
1820
+ .sc(UntagResource$)
1821
1821
  .build() {
1822
1822
  }
1823
1823
 
@@ -1832,7 +1832,7 @@ class UpdateGraphCommand extends smithyClient.Command
1832
1832
  })
1833
1833
  .s("AmazonNeptuneGraph", "UpdateGraph", {})
1834
1834
  .n("NeptuneGraphClient", "UpdateGraphCommand")
1835
- .sc(UpdateGraph)
1835
+ .sc(UpdateGraph$)
1836
1836
  .build() {
1837
1837
  }
1838
1838
 
@@ -2491,70 +2491,197 @@ Object.defineProperty(exports, "__Client", {
2491
2491
  enumerable: true,
2492
2492
  get: function () { return smithyClient.Client; }
2493
2493
  });
2494
- exports.AccessDeniedException = AccessDeniedException$1;
2494
+ exports.AccessDeniedException = AccessDeniedException;
2495
+ exports.AccessDeniedException$ = AccessDeniedException$;
2495
2496
  exports.BlankNodeHandling = BlankNodeHandling;
2497
+ exports.CancelExportTask$ = CancelExportTask$;
2496
2498
  exports.CancelExportTaskCommand = CancelExportTaskCommand;
2499
+ exports.CancelExportTaskInput$ = CancelExportTaskInput$;
2500
+ exports.CancelExportTaskOutput$ = CancelExportTaskOutput$;
2501
+ exports.CancelImportTask$ = CancelImportTask$;
2497
2502
  exports.CancelImportTaskCommand = CancelImportTaskCommand;
2503
+ exports.CancelImportTaskInput$ = CancelImportTaskInput$;
2504
+ exports.CancelImportTaskOutput$ = CancelImportTaskOutput$;
2505
+ exports.CancelQuery$ = CancelQuery$;
2498
2506
  exports.CancelQueryCommand = CancelQueryCommand;
2499
- exports.ConflictException = ConflictException$1;
2507
+ exports.CancelQueryInput$ = CancelQueryInput$;
2508
+ exports.ConflictException = ConflictException;
2509
+ exports.ConflictException$ = ConflictException$;
2500
2510
  exports.ConflictExceptionReason = ConflictExceptionReason;
2511
+ exports.CreateGraph$ = CreateGraph$;
2501
2512
  exports.CreateGraphCommand = CreateGraphCommand;
2513
+ exports.CreateGraphInput$ = CreateGraphInput$;
2514
+ exports.CreateGraphOutput$ = CreateGraphOutput$;
2515
+ exports.CreateGraphSnapshot$ = CreateGraphSnapshot$;
2502
2516
  exports.CreateGraphSnapshotCommand = CreateGraphSnapshotCommand;
2517
+ exports.CreateGraphSnapshotInput$ = CreateGraphSnapshotInput$;
2518
+ exports.CreateGraphSnapshotOutput$ = CreateGraphSnapshotOutput$;
2519
+ exports.CreateGraphUsingImportTask$ = CreateGraphUsingImportTask$;
2503
2520
  exports.CreateGraphUsingImportTaskCommand = CreateGraphUsingImportTaskCommand;
2521
+ exports.CreateGraphUsingImportTaskInput$ = CreateGraphUsingImportTaskInput$;
2522
+ exports.CreateGraphUsingImportTaskOutput$ = CreateGraphUsingImportTaskOutput$;
2523
+ exports.CreatePrivateGraphEndpoint$ = CreatePrivateGraphEndpoint$;
2504
2524
  exports.CreatePrivateGraphEndpointCommand = CreatePrivateGraphEndpointCommand;
2525
+ exports.CreatePrivateGraphEndpointInput$ = CreatePrivateGraphEndpointInput$;
2526
+ exports.CreatePrivateGraphEndpointOutput$ = CreatePrivateGraphEndpointOutput$;
2527
+ exports.DeleteGraph$ = DeleteGraph$;
2505
2528
  exports.DeleteGraphCommand = DeleteGraphCommand;
2529
+ exports.DeleteGraphInput$ = DeleteGraphInput$;
2530
+ exports.DeleteGraphOutput$ = DeleteGraphOutput$;
2531
+ exports.DeleteGraphSnapshot$ = DeleteGraphSnapshot$;
2506
2532
  exports.DeleteGraphSnapshotCommand = DeleteGraphSnapshotCommand;
2533
+ exports.DeleteGraphSnapshotInput$ = DeleteGraphSnapshotInput$;
2534
+ exports.DeleteGraphSnapshotOutput$ = DeleteGraphSnapshotOutput$;
2535
+ exports.DeletePrivateGraphEndpoint$ = DeletePrivateGraphEndpoint$;
2507
2536
  exports.DeletePrivateGraphEndpointCommand = DeletePrivateGraphEndpointCommand;
2537
+ exports.DeletePrivateGraphEndpointInput$ = DeletePrivateGraphEndpointInput$;
2538
+ exports.DeletePrivateGraphEndpointOutput$ = DeletePrivateGraphEndpointOutput$;
2539
+ exports.EdgeStructure$ = EdgeStructure$;
2540
+ exports.ExecuteQuery$ = ExecuteQuery$;
2508
2541
  exports.ExecuteQueryCommand = ExecuteQueryCommand;
2542
+ exports.ExecuteQueryInput$ = ExecuteQueryInput$;
2543
+ exports.ExecuteQueryOutput$ = ExecuteQueryOutput$;
2509
2544
  exports.ExplainMode = ExplainMode;
2545
+ exports.ExportFilter$ = ExportFilter$;
2546
+ exports.ExportFilterElement$ = ExportFilterElement$;
2547
+ exports.ExportFilterPropertyAttributes$ = ExportFilterPropertyAttributes$;
2510
2548
  exports.ExportFormat = ExportFormat;
2549
+ exports.ExportTaskDetails$ = ExportTaskDetails$;
2511
2550
  exports.ExportTaskStatus = ExportTaskStatus;
2551
+ exports.ExportTaskSummary$ = ExportTaskSummary$;
2512
2552
  exports.Format = Format;
2553
+ exports.GetExportTask$ = GetExportTask$;
2513
2554
  exports.GetExportTaskCommand = GetExportTaskCommand;
2555
+ exports.GetExportTaskInput$ = GetExportTaskInput$;
2556
+ exports.GetExportTaskOutput$ = GetExportTaskOutput$;
2557
+ exports.GetGraph$ = GetGraph$;
2514
2558
  exports.GetGraphCommand = GetGraphCommand;
2559
+ exports.GetGraphInput$ = GetGraphInput$;
2560
+ exports.GetGraphOutput$ = GetGraphOutput$;
2561
+ exports.GetGraphSnapshot$ = GetGraphSnapshot$;
2515
2562
  exports.GetGraphSnapshotCommand = GetGraphSnapshotCommand;
2563
+ exports.GetGraphSnapshotInput$ = GetGraphSnapshotInput$;
2564
+ exports.GetGraphSnapshotOutput$ = GetGraphSnapshotOutput$;
2565
+ exports.GetGraphSummary$ = GetGraphSummary$;
2516
2566
  exports.GetGraphSummaryCommand = GetGraphSummaryCommand;
2567
+ exports.GetGraphSummaryInput$ = GetGraphSummaryInput$;
2568
+ exports.GetGraphSummaryOutput$ = GetGraphSummaryOutput$;
2569
+ exports.GetImportTask$ = GetImportTask$;
2517
2570
  exports.GetImportTaskCommand = GetImportTaskCommand;
2571
+ exports.GetImportTaskInput$ = GetImportTaskInput$;
2572
+ exports.GetImportTaskOutput$ = GetImportTaskOutput$;
2573
+ exports.GetPrivateGraphEndpoint$ = GetPrivateGraphEndpoint$;
2518
2574
  exports.GetPrivateGraphEndpointCommand = GetPrivateGraphEndpointCommand;
2575
+ exports.GetPrivateGraphEndpointInput$ = GetPrivateGraphEndpointInput$;
2576
+ exports.GetPrivateGraphEndpointOutput$ = GetPrivateGraphEndpointOutput$;
2577
+ exports.GetQuery$ = GetQuery$;
2519
2578
  exports.GetQueryCommand = GetQueryCommand;
2579
+ exports.GetQueryInput$ = GetQueryInput$;
2580
+ exports.GetQueryOutput$ = GetQueryOutput$;
2581
+ exports.GraphDataSummary$ = GraphDataSummary$;
2582
+ exports.GraphSnapshotSummary$ = GraphSnapshotSummary$;
2520
2583
  exports.GraphStatus = GraphStatus;
2584
+ exports.GraphSummary$ = GraphSummary$;
2521
2585
  exports.GraphSummaryMode = GraphSummaryMode;
2586
+ exports.ImportOptions$ = ImportOptions$;
2587
+ exports.ImportTaskDetails$ = ImportTaskDetails$;
2522
2588
  exports.ImportTaskStatus = ImportTaskStatus;
2523
- exports.InternalServerException = InternalServerException$1;
2589
+ exports.ImportTaskSummary$ = ImportTaskSummary$;
2590
+ exports.InternalServerException = InternalServerException;
2591
+ exports.InternalServerException$ = InternalServerException$;
2592
+ exports.ListExportTasks$ = ListExportTasks$;
2524
2593
  exports.ListExportTasksCommand = ListExportTasksCommand;
2594
+ exports.ListExportTasksInput$ = ListExportTasksInput$;
2595
+ exports.ListExportTasksOutput$ = ListExportTasksOutput$;
2596
+ exports.ListGraphSnapshots$ = ListGraphSnapshots$;
2525
2597
  exports.ListGraphSnapshotsCommand = ListGraphSnapshotsCommand;
2598
+ exports.ListGraphSnapshotsInput$ = ListGraphSnapshotsInput$;
2599
+ exports.ListGraphSnapshotsOutput$ = ListGraphSnapshotsOutput$;
2600
+ exports.ListGraphs$ = ListGraphs$;
2526
2601
  exports.ListGraphsCommand = ListGraphsCommand;
2602
+ exports.ListGraphsInput$ = ListGraphsInput$;
2603
+ exports.ListGraphsOutput$ = ListGraphsOutput$;
2604
+ exports.ListImportTasks$ = ListImportTasks$;
2527
2605
  exports.ListImportTasksCommand = ListImportTasksCommand;
2606
+ exports.ListImportTasksInput$ = ListImportTasksInput$;
2607
+ exports.ListImportTasksOutput$ = ListImportTasksOutput$;
2608
+ exports.ListPrivateGraphEndpoints$ = ListPrivateGraphEndpoints$;
2528
2609
  exports.ListPrivateGraphEndpointsCommand = ListPrivateGraphEndpointsCommand;
2610
+ exports.ListPrivateGraphEndpointsInput$ = ListPrivateGraphEndpointsInput$;
2611
+ exports.ListPrivateGraphEndpointsOutput$ = ListPrivateGraphEndpointsOutput$;
2612
+ exports.ListQueries$ = ListQueries$;
2529
2613
  exports.ListQueriesCommand = ListQueriesCommand;
2614
+ exports.ListQueriesInput$ = ListQueriesInput$;
2615
+ exports.ListQueriesOutput$ = ListQueriesOutput$;
2616
+ exports.ListTagsForResource$ = ListTagsForResource$;
2530
2617
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2618
+ exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
2619
+ exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
2531
2620
  exports.MultiValueHandlingType = MultiValueHandlingType;
2532
2621
  exports.NeptuneGraph = NeptuneGraph;
2533
2622
  exports.NeptuneGraphClient = NeptuneGraphClient;
2534
- exports.NeptuneGraphServiceException = NeptuneGraphServiceException$1;
2623
+ exports.NeptuneGraphServiceException = NeptuneGraphServiceException;
2624
+ exports.NeptuneGraphServiceException$ = NeptuneGraphServiceException$;
2625
+ exports.NeptuneImportOptions$ = NeptuneImportOptions$;
2626
+ exports.NodeStructure$ = NodeStructure$;
2535
2627
  exports.ParquetType = ParquetType;
2536
2628
  exports.PlanCacheType = PlanCacheType;
2537
2629
  exports.PrivateGraphEndpointStatus = PrivateGraphEndpointStatus;
2630
+ exports.PrivateGraphEndpointSummary$ = PrivateGraphEndpointSummary$;
2538
2631
  exports.QueryLanguage = QueryLanguage;
2539
2632
  exports.QueryState = QueryState;
2540
2633
  exports.QueryStateInput = QueryStateInput;
2634
+ exports.QuerySummary$ = QuerySummary$;
2635
+ exports.ResetGraph$ = ResetGraph$;
2541
2636
  exports.ResetGraphCommand = ResetGraphCommand;
2542
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
2637
+ exports.ResetGraphInput$ = ResetGraphInput$;
2638
+ exports.ResetGraphOutput$ = ResetGraphOutput$;
2639
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2640
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2641
+ exports.RestoreGraphFromSnapshot$ = RestoreGraphFromSnapshot$;
2543
2642
  exports.RestoreGraphFromSnapshotCommand = RestoreGraphFromSnapshotCommand;
2544
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
2643
+ exports.RestoreGraphFromSnapshotInput$ = RestoreGraphFromSnapshotInput$;
2644
+ exports.RestoreGraphFromSnapshotOutput$ = RestoreGraphFromSnapshotOutput$;
2645
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2646
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2545
2647
  exports.SnapshotStatus = SnapshotStatus;
2648
+ exports.StartExportTask$ = StartExportTask$;
2546
2649
  exports.StartExportTaskCommand = StartExportTaskCommand;
2650
+ exports.StartExportTaskInput$ = StartExportTaskInput$;
2651
+ exports.StartExportTaskOutput$ = StartExportTaskOutput$;
2652
+ exports.StartGraph$ = StartGraph$;
2547
2653
  exports.StartGraphCommand = StartGraphCommand;
2654
+ exports.StartGraphInput$ = StartGraphInput$;
2655
+ exports.StartGraphOutput$ = StartGraphOutput$;
2656
+ exports.StartImportTask$ = StartImportTask$;
2548
2657
  exports.StartImportTaskCommand = StartImportTaskCommand;
2658
+ exports.StartImportTaskInput$ = StartImportTaskInput$;
2659
+ exports.StartImportTaskOutput$ = StartImportTaskOutput$;
2660
+ exports.StopGraph$ = StopGraph$;
2549
2661
  exports.StopGraphCommand = StopGraphCommand;
2662
+ exports.StopGraphInput$ = StopGraphInput$;
2663
+ exports.StopGraphOutput$ = StopGraphOutput$;
2664
+ exports.TagResource$ = TagResource$;
2550
2665
  exports.TagResourceCommand = TagResourceCommand;
2551
- exports.ThrottlingException = ThrottlingException$1;
2552
- exports.UnprocessableException = UnprocessableException$1;
2666
+ exports.TagResourceInput$ = TagResourceInput$;
2667
+ exports.TagResourceOutput$ = TagResourceOutput$;
2668
+ exports.ThrottlingException = ThrottlingException;
2669
+ exports.ThrottlingException$ = ThrottlingException$;
2670
+ exports.UnprocessableException = UnprocessableException;
2671
+ exports.UnprocessableException$ = UnprocessableException$;
2553
2672
  exports.UnprocessableExceptionReason = UnprocessableExceptionReason;
2673
+ exports.UntagResource$ = UntagResource$;
2554
2674
  exports.UntagResourceCommand = UntagResourceCommand;
2675
+ exports.UntagResourceInput$ = UntagResourceInput$;
2676
+ exports.UntagResourceOutput$ = UntagResourceOutput$;
2677
+ exports.UpdateGraph$ = UpdateGraph$;
2555
2678
  exports.UpdateGraphCommand = UpdateGraphCommand;
2556
- exports.ValidationException = ValidationException$1;
2679
+ exports.UpdateGraphInput$ = UpdateGraphInput$;
2680
+ exports.UpdateGraphOutput$ = UpdateGraphOutput$;
2681
+ exports.ValidationException = ValidationException;
2682
+ exports.ValidationException$ = ValidationException$;
2557
2683
  exports.ValidationExceptionReason = ValidationExceptionReason;
2684
+ exports.VectorSearchConfiguration$ = VectorSearchConfiguration$;
2558
2685
  exports.paginateListExportTasks = paginateListExportTasks;
2559
2686
  exports.paginateListGraphSnapshots = paginateListGraphSnapshots;
2560
2687
  exports.paginateListGraphs = paginateListGraphs;