@aws-sdk/client-neptune-graph 3.1067.0 → 3.1069.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/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +243 -263
- package/dist-cjs/models/NeptuneGraphServiceException.js +4 -8
- package/dist-cjs/models/errors.js +17 -28
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +21 -25
- package/dist-cjs/schemas/schemas_0.js +263 -175
- package/package.json +8 -8
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetQueryInput$ = exports.GetPrivateGraphEndpointOutput$ = exports.GetPrivateGraphEndpointInput$ = exports.GetImportTaskOutput$ = exports.GetImportTaskInput$ = exports.GetGraphSummaryOutput$ = exports.GetGraphSummaryInput$ = exports.GetGraphSnapshotOutput$ = exports.GetGraphSnapshotInput$ = exports.GetGraphOutput$ = exports.GetGraphInput$ = exports.GetExportTaskOutput$ = exports.GetExportTaskInput$ = exports.ExportTaskSummary$ = exports.ExportTaskDetails$ = exports.ExportFilterPropertyAttributes$ = exports.ExportFilterElement$ = exports.ExportFilter$ = exports.ExecuteQueryOutput$ = exports.ExecuteQueryInput$ = exports.EdgeStructure$ = exports.DeletePrivateGraphEndpointOutput$ = exports.DeletePrivateGraphEndpointInput$ = exports.DeleteGraphSnapshotOutput$ = exports.DeleteGraphSnapshotInput$ = exports.DeleteGraphOutput$ = exports.DeleteGraphInput$ = exports.CreatePrivateGraphEndpointOutput$ = exports.CreatePrivateGraphEndpointInput$ = exports.CreateGraphUsingImportTaskOutput$ = exports.CreateGraphUsingImportTaskInput$ = exports.CreateGraphSnapshotOutput$ = exports.CreateGraphSnapshotInput$ = exports.CreateGraphOutput$ = exports.CreateGraphInput$ = exports.CancelQueryInput$ = exports.CancelImportTaskOutput$ = exports.CancelImportTaskInput$ = exports.CancelExportTaskOutput$ = exports.CancelExportTaskInput$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.UnprocessableException$ = exports.ThrottlingException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.NeptuneGraphServiceException$ = void 0;
|
|
4
|
-
exports.CreateGraphUsingImportTask$ = exports.CreateGraphSnapshot$ = exports.CreateGraph$ = exports.CancelQuery$ = exports.CancelImportTask$ = exports.CancelExportTask$ = exports.ImportOptions$ = exports.VectorSearchConfiguration$ = exports.UpdateGraphOutput$ = exports.UpdateGraphInput$ = exports.UntagResourceOutput$ = exports.UntagResourceInput$ = exports.TagResourceOutput$ = exports.TagResourceInput$ = exports.StopGraphOutput$ = exports.StopGraphInput$ = exports.StartImportTaskOutput$ = exports.StartImportTaskInput$ = exports.StartGraphOutput$ = exports.StartGraphInput$ = exports.StartExportTaskOutput$ = exports.StartExportTaskInput$ = exports.RestoreGraphFromSnapshotOutput$ = exports.RestoreGraphFromSnapshotInput$ = exports.ResetGraphOutput$ = exports.ResetGraphInput$ = exports.QuerySummary$ = exports.PrivateGraphEndpointSummary$ = exports.NodeStructure$ = exports.NeptuneImportOptions$ = exports.ListTagsForResourceOutput$ = exports.ListTagsForResourceInput$ = exports.ListQueriesOutput$ = exports.ListQueriesInput$ = exports.ListPrivateGraphEndpointsOutput$ = exports.ListPrivateGraphEndpointsInput$ = exports.ListImportTasksOutput$ = exports.ListImportTasksInput$ = exports.ListGraphsOutput$ = exports.ListGraphSnapshotsOutput$ = exports.ListGraphSnapshotsInput$ = exports.ListGraphsInput$ = exports.ListExportTasksOutput$ = exports.ListExportTasksInput$ = exports.ImportTaskSummary$ = exports.ImportTaskDetails$ = exports.GraphSummary$ = exports.GraphSnapshotSummary$ = exports.GraphDataSummary$ = exports.GetQueryOutput$ = void 0;
|
|
5
|
-
exports.UpdateGraph$ = exports.UntagResource$ = exports.TagResource$ = exports.StopGraph$ = exports.StartImportTask$ = exports.StartGraph$ = exports.StartExportTask$ = exports.RestoreGraphFromSnapshot$ = exports.ResetGraph$ = exports.ListTagsForResource$ = exports.ListQueries$ = exports.ListPrivateGraphEndpoints$ = exports.ListImportTasks$ = exports.ListGraphSnapshots$ = exports.ListGraphs$ = exports.ListExportTasks$ = exports.GetQuery$ = exports.GetPrivateGraphEndpoint$ = exports.GetImportTask$ = exports.GetGraphSummary$ = exports.GetGraphSnapshot$ = exports.GetGraph$ = exports.GetExportTask$ = exports.ExecuteQuery$ = exports.DeletePrivateGraphEndpoint$ = exports.DeleteGraphSnapshot$ = exports.DeleteGraph$ = exports.CreatePrivateGraphEndpoint$ = void 0;
|
|
6
1
|
const _ADE = "AccessDeniedException";
|
|
7
2
|
const _CE = "ConflictException";
|
|
8
3
|
const _CET = "CancelExportTask";
|
|
@@ -266,498 +261,590 @@ const _vSC = "vectorSearchConfiguration";
|
|
|
266
261
|
const _vSGI = "vpcSecurityGroupIds";
|
|
267
262
|
const _w = "waited";
|
|
268
263
|
const n0 = "com.amazonaws.neptunegraph";
|
|
269
|
-
const
|
|
270
|
-
const
|
|
271
|
-
const
|
|
272
|
-
const _s_registry =
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
264
|
+
const { TypeRegistry } = require("@smithy/core/schema");
|
|
265
|
+
const { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, UnprocessableException, ValidationException } = require("../models/errors");
|
|
266
|
+
const { NeptuneGraphServiceException } = require("../models/NeptuneGraphServiceException");
|
|
267
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
268
|
+
const NeptuneGraphServiceException$ = [-3, _s, "NeptuneGraphServiceException", 0, [], []];
|
|
269
|
+
exports.NeptuneGraphServiceException$ = NeptuneGraphServiceException$;
|
|
270
|
+
_s_registry.registerError(NeptuneGraphServiceException$, NeptuneGraphServiceException);
|
|
271
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
272
|
+
const AccessDeniedException$ = [-3, n0, _ADE,
|
|
277
273
|
{ [_e]: _c, [_hE]: 403 },
|
|
278
274
|
[_m],
|
|
279
275
|
[0], 1
|
|
280
276
|
];
|
|
281
|
-
|
|
282
|
-
|
|
277
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
278
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
279
|
+
const ConflictException$ = [-3, n0, _CE,
|
|
283
280
|
{ [_e]: _c, [_hE]: 409 },
|
|
284
281
|
[_m, _r],
|
|
285
282
|
[0, 0], 1
|
|
286
283
|
];
|
|
287
|
-
|
|
288
|
-
|
|
284
|
+
exports.ConflictException$ = ConflictException$;
|
|
285
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
286
|
+
const InternalServerException$ = [-3, n0, _ISE,
|
|
289
287
|
{ [_e]: _se, [_hE]: 500 },
|
|
290
288
|
[_m],
|
|
291
289
|
[0], 1
|
|
292
290
|
];
|
|
293
|
-
|
|
294
|
-
|
|
291
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
292
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
293
|
+
const ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
295
294
|
{ [_e]: _c, [_hE]: 404 },
|
|
296
295
|
[_m],
|
|
297
296
|
[0], 1
|
|
298
297
|
];
|
|
299
|
-
|
|
300
|
-
|
|
298
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
299
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
300
|
+
const ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
301
301
|
{ [_e]: _c, [_hE]: 402 },
|
|
302
302
|
[_m, _rI, _rT, _sC, _qC],
|
|
303
303
|
[0, 0, 0, 0, 0], 1
|
|
304
304
|
];
|
|
305
|
-
|
|
306
|
-
|
|
305
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
306
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
307
|
+
const ThrottlingException$ = [-3, n0, _TE,
|
|
307
308
|
{ [_e]: _c, [_hE]: 429 },
|
|
308
309
|
[_m],
|
|
309
310
|
[0], 1
|
|
310
311
|
];
|
|
311
|
-
|
|
312
|
-
|
|
312
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
313
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
314
|
+
const UnprocessableException$ = [-3, n0, _UE,
|
|
313
315
|
{ [_e]: _c, [_hE]: 422 },
|
|
314
316
|
[_m, _r],
|
|
315
317
|
[0, 0], 2
|
|
316
318
|
];
|
|
317
|
-
|
|
318
|
-
|
|
319
|
+
exports.UnprocessableException$ = UnprocessableException$;
|
|
320
|
+
n0_registry.registerError(UnprocessableException$, UnprocessableException);
|
|
321
|
+
const ValidationException$ = [-3, n0, _VE,
|
|
319
322
|
{ [_e]: _c, [_hE]: 400 },
|
|
320
323
|
[_m, _r],
|
|
321
324
|
[0, 0], 1
|
|
322
325
|
];
|
|
323
|
-
|
|
326
|
+
exports.ValidationException$ = ValidationException$;
|
|
327
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
324
328
|
exports.errorTypeRegistries = [
|
|
325
329
|
_s_registry,
|
|
326
330
|
n0_registry,
|
|
327
331
|
];
|
|
328
332
|
var QueryResponseBlob = [0, n0, _QRB, { [_st]: 1 }, 42];
|
|
329
|
-
|
|
333
|
+
const CancelExportTaskInput$ = [3, n0, _CETI,
|
|
330
334
|
0,
|
|
331
335
|
[_tI],
|
|
332
336
|
[[0, 1]], 1
|
|
333
337
|
];
|
|
334
|
-
exports.
|
|
338
|
+
exports.CancelExportTaskInput$ = CancelExportTaskInput$;
|
|
339
|
+
const CancelExportTaskOutput$ = [3, n0, _CETO,
|
|
335
340
|
0,
|
|
336
341
|
[_gI, _rA, _tIa, _sta, _f, _d, _kKI, _pT, _sR],
|
|
337
342
|
[0, 0, 0, 0, 0, 0, 0, 0, 0], 7
|
|
338
343
|
];
|
|
339
|
-
exports.
|
|
344
|
+
exports.CancelExportTaskOutput$ = CancelExportTaskOutput$;
|
|
345
|
+
const CancelImportTaskInput$ = [3, n0, _CITI,
|
|
340
346
|
0,
|
|
341
347
|
[_tI],
|
|
342
348
|
[[0, 1]], 1
|
|
343
349
|
];
|
|
344
|
-
exports.
|
|
350
|
+
exports.CancelImportTaskInput$ = CancelImportTaskInput$;
|
|
351
|
+
const CancelImportTaskOutput$ = [3, n0, _CITO,
|
|
345
352
|
0,
|
|
346
353
|
[_tIa, _so, _rA, _sta, _gI, _f, _pT],
|
|
347
354
|
[0, 0, 0, 0, 0, 0, 0], 4
|
|
348
355
|
];
|
|
349
|
-
exports.
|
|
356
|
+
exports.CancelImportTaskOutput$ = CancelImportTaskOutput$;
|
|
357
|
+
const CancelQueryInput$ = [3, n0, _CQI,
|
|
350
358
|
0,
|
|
351
359
|
[_gIr, _qI],
|
|
352
360
|
[[0, { [_hL]: 1, [_hH]: _gIr }], [0, 1]], 2
|
|
353
361
|
];
|
|
354
|
-
exports.
|
|
362
|
+
exports.CancelQueryInput$ = CancelQueryInput$;
|
|
363
|
+
const CreateGraphInput$ = [3, n0, _CGI,
|
|
355
364
|
0,
|
|
356
365
|
[_gN, _pM, _t, _pC, _kKI, _vSC, _rC, _dP],
|
|
357
|
-
[0, 1, 128 | 0, 2, 0, () =>
|
|
366
|
+
[0, 1, 128 | 0, 2, 0, () => VectorSearchConfiguration$, 1, 2], 2
|
|
358
367
|
];
|
|
359
|
-
exports.
|
|
368
|
+
exports.CreateGraphInput$ = CreateGraphInput$;
|
|
369
|
+
const CreateGraphOutput$ = [3, n0, _CGO,
|
|
360
370
|
0,
|
|
361
371
|
[_i, _n, _a, _sta, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
362
|
-
[0, 0, 0, 0, 0, 4, 1, 0, 2, () =>
|
|
372
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0], 3
|
|
363
373
|
];
|
|
364
|
-
exports.
|
|
374
|
+
exports.CreateGraphOutput$ = CreateGraphOutput$;
|
|
375
|
+
const CreateGraphSnapshotInput$ = [3, n0, _CGSI,
|
|
365
376
|
0,
|
|
366
377
|
[_gIr, _sN, _t],
|
|
367
378
|
[0, 0, 128 | 0], 2
|
|
368
379
|
];
|
|
369
|
-
exports.
|
|
380
|
+
exports.CreateGraphSnapshotInput$ = CreateGraphSnapshotInput$;
|
|
381
|
+
const CreateGraphSnapshotOutput$ = [3, n0, _CGSO,
|
|
370
382
|
0,
|
|
371
383
|
[_i, _n, _a, _sGI, _sCT, _sta, _kKI],
|
|
372
384
|
[0, 0, 0, 0, 4, 0, 0], 3
|
|
373
385
|
];
|
|
374
|
-
exports.
|
|
386
|
+
exports.CreateGraphSnapshotOutput$ = CreateGraphSnapshotOutput$;
|
|
387
|
+
const CreateGraphUsingImportTaskInput$ = [3, n0, _CGUITI,
|
|
375
388
|
0,
|
|
376
389
|
[_gN, _so, _rA, _t, _pC, _kKI, _vSC, _rC, _dP, _iO, _mPM, _mPMi, _fOE, _f, _pT, _bNH],
|
|
377
|
-
[0, 0, 0, 128 | 0, 2, 0, () =>
|
|
390
|
+
[0, 0, 0, 128 | 0, 2, 0, () => VectorSearchConfiguration$, 1, 2, () => ImportOptions$, 1, 1, 2, 0, 0, 0], 3
|
|
378
391
|
];
|
|
379
|
-
exports.
|
|
392
|
+
exports.CreateGraphUsingImportTaskInput$ = CreateGraphUsingImportTaskInput$;
|
|
393
|
+
const CreateGraphUsingImportTaskOutput$ = [3, n0, _CGUITO,
|
|
380
394
|
0,
|
|
381
395
|
[_tIa, _so, _rA, _sta, _gI, _f, _pT, _iO],
|
|
382
|
-
[0, 0, 0, 0, 0, 0, 0, () =>
|
|
396
|
+
[0, 0, 0, 0, 0, 0, 0, () => ImportOptions$], 4
|
|
383
397
|
];
|
|
384
|
-
exports.
|
|
398
|
+
exports.CreateGraphUsingImportTaskOutput$ = CreateGraphUsingImportTaskOutput$;
|
|
399
|
+
const CreatePrivateGraphEndpointInput$ = [3, n0, _CPGEI,
|
|
385
400
|
0,
|
|
386
401
|
[_gIr, _vI, _sI, _vSGI],
|
|
387
402
|
[[0, 1], 0, 64 | 0, 64 | 0], 1
|
|
388
403
|
];
|
|
389
|
-
exports.
|
|
404
|
+
exports.CreatePrivateGraphEndpointInput$ = CreatePrivateGraphEndpointInput$;
|
|
405
|
+
const CreatePrivateGraphEndpointOutput$ = [3, n0, _CPGEO,
|
|
390
406
|
0,
|
|
391
407
|
[_vI, _sI, _sta, _vEI],
|
|
392
408
|
[0, 64 | 0, 0, 0], 3
|
|
393
409
|
];
|
|
394
|
-
exports.
|
|
410
|
+
exports.CreatePrivateGraphEndpointOutput$ = CreatePrivateGraphEndpointOutput$;
|
|
411
|
+
const DeleteGraphInput$ = [3, n0, _DGI,
|
|
395
412
|
0,
|
|
396
413
|
[_gIr, _sS],
|
|
397
414
|
[[0, 1], [2, { [_hQ]: _sS }]], 2
|
|
398
415
|
];
|
|
399
|
-
exports.
|
|
416
|
+
exports.DeleteGraphInput$ = DeleteGraphInput$;
|
|
417
|
+
const DeleteGraphOutput$ = [3, n0, _DGO,
|
|
400
418
|
0,
|
|
401
419
|
[_i, _n, _a, _sta, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
402
|
-
[0, 0, 0, 0, 0, 4, 1, 0, 2, () =>
|
|
420
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0], 3
|
|
403
421
|
];
|
|
404
|
-
exports.
|
|
422
|
+
exports.DeleteGraphOutput$ = DeleteGraphOutput$;
|
|
423
|
+
const DeleteGraphSnapshotInput$ = [3, n0, _DGSI,
|
|
405
424
|
0,
|
|
406
425
|
[_sIn],
|
|
407
426
|
[[0, 1]], 1
|
|
408
427
|
];
|
|
409
|
-
exports.
|
|
428
|
+
exports.DeleteGraphSnapshotInput$ = DeleteGraphSnapshotInput$;
|
|
429
|
+
const DeleteGraphSnapshotOutput$ = [3, n0, _DGSO,
|
|
410
430
|
0,
|
|
411
431
|
[_i, _n, _a, _sGI, _sCT, _sta, _kKI],
|
|
412
432
|
[0, 0, 0, 0, 4, 0, 0], 3
|
|
413
433
|
];
|
|
414
|
-
exports.
|
|
434
|
+
exports.DeleteGraphSnapshotOutput$ = DeleteGraphSnapshotOutput$;
|
|
435
|
+
const DeletePrivateGraphEndpointInput$ = [3, n0, _DPGEI,
|
|
415
436
|
0,
|
|
416
437
|
[_gIr, _vI],
|
|
417
438
|
[[0, 1], [0, 1]], 2
|
|
418
439
|
];
|
|
419
|
-
exports.
|
|
440
|
+
exports.DeletePrivateGraphEndpointInput$ = DeletePrivateGraphEndpointInput$;
|
|
441
|
+
const DeletePrivateGraphEndpointOutput$ = [3, n0, _DPGEO,
|
|
420
442
|
0,
|
|
421
443
|
[_vI, _sI, _sta, _vEI],
|
|
422
444
|
[0, 64 | 0, 0, 0], 3
|
|
423
445
|
];
|
|
424
|
-
exports.
|
|
446
|
+
exports.DeletePrivateGraphEndpointOutput$ = DeletePrivateGraphEndpointOutput$;
|
|
447
|
+
const EdgeStructure$ = [3, n0, _ES,
|
|
425
448
|
0,
|
|
426
449
|
[_co, _eP],
|
|
427
450
|
[1, 64 | 0]
|
|
428
451
|
];
|
|
429
|
-
exports.
|
|
452
|
+
exports.EdgeStructure$ = EdgeStructure$;
|
|
453
|
+
const ExecuteQueryInput$ = [3, n0, _EQI,
|
|
430
454
|
0,
|
|
431
455
|
[_gIr, _qS, _l, _p, _pCl, _eM, _qTM],
|
|
432
456
|
[[0, { [_hL]: 1, [_hH]: _gIr }], [0, { [_jN]: _q }], 0, 128 | 15, 0, [0, { [_jN]: _ex }], 1], 3
|
|
433
457
|
];
|
|
434
|
-
exports.
|
|
458
|
+
exports.ExecuteQueryInput$ = ExecuteQueryInput$;
|
|
459
|
+
const ExecuteQueryOutput$ = [3, n0, _EQO,
|
|
435
460
|
0,
|
|
436
461
|
[_pa],
|
|
437
462
|
[[() => QueryResponseBlob, 16]], 1
|
|
438
463
|
];
|
|
439
|
-
exports.
|
|
464
|
+
exports.ExecuteQueryOutput$ = ExecuteQueryOutput$;
|
|
465
|
+
const ExportFilter$ = [3, n0, _EF,
|
|
440
466
|
0,
|
|
441
467
|
[_vF, _eF],
|
|
442
468
|
[() => ExportFilterPerLabelMap, () => ExportFilterPerLabelMap]
|
|
443
469
|
];
|
|
444
|
-
exports.
|
|
470
|
+
exports.ExportFilter$ = ExportFilter$;
|
|
471
|
+
const ExportFilterElement$ = [3, n0, _EFE,
|
|
445
472
|
0,
|
|
446
473
|
[_pr],
|
|
447
474
|
[() => ExportFilterPropertyMap]
|
|
448
475
|
];
|
|
449
|
-
exports.
|
|
476
|
+
exports.ExportFilterElement$ = ExportFilterElement$;
|
|
477
|
+
const ExportFilterPropertyAttributes$ = [3, n0, _EFPA,
|
|
450
478
|
0,
|
|
451
479
|
[_oT, _sPN, _mVH],
|
|
452
480
|
[0, 0, 0]
|
|
453
481
|
];
|
|
454
|
-
exports.
|
|
482
|
+
exports.ExportFilterPropertyAttributes$ = ExportFilterPropertyAttributes$;
|
|
483
|
+
const ExportTaskDetails$ = [3, n0, _ETD,
|
|
455
484
|
0,
|
|
456
485
|
[_sT, _tES, _pP, _nVW, _nEW],
|
|
457
486
|
[4, 1, 1, 1, 1], 3
|
|
458
487
|
];
|
|
459
|
-
exports.
|
|
488
|
+
exports.ExportTaskDetails$ = ExportTaskDetails$;
|
|
489
|
+
const ExportTaskSummary$ = [3, n0, _ETS,
|
|
460
490
|
0,
|
|
461
491
|
[_gI, _rA, _tIa, _sta, _f, _d, _kKI, _pT, _sR],
|
|
462
492
|
[0, 0, 0, 0, 0, 0, 0, 0, 0], 7
|
|
463
493
|
];
|
|
464
|
-
exports.
|
|
494
|
+
exports.ExportTaskSummary$ = ExportTaskSummary$;
|
|
495
|
+
const GetExportTaskInput$ = [3, n0, _GETI,
|
|
465
496
|
0,
|
|
466
497
|
[_tI],
|
|
467
498
|
[[0, 1]], 1
|
|
468
499
|
];
|
|
469
|
-
exports.
|
|
500
|
+
exports.GetExportTaskInput$ = GetExportTaskInput$;
|
|
501
|
+
const GetExportTaskOutput$ = [3, n0, _GETO,
|
|
470
502
|
0,
|
|
471
503
|
[_gI, _rA, _tIa, _sta, _f, _d, _kKI, _pT, _sR, _eTD, _eFx],
|
|
472
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, () =>
|
|
504
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => ExportTaskDetails$, () => ExportFilter$], 7
|
|
473
505
|
];
|
|
474
|
-
exports.
|
|
506
|
+
exports.GetExportTaskOutput$ = GetExportTaskOutput$;
|
|
507
|
+
const GetGraphInput$ = [3, n0, _GGI,
|
|
475
508
|
0,
|
|
476
509
|
[_gIr],
|
|
477
510
|
[[0, 1]], 1
|
|
478
511
|
];
|
|
479
|
-
exports.
|
|
512
|
+
exports.GetGraphInput$ = GetGraphInput$;
|
|
513
|
+
const GetGraphOutput$ = [3, n0, _GGO,
|
|
480
514
|
0,
|
|
481
515
|
[_i, _n, _a, _sta, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
482
|
-
[0, 0, 0, 0, 0, 4, 1, 0, 2, () =>
|
|
516
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0], 3
|
|
483
517
|
];
|
|
484
|
-
exports.
|
|
518
|
+
exports.GetGraphOutput$ = GetGraphOutput$;
|
|
519
|
+
const GetGraphSnapshotInput$ = [3, n0, _GGSI,
|
|
485
520
|
0,
|
|
486
521
|
[_sIn],
|
|
487
522
|
[[0, 1]], 1
|
|
488
523
|
];
|
|
489
|
-
exports.
|
|
524
|
+
exports.GetGraphSnapshotInput$ = GetGraphSnapshotInput$;
|
|
525
|
+
const GetGraphSnapshotOutput$ = [3, n0, _GGSO,
|
|
490
526
|
0,
|
|
491
527
|
[_i, _n, _a, _sGI, _sCT, _sta, _kKI],
|
|
492
528
|
[0, 0, 0, 0, 4, 0, 0], 3
|
|
493
529
|
];
|
|
494
|
-
exports.
|
|
530
|
+
exports.GetGraphSnapshotOutput$ = GetGraphSnapshotOutput$;
|
|
531
|
+
const GetGraphSummaryInput$ = [3, n0, _GGSIe,
|
|
495
532
|
0,
|
|
496
533
|
[_gIr, _mo],
|
|
497
534
|
[[0, { [_hL]: 1, [_hH]: _gIr }], [0, { [_hQ]: _mo }]], 1
|
|
498
535
|
];
|
|
499
|
-
exports.
|
|
536
|
+
exports.GetGraphSummaryInput$ = GetGraphSummaryInput$;
|
|
537
|
+
const GetGraphSummaryOutput$ = [3, n0, _GGSOe,
|
|
500
538
|
0,
|
|
501
539
|
[_v, _lSCT, _gS],
|
|
502
|
-
[0, 5, () =>
|
|
540
|
+
[0, 5, () => GraphDataSummary$]
|
|
503
541
|
];
|
|
504
|
-
exports.
|
|
542
|
+
exports.GetGraphSummaryOutput$ = GetGraphSummaryOutput$;
|
|
543
|
+
const GetImportTaskInput$ = [3, n0, _GITI,
|
|
505
544
|
0,
|
|
506
545
|
[_tI],
|
|
507
546
|
[[0, 1]], 1
|
|
508
547
|
];
|
|
509
|
-
exports.
|
|
548
|
+
exports.GetImportTaskInput$ = GetImportTaskInput$;
|
|
549
|
+
const GetImportTaskOutput$ = [3, n0, _GITO,
|
|
510
550
|
0,
|
|
511
551
|
[_tIa, _so, _rA, _sta, _gI, _f, _pT, _iO, _iTD, _aN, _sR],
|
|
512
|
-
[0, 0, 0, 0, 0, 0, 0, () =>
|
|
552
|
+
[0, 0, 0, 0, 0, 0, 0, () => ImportOptions$, () => ImportTaskDetails$, 1, 0], 4
|
|
513
553
|
];
|
|
514
|
-
exports.
|
|
554
|
+
exports.GetImportTaskOutput$ = GetImportTaskOutput$;
|
|
555
|
+
const GetPrivateGraphEndpointInput$ = [3, n0, _GPGEI,
|
|
515
556
|
0,
|
|
516
557
|
[_gIr, _vI],
|
|
517
558
|
[[0, 1], [0, 1]], 2
|
|
518
559
|
];
|
|
519
|
-
exports.
|
|
560
|
+
exports.GetPrivateGraphEndpointInput$ = GetPrivateGraphEndpointInput$;
|
|
561
|
+
const GetPrivateGraphEndpointOutput$ = [3, n0, _GPGEO,
|
|
520
562
|
0,
|
|
521
563
|
[_vI, _sI, _sta, _vEI],
|
|
522
564
|
[0, 64 | 0, 0, 0], 3
|
|
523
565
|
];
|
|
524
|
-
exports.
|
|
566
|
+
exports.GetPrivateGraphEndpointOutput$ = GetPrivateGraphEndpointOutput$;
|
|
567
|
+
const GetQueryInput$ = [3, n0, _GQI,
|
|
525
568
|
0,
|
|
526
569
|
[_gIr, _qI],
|
|
527
570
|
[[0, { [_hL]: 1, [_hH]: _gIr }], [0, 1]], 2
|
|
528
571
|
];
|
|
529
|
-
exports.
|
|
572
|
+
exports.GetQueryInput$ = GetQueryInput$;
|
|
573
|
+
const GetQueryOutput$ = [3, n0, _GQO,
|
|
530
574
|
0,
|
|
531
575
|
[_i, _qS, _w, _el, _stat],
|
|
532
576
|
[0, 0, 1, 1, 0]
|
|
533
577
|
];
|
|
534
|
-
exports.
|
|
578
|
+
exports.GetQueryOutput$ = GetQueryOutput$;
|
|
579
|
+
const GraphDataSummary$ = [3, n0, _GDS,
|
|
535
580
|
0,
|
|
536
581
|
[_nN, _nE, _nNL, _nEL, _nL, _eL, _nNP, _nEP, _nP, _eP, _tNPV, _tEPV, _nS, _eS],
|
|
537
582
|
[1, 1, 1, 1, 64 | 0, 64 | 0, 1, 1, [1, n0, _LVML, 0, 128 | 1], [1, n0, _LVML, 0, 128 | 1], 1, 1, () => NodeStructures, () => EdgeStructures]
|
|
538
583
|
];
|
|
539
|
-
exports.
|
|
584
|
+
exports.GraphDataSummary$ = GraphDataSummary$;
|
|
585
|
+
const GraphSnapshotSummary$ = [3, n0, _GSS,
|
|
540
586
|
0,
|
|
541
587
|
[_i, _n, _a, _sGI, _sCT, _sta, _kKI],
|
|
542
588
|
[0, 0, 0, 0, 4, 0, 0], 3
|
|
543
589
|
];
|
|
544
|
-
exports.
|
|
590
|
+
exports.GraphSnapshotSummary$ = GraphSnapshotSummary$;
|
|
591
|
+
const GraphSummary$ = [3, n0, _GS,
|
|
545
592
|
0,
|
|
546
593
|
[_i, _n, _a, _sta, _pM, _pC, _en, _rC, _kKI, _dP],
|
|
547
594
|
[0, 0, 0, 0, 1, 2, 0, 1, 0, 2], 3
|
|
548
595
|
];
|
|
549
|
-
exports.
|
|
596
|
+
exports.GraphSummary$ = GraphSummary$;
|
|
597
|
+
const ImportTaskDetails$ = [3, n0, _ITD,
|
|
550
598
|
0,
|
|
551
599
|
[_sta, _sT, _tES, _pP, _eC, _sCt, _dEC, _eD],
|
|
552
600
|
[0, 4, 1, 1, 1, 1, 1, 0], 7
|
|
553
601
|
];
|
|
554
|
-
exports.
|
|
602
|
+
exports.ImportTaskDetails$ = ImportTaskDetails$;
|
|
603
|
+
const ImportTaskSummary$ = [3, n0, _ITS,
|
|
555
604
|
0,
|
|
556
605
|
[_tIa, _so, _rA, _sta, _gI, _f, _pT],
|
|
557
606
|
[0, 0, 0, 0, 0, 0, 0], 4
|
|
558
607
|
];
|
|
559
|
-
exports.
|
|
608
|
+
exports.ImportTaskSummary$ = ImportTaskSummary$;
|
|
609
|
+
const ListExportTasksInput$ = [3, n0, _LETI,
|
|
560
610
|
0,
|
|
561
611
|
[_gIr, _nT, _mR],
|
|
562
612
|
[[0, { [_hQ]: _gIr }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
563
613
|
];
|
|
564
|
-
exports.
|
|
614
|
+
exports.ListExportTasksInput$ = ListExportTasksInput$;
|
|
615
|
+
const ListExportTasksOutput$ = [3, n0, _LETO,
|
|
565
616
|
0,
|
|
566
617
|
[_ta, _nT],
|
|
567
618
|
[() => ExportTaskSummaryList, 0], 1
|
|
568
619
|
];
|
|
569
|
-
exports.
|
|
620
|
+
exports.ListExportTasksOutput$ = ListExportTasksOutput$;
|
|
621
|
+
const ListGraphsInput$ = [3, n0, _LGI,
|
|
570
622
|
0,
|
|
571
623
|
[_nT, _mR],
|
|
572
624
|
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
573
625
|
];
|
|
574
|
-
exports.
|
|
626
|
+
exports.ListGraphsInput$ = ListGraphsInput$;
|
|
627
|
+
const ListGraphSnapshotsInput$ = [3, n0, _LGSI,
|
|
575
628
|
0,
|
|
576
629
|
[_gIr, _nT, _mR],
|
|
577
630
|
[[0, { [_hQ]: _gIr }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
578
631
|
];
|
|
579
|
-
exports.
|
|
632
|
+
exports.ListGraphSnapshotsInput$ = ListGraphSnapshotsInput$;
|
|
633
|
+
const ListGraphSnapshotsOutput$ = [3, n0, _LGSO,
|
|
580
634
|
0,
|
|
581
635
|
[_gSr, _nT],
|
|
582
636
|
[() => GraphSnapshotSummaryList, 0], 1
|
|
583
637
|
];
|
|
584
|
-
exports.
|
|
638
|
+
exports.ListGraphSnapshotsOutput$ = ListGraphSnapshotsOutput$;
|
|
639
|
+
const ListGraphsOutput$ = [3, n0, _LGO,
|
|
585
640
|
0,
|
|
586
641
|
[_g, _nT],
|
|
587
642
|
[() => GraphSummaryList, 0], 1
|
|
588
643
|
];
|
|
589
|
-
exports.
|
|
644
|
+
exports.ListGraphsOutput$ = ListGraphsOutput$;
|
|
645
|
+
const ListImportTasksInput$ = [3, n0, _LITI,
|
|
590
646
|
0,
|
|
591
647
|
[_nT, _mR],
|
|
592
648
|
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
593
649
|
];
|
|
594
|
-
exports.
|
|
650
|
+
exports.ListImportTasksInput$ = ListImportTasksInput$;
|
|
651
|
+
const ListImportTasksOutput$ = [3, n0, _LITO,
|
|
595
652
|
0,
|
|
596
653
|
[_ta, _nT],
|
|
597
654
|
[() => ImportTaskSummaryList, 0], 1
|
|
598
655
|
];
|
|
599
|
-
exports.
|
|
656
|
+
exports.ListImportTasksOutput$ = ListImportTasksOutput$;
|
|
657
|
+
const ListPrivateGraphEndpointsInput$ = [3, n0, _LPGEI,
|
|
600
658
|
0,
|
|
601
659
|
[_gIr, _nT, _mR],
|
|
602
660
|
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
603
661
|
];
|
|
604
|
-
exports.
|
|
662
|
+
exports.ListPrivateGraphEndpointsInput$ = ListPrivateGraphEndpointsInput$;
|
|
663
|
+
const ListPrivateGraphEndpointsOutput$ = [3, n0, _LPGEO,
|
|
605
664
|
0,
|
|
606
665
|
[_pGE, _nT],
|
|
607
666
|
[() => PrivateGraphEndpointSummaryList, 0], 1
|
|
608
667
|
];
|
|
609
|
-
exports.
|
|
668
|
+
exports.ListPrivateGraphEndpointsOutput$ = ListPrivateGraphEndpointsOutput$;
|
|
669
|
+
const ListQueriesInput$ = [3, n0, _LQI,
|
|
610
670
|
0,
|
|
611
671
|
[_gIr, _mR, _stat],
|
|
612
672
|
[[0, { [_hL]: 1, [_hH]: _gIr }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _stat }]], 2
|
|
613
673
|
];
|
|
614
|
-
exports.
|
|
674
|
+
exports.ListQueriesInput$ = ListQueriesInput$;
|
|
675
|
+
const ListQueriesOutput$ = [3, n0, _LQO,
|
|
615
676
|
0,
|
|
616
677
|
[_qu],
|
|
617
678
|
[() => QuerySummaryList], 1
|
|
618
679
|
];
|
|
619
|
-
exports.
|
|
680
|
+
exports.ListQueriesOutput$ = ListQueriesOutput$;
|
|
681
|
+
const ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
620
682
|
0,
|
|
621
683
|
[_rAe],
|
|
622
684
|
[[0, 1]], 1
|
|
623
685
|
];
|
|
624
|
-
exports.
|
|
686
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
687
|
+
const ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
625
688
|
0,
|
|
626
689
|
[_t],
|
|
627
690
|
[128 | 0]
|
|
628
691
|
];
|
|
629
|
-
exports.
|
|
692
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
693
|
+
const NeptuneImportOptions$ = [3, n0, _NIO,
|
|
630
694
|
0,
|
|
631
695
|
[_sEP, _sEKKI, _pDVL, _pEI],
|
|
632
696
|
[0, 0, 2, 2], 2
|
|
633
697
|
];
|
|
634
|
-
exports.
|
|
698
|
+
exports.NeptuneImportOptions$ = NeptuneImportOptions$;
|
|
699
|
+
const NodeStructure$ = [3, n0, _NS,
|
|
635
700
|
0,
|
|
636
701
|
[_co, _nP, _dOEL],
|
|
637
702
|
[1, 64 | 0, 64 | 0]
|
|
638
703
|
];
|
|
639
|
-
exports.
|
|
704
|
+
exports.NodeStructure$ = NodeStructure$;
|
|
705
|
+
const PrivateGraphEndpointSummary$ = [3, n0, _PGES,
|
|
640
706
|
0,
|
|
641
707
|
[_vI, _sI, _sta, _vEI],
|
|
642
708
|
[0, 64 | 0, 0, 0], 3
|
|
643
709
|
];
|
|
644
|
-
exports.
|
|
710
|
+
exports.PrivateGraphEndpointSummary$ = PrivateGraphEndpointSummary$;
|
|
711
|
+
const QuerySummary$ = [3, n0, _QS,
|
|
645
712
|
0,
|
|
646
713
|
[_i, _qS, _w, _el, _stat],
|
|
647
714
|
[0, 0, 1, 1, 0]
|
|
648
715
|
];
|
|
649
|
-
exports.
|
|
716
|
+
exports.QuerySummary$ = QuerySummary$;
|
|
717
|
+
const ResetGraphInput$ = [3, n0, _RGI,
|
|
650
718
|
0,
|
|
651
719
|
[_gIr, _sS],
|
|
652
720
|
[[0, 1], 2], 2
|
|
653
721
|
];
|
|
654
|
-
exports.
|
|
722
|
+
exports.ResetGraphInput$ = ResetGraphInput$;
|
|
723
|
+
const ResetGraphOutput$ = [3, n0, _RGO,
|
|
655
724
|
0,
|
|
656
725
|
[_i, _n, _a, _sta, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
657
|
-
[0, 0, 0, 0, 0, 4, 1, 0, 2, () =>
|
|
726
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0], 3
|
|
658
727
|
];
|
|
659
|
-
exports.
|
|
728
|
+
exports.ResetGraphOutput$ = ResetGraphOutput$;
|
|
729
|
+
const RestoreGraphFromSnapshotInput$ = [3, n0, _RGFSI,
|
|
660
730
|
0,
|
|
661
731
|
[_sIn, _gN, _pM, _dP, _t, _rC, _pC],
|
|
662
732
|
[[0, 1], 0, 1, 2, 128 | 0, 1, 2], 2
|
|
663
733
|
];
|
|
664
|
-
exports.
|
|
734
|
+
exports.RestoreGraphFromSnapshotInput$ = RestoreGraphFromSnapshotInput$;
|
|
735
|
+
const RestoreGraphFromSnapshotOutput$ = [3, n0, _RGFSO,
|
|
665
736
|
0,
|
|
666
737
|
[_i, _n, _a, _sta, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
667
|
-
[0, 0, 0, 0, 0, 4, 1, 0, 2, () =>
|
|
738
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0], 3
|
|
668
739
|
];
|
|
669
|
-
exports.
|
|
740
|
+
exports.RestoreGraphFromSnapshotOutput$ = RestoreGraphFromSnapshotOutput$;
|
|
741
|
+
const StartExportTaskInput$ = [3, n0, _SETI,
|
|
670
742
|
0,
|
|
671
743
|
[_gIr, _rA, _f, _d, _kKI, _pT, _eFx, _t],
|
|
672
|
-
[0, 0, 0, 0, 0, 0, () =>
|
|
744
|
+
[0, 0, 0, 0, 0, 0, () => ExportFilter$, 128 | 0], 5
|
|
673
745
|
];
|
|
674
|
-
exports.
|
|
746
|
+
exports.StartExportTaskInput$ = StartExportTaskInput$;
|
|
747
|
+
const StartExportTaskOutput$ = [3, n0, _SETO,
|
|
675
748
|
0,
|
|
676
749
|
[_gI, _rA, _tIa, _sta, _f, _d, _kKI, _pT, _sR, _eFx],
|
|
677
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, () =>
|
|
750
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => ExportFilter$], 7
|
|
678
751
|
];
|
|
679
|
-
exports.
|
|
752
|
+
exports.StartExportTaskOutput$ = StartExportTaskOutput$;
|
|
753
|
+
const StartGraphInput$ = [3, n0, _SGI,
|
|
680
754
|
0,
|
|
681
755
|
[_gIr],
|
|
682
756
|
[[0, 1]], 1
|
|
683
757
|
];
|
|
684
|
-
exports.
|
|
758
|
+
exports.StartGraphInput$ = StartGraphInput$;
|
|
759
|
+
const StartGraphOutput$ = [3, n0, _SGO,
|
|
685
760
|
0,
|
|
686
761
|
[_i, _n, _a, _sta, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
687
|
-
[0, 0, 0, 0, 0, 4, 1, 0, 2, () =>
|
|
762
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0], 3
|
|
688
763
|
];
|
|
689
|
-
exports.
|
|
764
|
+
exports.StartGraphOutput$ = StartGraphOutput$;
|
|
765
|
+
const StartImportTaskInput$ = [3, n0, _SITI,
|
|
690
766
|
0,
|
|
691
767
|
[_so, _gIr, _rA, _iO, _fOE, _f, _pT, _bNH],
|
|
692
|
-
[0, [0, 1], 0, () =>
|
|
768
|
+
[0, [0, 1], 0, () => ImportOptions$, 2, 0, 0, 0], 3
|
|
693
769
|
];
|
|
694
|
-
exports.
|
|
770
|
+
exports.StartImportTaskInput$ = StartImportTaskInput$;
|
|
771
|
+
const StartImportTaskOutput$ = [3, n0, _SITO,
|
|
695
772
|
0,
|
|
696
773
|
[_tIa, _so, _rA, _sta, _gI, _f, _pT, _iO],
|
|
697
|
-
[0, 0, 0, 0, 0, 0, 0, () =>
|
|
774
|
+
[0, 0, 0, 0, 0, 0, 0, () => ImportOptions$], 4
|
|
698
775
|
];
|
|
699
|
-
exports.
|
|
776
|
+
exports.StartImportTaskOutput$ = StartImportTaskOutput$;
|
|
777
|
+
const StopGraphInput$ = [3, n0, _SGIt,
|
|
700
778
|
0,
|
|
701
779
|
[_gIr],
|
|
702
780
|
[[0, 1]], 1
|
|
703
781
|
];
|
|
704
|
-
exports.
|
|
782
|
+
exports.StopGraphInput$ = StopGraphInput$;
|
|
783
|
+
const StopGraphOutput$ = [3, n0, _SGOt,
|
|
705
784
|
0,
|
|
706
785
|
[_i, _n, _a, _sta, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
707
|
-
[0, 0, 0, 0, 0, 4, 1, 0, 2, () =>
|
|
786
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0], 3
|
|
708
787
|
];
|
|
709
|
-
exports.
|
|
788
|
+
exports.StopGraphOutput$ = StopGraphOutput$;
|
|
789
|
+
const TagResourceInput$ = [3, n0, _TRI,
|
|
710
790
|
0,
|
|
711
791
|
[_rAe, _t],
|
|
712
792
|
[[0, 1], 128 | 0], 2
|
|
713
793
|
];
|
|
714
|
-
exports.
|
|
794
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
795
|
+
const TagResourceOutput$ = [3, n0, _TRO,
|
|
715
796
|
0,
|
|
716
797
|
[],
|
|
717
798
|
[]
|
|
718
799
|
];
|
|
719
|
-
exports.
|
|
800
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
801
|
+
const UntagResourceInput$ = [3, n0, _URI,
|
|
720
802
|
0,
|
|
721
803
|
[_rAe, _tK],
|
|
722
804
|
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
723
805
|
];
|
|
724
|
-
exports.
|
|
806
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
807
|
+
const UntagResourceOutput$ = [3, n0, _URO,
|
|
725
808
|
0,
|
|
726
809
|
[],
|
|
727
810
|
[]
|
|
728
811
|
];
|
|
729
|
-
exports.
|
|
812
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
813
|
+
const UpdateGraphInput$ = [3, n0, _UGI,
|
|
730
814
|
0,
|
|
731
815
|
[_gIr, _pC, _pM, _dP],
|
|
732
816
|
[[0, 1], 2, 1, 2], 1
|
|
733
817
|
];
|
|
734
|
-
exports.
|
|
818
|
+
exports.UpdateGraphInput$ = UpdateGraphInput$;
|
|
819
|
+
const UpdateGraphOutput$ = [3, n0, _UGO,
|
|
735
820
|
0,
|
|
736
821
|
[_i, _n, _a, _sta, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
737
|
-
[0, 0, 0, 0, 0, 4, 1, 0, 2, () =>
|
|
822
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration$, 1, 0, 0, 2, 0], 3
|
|
738
823
|
];
|
|
739
|
-
exports.
|
|
824
|
+
exports.UpdateGraphOutput$ = UpdateGraphOutput$;
|
|
825
|
+
const VectorSearchConfiguration$ = [3, n0, _VSC,
|
|
740
826
|
0,
|
|
741
827
|
[_di],
|
|
742
828
|
[1], 1
|
|
743
829
|
];
|
|
830
|
+
exports.VectorSearchConfiguration$ = VectorSearchConfiguration$;
|
|
744
831
|
var __Unit = "unit";
|
|
745
832
|
var EdgeLabels = 64 | 0;
|
|
746
833
|
var EdgeProperties = 64 | 0;
|
|
747
834
|
var EdgeStructures = [1, n0, _ESd,
|
|
748
|
-
0, () =>
|
|
835
|
+
0, () => EdgeStructure$
|
|
749
836
|
];
|
|
750
837
|
var ExportTaskSummaryList = [1, n0, _ETSL,
|
|
751
|
-
0, () =>
|
|
838
|
+
0, () => ExportTaskSummary$
|
|
752
839
|
];
|
|
753
840
|
var GraphSnapshotSummaryList = [1, n0, _GSSL,
|
|
754
|
-
0, () =>
|
|
841
|
+
0, () => GraphSnapshotSummary$
|
|
755
842
|
];
|
|
756
843
|
var GraphSummaryList = [1, n0, _GSL,
|
|
757
|
-
0, () =>
|
|
844
|
+
0, () => GraphSummary$
|
|
758
845
|
];
|
|
759
846
|
var ImportTaskSummaryList = [1, n0, _ITSL,
|
|
760
|
-
0, () =>
|
|
847
|
+
0, () => ImportTaskSummary$
|
|
761
848
|
];
|
|
762
849
|
var LongValuedMapList = [1, n0, _LVML,
|
|
763
850
|
0, 128 | 1
|
|
@@ -765,131 +852,132 @@ var LongValuedMapList = [1, n0, _LVML,
|
|
|
765
852
|
var NodeLabels = 64 | 0;
|
|
766
853
|
var NodeProperties = 64 | 0;
|
|
767
854
|
var NodeStructures = [1, n0, _NSo,
|
|
768
|
-
0, () =>
|
|
855
|
+
0, () => NodeStructure$
|
|
769
856
|
];
|
|
770
857
|
var OutgoingEdgeLabels = 64 | 0;
|
|
771
858
|
var PrivateGraphEndpointSummaryList = [1, n0, _PGESL,
|
|
772
|
-
0, () =>
|
|
859
|
+
0, () => PrivateGraphEndpointSummary$
|
|
773
860
|
];
|
|
774
861
|
var QuerySummaryList = [1, n0, _QSL,
|
|
775
|
-
0, () =>
|
|
862
|
+
0, () => QuerySummary$
|
|
776
863
|
];
|
|
777
864
|
var SecurityGroupIds = 64 | 0;
|
|
778
865
|
var SubnetIds = 64 | 0;
|
|
779
866
|
var TagKeyList = 64 | 0;
|
|
780
867
|
var DocumentValuedMap = 128 | 15;
|
|
781
868
|
var ExportFilterPerLabelMap = [2, n0, _EFPLM,
|
|
782
|
-
0, 0, () =>
|
|
869
|
+
0, 0, () => ExportFilterElement$
|
|
783
870
|
];
|
|
784
871
|
var ExportFilterPropertyMap = [2, n0, _EFPM,
|
|
785
|
-
0, 0, () =>
|
|
872
|
+
0, 0, () => ExportFilterPropertyAttributes$
|
|
786
873
|
];
|
|
787
874
|
var LongValuedMap = 128 | 1;
|
|
788
875
|
var TagMap = 128 | 0;
|
|
789
|
-
|
|
876
|
+
const ImportOptions$ = [4, n0, _IO,
|
|
790
877
|
0,
|
|
791
878
|
[_ne],
|
|
792
|
-
[() =>
|
|
879
|
+
[() => NeptuneImportOptions$]
|
|
793
880
|
];
|
|
881
|
+
exports.ImportOptions$ = ImportOptions$;
|
|
794
882
|
exports.CancelExportTask$ = [9, n0, _CET,
|
|
795
|
-
{ [_h]: ["DELETE", "/exporttasks/{taskIdentifier}", 200] }, () =>
|
|
883
|
+
{ [_h]: ["DELETE", "/exporttasks/{taskIdentifier}", 200] }, () => CancelExportTaskInput$, () => CancelExportTaskOutput$
|
|
796
884
|
];
|
|
797
885
|
exports.CancelImportTask$ = [9, n0, _CIT,
|
|
798
|
-
{ [_h]: ["DELETE", "/importtasks/{taskIdentifier}", 200] }, () =>
|
|
886
|
+
{ [_h]: ["DELETE", "/importtasks/{taskIdentifier}", 200] }, () => CancelImportTaskInput$, () => CancelImportTaskOutput$
|
|
799
887
|
];
|
|
800
888
|
exports.CancelQuery$ = [9, n0, _CQ,
|
|
801
|
-
{ [_en]: ["{graphIdentifier}."], [_h]: ["DELETE", "/queries/{queryId}", 200] }, () =>
|
|
889
|
+
{ [_en]: ["{graphIdentifier}."], [_h]: ["DELETE", "/queries/{queryId}", 200] }, () => CancelQueryInput$, () => __Unit
|
|
802
890
|
];
|
|
803
891
|
exports.CreateGraph$ = [9, n0, _CG,
|
|
804
|
-
{ [_h]: ["POST", "/graphs", 201] }, () =>
|
|
892
|
+
{ [_h]: ["POST", "/graphs", 201] }, () => CreateGraphInput$, () => CreateGraphOutput$
|
|
805
893
|
];
|
|
806
894
|
exports.CreateGraphSnapshot$ = [9, n0, _CGS,
|
|
807
|
-
{ [_h]: ["POST", "/snapshots", 201] }, () =>
|
|
895
|
+
{ [_h]: ["POST", "/snapshots", 201] }, () => CreateGraphSnapshotInput$, () => CreateGraphSnapshotOutput$
|
|
808
896
|
];
|
|
809
897
|
exports.CreateGraphUsingImportTask$ = [9, n0, _CGUIT,
|
|
810
|
-
{ [_h]: ["POST", "/importtasks", 201] }, () =>
|
|
898
|
+
{ [_h]: ["POST", "/importtasks", 201] }, () => CreateGraphUsingImportTaskInput$, () => CreateGraphUsingImportTaskOutput$
|
|
811
899
|
];
|
|
812
900
|
exports.CreatePrivateGraphEndpoint$ = [9, n0, _CPGE,
|
|
813
|
-
{ [_h]: ["POST", "/graphs/{graphIdentifier}/endpoints/", 201] }, () =>
|
|
901
|
+
{ [_h]: ["POST", "/graphs/{graphIdentifier}/endpoints/", 201] }, () => CreatePrivateGraphEndpointInput$, () => CreatePrivateGraphEndpointOutput$
|
|
814
902
|
];
|
|
815
903
|
exports.DeleteGraph$ = [9, n0, _DG,
|
|
816
|
-
{ [_h]: ["DELETE", "/graphs/{graphIdentifier}", 200] }, () =>
|
|
904
|
+
{ [_h]: ["DELETE", "/graphs/{graphIdentifier}", 200] }, () => DeleteGraphInput$, () => DeleteGraphOutput$
|
|
817
905
|
];
|
|
818
906
|
exports.DeleteGraphSnapshot$ = [9, n0, _DGS,
|
|
819
|
-
{ [_h]: ["DELETE", "/snapshots/{snapshotIdentifier}", 200] }, () =>
|
|
907
|
+
{ [_h]: ["DELETE", "/snapshots/{snapshotIdentifier}", 200] }, () => DeleteGraphSnapshotInput$, () => DeleteGraphSnapshotOutput$
|
|
820
908
|
];
|
|
821
909
|
exports.DeletePrivateGraphEndpoint$ = [9, n0, _DPGE,
|
|
822
|
-
{ [_h]: ["DELETE", "/graphs/{graphIdentifier}/endpoints/{vpcId}", 200] }, () =>
|
|
910
|
+
{ [_h]: ["DELETE", "/graphs/{graphIdentifier}/endpoints/{vpcId}", 200] }, () => DeletePrivateGraphEndpointInput$, () => DeletePrivateGraphEndpointOutput$
|
|
823
911
|
];
|
|
824
912
|
exports.ExecuteQuery$ = [9, n0, _EQ,
|
|
825
|
-
{ [_en]: ["{graphIdentifier}."], [_h]: ["POST", "/queries", 200] }, () =>
|
|
913
|
+
{ [_en]: ["{graphIdentifier}."], [_h]: ["POST", "/queries", 200] }, () => ExecuteQueryInput$, () => ExecuteQueryOutput$
|
|
826
914
|
];
|
|
827
915
|
exports.GetExportTask$ = [9, n0, _GET,
|
|
828
|
-
{ [_h]: ["GET", "/exporttasks/{taskIdentifier}", 200] }, () =>
|
|
916
|
+
{ [_h]: ["GET", "/exporttasks/{taskIdentifier}", 200] }, () => GetExportTaskInput$, () => GetExportTaskOutput$
|
|
829
917
|
];
|
|
830
918
|
exports.GetGraph$ = [9, n0, _GG,
|
|
831
|
-
{ [_h]: ["GET", "/graphs/{graphIdentifier}", 200] }, () =>
|
|
919
|
+
{ [_h]: ["GET", "/graphs/{graphIdentifier}", 200] }, () => GetGraphInput$, () => GetGraphOutput$
|
|
832
920
|
];
|
|
833
921
|
exports.GetGraphSnapshot$ = [9, n0, _GGS,
|
|
834
|
-
{ [_h]: ["GET", "/snapshots/{snapshotIdentifier}", 200] }, () =>
|
|
922
|
+
{ [_h]: ["GET", "/snapshots/{snapshotIdentifier}", 200] }, () => GetGraphSnapshotInput$, () => GetGraphSnapshotOutput$
|
|
835
923
|
];
|
|
836
924
|
exports.GetGraphSummary$ = [9, n0, _GGSe,
|
|
837
|
-
{ [_en]: ["{graphIdentifier}."], [_h]: ["GET", "/summary", 200] }, () =>
|
|
925
|
+
{ [_en]: ["{graphIdentifier}."], [_h]: ["GET", "/summary", 200] }, () => GetGraphSummaryInput$, () => GetGraphSummaryOutput$
|
|
838
926
|
];
|
|
839
927
|
exports.GetImportTask$ = [9, n0, _GIT,
|
|
840
|
-
{ [_h]: ["GET", "/importtasks/{taskIdentifier}", 200] }, () =>
|
|
928
|
+
{ [_h]: ["GET", "/importtasks/{taskIdentifier}", 200] }, () => GetImportTaskInput$, () => GetImportTaskOutput$
|
|
841
929
|
];
|
|
842
930
|
exports.GetPrivateGraphEndpoint$ = [9, n0, _GPGE,
|
|
843
|
-
{ [_h]: ["GET", "/graphs/{graphIdentifier}/endpoints/{vpcId}", 200] }, () =>
|
|
931
|
+
{ [_h]: ["GET", "/graphs/{graphIdentifier}/endpoints/{vpcId}", 200] }, () => GetPrivateGraphEndpointInput$, () => GetPrivateGraphEndpointOutput$
|
|
844
932
|
];
|
|
845
933
|
exports.GetQuery$ = [9, n0, _GQ,
|
|
846
|
-
{ [_en]: ["{graphIdentifier}."], [_h]: ["GET", "/queries/{queryId}", 200] }, () =>
|
|
934
|
+
{ [_en]: ["{graphIdentifier}."], [_h]: ["GET", "/queries/{queryId}", 200] }, () => GetQueryInput$, () => GetQueryOutput$
|
|
847
935
|
];
|
|
848
936
|
exports.ListExportTasks$ = [9, n0, _LET,
|
|
849
|
-
{ [_h]: ["GET", "/exporttasks", 200] }, () =>
|
|
937
|
+
{ [_h]: ["GET", "/exporttasks", 200] }, () => ListExportTasksInput$, () => ListExportTasksOutput$
|
|
850
938
|
];
|
|
851
939
|
exports.ListGraphs$ = [9, n0, _LG,
|
|
852
|
-
{ [_h]: ["GET", "/graphs", 200] }, () =>
|
|
940
|
+
{ [_h]: ["GET", "/graphs", 200] }, () => ListGraphsInput$, () => ListGraphsOutput$
|
|
853
941
|
];
|
|
854
942
|
exports.ListGraphSnapshots$ = [9, n0, _LGS,
|
|
855
|
-
{ [_h]: ["GET", "/snapshots", 200] }, () =>
|
|
943
|
+
{ [_h]: ["GET", "/snapshots", 200] }, () => ListGraphSnapshotsInput$, () => ListGraphSnapshotsOutput$
|
|
856
944
|
];
|
|
857
945
|
exports.ListImportTasks$ = [9, n0, _LIT,
|
|
858
|
-
{ [_h]: ["GET", "/importtasks", 200] }, () =>
|
|
946
|
+
{ [_h]: ["GET", "/importtasks", 200] }, () => ListImportTasksInput$, () => ListImportTasksOutput$
|
|
859
947
|
];
|
|
860
948
|
exports.ListPrivateGraphEndpoints$ = [9, n0, _LPGE,
|
|
861
|
-
{ [_h]: ["GET", "/graphs/{graphIdentifier}/endpoints/", 200] }, () =>
|
|
949
|
+
{ [_h]: ["GET", "/graphs/{graphIdentifier}/endpoints/", 200] }, () => ListPrivateGraphEndpointsInput$, () => ListPrivateGraphEndpointsOutput$
|
|
862
950
|
];
|
|
863
951
|
exports.ListQueries$ = [9, n0, _LQ,
|
|
864
|
-
{ [_en]: ["{graphIdentifier}."], [_h]: ["GET", "/queries", 200] }, () =>
|
|
952
|
+
{ [_en]: ["{graphIdentifier}."], [_h]: ["GET", "/queries", 200] }, () => ListQueriesInput$, () => ListQueriesOutput$
|
|
865
953
|
];
|
|
866
954
|
exports.ListTagsForResource$ = [9, n0, _LTFR,
|
|
867
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () =>
|
|
955
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
868
956
|
];
|
|
869
957
|
exports.ResetGraph$ = [9, n0, _RG,
|
|
870
|
-
{ [_h]: ["PUT", "/graphs/{graphIdentifier}", 200] }, () =>
|
|
958
|
+
{ [_h]: ["PUT", "/graphs/{graphIdentifier}", 200] }, () => ResetGraphInput$, () => ResetGraphOutput$
|
|
871
959
|
];
|
|
872
960
|
exports.RestoreGraphFromSnapshot$ = [9, n0, _RGFS,
|
|
873
|
-
{ [_h]: ["POST", "/snapshots/{snapshotIdentifier}/restore", 201] }, () =>
|
|
961
|
+
{ [_h]: ["POST", "/snapshots/{snapshotIdentifier}/restore", 201] }, () => RestoreGraphFromSnapshotInput$, () => RestoreGraphFromSnapshotOutput$
|
|
874
962
|
];
|
|
875
963
|
exports.StartExportTask$ = [9, n0, _SET,
|
|
876
|
-
{ [_h]: ["POST", "/exporttasks", 201] }, () =>
|
|
964
|
+
{ [_h]: ["POST", "/exporttasks", 201] }, () => StartExportTaskInput$, () => StartExportTaskOutput$
|
|
877
965
|
];
|
|
878
966
|
exports.StartGraph$ = [9, n0, _SG,
|
|
879
|
-
{ [_h]: ["POST", "/graphs/{graphIdentifier}/start", 200] }, () =>
|
|
967
|
+
{ [_h]: ["POST", "/graphs/{graphIdentifier}/start", 200] }, () => StartGraphInput$, () => StartGraphOutput$
|
|
880
968
|
];
|
|
881
969
|
exports.StartImportTask$ = [9, n0, _SIT,
|
|
882
|
-
{ [_h]: ["POST", "/graphs/{graphIdentifier}/importtasks", 201] }, () =>
|
|
970
|
+
{ [_h]: ["POST", "/graphs/{graphIdentifier}/importtasks", 201] }, () => StartImportTaskInput$, () => StartImportTaskOutput$
|
|
883
971
|
];
|
|
884
972
|
exports.StopGraph$ = [9, n0, _SGt,
|
|
885
|
-
{ [_h]: ["POST", "/graphs/{graphIdentifier}/stop", 200] }, () =>
|
|
973
|
+
{ [_h]: ["POST", "/graphs/{graphIdentifier}/stop", 200] }, () => StopGraphInput$, () => StopGraphOutput$
|
|
886
974
|
];
|
|
887
975
|
exports.TagResource$ = [9, n0, _TR,
|
|
888
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () =>
|
|
976
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceInput$, () => TagResourceOutput$
|
|
889
977
|
];
|
|
890
978
|
exports.UntagResource$ = [9, n0, _UR,
|
|
891
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () =>
|
|
979
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
892
980
|
];
|
|
893
981
|
exports.UpdateGraph$ = [9, n0, _UG,
|
|
894
|
-
{ [_h]: ["PATCH", "/graphs/{graphIdentifier}", 200] }, () =>
|
|
982
|
+
{ [_h]: ["PATCH", "/graphs/{graphIdentifier}", 200] }, () => UpdateGraphInput$, () => UpdateGraphOutput$
|
|
895
983
|
];
|