@aws-sdk/client-neptune-graph 3.928.0 → 3.930.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/index.js +1472 -1669
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/NeptuneGraphClient.js +2 -0
- package/dist-es/commands/CancelExportTaskCommand.js +3 -9
- package/dist-es/commands/CancelImportTaskCommand.js +3 -9
- package/dist-es/commands/CancelQueryCommand.js +3 -9
- package/dist-es/commands/CreateGraphCommand.js +3 -9
- package/dist-es/commands/CreateGraphSnapshotCommand.js +3 -9
- package/dist-es/commands/CreateGraphUsingImportTaskCommand.js +3 -9
- package/dist-es/commands/CreatePrivateGraphEndpointCommand.js +3 -9
- package/dist-es/commands/DeleteGraphCommand.js +3 -9
- package/dist-es/commands/DeleteGraphSnapshotCommand.js +3 -9
- package/dist-es/commands/DeletePrivateGraphEndpointCommand.js +3 -9
- package/dist-es/commands/ExecuteQueryCommand.js +3 -10
- package/dist-es/commands/GetExportTaskCommand.js +3 -9
- package/dist-es/commands/GetGraphCommand.js +3 -9
- package/dist-es/commands/GetGraphSnapshotCommand.js +3 -9
- package/dist-es/commands/GetGraphSummaryCommand.js +3 -9
- package/dist-es/commands/GetImportTaskCommand.js +3 -9
- package/dist-es/commands/GetPrivateGraphEndpointCommand.js +3 -9
- package/dist-es/commands/GetQueryCommand.js +3 -9
- package/dist-es/commands/ListExportTasksCommand.js +3 -9
- package/dist-es/commands/ListGraphSnapshotsCommand.js +3 -9
- package/dist-es/commands/ListGraphsCommand.js +3 -9
- package/dist-es/commands/ListImportTasksCommand.js +3 -9
- package/dist-es/commands/ListPrivateGraphEndpointsCommand.js +3 -9
- package/dist-es/commands/ListQueriesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ResetGraphCommand.js +3 -9
- package/dist-es/commands/RestoreGraphFromSnapshotCommand.js +3 -9
- package/dist-es/commands/StartExportTaskCommand.js +3 -9
- package/dist-es/commands/StartGraphCommand.js +3 -9
- package/dist-es/commands/StartImportTaskCommand.js +3 -9
- package/dist-es/commands/StopGraphCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateGraphCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -11
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1394 -0
- package/dist-types/NeptuneGraphClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +4 -5
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +152 -0
- package/dist-types/ts3.4/NeptuneGraphClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +159 -0
- package/package.json +35 -35
- package/dist-es/protocols/Aws_restJson1.js +0 -1401
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -308
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -416
|
@@ -1,308 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SdkStreamSerdeContext as __SdkStreamSerdeContext, SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CancelExportTaskCommandInput, CancelExportTaskCommandOutput } from "../commands/CancelExportTaskCommand";
|
|
4
|
-
import { CancelImportTaskCommandInput, CancelImportTaskCommandOutput } from "../commands/CancelImportTaskCommand";
|
|
5
|
-
import { CancelQueryCommandInput, CancelQueryCommandOutput } from "../commands/CancelQueryCommand";
|
|
6
|
-
import { CreateGraphCommandInput, CreateGraphCommandOutput } from "../commands/CreateGraphCommand";
|
|
7
|
-
import { CreateGraphSnapshotCommandInput, CreateGraphSnapshotCommandOutput } from "../commands/CreateGraphSnapshotCommand";
|
|
8
|
-
import { CreateGraphUsingImportTaskCommandInput, CreateGraphUsingImportTaskCommandOutput } from "../commands/CreateGraphUsingImportTaskCommand";
|
|
9
|
-
import { CreatePrivateGraphEndpointCommandInput, CreatePrivateGraphEndpointCommandOutput } from "../commands/CreatePrivateGraphEndpointCommand";
|
|
10
|
-
import { DeleteGraphCommandInput, DeleteGraphCommandOutput } from "../commands/DeleteGraphCommand";
|
|
11
|
-
import { DeleteGraphSnapshotCommandInput, DeleteGraphSnapshotCommandOutput } from "../commands/DeleteGraphSnapshotCommand";
|
|
12
|
-
import { DeletePrivateGraphEndpointCommandInput, DeletePrivateGraphEndpointCommandOutput } from "../commands/DeletePrivateGraphEndpointCommand";
|
|
13
|
-
import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "../commands/ExecuteQueryCommand";
|
|
14
|
-
import { GetExportTaskCommandInput, GetExportTaskCommandOutput } from "../commands/GetExportTaskCommand";
|
|
15
|
-
import { GetGraphCommandInput, GetGraphCommandOutput } from "../commands/GetGraphCommand";
|
|
16
|
-
import { GetGraphSnapshotCommandInput, GetGraphSnapshotCommandOutput } from "../commands/GetGraphSnapshotCommand";
|
|
17
|
-
import { GetGraphSummaryCommandInput, GetGraphSummaryCommandOutput } from "../commands/GetGraphSummaryCommand";
|
|
18
|
-
import { GetImportTaskCommandInput, GetImportTaskCommandOutput } from "../commands/GetImportTaskCommand";
|
|
19
|
-
import { GetPrivateGraphEndpointCommandInput, GetPrivateGraphEndpointCommandOutput } from "../commands/GetPrivateGraphEndpointCommand";
|
|
20
|
-
import { GetQueryCommandInput, GetQueryCommandOutput } from "../commands/GetQueryCommand";
|
|
21
|
-
import { ListExportTasksCommandInput, ListExportTasksCommandOutput } from "../commands/ListExportTasksCommand";
|
|
22
|
-
import { ListGraphsCommandInput, ListGraphsCommandOutput } from "../commands/ListGraphsCommand";
|
|
23
|
-
import { ListGraphSnapshotsCommandInput, ListGraphSnapshotsCommandOutput } from "../commands/ListGraphSnapshotsCommand";
|
|
24
|
-
import { ListImportTasksCommandInput, ListImportTasksCommandOutput } from "../commands/ListImportTasksCommand";
|
|
25
|
-
import { ListPrivateGraphEndpointsCommandInput, ListPrivateGraphEndpointsCommandOutput } from "../commands/ListPrivateGraphEndpointsCommand";
|
|
26
|
-
import { ListQueriesCommandInput, ListQueriesCommandOutput } from "../commands/ListQueriesCommand";
|
|
27
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
28
|
-
import { ResetGraphCommandInput, ResetGraphCommandOutput } from "../commands/ResetGraphCommand";
|
|
29
|
-
import { RestoreGraphFromSnapshotCommandInput, RestoreGraphFromSnapshotCommandOutput } from "../commands/RestoreGraphFromSnapshotCommand";
|
|
30
|
-
import { StartExportTaskCommandInput, StartExportTaskCommandOutput } from "../commands/StartExportTaskCommand";
|
|
31
|
-
import { StartGraphCommandInput, StartGraphCommandOutput } from "../commands/StartGraphCommand";
|
|
32
|
-
import { StartImportTaskCommandInput, StartImportTaskCommandOutput } from "../commands/StartImportTaskCommand";
|
|
33
|
-
import { StopGraphCommandInput, StopGraphCommandOutput } from "../commands/StopGraphCommand";
|
|
34
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
35
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
36
|
-
import { UpdateGraphCommandInput, UpdateGraphCommandOutput } from "../commands/UpdateGraphCommand";
|
|
37
|
-
/**
|
|
38
|
-
* serializeAws_restJson1CancelExportTaskCommand
|
|
39
|
-
*/
|
|
40
|
-
export declare const se_CancelExportTaskCommand: (input: CancelExportTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
-
/**
|
|
42
|
-
* serializeAws_restJson1CancelImportTaskCommand
|
|
43
|
-
*/
|
|
44
|
-
export declare const se_CancelImportTaskCommand: (input: CancelImportTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
|
-
/**
|
|
46
|
-
* serializeAws_restJson1CancelQueryCommand
|
|
47
|
-
*/
|
|
48
|
-
export declare const se_CancelQueryCommand: (input: CancelQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
-
/**
|
|
50
|
-
* serializeAws_restJson1CreateGraphCommand
|
|
51
|
-
*/
|
|
52
|
-
export declare const se_CreateGraphCommand: (input: CreateGraphCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
|
-
/**
|
|
54
|
-
* serializeAws_restJson1CreateGraphSnapshotCommand
|
|
55
|
-
*/
|
|
56
|
-
export declare const se_CreateGraphSnapshotCommand: (input: CreateGraphSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
-
/**
|
|
58
|
-
* serializeAws_restJson1CreateGraphUsingImportTaskCommand
|
|
59
|
-
*/
|
|
60
|
-
export declare const se_CreateGraphUsingImportTaskCommand: (input: CreateGraphUsingImportTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
|
-
/**
|
|
62
|
-
* serializeAws_restJson1CreatePrivateGraphEndpointCommand
|
|
63
|
-
*/
|
|
64
|
-
export declare const se_CreatePrivateGraphEndpointCommand: (input: CreatePrivateGraphEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
|
-
/**
|
|
66
|
-
* serializeAws_restJson1DeleteGraphCommand
|
|
67
|
-
*/
|
|
68
|
-
export declare const se_DeleteGraphCommand: (input: DeleteGraphCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
-
/**
|
|
70
|
-
* serializeAws_restJson1DeleteGraphSnapshotCommand
|
|
71
|
-
*/
|
|
72
|
-
export declare const se_DeleteGraphSnapshotCommand: (input: DeleteGraphSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
|
-
/**
|
|
74
|
-
* serializeAws_restJson1DeletePrivateGraphEndpointCommand
|
|
75
|
-
*/
|
|
76
|
-
export declare const se_DeletePrivateGraphEndpointCommand: (input: DeletePrivateGraphEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
-
/**
|
|
78
|
-
* serializeAws_restJson1ExecuteQueryCommand
|
|
79
|
-
*/
|
|
80
|
-
export declare const se_ExecuteQueryCommand: (input: ExecuteQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
|
-
/**
|
|
82
|
-
* serializeAws_restJson1GetExportTaskCommand
|
|
83
|
-
*/
|
|
84
|
-
export declare const se_GetExportTaskCommand: (input: GetExportTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
|
-
/**
|
|
86
|
-
* serializeAws_restJson1GetGraphCommand
|
|
87
|
-
*/
|
|
88
|
-
export declare const se_GetGraphCommand: (input: GetGraphCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
|
-
/**
|
|
90
|
-
* serializeAws_restJson1GetGraphSnapshotCommand
|
|
91
|
-
*/
|
|
92
|
-
export declare const se_GetGraphSnapshotCommand: (input: GetGraphSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
-
/**
|
|
94
|
-
* serializeAws_restJson1GetGraphSummaryCommand
|
|
95
|
-
*/
|
|
96
|
-
export declare const se_GetGraphSummaryCommand: (input: GetGraphSummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
-
/**
|
|
98
|
-
* serializeAws_restJson1GetImportTaskCommand
|
|
99
|
-
*/
|
|
100
|
-
export declare const se_GetImportTaskCommand: (input: GetImportTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
|
-
/**
|
|
102
|
-
* serializeAws_restJson1GetPrivateGraphEndpointCommand
|
|
103
|
-
*/
|
|
104
|
-
export declare const se_GetPrivateGraphEndpointCommand: (input: GetPrivateGraphEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
|
-
/**
|
|
106
|
-
* serializeAws_restJson1GetQueryCommand
|
|
107
|
-
*/
|
|
108
|
-
export declare const se_GetQueryCommand: (input: GetQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
|
-
/**
|
|
110
|
-
* serializeAws_restJson1ListExportTasksCommand
|
|
111
|
-
*/
|
|
112
|
-
export declare const se_ListExportTasksCommand: (input: ListExportTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
113
|
-
/**
|
|
114
|
-
* serializeAws_restJson1ListGraphsCommand
|
|
115
|
-
*/
|
|
116
|
-
export declare const se_ListGraphsCommand: (input: ListGraphsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
|
-
/**
|
|
118
|
-
* serializeAws_restJson1ListGraphSnapshotsCommand
|
|
119
|
-
*/
|
|
120
|
-
export declare const se_ListGraphSnapshotsCommand: (input: ListGraphSnapshotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
121
|
-
/**
|
|
122
|
-
* serializeAws_restJson1ListImportTasksCommand
|
|
123
|
-
*/
|
|
124
|
-
export declare const se_ListImportTasksCommand: (input: ListImportTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
|
-
/**
|
|
126
|
-
* serializeAws_restJson1ListPrivateGraphEndpointsCommand
|
|
127
|
-
*/
|
|
128
|
-
export declare const se_ListPrivateGraphEndpointsCommand: (input: ListPrivateGraphEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
|
-
/**
|
|
130
|
-
* serializeAws_restJson1ListQueriesCommand
|
|
131
|
-
*/
|
|
132
|
-
export declare const se_ListQueriesCommand: (input: ListQueriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
133
|
-
/**
|
|
134
|
-
* serializeAws_restJson1ListTagsForResourceCommand
|
|
135
|
-
*/
|
|
136
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
137
|
-
/**
|
|
138
|
-
* serializeAws_restJson1ResetGraphCommand
|
|
139
|
-
*/
|
|
140
|
-
export declare const se_ResetGraphCommand: (input: ResetGraphCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
141
|
-
/**
|
|
142
|
-
* serializeAws_restJson1RestoreGraphFromSnapshotCommand
|
|
143
|
-
*/
|
|
144
|
-
export declare const se_RestoreGraphFromSnapshotCommand: (input: RestoreGraphFromSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
145
|
-
/**
|
|
146
|
-
* serializeAws_restJson1StartExportTaskCommand
|
|
147
|
-
*/
|
|
148
|
-
export declare const se_StartExportTaskCommand: (input: StartExportTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
149
|
-
/**
|
|
150
|
-
* serializeAws_restJson1StartGraphCommand
|
|
151
|
-
*/
|
|
152
|
-
export declare const se_StartGraphCommand: (input: StartGraphCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
153
|
-
/**
|
|
154
|
-
* serializeAws_restJson1StartImportTaskCommand
|
|
155
|
-
*/
|
|
156
|
-
export declare const se_StartImportTaskCommand: (input: StartImportTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
157
|
-
/**
|
|
158
|
-
* serializeAws_restJson1StopGraphCommand
|
|
159
|
-
*/
|
|
160
|
-
export declare const se_StopGraphCommand: (input: StopGraphCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
161
|
-
/**
|
|
162
|
-
* serializeAws_restJson1TagResourceCommand
|
|
163
|
-
*/
|
|
164
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
165
|
-
/**
|
|
166
|
-
* serializeAws_restJson1UntagResourceCommand
|
|
167
|
-
*/
|
|
168
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
169
|
-
/**
|
|
170
|
-
* serializeAws_restJson1UpdateGraphCommand
|
|
171
|
-
*/
|
|
172
|
-
export declare const se_UpdateGraphCommand: (input: UpdateGraphCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
173
|
-
/**
|
|
174
|
-
* deserializeAws_restJson1CancelExportTaskCommand
|
|
175
|
-
*/
|
|
176
|
-
export declare const de_CancelExportTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelExportTaskCommandOutput>;
|
|
177
|
-
/**
|
|
178
|
-
* deserializeAws_restJson1CancelImportTaskCommand
|
|
179
|
-
*/
|
|
180
|
-
export declare const de_CancelImportTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelImportTaskCommandOutput>;
|
|
181
|
-
/**
|
|
182
|
-
* deserializeAws_restJson1CancelQueryCommand
|
|
183
|
-
*/
|
|
184
|
-
export declare const de_CancelQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelQueryCommandOutput>;
|
|
185
|
-
/**
|
|
186
|
-
* deserializeAws_restJson1CreateGraphCommand
|
|
187
|
-
*/
|
|
188
|
-
export declare const de_CreateGraphCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGraphCommandOutput>;
|
|
189
|
-
/**
|
|
190
|
-
* deserializeAws_restJson1CreateGraphSnapshotCommand
|
|
191
|
-
*/
|
|
192
|
-
export declare const de_CreateGraphSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGraphSnapshotCommandOutput>;
|
|
193
|
-
/**
|
|
194
|
-
* deserializeAws_restJson1CreateGraphUsingImportTaskCommand
|
|
195
|
-
*/
|
|
196
|
-
export declare const de_CreateGraphUsingImportTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGraphUsingImportTaskCommandOutput>;
|
|
197
|
-
/**
|
|
198
|
-
* deserializeAws_restJson1CreatePrivateGraphEndpointCommand
|
|
199
|
-
*/
|
|
200
|
-
export declare const de_CreatePrivateGraphEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePrivateGraphEndpointCommandOutput>;
|
|
201
|
-
/**
|
|
202
|
-
* deserializeAws_restJson1DeleteGraphCommand
|
|
203
|
-
*/
|
|
204
|
-
export declare const de_DeleteGraphCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGraphCommandOutput>;
|
|
205
|
-
/**
|
|
206
|
-
* deserializeAws_restJson1DeleteGraphSnapshotCommand
|
|
207
|
-
*/
|
|
208
|
-
export declare const de_DeleteGraphSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGraphSnapshotCommandOutput>;
|
|
209
|
-
/**
|
|
210
|
-
* deserializeAws_restJson1DeletePrivateGraphEndpointCommand
|
|
211
|
-
*/
|
|
212
|
-
export declare const de_DeletePrivateGraphEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePrivateGraphEndpointCommandOutput>;
|
|
213
|
-
/**
|
|
214
|
-
* deserializeAws_restJson1ExecuteQueryCommand
|
|
215
|
-
*/
|
|
216
|
-
export declare const de_ExecuteQueryCommand: (output: __HttpResponse, context: __SerdeContext & __SdkStreamSerdeContext) => Promise<ExecuteQueryCommandOutput>;
|
|
217
|
-
/**
|
|
218
|
-
* deserializeAws_restJson1GetExportTaskCommand
|
|
219
|
-
*/
|
|
220
|
-
export declare const de_GetExportTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExportTaskCommandOutput>;
|
|
221
|
-
/**
|
|
222
|
-
* deserializeAws_restJson1GetGraphCommand
|
|
223
|
-
*/
|
|
224
|
-
export declare const de_GetGraphCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGraphCommandOutput>;
|
|
225
|
-
/**
|
|
226
|
-
* deserializeAws_restJson1GetGraphSnapshotCommand
|
|
227
|
-
*/
|
|
228
|
-
export declare const de_GetGraphSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGraphSnapshotCommandOutput>;
|
|
229
|
-
/**
|
|
230
|
-
* deserializeAws_restJson1GetGraphSummaryCommand
|
|
231
|
-
*/
|
|
232
|
-
export declare const de_GetGraphSummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGraphSummaryCommandOutput>;
|
|
233
|
-
/**
|
|
234
|
-
* deserializeAws_restJson1GetImportTaskCommand
|
|
235
|
-
*/
|
|
236
|
-
export declare const de_GetImportTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetImportTaskCommandOutput>;
|
|
237
|
-
/**
|
|
238
|
-
* deserializeAws_restJson1GetPrivateGraphEndpointCommand
|
|
239
|
-
*/
|
|
240
|
-
export declare const de_GetPrivateGraphEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPrivateGraphEndpointCommandOutput>;
|
|
241
|
-
/**
|
|
242
|
-
* deserializeAws_restJson1GetQueryCommand
|
|
243
|
-
*/
|
|
244
|
-
export declare const de_GetQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueryCommandOutput>;
|
|
245
|
-
/**
|
|
246
|
-
* deserializeAws_restJson1ListExportTasksCommand
|
|
247
|
-
*/
|
|
248
|
-
export declare const de_ListExportTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExportTasksCommandOutput>;
|
|
249
|
-
/**
|
|
250
|
-
* deserializeAws_restJson1ListGraphsCommand
|
|
251
|
-
*/
|
|
252
|
-
export declare const de_ListGraphsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGraphsCommandOutput>;
|
|
253
|
-
/**
|
|
254
|
-
* deserializeAws_restJson1ListGraphSnapshotsCommand
|
|
255
|
-
*/
|
|
256
|
-
export declare const de_ListGraphSnapshotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGraphSnapshotsCommandOutput>;
|
|
257
|
-
/**
|
|
258
|
-
* deserializeAws_restJson1ListImportTasksCommand
|
|
259
|
-
*/
|
|
260
|
-
export declare const de_ListImportTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListImportTasksCommandOutput>;
|
|
261
|
-
/**
|
|
262
|
-
* deserializeAws_restJson1ListPrivateGraphEndpointsCommand
|
|
263
|
-
*/
|
|
264
|
-
export declare const de_ListPrivateGraphEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPrivateGraphEndpointsCommandOutput>;
|
|
265
|
-
/**
|
|
266
|
-
* deserializeAws_restJson1ListQueriesCommand
|
|
267
|
-
*/
|
|
268
|
-
export declare const de_ListQueriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueriesCommandOutput>;
|
|
269
|
-
/**
|
|
270
|
-
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
271
|
-
*/
|
|
272
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
273
|
-
/**
|
|
274
|
-
* deserializeAws_restJson1ResetGraphCommand
|
|
275
|
-
*/
|
|
276
|
-
export declare const de_ResetGraphCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResetGraphCommandOutput>;
|
|
277
|
-
/**
|
|
278
|
-
* deserializeAws_restJson1RestoreGraphFromSnapshotCommand
|
|
279
|
-
*/
|
|
280
|
-
export declare const de_RestoreGraphFromSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RestoreGraphFromSnapshotCommandOutput>;
|
|
281
|
-
/**
|
|
282
|
-
* deserializeAws_restJson1StartExportTaskCommand
|
|
283
|
-
*/
|
|
284
|
-
export declare const de_StartExportTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartExportTaskCommandOutput>;
|
|
285
|
-
/**
|
|
286
|
-
* deserializeAws_restJson1StartGraphCommand
|
|
287
|
-
*/
|
|
288
|
-
export declare const de_StartGraphCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartGraphCommandOutput>;
|
|
289
|
-
/**
|
|
290
|
-
* deserializeAws_restJson1StartImportTaskCommand
|
|
291
|
-
*/
|
|
292
|
-
export declare const de_StartImportTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartImportTaskCommandOutput>;
|
|
293
|
-
/**
|
|
294
|
-
* deserializeAws_restJson1StopGraphCommand
|
|
295
|
-
*/
|
|
296
|
-
export declare const de_StopGraphCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopGraphCommandOutput>;
|
|
297
|
-
/**
|
|
298
|
-
* deserializeAws_restJson1TagResourceCommand
|
|
299
|
-
*/
|
|
300
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
301
|
-
/**
|
|
302
|
-
* deserializeAws_restJson1UntagResourceCommand
|
|
303
|
-
*/
|
|
304
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
305
|
-
/**
|
|
306
|
-
* deserializeAws_restJson1UpdateGraphCommand
|
|
307
|
-
*/
|
|
308
|
-
export declare const de_UpdateGraphCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGraphCommandOutput>;
|