2
2
import { createAggregatedClient } from "@smithy/smithy-client" ;
3
3
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types" ;
4
4
5
+ import {
6
+ CancelExportTaskCommand ,
7
+ CancelExportTaskCommandInput ,
8
+ CancelExportTaskCommandOutput ,
9
+ } from "./commands/CancelExportTaskCommand" ;
5
10
import {
6
11
CancelImportTaskCommand ,
7
12
CancelImportTaskCommandInput ,
@@ -40,6 +45,11 @@ import {
40
45
ExecuteQueryCommandInput ,
41
46
ExecuteQueryCommandOutput ,
42
47
} from "./commands/ExecuteQueryCommand" ;
48
+ import {
49
+ GetExportTaskCommand ,
50
+ GetExportTaskCommandInput ,
51
+ GetExportTaskCommandOutput ,
52
+ } from "./commands/GetExportTaskCommand" ;
43
53
import { GetGraphCommand , GetGraphCommandInput , GetGraphCommandOutput } from "./commands/GetGraphCommand" ;
44
54
import {
45
55
GetGraphSnapshotCommand ,
@@ -62,6 +72,11 @@ import {
62
72
GetPrivateGraphEndpointCommandOutput ,
63
73
} from "./commands/GetPrivateGraphEndpointCommand" ;
64
74
import { GetQueryCommand , GetQueryCommandInput , GetQueryCommandOutput } from "./commands/GetQueryCommand" ;
75
+ import {
76
+ ListExportTasksCommand ,
77
+ ListExportTasksCommandInput ,
78
+ ListExportTasksCommandOutput ,
79
+ } from "./commands/ListExportTasksCommand" ;
65
80
import { ListGraphsCommand , ListGraphsCommandInput , ListGraphsCommandOutput } from "./commands/ListGraphsCommand" ;
66
81
import {
67
82
ListGraphSnapshotsCommand ,
@@ -90,6 +105,11 @@ import {
90
105
RestoreGraphFromSnapshotCommandInput ,
91
106
RestoreGraphFromSnapshotCommandOutput ,
92
107
} from "./commands/RestoreGraphFromSnapshotCommand" ;
108
+ import {
109
+ StartExportTaskCommand ,
110
+ StartExportTaskCommandInput ,
111
+ StartExportTaskCommandOutput ,
112
+ } from "./commands/StartExportTaskCommand" ;
93
113
import {
94
114
StartImportTaskCommand ,
95
115
StartImportTaskCommandInput ,
@@ -105,6 +125,7 @@ import { UpdateGraphCommand, UpdateGraphCommandInput, UpdateGraphCommandOutput }
105
125
import { NeptuneGraphClient , NeptuneGraphClientConfig } from "./NeptuneGraphClient" ;
106
126
107
127
const commands = {
128
+ CancelExportTaskCommand,
108
129
CancelImportTaskCommand,
109
130
CancelQueryCommand,
110
131
CreateGraphCommand,
@@ -115,12 +136,14 @@ const commands = {
115
136
DeleteGraphSnapshotCommand,
116
137
DeletePrivateGraphEndpointCommand,
117
138
ExecuteQueryCommand,
139
+ GetExportTaskCommand,
118
140
GetGraphCommand,
119
141
GetGraphSnapshotCommand,
120
142
GetGraphSummaryCommand,
121
143
GetImportTaskCommand,
122
144
GetPrivateGraphEndpointCommand,
123
145
GetQueryCommand,
146
+ ListExportTasksCommand,
124
147
ListGraphsCommand,
125
148
ListGraphSnapshotsCommand,
126
149
ListImportTasksCommand,
@@ -129,13 +152,31 @@ const commands = {
129
152
ListTagsForResourceCommand,
130
153
ResetGraphCommand,
131
154
RestoreGraphFromSnapshotCommand,
155
+ StartExportTaskCommand,
132
156
StartImportTaskCommand,
133
157
TagResourceCommand,
134
158
UntagResourceCommand,
135
159
UpdateGraphCommand,
136
160
} ;
137
161
138
162
export interface NeptuneGraph {
163
+ /**
164
+ * @see {@link CancelExportTaskCommand }
165
+ */
166
+ cancelExportTask (
167
+ args : CancelExportTaskCommandInput ,
168
+ options ?: __HttpHandlerOptions
169
+ ) : Promise < CancelExportTaskCommandOutput > ;
170
+ cancelExportTask (
171
+ args : CancelExportTaskCommandInput ,
172
+ cb : ( err : any , data ?: CancelExportTaskCommandOutput ) => void
173
+ ) : void ;
174
+ cancelExportTask (
175
+ args : CancelExportTaskCommandInput ,
176
+ options : __HttpHandlerOptions ,
177
+ cb : ( err : any , data ?: CancelExportTaskCommandOutput ) => void
178
+ ) : void ;
179
+
139
180
/**
140
181
* @see {@link CancelImportTaskCommand }
141
182
*/
@@ -282,6 +323,17 @@ export interface NeptuneGraph {
282
323
cb : ( err : any , data ?: ExecuteQueryCommandOutput ) => void
283
324
) : void ;
284
325
326
+ /**
327
+ * @see {@link GetExportTaskCommand }
328
+ */
329
+ getExportTask ( args : GetExportTaskCommandInput , options ?: __HttpHandlerOptions ) : Promise < GetExportTaskCommandOutput > ;
330
+ getExportTask ( args : GetExportTaskCommandInput , cb : ( err : any , data ?: GetExportTaskCommandOutput ) => void ) : void ;
331
+ getExportTask (
332
+ args : GetExportTaskCommandInput ,
333
+ options : __HttpHandlerOptions ,
334
+ cb : ( err : any , data ?: GetExportTaskCommandOutput ) => void
335
+ ) : void ;
336
+
285
337
/**
286
338
* @see {@link GetGraphCommand }
287
339
*/
@@ -363,6 +415,21 @@ export interface NeptuneGraph {
363
415
cb : ( err : any , data ?: GetQueryCommandOutput ) => void
364
416
) : void ;
365
417
418
+ /**
419
+ * @see {@link ListExportTasksCommand }
420
+ */
421
+ listExportTasks ( ) : Promise < ListExportTasksCommandOutput > ;
422
+ listExportTasks (
423
+ args : ListExportTasksCommandInput ,
424
+ options ?: __HttpHandlerOptions
425
+ ) : Promise < ListExportTasksCommandOutput > ;
426
+ listExportTasks ( args : ListExportTasksCommandInput , cb : ( err : any , data ?: ListExportTasksCommandOutput ) => void ) : void ;
427
+ listExportTasks (
428
+ args : ListExportTasksCommandInput ,
429
+ options : __HttpHandlerOptions ,
430
+ cb : ( err : any , data ?: ListExportTasksCommandOutput ) => void
431
+ ) : void ;
432
+
366
433
/**
367
434
* @see {@link ListGraphsCommand }
368
435
*/
@@ -481,6 +548,20 @@ export interface NeptuneGraph {
481
548
cb : ( err : any , data ?: RestoreGraphFromSnapshotCommandOutput ) => void
482
549
) : void ;
483
550
551
+ /**
552
+ * @see {@link StartExportTaskCommand }
553
+ */
554
+ startExportTask (
555
+ args : StartExportTaskCommandInput ,
556
+ options ?: __HttpHandlerOptions
557
+ ) : Promise < StartExportTaskCommandOutput > ;
558
+ startExportTask ( args : StartExportTaskCommandInput , cb : ( err : any , data ?: StartExportTaskCommandOutput ) => void ) : void ;
559
+ startExportTask (
560
+ args : StartExportTaskCommandInput ,
561
+ options : __HttpHandlerOptions ,
562
+ cb : ( err : any , data ?: StartExportTaskCommandOutput ) => void
563
+ ) : void ;
564
+
484
565
/**
485
566
* @see {@link StartImportTaskCommand }
486
567
*/
0 commit comments