@aws-sdk/client-neptune-graph 3.504.0 → 3.507.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 (69) hide show
  1. package/README.md +43 -3
  2. package/dist-cjs/commands/CancelQueryCommand.js +1 -0
  3. package/dist-cjs/commands/ExecuteQueryCommand.js +1 -0
  4. package/dist-cjs/commands/GetGraphSummaryCommand.js +1 -0
  5. package/dist-cjs/commands/GetQueryCommand.js +1 -0
  6. package/dist-cjs/commands/ListQueriesCommand.js +1 -0
  7. package/dist-cjs/index.js +511 -698
  8. package/dist-cjs/runtimeConfig.shared.js +2 -0
  9. package/dist-es/NeptuneGraph.js +10 -0
  10. package/dist-es/commands/CancelQueryCommand.js +25 -0
  11. package/dist-es/commands/ExecuteQueryCommand.js +26 -0
  12. package/dist-es/commands/GetGraphSummaryCommand.js +25 -0
  13. package/dist-es/commands/GetQueryCommand.js +25 -0
  14. package/dist-es/commands/ListQueriesCommand.js +25 -0
  15. package/dist-es/commands/index.js +5 -0
  16. package/dist-es/models/models_0.js +91 -29
  17. package/dist-es/protocols/Aws_restJson1.js +252 -639
  18. package/dist-es/runtimeConfig.shared.js +2 -0
  19. package/dist-types/NeptuneGraph.d.ts +38 -3
  20. package/dist-types/NeptuneGraphClient.d.ts +16 -6
  21. package/dist-types/commands/CancelImportTaskCommand.d.ts +2 -2
  22. package/dist-types/commands/CancelQueryCommand.d.ts +72 -0
  23. package/dist-types/commands/CreateGraphCommand.d.ts +1 -1
  24. package/dist-types/commands/CreateGraphSnapshotCommand.d.ts +1 -1
  25. package/dist-types/commands/CreateGraphUsingImportTaskCommand.d.ts +1 -1
  26. package/dist-types/commands/CreatePrivateGraphEndpointCommand.d.ts +1 -1
  27. package/dist-types/commands/DeleteGraphCommand.d.ts +1 -1
  28. package/dist-types/commands/DeleteGraphSnapshotCommand.d.ts +1 -1
  29. package/dist-types/commands/DeletePrivateGraphEndpointCommand.d.ts +1 -1
  30. package/dist-types/commands/ExecuteQueryCommand.d.ts +90 -0
  31. package/dist-types/commands/GetGraphCommand.d.ts +1 -1
  32. package/dist-types/commands/GetGraphSnapshotCommand.d.ts +1 -1
  33. package/dist-types/commands/GetGraphSummaryCommand.d.ts +120 -0
  34. package/dist-types/commands/GetImportTaskCommand.d.ts +1 -1
  35. package/dist-types/commands/GetPrivateGraphEndpointCommand.d.ts +1 -1
  36. package/dist-types/commands/GetQueryCommand.d.ts +78 -0
  37. package/dist-types/commands/ListGraphSnapshotsCommand.d.ts +1 -1
  38. package/dist-types/commands/ListImportTasksCommand.d.ts +1 -1
  39. package/dist-types/commands/ListPrivateGraphEndpointsCommand.d.ts +1 -1
  40. package/dist-types/commands/ListQueriesCommand.d.ts +80 -0
  41. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  42. package/dist-types/commands/ResetGraphCommand.d.ts +1 -1
  43. package/dist-types/commands/RestoreGraphFromSnapshotCommand.d.ts +1 -1
  44. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  45. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  46. package/dist-types/commands/UpdateGraphCommand.d.ts +1 -1
  47. package/dist-types/commands/index.d.ts +5 -0
  48. package/dist-types/index.d.ts +3 -3
  49. package/dist-types/models/models_0.d.ts +522 -78
  50. package/dist-types/protocols/Aws_restJson1.d.ts +46 -1
  51. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  52. package/dist-types/runtimeConfig.d.ts +1 -0
  53. package/dist-types/runtimeConfig.native.d.ts +1 -0
  54. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  55. package/dist-types/ts3.4/NeptuneGraph.d.ts +85 -0
  56. package/dist-types/ts3.4/NeptuneGraphClient.d.ts +32 -0
  57. package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +24 -0
  58. package/dist-types/ts3.4/commands/ExecuteQueryCommand.d.ts +34 -0
  59. package/dist-types/ts3.4/commands/GetGraphSummaryCommand.d.ts +29 -0
  60. package/dist-types/ts3.4/commands/GetQueryCommand.d.ts +26 -0
  61. package/dist-types/ts3.4/commands/ListQueriesCommand.d.ts +26 -0
  62. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  63. package/dist-types/ts3.4/models/models_0.d.ts +182 -44
  64. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +64 -1
  65. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
  66. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
  67. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
  68. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  69. package/package.json +4 -3
@@ -1,6 +1,7 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@smithy/types";
2
+ import { SdkStreamSerdeContext as __SdkStreamSerdeContext, SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { CancelImportTaskCommandInput, CancelImportTaskCommandOutput } from "../commands/CancelImportTaskCommand";
4
+ import { CancelQueryCommandInput, CancelQueryCommandOutput } from "../commands/CancelQueryCommand";
4
5
  import { CreateGraphCommandInput, CreateGraphCommandOutput } from "../commands/CreateGraphCommand";
5
6
  import { CreateGraphSnapshotCommandInput, CreateGraphSnapshotCommandOutput } from "../commands/CreateGraphSnapshotCommand";
6
7
  import { CreateGraphUsingImportTaskCommandInput, CreateGraphUsingImportTaskCommandOutput } from "../commands/CreateGraphUsingImportTaskCommand";
@@ -8,14 +9,18 @@ import { CreatePrivateGraphEndpointCommandInput, CreatePrivateGraphEndpointComma
8
9
  import { DeleteGraphCommandInput, DeleteGraphCommandOutput } from "../commands/DeleteGraphCommand";
9
10
  import { DeleteGraphSnapshotCommandInput, DeleteGraphSnapshotCommandOutput } from "../commands/DeleteGraphSnapshotCommand";
10
11
  import { DeletePrivateGraphEndpointCommandInput, DeletePrivateGraphEndpointCommandOutput } from "../commands/DeletePrivateGraphEndpointCommand";
12
+ import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "../commands/ExecuteQueryCommand";
11
13
  import { GetGraphCommandInput, GetGraphCommandOutput } from "../commands/GetGraphCommand";
12
14
  import { GetGraphSnapshotCommandInput, GetGraphSnapshotCommandOutput } from "../commands/GetGraphSnapshotCommand";
15
+ import { GetGraphSummaryCommandInput, GetGraphSummaryCommandOutput } from "../commands/GetGraphSummaryCommand";
13
16
  import { GetImportTaskCommandInput, GetImportTaskCommandOutput } from "../commands/GetImportTaskCommand";
14
17
  import { GetPrivateGraphEndpointCommandInput, GetPrivateGraphEndpointCommandOutput } from "../commands/GetPrivateGraphEndpointCommand";
18
+ import { GetQueryCommandInput, GetQueryCommandOutput } from "../commands/GetQueryCommand";
15
19
  import { ListGraphsCommandInput, ListGraphsCommandOutput } from "../commands/ListGraphsCommand";
16
20
  import { ListGraphSnapshotsCommandInput, ListGraphSnapshotsCommandOutput } from "../commands/ListGraphSnapshotsCommand";
17
21
  import { ListImportTasksCommandInput, ListImportTasksCommandOutput } from "../commands/ListImportTasksCommand";
18
22
  import { ListPrivateGraphEndpointsCommandInput, ListPrivateGraphEndpointsCommandOutput } from "../commands/ListPrivateGraphEndpointsCommand";
23
+ import { ListQueriesCommandInput, ListQueriesCommandOutput } from "../commands/ListQueriesCommand";
19
24
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
20
25
  import { ResetGraphCommandInput, ResetGraphCommandOutput } from "../commands/ResetGraphCommand";
21
26
  import { RestoreGraphFromSnapshotCommandInput, RestoreGraphFromSnapshotCommandOutput } from "../commands/RestoreGraphFromSnapshotCommand";
@@ -26,6 +31,10 @@ import { UpdateGraphCommandInput, UpdateGraphCommandOutput } from "../commands/U
26
31
  * serializeAws_restJson1CancelImportTaskCommand
27
32
  */
28
33
  export declare const se_CancelImportTaskCommand: (input: CancelImportTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
+ /**
35
+ * serializeAws_restJson1CancelQueryCommand
36
+ */
37
+ export declare const se_CancelQueryCommand: (input: CancelQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
38
  /**
30
39
  * serializeAws_restJson1CreateGraphCommand
31
40
  */
@@ -54,6 +63,10 @@ export declare const se_DeleteGraphSnapshotCommand: (input: DeleteGraphSnapshotC
54
63
  * serializeAws_restJson1DeletePrivateGraphEndpointCommand
55
64
  */
56
65
  export declare const se_DeletePrivateGraphEndpointCommand: (input: DeletePrivateGraphEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
+ /**
67
+ * serializeAws_restJson1ExecuteQueryCommand
68
+ */
69
+ export declare const se_ExecuteQueryCommand: (input: ExecuteQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
70
  /**
58
71
  * serializeAws_restJson1GetGraphCommand
59
72
  */
@@ -62,6 +75,10 @@ export declare const se_GetGraphCommand: (input: GetGraphCommandInput, context:
62
75
  * serializeAws_restJson1GetGraphSnapshotCommand
63
76
  */
64
77
  export declare const se_GetGraphSnapshotCommand: (input: GetGraphSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
78
+ /**
79
+ * serializeAws_restJson1GetGraphSummaryCommand
80
+ */
81
+ export declare const se_GetGraphSummaryCommand: (input: GetGraphSummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
82
  /**
66
83
  * serializeAws_restJson1GetImportTaskCommand
67
84
  */
@@ -70,6 +87,10 @@ export declare const se_GetImportTaskCommand: (input: GetImportTaskCommandInput,
70
87
  * serializeAws_restJson1GetPrivateGraphEndpointCommand
71
88
  */
72
89
  export declare const se_GetPrivateGraphEndpointCommand: (input: GetPrivateGraphEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
90
+ /**
91
+ * serializeAws_restJson1GetQueryCommand
92
+ */
93
+ export declare const se_GetQueryCommand: (input: GetQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
94
  /**
74
95
  * serializeAws_restJson1ListGraphsCommand
75
96
  */
@@ -86,6 +107,10 @@ export declare const se_ListImportTasksCommand: (input: ListImportTasksCommandIn
86
107
  * serializeAws_restJson1ListPrivateGraphEndpointsCommand
87
108
  */
88
109
  export declare const se_ListPrivateGraphEndpointsCommand: (input: ListPrivateGraphEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
+ /**
111
+ * serializeAws_restJson1ListQueriesCommand
112
+ */
113
+ export declare const se_ListQueriesCommand: (input: ListQueriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
114
  /**
90
115
  * serializeAws_restJson1ListTagsForResourceCommand
91
116
  */
@@ -114,6 +139,10 @@ export declare const se_UpdateGraphCommand: (input: UpdateGraphCommandInput, con
114
139
  * deserializeAws_restJson1CancelImportTaskCommand
115
140
  */
116
141
  export declare const de_CancelImportTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelImportTaskCommandOutput>;
142
+ /**
143
+ * deserializeAws_restJson1CancelQueryCommand
144
+ */
145
+ export declare const de_CancelQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelQueryCommandOutput>;
117
146
  /**
118
147
  * deserializeAws_restJson1CreateGraphCommand
119
148
  */
@@ -142,6 +171,10 @@ export declare const de_DeleteGraphSnapshotCommand: (output: __HttpResponse, con
142
171
  * deserializeAws_restJson1DeletePrivateGraphEndpointCommand
143
172
  */
144
173
  export declare const de_DeletePrivateGraphEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePrivateGraphEndpointCommandOutput>;
174
+ /**
175
+ * deserializeAws_restJson1ExecuteQueryCommand
176
+ */
177
+ export declare const de_ExecuteQueryCommand: (output: __HttpResponse, context: __SerdeContext & __SdkStreamSerdeContext) => Promise<ExecuteQueryCommandOutput>;
145
178
  /**
146
179
  * deserializeAws_restJson1GetGraphCommand
147
180
  */
@@ -150,6 +183,10 @@ export declare const de_GetGraphCommand: (output: __HttpResponse, context: __Ser
150
183
  * deserializeAws_restJson1GetGraphSnapshotCommand
151
184
  */
152
185
  export declare const de_GetGraphSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGraphSnapshotCommandOutput>;
186
+ /**
187
+ * deserializeAws_restJson1GetGraphSummaryCommand
188
+ */
189
+ export declare const de_GetGraphSummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGraphSummaryCommandOutput>;
153
190
  /**
154
191
  * deserializeAws_restJson1GetImportTaskCommand
155
192
  */
@@ -158,6 +195,10 @@ export declare const de_GetImportTaskCommand: (output: __HttpResponse, context:
158
195
  * deserializeAws_restJson1GetPrivateGraphEndpointCommand
159
196
  */
160
197
  export declare const de_GetPrivateGraphEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPrivateGraphEndpointCommandOutput>;
198
+ /**
199
+ * deserializeAws_restJson1GetQueryCommand
200
+ */
201
+ export declare const de_GetQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueryCommandOutput>;
161
202
  /**
162
203
  * deserializeAws_restJson1ListGraphsCommand
163
204
  */
@@ -174,6 +215,10 @@ export declare const de_ListImportTasksCommand: (output: __HttpResponse, context
174
215
  * deserializeAws_restJson1ListPrivateGraphEndpointsCommand
175
216
  */
176
217
  export declare const de_ListPrivateGraphEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPrivateGraphEndpointsCommandOutput>;
218
+ /**
219
+ * deserializeAws_restJson1ListQueriesCommand
220
+ */
221
+ export declare const de_ListQueriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueriesCommandOutput>;
177
222
  /**
178
223
  * deserializeAws_restJson1ListTagsForResourceCommand
179
224
  */
@@ -30,6 +30,7 @@ export declare const getRuntimeConfig: (config: NeptuneGraphClientConfig) => {
30
30
  serviceId: string;
31
31
  logger: import("@smithy/types").Logger;
32
32
  extensions: import("./runtimeExtensions").RuntimeExtension[];
33
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
33
34
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
34
35
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
35
36
  logger?: import("@smithy/types").Logger | undefined;
@@ -30,6 +30,7 @@ export declare const getRuntimeConfig: (config: NeptuneGraphClientConfig) => {
30
30
  serviceId: string;
31
31
  logger: import("@smithy/types").Logger;
32
32
  extensions: import("./runtimeExtensions").RuntimeExtension[];
33
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
33
34
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
34
35
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
35
36
  logger?: import("@smithy/types").Logger | undefined;
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: NeptuneGraphClientConfig) => {
29
29
  logger: import("@smithy/types").Logger;
30
30
  extensions: import("./runtimeExtensions").RuntimeExtension[];
31
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
32
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
32
33
  endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
33
34
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
34
35
  logger?: import("@smithy/types").Logger | undefined;
@@ -12,6 +12,7 @@ export declare const getRuntimeConfig: (config: NeptuneGraphClientConfig) => {
12
12
  }) => import("@smithy/types").EndpointV2;
13
13
  extensions: import("./runtimeExtensions").RuntimeExtension[];
14
14
  logger: import("@smithy/types").Logger;
15
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
15
16
  serviceId: string;
16
17
  urlParser: import("@smithy/types").UrlParser;
17
18
  utf8Decoder: import("@smithy/types").Decoder;
@@ -3,6 +3,10 @@ import {
3
3
  CancelImportTaskCommandInput,
4
4
  CancelImportTaskCommandOutput,
5
5
  } from "./commands/CancelImportTaskCommand";
6
+ import {
7
+ CancelQueryCommandInput,
8
+ CancelQueryCommandOutput,
9
+ } from "./commands/CancelQueryCommand";
6
10
  import {
7
11
  CreateGraphCommandInput,
8
12
  CreateGraphCommandOutput,
@@ -31,6 +35,10 @@ import {
31
35
  DeletePrivateGraphEndpointCommandInput,
32
36
  DeletePrivateGraphEndpointCommandOutput,
33
37
  } from "./commands/DeletePrivateGraphEndpointCommand";
38
+ import {
39
+ ExecuteQueryCommandInput,
40
+ ExecuteQueryCommandOutput,
41
+ } from "./commands/ExecuteQueryCommand";
34
42
  import {
35
43
  GetGraphCommandInput,
36
44
  GetGraphCommandOutput,
@@ -39,6 +47,10 @@ import {
39
47
  GetGraphSnapshotCommandInput,
40
48
  GetGraphSnapshotCommandOutput,
41
49
  } from "./commands/GetGraphSnapshotCommand";
50
+ import {
51
+ GetGraphSummaryCommandInput,
52
+ GetGraphSummaryCommandOutput,
53
+ } from "./commands/GetGraphSummaryCommand";
42
54
  import {
43
55
  GetImportTaskCommandInput,
44
56
  GetImportTaskCommandOutput,
@@ -47,6 +59,10 @@ import {
47
59
  GetPrivateGraphEndpointCommandInput,
48
60
  GetPrivateGraphEndpointCommandOutput,
49
61
  } from "./commands/GetPrivateGraphEndpointCommand";
62
+ import {
63
+ GetQueryCommandInput,
64
+ GetQueryCommandOutput,
65
+ } from "./commands/GetQueryCommand";
50
66
  import {
51
67
  ListGraphsCommandInput,
52
68
  ListGraphsCommandOutput,
@@ -63,6 +79,10 @@ import {
63
79
  ListPrivateGraphEndpointsCommandInput,
64
80
  ListPrivateGraphEndpointsCommandOutput,
65
81
  } from "./commands/ListPrivateGraphEndpointsCommand";
82
+ import {
83
+ ListQueriesCommandInput,
84
+ ListQueriesCommandOutput,
85
+ } from "./commands/ListQueriesCommand";
66
86
  import {
67
87
  ListTagsForResourceCommandInput,
68
88
  ListTagsForResourceCommandOutput,
@@ -102,6 +122,19 @@ export interface NeptuneGraph {
102
122
  options: __HttpHandlerOptions,
103
123
  cb: (err: any, data?: CancelImportTaskCommandOutput) => void
104
124
  ): void;
125
+ cancelQuery(
126
+ args: CancelQueryCommandInput,
127
+ options?: __HttpHandlerOptions
128
+ ): Promise<CancelQueryCommandOutput>;
129
+ cancelQuery(
130
+ args: CancelQueryCommandInput,
131
+ cb: (err: any, data?: CancelQueryCommandOutput) => void
132
+ ): void;
133
+ cancelQuery(
134
+ args: CancelQueryCommandInput,
135
+ options: __HttpHandlerOptions,
136
+ cb: (err: any, data?: CancelQueryCommandOutput) => void
137
+ ): void;
105
138
  createGraph(
106
139
  args: CreateGraphCommandInput,
107
140
  options?: __HttpHandlerOptions
@@ -193,6 +226,19 @@ export interface NeptuneGraph {
193
226
  options: __HttpHandlerOptions,
194
227
  cb: (err: any, data?: DeletePrivateGraphEndpointCommandOutput) => void
195
228
  ): void;
229
+ executeQuery(
230
+ args: ExecuteQueryCommandInput,
231
+ options?: __HttpHandlerOptions
232
+ ): Promise<ExecuteQueryCommandOutput>;
233
+ executeQuery(
234
+ args: ExecuteQueryCommandInput,
235
+ cb: (err: any, data?: ExecuteQueryCommandOutput) => void
236
+ ): void;
237
+ executeQuery(
238
+ args: ExecuteQueryCommandInput,
239
+ options: __HttpHandlerOptions,
240
+ cb: (err: any, data?: ExecuteQueryCommandOutput) => void
241
+ ): void;
196
242
  getGraph(
197
243
  args: GetGraphCommandInput,
198
244
  options?: __HttpHandlerOptions
@@ -219,6 +265,19 @@ export interface NeptuneGraph {
219
265
  options: __HttpHandlerOptions,
220
266
  cb: (err: any, data?: GetGraphSnapshotCommandOutput) => void
221
267
  ): void;
268
+ getGraphSummary(
269
+ args: GetGraphSummaryCommandInput,
270
+ options?: __HttpHandlerOptions
271
+ ): Promise<GetGraphSummaryCommandOutput>;
272
+ getGraphSummary(
273
+ args: GetGraphSummaryCommandInput,
274
+ cb: (err: any, data?: GetGraphSummaryCommandOutput) => void
275
+ ): void;
276
+ getGraphSummary(
277
+ args: GetGraphSummaryCommandInput,
278
+ options: __HttpHandlerOptions,
279
+ cb: (err: any, data?: GetGraphSummaryCommandOutput) => void
280
+ ): void;
222
281
  getImportTask(
223
282
  args: GetImportTaskCommandInput,
224
283
  options?: __HttpHandlerOptions
@@ -245,6 +304,19 @@ export interface NeptuneGraph {
245
304
  options: __HttpHandlerOptions,
246
305
  cb: (err: any, data?: GetPrivateGraphEndpointCommandOutput) => void
247
306
  ): void;
307
+ getQuery(
308
+ args: GetQueryCommandInput,
309
+ options?: __HttpHandlerOptions
310
+ ): Promise<GetQueryCommandOutput>;
311
+ getQuery(
312
+ args: GetQueryCommandInput,
313
+ cb: (err: any, data?: GetQueryCommandOutput) => void
314
+ ): void;
315
+ getQuery(
316
+ args: GetQueryCommandInput,
317
+ options: __HttpHandlerOptions,
318
+ cb: (err: any, data?: GetQueryCommandOutput) => void
319
+ ): void;
248
320
  listGraphs(
249
321
  args: ListGraphsCommandInput,
250
322
  options?: __HttpHandlerOptions
@@ -297,6 +369,19 @@ export interface NeptuneGraph {
297
369
  options: __HttpHandlerOptions,
298
370
  cb: (err: any, data?: ListPrivateGraphEndpointsCommandOutput) => void
299
371
  ): void;
372
+ listQueries(
373
+ args: ListQueriesCommandInput,
374
+ options?: __HttpHandlerOptions
375
+ ): Promise<ListQueriesCommandOutput>;
376
+ listQueries(
377
+ args: ListQueriesCommandInput,
378
+ cb: (err: any, data?: ListQueriesCommandOutput) => void
379
+ ): void;
380
+ listQueries(
381
+ args: ListQueriesCommandInput,
382
+ options: __HttpHandlerOptions,
383
+ cb: (err: any, data?: ListQueriesCommandOutput) => void
384
+ ): void;
300
385
  listTagsForResource(
301
386
  args: ListTagsForResourceCommandInput,
302
387
  options?: __HttpHandlerOptions
@@ -41,6 +41,7 @@ import {
41
41
  Logger as __Logger,
42
42
  Provider as __Provider,
43
43
  Provider,
44
+ SdkStreamMixinInjector as __SdkStreamMixinInjector,
44
45
  StreamCollector as __StreamCollector,
45
46
  UrlParser as __UrlParser,
46
47
  UserAgent as __UserAgent,
@@ -49,6 +50,10 @@ import {
49
50
  CancelImportTaskCommandInput,
50
51
  CancelImportTaskCommandOutput,
51
52
  } from "./commands/CancelImportTaskCommand";
53
+ import {
54
+ CancelQueryCommandInput,
55
+ CancelQueryCommandOutput,
56
+ } from "./commands/CancelQueryCommand";
52
57
  import {
53
58
  CreateGraphCommandInput,
54
59
  CreateGraphCommandOutput,
@@ -77,6 +82,10 @@ import {
77
82
  DeletePrivateGraphEndpointCommandInput,
78
83
  DeletePrivateGraphEndpointCommandOutput,
79
84
  } from "./commands/DeletePrivateGraphEndpointCommand";
85
+ import {
86
+ ExecuteQueryCommandInput,
87
+ ExecuteQueryCommandOutput,
88
+ } from "./commands/ExecuteQueryCommand";
80
89
  import {
81
90
  GetGraphCommandInput,
82
91
  GetGraphCommandOutput,
@@ -85,6 +94,10 @@ import {
85
94
  GetGraphSnapshotCommandInput,
86
95
  GetGraphSnapshotCommandOutput,
87
96
  } from "./commands/GetGraphSnapshotCommand";
97
+ import {
98
+ GetGraphSummaryCommandInput,
99
+ GetGraphSummaryCommandOutput,
100
+ } from "./commands/GetGraphSummaryCommand";
88
101
  import {
89
102
  GetImportTaskCommandInput,
90
103
  GetImportTaskCommandOutput,
@@ -93,6 +106,10 @@ import {
93
106
  GetPrivateGraphEndpointCommandInput,
94
107
  GetPrivateGraphEndpointCommandOutput,
95
108
  } from "./commands/GetPrivateGraphEndpointCommand";
109
+ import {
110
+ GetQueryCommandInput,
111
+ GetQueryCommandOutput,
112
+ } from "./commands/GetQueryCommand";
96
113
  import {
97
114
  ListGraphsCommandInput,
98
115
  ListGraphsCommandOutput,
@@ -109,6 +126,10 @@ import {
109
126
  ListPrivateGraphEndpointsCommandInput,
110
127
  ListPrivateGraphEndpointsCommandOutput,
111
128
  } from "./commands/ListPrivateGraphEndpointsCommand";
129
+ import {
130
+ ListQueriesCommandInput,
131
+ ListQueriesCommandOutput,
132
+ } from "./commands/ListQueriesCommand";
112
133
  import {
113
134
  ListTagsForResourceCommandInput,
114
135
  ListTagsForResourceCommandOutput,
@@ -142,6 +163,7 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
142
163
  export { __Client };
143
164
  export type ServiceInputTypes =
144
165
  | CancelImportTaskCommandInput
166
+ | CancelQueryCommandInput
145
167
  | CreateGraphCommandInput
146
168
  | CreateGraphSnapshotCommandInput
147
169
  | CreateGraphUsingImportTaskCommandInput
@@ -149,14 +171,18 @@ export type ServiceInputTypes =
149
171
  | DeleteGraphCommandInput
150
172
  | DeleteGraphSnapshotCommandInput
151
173
  | DeletePrivateGraphEndpointCommandInput
174
+ | ExecuteQueryCommandInput
152
175
  | GetGraphCommandInput
153
176
  | GetGraphSnapshotCommandInput
177
+ | GetGraphSummaryCommandInput
154
178
  | GetImportTaskCommandInput
155
179
  | GetPrivateGraphEndpointCommandInput
180
+ | GetQueryCommandInput
156
181
  | ListGraphSnapshotsCommandInput
157
182
  | ListGraphsCommandInput
158
183
  | ListImportTasksCommandInput
159
184
  | ListPrivateGraphEndpointsCommandInput
185
+ | ListQueriesCommandInput
160
186
  | ListTagsForResourceCommandInput
161
187
  | ResetGraphCommandInput
162
188
  | RestoreGraphFromSnapshotCommandInput
@@ -165,6 +191,7 @@ export type ServiceInputTypes =
165
191
  | UpdateGraphCommandInput;
166
192
  export type ServiceOutputTypes =
167
193
  | CancelImportTaskCommandOutput
194
+ | CancelQueryCommandOutput
168
195
  | CreateGraphCommandOutput
169
196
  | CreateGraphSnapshotCommandOutput
170
197
  | CreateGraphUsingImportTaskCommandOutput
@@ -172,14 +199,18 @@ export type ServiceOutputTypes =
172
199
  | DeleteGraphCommandOutput
173
200
  | DeleteGraphSnapshotCommandOutput
174
201
  | DeletePrivateGraphEndpointCommandOutput
202
+ | ExecuteQueryCommandOutput
175
203
  | GetGraphCommandOutput
176
204
  | GetGraphSnapshotCommandOutput
205
+ | GetGraphSummaryCommandOutput
177
206
  | GetImportTaskCommandOutput
178
207
  | GetPrivateGraphEndpointCommandOutput
208
+ | GetQueryCommandOutput
179
209
  | ListGraphSnapshotsCommandOutput
180
210
  | ListGraphsCommandOutput
181
211
  | ListImportTasksCommandOutput
182
212
  | ListPrivateGraphEndpointsCommandOutput
213
+ | ListQueriesCommandOutput
183
214
  | ListTagsForResourceCommandOutput
184
215
  | ResetGraphCommandOutput
185
216
  | RestoreGraphFromSnapshotCommandOutput
@@ -210,6 +241,7 @@ export interface ClientDefaults
210
241
  logger?: __Logger;
211
242
  extensions?: RuntimeExtension[];
212
243
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
244
+ sdkStreamMixin?: __SdkStreamMixinInjector;
213
245
  }
214
246
  export type NeptuneGraphClientConfigType = Partial<
215
247
  __SmithyConfiguration<__HttpHandlerOptions>
@@ -0,0 +1,24 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CancelQueryInput } from "../models/models_0";
4
+ import {
5
+ NeptuneGraphClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../NeptuneGraphClient";
9
+ export { __MetadataBearer, $Command };
10
+ export interface CancelQueryCommandInput extends CancelQueryInput {}
11
+ export interface CancelQueryCommandOutput extends __MetadataBearer {}
12
+ declare const CancelQueryCommand_base: {
13
+ new (
14
+ input: CancelQueryCommandInput
15
+ ): import("@smithy/smithy-client").CommandImpl<
16
+ CancelQueryCommandInput,
17
+ CancelQueryCommandOutput,
18
+ NeptuneGraphClientResolvedConfig,
19
+ ServiceInputTypes,
20
+ ServiceOutputTypes
21
+ >;
22
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
23
+ };
24
+ export declare class CancelQueryCommand extends CancelQueryCommand_base {}
@@ -0,0 +1,34 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import {
3
+ MetadataBearer as __MetadataBearer,
4
+ StreamingBlobPayloadOutputTypes,
5
+ } from "@smithy/types";
6
+ import { ExecuteQueryInput, ExecuteQueryOutput } from "../models/models_0";
7
+ import {
8
+ NeptuneGraphClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NeptuneGraphClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface ExecuteQueryCommandInput extends ExecuteQueryInput {}
14
+ export interface ExecuteQueryCommandOutput
15
+ extends Pick<
16
+ ExecuteQueryOutput,
17
+ Exclude<keyof ExecuteQueryOutput, "payload">
18
+ >,
19
+ __MetadataBearer {
20
+ payload: StreamingBlobPayloadOutputTypes;
21
+ }
22
+ declare const ExecuteQueryCommand_base: {
23
+ new (
24
+ input: ExecuteQueryCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ ExecuteQueryCommandInput,
27
+ ExecuteQueryCommandOutput,
28
+ NeptuneGraphClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class ExecuteQueryCommand extends ExecuteQueryCommand_base {}
@@ -0,0 +1,29 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetGraphSummaryInput,
5
+ GetGraphSummaryOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ NeptuneGraphClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NeptuneGraphClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface GetGraphSummaryCommandInput extends GetGraphSummaryInput {}
14
+ export interface GetGraphSummaryCommandOutput
15
+ extends GetGraphSummaryOutput,
16
+ __MetadataBearer {}
17
+ declare const GetGraphSummaryCommand_base: {
18
+ new (
19
+ input: GetGraphSummaryCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ GetGraphSummaryCommandInput,
22
+ GetGraphSummaryCommandOutput,
23
+ NeptuneGraphClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class GetGraphSummaryCommand extends GetGraphSummaryCommand_base {}
@@ -0,0 +1,26 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetQueryInput, GetQueryOutput } from "../models/models_0";
4
+ import {
5
+ NeptuneGraphClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../NeptuneGraphClient";
9
+ export { __MetadataBearer, $Command };
10
+ export interface GetQueryCommandInput extends GetQueryInput {}
11
+ export interface GetQueryCommandOutput
12
+ extends GetQueryOutput,
13
+ __MetadataBearer {}
14
+ declare const GetQueryCommand_base: {
15
+ new (
16
+ input: GetQueryCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetQueryCommandInput,
19
+ GetQueryCommandOutput,
20
+ NeptuneGraphClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class GetQueryCommand extends GetQueryCommand_base {}
@@ -0,0 +1,26 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListQueriesInput, ListQueriesOutput } from "../models/models_0";
4
+ import {
5
+ NeptuneGraphClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../NeptuneGraphClient";
9
+ export { __MetadataBearer, $Command };
10
+ export interface ListQueriesCommandInput extends ListQueriesInput {}
11
+ export interface ListQueriesCommandOutput
12
+ extends ListQueriesOutput,
13
+ __MetadataBearer {}
14
+ declare const ListQueriesCommand_base: {
15
+ new (
16
+ input: ListQueriesCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ ListQueriesCommandInput,
19
+ ListQueriesCommandOutput,
20
+ NeptuneGraphClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class ListQueriesCommand extends ListQueriesCommand_base {}
@@ -1,4 +1,5 @@
1
1
  export * from "./CancelImportTaskCommand";
2
+ export * from "./CancelQueryCommand";
2
3
  export * from "./CreateGraphCommand";
3
4
  export * from "./CreateGraphSnapshotCommand";
4
5
  export * from "./CreateGraphUsingImportTaskCommand";
@@ -6,14 +7,18 @@ export * from "./CreatePrivateGraphEndpointCommand";
6
7
  export * from "./DeleteGraphCommand";
7
8
  export * from "./DeleteGraphSnapshotCommand";
8
9
  export * from "./DeletePrivateGraphEndpointCommand";
10
+ export * from "./ExecuteQueryCommand";
9
11
  export * from "./GetGraphCommand";
10
12
  export * from "./GetGraphSnapshotCommand";
13
+ export * from "./GetGraphSummaryCommand";
11
14
  export * from "./GetImportTaskCommand";
12
15
  export * from "./GetPrivateGraphEndpointCommand";
16
+ export * from "./GetQueryCommand";
13
17
  export * from "./ListGraphSnapshotsCommand";
14
18
  export * from "./ListGraphsCommand";
15
19
  export * from "./ListImportTasksCommand";
16
20
  export * from "./ListPrivateGraphEndpointsCommand";
21
+ export * from "./ListQueriesCommand";
17
22
  export * from "./ListTagsForResourceCommand";
18
23
  export * from "./ResetGraphCommand";
19
24
  export * from "./RestoreGraphFromSnapshotCommand";