@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.
- package/README.md +32 -0
- package/dist-cjs/index.js +399 -26
- package/dist-es/NeptuneGraph.js +8 -0
- package/dist-es/commands/CancelExportTaskCommand.js +25 -0
- package/dist-es/commands/GetExportTaskCommand.js +25 -0
- package/dist-es/commands/ListExportTasksCommand.js +25 -0
- package/dist-es/commands/StartExportTaskCommand.js +25 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +22 -0
- package/dist-es/pagination/ListExportTasksPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +149 -0
- package/dist-es/waiters/index.js +2 -0
- package/dist-es/waiters/waitForExportTaskCancelled.js +40 -0
- package/dist-es/waiters/waitForExportTaskSuccessful.js +58 -0
- package/dist-types/NeptuneGraph.d.ts +29 -0
- package/dist-types/NeptuneGraphClient.d.ts +6 -2
- package/dist-types/commands/CancelExportTaskCommand.d.ts +94 -0
- package/dist-types/commands/CancelImportTaskCommand.d.ts +3 -2
- package/dist-types/commands/CreateGraphUsingImportTaskCommand.d.ts +5 -3
- package/dist-types/commands/GetExportTaskCommand.d.ts +122 -0
- package/dist-types/commands/GetImportTaskCommand.d.ts +3 -2
- package/dist-types/commands/ListExportTasksCommand.d.ts +97 -0
- package/dist-types/commands/ListImportTasksCommand.d.ts +3 -2
- package/dist-types/commands/StartExportTaskCommand.d.ts +150 -0
- package/dist-types/commands/StartImportTaskCommand.d.ts +5 -3
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +493 -1
- package/dist-types/pagination/ListExportTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/NeptuneGraph.d.ts +69 -0
- package/dist-types/ts3.4/NeptuneGraphClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CancelExportTaskCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetExportTaskCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListExportTasksCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StartExportTaskCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +125 -0
- package/dist-types/ts3.4/pagination/ListExportTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForExportTaskCancelled.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForExportTaskSuccessful.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +2 -0
- package/dist-types/waiters/waitForExportTaskCancelled.d.ts +14 -0
- package/dist-types/waiters/waitForExportTaskSuccessful.d.ts +14 -0
- 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>
|