@aws-sdk/client-neptune-graph 3.696.0 → 3.699.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 (49) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/index.js +399 -26
  3. package/dist-es/NeptuneGraph.js +8 -0
  4. package/dist-es/commands/CancelExportTaskCommand.js +25 -0
  5. package/dist-es/commands/GetExportTaskCommand.js +25 -0
  6. package/dist-es/commands/ListExportTasksCommand.js +25 -0
  7. package/dist-es/commands/StartExportTaskCommand.js +25 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/models_0.js +22 -0
  10. package/dist-es/pagination/ListExportTasksPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/protocols/Aws_restJson1.js +149 -0
  13. package/dist-es/waiters/index.js +2 -0
  14. package/dist-es/waiters/waitForExportTaskCancelled.js +40 -0
  15. package/dist-es/waiters/waitForExportTaskSuccessful.js +58 -0
  16. package/dist-types/NeptuneGraph.d.ts +29 -0
  17. package/dist-types/NeptuneGraphClient.d.ts +6 -2
  18. package/dist-types/commands/CancelExportTaskCommand.d.ts +94 -0
  19. package/dist-types/commands/CancelImportTaskCommand.d.ts +3 -2
  20. package/dist-types/commands/CreateGraphUsingImportTaskCommand.d.ts +5 -3
  21. package/dist-types/commands/GetExportTaskCommand.d.ts +122 -0
  22. package/dist-types/commands/GetImportTaskCommand.d.ts +3 -2
  23. package/dist-types/commands/ListExportTasksCommand.d.ts +97 -0
  24. package/dist-types/commands/ListImportTasksCommand.d.ts +3 -2
  25. package/dist-types/commands/StartExportTaskCommand.d.ts +150 -0
  26. package/dist-types/commands/StartImportTaskCommand.d.ts +5 -3
  27. package/dist-types/commands/index.d.ts +4 -0
  28. package/dist-types/models/models_0.d.ts +493 -1
  29. package/dist-types/pagination/ListExportTasksPaginator.d.ts +7 -0
  30. package/dist-types/pagination/index.d.ts +1 -0
  31. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  32. package/dist-types/ts3.4/NeptuneGraph.d.ts +69 -0
  33. package/dist-types/ts3.4/NeptuneGraphClient.d.ts +24 -0
  34. package/dist-types/ts3.4/commands/CancelExportTaskCommand.d.ts +50 -0
  35. package/dist-types/ts3.4/commands/GetExportTaskCommand.d.ts +47 -0
  36. package/dist-types/ts3.4/commands/ListExportTasksCommand.d.ts +50 -0
  37. package/dist-types/ts3.4/commands/StartExportTaskCommand.d.ts +50 -0
  38. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  39. package/dist-types/ts3.4/models/models_0.d.ts +125 -0
  40. package/dist-types/ts3.4/pagination/ListExportTasksPaginator.d.ts +11 -0
  41. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  42. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  43. package/dist-types/ts3.4/waiters/index.d.ts +2 -0
  44. package/dist-types/ts3.4/waiters/waitForExportTaskCancelled.d.ts +11 -0
  45. package/dist-types/ts3.4/waiters/waitForExportTaskSuccessful.d.ts +11 -0
  46. package/dist-types/waiters/index.d.ts +2 -0
  47. package/dist-types/waiters/waitForExportTaskCancelled.d.ts +14 -0
  48. package/dist-types/waiters/waitForExportTaskSuccessful.d.ts +14 -0
  49. package/package.json +4 -4
package/README.md CHANGED
@@ -205,6 +205,14 @@ see LICENSE for more information.
205
205
 
206
206
  ## Client Commands (Operations List)
207
207
 
208
+ <details>
209
+ <summary>
210
+ CancelExportTask
211
+ </summary>
212
+
213
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/neptune-graph/command/CancelExportTaskCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-neptune-graph/Interface/CancelExportTaskCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-neptune-graph/Interface/CancelExportTaskCommandOutput/)
214
+
215
+ </details>
208
216
  <details>
209
217
  <summary>
210
218
  CancelImportTask
@@ -284,6 +292,14 @@ ExecuteQuery
284
292
 
285
293
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/neptune-graph/command/ExecuteQueryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-neptune-graph/Interface/ExecuteQueryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-neptune-graph/Interface/ExecuteQueryCommandOutput/)
286
294
 
295
+ </details>
296
+ <details>
297
+ <summary>
298
+ GetExportTask
299
+ </summary>
300
+
301
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/neptune-graph/command/GetExportTaskCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-neptune-graph/Interface/GetExportTaskCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-neptune-graph/Interface/GetExportTaskCommandOutput/)
302
+
287
303
  </details>
288
304
  <details>
289
305
  <summary>
@@ -332,6 +348,14 @@ GetQuery
332
348
 
333
349
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/neptune-graph/command/GetQueryCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-neptune-graph/Interface/GetQueryCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-neptune-graph/Interface/GetQueryCommandOutput/)
334
350
 
351
+ </details>
352
+ <details>
353
+ <summary>
354
+ ListExportTasks
355
+ </summary>
356
+
357
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/neptune-graph/command/ListExportTasksCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-neptune-graph/Interface/ListExportTasksCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-neptune-graph/Interface/ListExportTasksCommandOutput/)
358
+
335
359
  </details>
336
360
  <details>
337
361
  <summary>
@@ -396,6 +420,14 @@ RestoreGraphFromSnapshot
396
420
 
397
421
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/neptune-graph/command/RestoreGraphFromSnapshotCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-neptune-graph/Interface/RestoreGraphFromSnapshotCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-neptune-graph/Interface/RestoreGraphFromSnapshotCommandOutput/)
398
422
 
423
+ </details>
424
+ <details>
425
+ <summary>
426
+ StartExportTask
427
+ </summary>
428
+
429
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/neptune-graph/command/StartExportTaskCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-neptune-graph/Interface/StartExportTaskCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-neptune-graph/Interface/StartExportTaskCommandOutput/)
430
+
399
431
  </details>
400
432
  <details>
401
433
  <summary>