@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
|
@@ -0,0 +1,1394 @@
|
|
|
1
|
+
const _ADE = "AccessDeniedException";
|
|
2
|
+
const _CE = "ConflictException";
|
|
3
|
+
const _CET = "CancelExportTask";
|
|
4
|
+
const _CETI = "CancelExportTaskInput";
|
|
5
|
+
const _CETO = "CancelExportTaskOutput";
|
|
6
|
+
const _CG = "CreateGraph";
|
|
7
|
+
const _CGI = "CreateGraphInput";
|
|
8
|
+
const _CGO = "CreateGraphOutput";
|
|
9
|
+
const _CGS = "CreateGraphSnapshot";
|
|
10
|
+
const _CGSI = "CreateGraphSnapshotInput";
|
|
11
|
+
const _CGSO = "CreateGraphSnapshotOutput";
|
|
12
|
+
const _CGUIT = "CreateGraphUsingImportTask";
|
|
13
|
+
const _CGUITI = "CreateGraphUsingImportTaskInput";
|
|
14
|
+
const _CGUITO = "CreateGraphUsingImportTaskOutput";
|
|
15
|
+
const _CIT = "CancelImportTask";
|
|
16
|
+
const _CITI = "CancelImportTaskInput";
|
|
17
|
+
const _CITO = "CancelImportTaskOutput";
|
|
18
|
+
const _CPGE = "CreatePrivateGraphEndpoint";
|
|
19
|
+
const _CPGEI = "CreatePrivateGraphEndpointInput";
|
|
20
|
+
const _CPGEO = "CreatePrivateGraphEndpointOutput";
|
|
21
|
+
const _CQ = "CancelQuery";
|
|
22
|
+
const _CQI = "CancelQueryInput";
|
|
23
|
+
const _DG = "DeleteGraph";
|
|
24
|
+
const _DGI = "DeleteGraphInput";
|
|
25
|
+
const _DGO = "DeleteGraphOutput";
|
|
26
|
+
const _DGS = "DeleteGraphSnapshot";
|
|
27
|
+
const _DGSI = "DeleteGraphSnapshotInput";
|
|
28
|
+
const _DGSO = "DeleteGraphSnapshotOutput";
|
|
29
|
+
const _DPGE = "DeletePrivateGraphEndpoint";
|
|
30
|
+
const _DPGEI = "DeletePrivateGraphEndpointInput";
|
|
31
|
+
const _DPGEO = "DeletePrivateGraphEndpointOutput";
|
|
32
|
+
const _EF = "ExportFilter";
|
|
33
|
+
const _EFE = "ExportFilterElement";
|
|
34
|
+
const _EFPA = "ExportFilterPropertyAttributes";
|
|
35
|
+
const _EFPLM = "ExportFilterPerLabelMap";
|
|
36
|
+
const _EFPM = "ExportFilterPropertyMap";
|
|
37
|
+
const _EQ = "ExecuteQuery";
|
|
38
|
+
const _EQI = "ExecuteQueryInput";
|
|
39
|
+
const _EQO = "ExecuteQueryOutput";
|
|
40
|
+
const _ES = "EdgeStructure";
|
|
41
|
+
const _ESd = "EdgeStructures";
|
|
42
|
+
const _ETD = "ExportTaskDetails";
|
|
43
|
+
const _ETS = "ExportTaskSummary";
|
|
44
|
+
const _ETSL = "ExportTaskSummaryList";
|
|
45
|
+
const _GDS = "GraphDataSummary";
|
|
46
|
+
const _GET = "GetExportTask";
|
|
47
|
+
const _GETI = "GetExportTaskInput";
|
|
48
|
+
const _GETO = "GetExportTaskOutput";
|
|
49
|
+
const _GG = "GetGraph";
|
|
50
|
+
const _GGI = "GetGraphInput";
|
|
51
|
+
const _GGO = "GetGraphOutput";
|
|
52
|
+
const _GGS = "GetGraphSnapshot";
|
|
53
|
+
const _GGSI = "GetGraphSnapshotInput";
|
|
54
|
+
const _GGSIe = "GetGraphSummaryInput";
|
|
55
|
+
const _GGSO = "GetGraphSnapshotOutput";
|
|
56
|
+
const _GGSOe = "GetGraphSummaryOutput";
|
|
57
|
+
const _GGSe = "GetGraphSummary";
|
|
58
|
+
const _GIT = "GetImportTask";
|
|
59
|
+
const _GITI = "GetImportTaskInput";
|
|
60
|
+
const _GITO = "GetImportTaskOutput";
|
|
61
|
+
const _GPGE = "GetPrivateGraphEndpoint";
|
|
62
|
+
const _GPGEI = "GetPrivateGraphEndpointInput";
|
|
63
|
+
const _GPGEO = "GetPrivateGraphEndpointOutput";
|
|
64
|
+
const _GQ = "GetQuery";
|
|
65
|
+
const _GQI = "GetQueryInput";
|
|
66
|
+
const _GQO = "GetQueryOutput";
|
|
67
|
+
const _GS = "GraphSummary";
|
|
68
|
+
const _GSL = "GraphSummaryList";
|
|
69
|
+
const _GSS = "GraphSnapshotSummary";
|
|
70
|
+
const _GSSL = "GraphSnapshotSummaryList";
|
|
71
|
+
const _IO = "ImportOptions";
|
|
72
|
+
const _ISE = "InternalServerException";
|
|
73
|
+
const _ITD = "ImportTaskDetails";
|
|
74
|
+
const _ITS = "ImportTaskSummary";
|
|
75
|
+
const _ITSL = "ImportTaskSummaryList";
|
|
76
|
+
const _LET = "ListExportTasks";
|
|
77
|
+
const _LETI = "ListExportTasksInput";
|
|
78
|
+
const _LETO = "ListExportTasksOutput";
|
|
79
|
+
const _LG = "ListGraphs";
|
|
80
|
+
const _LGI = "ListGraphsInput";
|
|
81
|
+
const _LGO = "ListGraphsOutput";
|
|
82
|
+
const _LGS = "ListGraphSnapshots";
|
|
83
|
+
const _LGSI = "ListGraphSnapshotsInput";
|
|
84
|
+
const _LGSO = "ListGraphSnapshotsOutput";
|
|
85
|
+
const _LIT = "ListImportTasks";
|
|
86
|
+
const _LITI = "ListImportTasksInput";
|
|
87
|
+
const _LITO = "ListImportTasksOutput";
|
|
88
|
+
const _LPGE = "ListPrivateGraphEndpoints";
|
|
89
|
+
const _LPGEI = "ListPrivateGraphEndpointsInput";
|
|
90
|
+
const _LPGEO = "ListPrivateGraphEndpointsOutput";
|
|
91
|
+
const _LQ = "ListQueries";
|
|
92
|
+
const _LQI = "ListQueriesInput";
|
|
93
|
+
const _LQO = "ListQueriesOutput";
|
|
94
|
+
const _LTFR = "ListTagsForResource";
|
|
95
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
96
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
97
|
+
const _LVML = "LongValuedMapList";
|
|
98
|
+
const _NIO = "NeptuneImportOptions";
|
|
99
|
+
const _NS = "NodeStructure";
|
|
100
|
+
const _NSo = "NodeStructures";
|
|
101
|
+
const _PGES = "PrivateGraphEndpointSummary";
|
|
102
|
+
const _PGESL = "PrivateGraphEndpointSummaryList";
|
|
103
|
+
const _QRB = "QueryResponseBlob";
|
|
104
|
+
const _QS = "QuerySummary";
|
|
105
|
+
const _QSL = "QuerySummaryList";
|
|
106
|
+
const _RG = "ResetGraph";
|
|
107
|
+
const _RGFS = "RestoreGraphFromSnapshot";
|
|
108
|
+
const _RGFSI = "RestoreGraphFromSnapshotInput";
|
|
109
|
+
const _RGFSO = "RestoreGraphFromSnapshotOutput";
|
|
110
|
+
const _RGI = "ResetGraphInput";
|
|
111
|
+
const _RGO = "ResetGraphOutput";
|
|
112
|
+
const _RNFE = "ResourceNotFoundException";
|
|
113
|
+
const _SET = "StartExportTask";
|
|
114
|
+
const _SETI = "StartExportTaskInput";
|
|
115
|
+
const _SETO = "StartExportTaskOutput";
|
|
116
|
+
const _SG = "StartGraph";
|
|
117
|
+
const _SGI = "StartGraphInput";
|
|
118
|
+
const _SGIt = "StopGraphInput";
|
|
119
|
+
const _SGO = "StartGraphOutput";
|
|
120
|
+
const _SGOt = "StopGraphOutput";
|
|
121
|
+
const _SGt = "StopGraph";
|
|
122
|
+
const _SIT = "StartImportTask";
|
|
123
|
+
const _SITI = "StartImportTaskInput";
|
|
124
|
+
const _SITO = "StartImportTaskOutput";
|
|
125
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
126
|
+
const _TE = "ThrottlingException";
|
|
127
|
+
const _TR = "TagResource";
|
|
128
|
+
const _TRI = "TagResourceInput";
|
|
129
|
+
const _TRO = "TagResourceOutput";
|
|
130
|
+
const _UE = "UnprocessableException";
|
|
131
|
+
const _UG = "UpdateGraph";
|
|
132
|
+
const _UGI = "UpdateGraphInput";
|
|
133
|
+
const _UGO = "UpdateGraphOutput";
|
|
134
|
+
const _UR = "UntagResource";
|
|
135
|
+
const _URI = "UntagResourceInput";
|
|
136
|
+
const _URO = "UntagResourceOutput";
|
|
137
|
+
const _VE = "ValidationException";
|
|
138
|
+
const _VSC = "VectorSearchConfiguration";
|
|
139
|
+
const _a = "arn";
|
|
140
|
+
const _aN = "attemptNumber";
|
|
141
|
+
const _bN = "buildNumber";
|
|
142
|
+
const _bNH = "blankNodeHandling";
|
|
143
|
+
const _c = "client";
|
|
144
|
+
const _cT = "createTime";
|
|
145
|
+
const _co = "count";
|
|
146
|
+
const _d = "destination";
|
|
147
|
+
const _dEC = "dictionaryEntryCount";
|
|
148
|
+
const _dOEL = "distinctOutgoingEdgeLabels";
|
|
149
|
+
const _dP = "deletionProtection";
|
|
150
|
+
const _di = "dimension";
|
|
151
|
+
const _e = "error";
|
|
152
|
+
const _eC = "errorCount";
|
|
153
|
+
const _eD = "errorDetails";
|
|
154
|
+
const _eF = "edgeFilter";
|
|
155
|
+
const _eFx = "exportFilter";
|
|
156
|
+
const _eL = "edgeLabels";
|
|
157
|
+
const _eM = "explainMode";
|
|
158
|
+
const _eP = "edgeProperties";
|
|
159
|
+
const _eS = "edgeStructures";
|
|
160
|
+
const _eTD = "exportTaskDetails";
|
|
161
|
+
const _el = "elapsed";
|
|
162
|
+
const _en = "endpoint";
|
|
163
|
+
const _ex = "explain";
|
|
164
|
+
const _f = "format";
|
|
165
|
+
const _fOE = "failOnError";
|
|
166
|
+
const _g = "graphs";
|
|
167
|
+
const _gI = "graphId";
|
|
168
|
+
const _gIr = "graphIdentifier";
|
|
169
|
+
const _gN = "graphName";
|
|
170
|
+
const _gS = "graphSummary";
|
|
171
|
+
const _gSr = "graphSnapshots";
|
|
172
|
+
const _h = "http";
|
|
173
|
+
const _hE = "httpError";
|
|
174
|
+
const _hH = "httpHeader";
|
|
175
|
+
const _hL = "hostLabel";
|
|
176
|
+
const _hQ = "httpQuery";
|
|
177
|
+
const _i = "id";
|
|
178
|
+
const _iO = "importOptions";
|
|
179
|
+
const _iTD = "importTaskDetails";
|
|
180
|
+
const _jN = "jsonName";
|
|
181
|
+
const _kKI = "kmsKeyIdentifier";
|
|
182
|
+
const _l = "language";
|
|
183
|
+
const _lSCT = "lastStatisticsComputationTime";
|
|
184
|
+
const _m = "message";
|
|
185
|
+
const _mPM = "maxProvisionedMemory";
|
|
186
|
+
const _mPMi = "minProvisionedMemory";
|
|
187
|
+
const _mR = "maxResults";
|
|
188
|
+
const _mVH = "multiValueHandling";
|
|
189
|
+
const _mo = "mode";
|
|
190
|
+
const _n = "name";
|
|
191
|
+
const _nE = "numEdges";
|
|
192
|
+
const _nEL = "numEdgeLabels";
|
|
193
|
+
const _nEP = "numEdgeProperties";
|
|
194
|
+
const _nEW = "numEdgesWritten";
|
|
195
|
+
const _nL = "nodeLabels";
|
|
196
|
+
const _nN = "numNodes";
|
|
197
|
+
const _nNL = "numNodeLabels";
|
|
198
|
+
const _nNP = "numNodeProperties";
|
|
199
|
+
const _nP = "nodeProperties";
|
|
200
|
+
const _nS = "nodeStructures";
|
|
201
|
+
const _nT = "nextToken";
|
|
202
|
+
const _nVW = "numVerticesWritten";
|
|
203
|
+
const _ne = "neptune";
|
|
204
|
+
const _oT = "outputType";
|
|
205
|
+
const _p = "parameters";
|
|
206
|
+
const _pC = "publicConnectivity";
|
|
207
|
+
const _pCl = "planCache";
|
|
208
|
+
const _pDVL = "preserveDefaultVertexLabels";
|
|
209
|
+
const _pEI = "preserveEdgeIds";
|
|
210
|
+
const _pGE = "privateGraphEndpoints";
|
|
211
|
+
const _pM = "provisionedMemory";
|
|
212
|
+
const _pP = "progressPercentage";
|
|
213
|
+
const _pT = "parquetType";
|
|
214
|
+
const _pa = "payload";
|
|
215
|
+
const _pr = "properties";
|
|
216
|
+
const _q = "query";
|
|
217
|
+
const _qC = "quotaCode";
|
|
218
|
+
const _qI = "queryId";
|
|
219
|
+
const _qS = "queryString";
|
|
220
|
+
const _qTM = "queryTimeoutMilliseconds";
|
|
221
|
+
const _qu = "queries";
|
|
222
|
+
const _r = "reason";
|
|
223
|
+
const _rA = "roleArn";
|
|
224
|
+
const _rAe = "resourceArn";
|
|
225
|
+
const _rC = "replicaCount";
|
|
226
|
+
const _rI = "resourceId";
|
|
227
|
+
const _rT = "resourceType";
|
|
228
|
+
const _s = "streaming";
|
|
229
|
+
const _sC = "statementCount";
|
|
230
|
+
const _sCT = "snapshotCreateTime";
|
|
231
|
+
const _sCe = "serviceCode";
|
|
232
|
+
const _sEKKI = "s3ExportKmsKeyId";
|
|
233
|
+
const _sEP = "s3ExportPath";
|
|
234
|
+
const _sGI = "sourceGraphId";
|
|
235
|
+
const _sI = "subnetIds";
|
|
236
|
+
const _sIn = "snapshotIdentifier";
|
|
237
|
+
const _sN = "snapshotName";
|
|
238
|
+
const _sPN = "sourcePropertyName";
|
|
239
|
+
const _sR = "statusReason";
|
|
240
|
+
const _sS = "skipSnapshot";
|
|
241
|
+
const _sSI = "sourceSnapshotId";
|
|
242
|
+
const _sT = "startTime";
|
|
243
|
+
const _se = "server";
|
|
244
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.neptunegraph";
|
|
245
|
+
const _so = "source";
|
|
246
|
+
const _st = "status";
|
|
247
|
+
const _sta = "state";
|
|
248
|
+
const _t = "tags";
|
|
249
|
+
const _tEPV = "totalEdgePropertyValues";
|
|
250
|
+
const _tES = "timeElapsedSeconds";
|
|
251
|
+
const _tI = "taskIdentifier";
|
|
252
|
+
const _tIa = "taskId";
|
|
253
|
+
const _tK = "tagKeys";
|
|
254
|
+
const _tNPV = "totalNodePropertyValues";
|
|
255
|
+
const _ta = "tasks";
|
|
256
|
+
const _v = "version";
|
|
257
|
+
const _vEI = "vpcEndpointId";
|
|
258
|
+
const _vF = "vertexFilter";
|
|
259
|
+
const _vI = "vpcId";
|
|
260
|
+
const _vSC = "vectorSearchConfiguration";
|
|
261
|
+
const _vSGI = "vpcSecurityGroupIds";
|
|
262
|
+
const _w = "waited";
|
|
263
|
+
const n0 = "com.amazonaws.neptunegraph";
|
|
264
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
265
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, UnprocessableException as __UnprocessableException, ValidationException as __ValidationException, } from "../models/index";
|
|
266
|
+
import { NeptuneGraphServiceException as __NeptuneGraphServiceException } from "../models/NeptuneGraphServiceException";
|
|
267
|
+
export var QueryResponseBlob = [
|
|
268
|
+
0,
|
|
269
|
+
n0,
|
|
270
|
+
_QRB,
|
|
271
|
+
{
|
|
272
|
+
[_s]: 1,
|
|
273
|
+
},
|
|
274
|
+
42,
|
|
275
|
+
];
|
|
276
|
+
export var AccessDeniedException = [
|
|
277
|
+
-3,
|
|
278
|
+
n0,
|
|
279
|
+
_ADE,
|
|
280
|
+
{
|
|
281
|
+
[_e]: _c,
|
|
282
|
+
[_hE]: 403,
|
|
283
|
+
},
|
|
284
|
+
[_m],
|
|
285
|
+
[0],
|
|
286
|
+
];
|
|
287
|
+
TypeRegistry.for(n0).registerError(AccessDeniedException, __AccessDeniedException);
|
|
288
|
+
export var CancelExportTaskInput = [3, n0, _CETI, 0, [_tI], [[0, 1]]];
|
|
289
|
+
export var CancelExportTaskOutput = [
|
|
290
|
+
3,
|
|
291
|
+
n0,
|
|
292
|
+
_CETO,
|
|
293
|
+
0,
|
|
294
|
+
[_gI, _rA, _tIa, _st, _f, _d, _kKI, _pT, _sR],
|
|
295
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0],
|
|
296
|
+
];
|
|
297
|
+
export var CancelImportTaskInput = [3, n0, _CITI, 0, [_tI], [[0, 1]]];
|
|
298
|
+
export var CancelImportTaskOutput = [
|
|
299
|
+
3,
|
|
300
|
+
n0,
|
|
301
|
+
_CITO,
|
|
302
|
+
0,
|
|
303
|
+
[_gI, _tIa, _so, _f, _pT, _rA, _st],
|
|
304
|
+
[0, 0, 0, 0, 0, 0, 0],
|
|
305
|
+
];
|
|
306
|
+
export var CancelQueryInput = [
|
|
307
|
+
3,
|
|
308
|
+
n0,
|
|
309
|
+
_CQI,
|
|
310
|
+
0,
|
|
311
|
+
[_gIr, _qI],
|
|
312
|
+
[
|
|
313
|
+
[
|
|
314
|
+
0,
|
|
315
|
+
{
|
|
316
|
+
[_hL]: 1,
|
|
317
|
+
[_hH]: _gIr,
|
|
318
|
+
},
|
|
319
|
+
],
|
|
320
|
+
[0, 1],
|
|
321
|
+
],
|
|
322
|
+
];
|
|
323
|
+
export var ConflictException = [
|
|
324
|
+
-3,
|
|
325
|
+
n0,
|
|
326
|
+
_CE,
|
|
327
|
+
{
|
|
328
|
+
[_e]: _c,
|
|
329
|
+
[_hE]: 409,
|
|
330
|
+
},
|
|
331
|
+
[_m, _r],
|
|
332
|
+
[0, 0],
|
|
333
|
+
];
|
|
334
|
+
TypeRegistry.for(n0).registerError(ConflictException, __ConflictException);
|
|
335
|
+
export var CreateGraphInput = [
|
|
336
|
+
3,
|
|
337
|
+
n0,
|
|
338
|
+
_CGI,
|
|
339
|
+
0,
|
|
340
|
+
[_gN, _t, _pC, _kKI, _vSC, _rC, _dP, _pM],
|
|
341
|
+
[0, 128 | 0, 2, 0, () => VectorSearchConfiguration, 1, 2, 1],
|
|
342
|
+
];
|
|
343
|
+
export var CreateGraphOutput = [
|
|
344
|
+
3,
|
|
345
|
+
n0,
|
|
346
|
+
_CGO,
|
|
347
|
+
0,
|
|
348
|
+
[_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
349
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
|
|
350
|
+
];
|
|
351
|
+
export var CreateGraphSnapshotInput = [3, n0, _CGSI, 0, [_gIr, _sN, _t], [0, 0, 128 | 0]];
|
|
352
|
+
export var CreateGraphSnapshotOutput = [
|
|
353
|
+
3,
|
|
354
|
+
n0,
|
|
355
|
+
_CGSO,
|
|
356
|
+
0,
|
|
357
|
+
[_i, _n, _a, _sGI, _sCT, _st, _kKI],
|
|
358
|
+
[0, 0, 0, 0, 4, 0, 0],
|
|
359
|
+
];
|
|
360
|
+
export var CreateGraphUsingImportTaskInput = [
|
|
361
|
+
3,
|
|
362
|
+
n0,
|
|
363
|
+
_CGUITI,
|
|
364
|
+
0,
|
|
365
|
+
[_gN, _t, _pC, _kKI, _vSC, _rC, _dP, _iO, _mPM, _mPMi, _fOE, _so, _f, _pT, _bNH, _rA],
|
|
366
|
+
[0, 128 | 0, 2, 0, () => VectorSearchConfiguration, 1, 2, () => ImportOptions, 1, 1, 2, 0, 0, 0, 0, 0],
|
|
367
|
+
];
|
|
368
|
+
export var CreateGraphUsingImportTaskOutput = [
|
|
369
|
+
3,
|
|
370
|
+
n0,
|
|
371
|
+
_CGUITO,
|
|
372
|
+
0,
|
|
373
|
+
[_gI, _tIa, _so, _f, _pT, _rA, _st, _iO],
|
|
374
|
+
[0, 0, 0, 0, 0, 0, 0, () => ImportOptions],
|
|
375
|
+
];
|
|
376
|
+
export var CreatePrivateGraphEndpointInput = [
|
|
377
|
+
3,
|
|
378
|
+
n0,
|
|
379
|
+
_CPGEI,
|
|
380
|
+
0,
|
|
381
|
+
[_gIr, _vI, _sI, _vSGI],
|
|
382
|
+
[[0, 1], 0, 64 | 0, 64 | 0],
|
|
383
|
+
];
|
|
384
|
+
export var CreatePrivateGraphEndpointOutput = [
|
|
385
|
+
3,
|
|
386
|
+
n0,
|
|
387
|
+
_CPGEO,
|
|
388
|
+
0,
|
|
389
|
+
[_vI, _sI, _st, _vEI],
|
|
390
|
+
[0, 64 | 0, 0, 0],
|
|
391
|
+
];
|
|
392
|
+
export var DeleteGraphInput = [
|
|
393
|
+
3,
|
|
394
|
+
n0,
|
|
395
|
+
_DGI,
|
|
396
|
+
0,
|
|
397
|
+
[_gIr, _sS],
|
|
398
|
+
[
|
|
399
|
+
[0, 1],
|
|
400
|
+
[
|
|
401
|
+
2,
|
|
402
|
+
{
|
|
403
|
+
[_hQ]: _sS,
|
|
404
|
+
},
|
|
405
|
+
],
|
|
406
|
+
],
|
|
407
|
+
];
|
|
408
|
+
export var DeleteGraphOutput = [
|
|
409
|
+
3,
|
|
410
|
+
n0,
|
|
411
|
+
_DGO,
|
|
412
|
+
0,
|
|
413
|
+
[_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
414
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
|
|
415
|
+
];
|
|
416
|
+
export var DeleteGraphSnapshotInput = [3, n0, _DGSI, 0, [_sIn], [[0, 1]]];
|
|
417
|
+
export var DeleteGraphSnapshotOutput = [
|
|
418
|
+
3,
|
|
419
|
+
n0,
|
|
420
|
+
_DGSO,
|
|
421
|
+
0,
|
|
422
|
+
[_i, _n, _a, _sGI, _sCT, _st, _kKI],
|
|
423
|
+
[0, 0, 0, 0, 4, 0, 0],
|
|
424
|
+
];
|
|
425
|
+
export var DeletePrivateGraphEndpointInput = [
|
|
426
|
+
3,
|
|
427
|
+
n0,
|
|
428
|
+
_DPGEI,
|
|
429
|
+
0,
|
|
430
|
+
[_gIr, _vI],
|
|
431
|
+
[
|
|
432
|
+
[0, 1],
|
|
433
|
+
[0, 1],
|
|
434
|
+
],
|
|
435
|
+
];
|
|
436
|
+
export var DeletePrivateGraphEndpointOutput = [
|
|
437
|
+
3,
|
|
438
|
+
n0,
|
|
439
|
+
_DPGEO,
|
|
440
|
+
0,
|
|
441
|
+
[_vI, _sI, _st, _vEI],
|
|
442
|
+
[0, 64 | 0, 0, 0],
|
|
443
|
+
];
|
|
444
|
+
export var EdgeStructure = [3, n0, _ES, 0, [_co, _eP], [1, 64 | 0]];
|
|
445
|
+
export var ExecuteQueryInput = [
|
|
446
|
+
3,
|
|
447
|
+
n0,
|
|
448
|
+
_EQI,
|
|
449
|
+
0,
|
|
450
|
+
[_gIr, _qS, _l, _p, _pCl, _eM, _qTM],
|
|
451
|
+
[
|
|
452
|
+
[
|
|
453
|
+
0,
|
|
454
|
+
{
|
|
455
|
+
[_hL]: 1,
|
|
456
|
+
[_hH]: _gIr,
|
|
457
|
+
},
|
|
458
|
+
],
|
|
459
|
+
[
|
|
460
|
+
0,
|
|
461
|
+
{
|
|
462
|
+
[_jN]: _q,
|
|
463
|
+
},
|
|
464
|
+
],
|
|
465
|
+
0,
|
|
466
|
+
128 | 15,
|
|
467
|
+
0,
|
|
468
|
+
[
|
|
469
|
+
0,
|
|
470
|
+
{
|
|
471
|
+
[_jN]: _ex,
|
|
472
|
+
},
|
|
473
|
+
],
|
|
474
|
+
1,
|
|
475
|
+
],
|
|
476
|
+
];
|
|
477
|
+
export var ExecuteQueryOutput = [3, n0, _EQO, 0, [_pa], [[() => QueryResponseBlob, 16]]];
|
|
478
|
+
export var ExportFilter = [
|
|
479
|
+
3,
|
|
480
|
+
n0,
|
|
481
|
+
_EF,
|
|
482
|
+
0,
|
|
483
|
+
[_vF, _eF],
|
|
484
|
+
[() => ExportFilterPerLabelMap, () => ExportFilterPerLabelMap],
|
|
485
|
+
];
|
|
486
|
+
export var ExportFilterElement = [3, n0, _EFE, 0, [_pr], [() => ExportFilterPropertyMap]];
|
|
487
|
+
export var ExportFilterPropertyAttributes = [3, n0, _EFPA, 0, [_oT, _sPN, _mVH], [0, 0, 0]];
|
|
488
|
+
export var ExportTaskDetails = [3, n0, _ETD, 0, [_sT, _tES, _pP, _nVW, _nEW], [4, 1, 1, 1, 1]];
|
|
489
|
+
export var ExportTaskSummary = [
|
|
490
|
+
3,
|
|
491
|
+
n0,
|
|
492
|
+
_ETS,
|
|
493
|
+
0,
|
|
494
|
+
[_gI, _rA, _tIa, _st, _f, _d, _kKI, _pT, _sR],
|
|
495
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0],
|
|
496
|
+
];
|
|
497
|
+
export var GetExportTaskInput = [3, n0, _GETI, 0, [_tI], [[0, 1]]];
|
|
498
|
+
export var GetExportTaskOutput = [
|
|
499
|
+
3,
|
|
500
|
+
n0,
|
|
501
|
+
_GETO,
|
|
502
|
+
0,
|
|
503
|
+
[_gI, _rA, _tIa, _st, _f, _d, _kKI, _pT, _sR, _eTD, _eFx],
|
|
504
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => ExportTaskDetails, () => ExportFilter],
|
|
505
|
+
];
|
|
506
|
+
export var GetGraphInput = [3, n0, _GGI, 0, [_gIr], [[0, 1]]];
|
|
507
|
+
export var GetGraphOutput = [
|
|
508
|
+
3,
|
|
509
|
+
n0,
|
|
510
|
+
_GGO,
|
|
511
|
+
0,
|
|
512
|
+
[_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
513
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
|
|
514
|
+
];
|
|
515
|
+
export var GetGraphSnapshotInput = [3, n0, _GGSI, 0, [_sIn], [[0, 1]]];
|
|
516
|
+
export var GetGraphSnapshotOutput = [
|
|
517
|
+
3,
|
|
518
|
+
n0,
|
|
519
|
+
_GGSO,
|
|
520
|
+
0,
|
|
521
|
+
[_i, _n, _a, _sGI, _sCT, _st, _kKI],
|
|
522
|
+
[0, 0, 0, 0, 4, 0, 0],
|
|
523
|
+
];
|
|
524
|
+
export var GetGraphSummaryInput = [
|
|
525
|
+
3,
|
|
526
|
+
n0,
|
|
527
|
+
_GGSIe,
|
|
528
|
+
0,
|
|
529
|
+
[_gIr, _mo],
|
|
530
|
+
[
|
|
531
|
+
[
|
|
532
|
+
0,
|
|
533
|
+
{
|
|
534
|
+
[_hL]: 1,
|
|
535
|
+
[_hH]: _gIr,
|
|
536
|
+
},
|
|
537
|
+
],
|
|
538
|
+
[
|
|
539
|
+
0,
|
|
540
|
+
{
|
|
541
|
+
[_hQ]: _mo,
|
|
542
|
+
},
|
|
543
|
+
],
|
|
544
|
+
],
|
|
545
|
+
];
|
|
546
|
+
export var GetGraphSummaryOutput = [
|
|
547
|
+
3,
|
|
548
|
+
n0,
|
|
549
|
+
_GGSOe,
|
|
550
|
+
0,
|
|
551
|
+
[_v, _lSCT, _gS],
|
|
552
|
+
[0, 5, () => GraphDataSummary],
|
|
553
|
+
];
|
|
554
|
+
export var GetImportTaskInput = [3, n0, _GITI, 0, [_tI], [[0, 1]]];
|
|
555
|
+
export var GetImportTaskOutput = [
|
|
556
|
+
3,
|
|
557
|
+
n0,
|
|
558
|
+
_GITO,
|
|
559
|
+
0,
|
|
560
|
+
[_gI, _tIa, _so, _f, _pT, _rA, _st, _iO, _iTD, _aN, _sR],
|
|
561
|
+
[0, 0, 0, 0, 0, 0, 0, () => ImportOptions, () => ImportTaskDetails, 1, 0],
|
|
562
|
+
];
|
|
563
|
+
export var GetPrivateGraphEndpointInput = [
|
|
564
|
+
3,
|
|
565
|
+
n0,
|
|
566
|
+
_GPGEI,
|
|
567
|
+
0,
|
|
568
|
+
[_gIr, _vI],
|
|
569
|
+
[
|
|
570
|
+
[0, 1],
|
|
571
|
+
[0, 1],
|
|
572
|
+
],
|
|
573
|
+
];
|
|
574
|
+
export var GetPrivateGraphEndpointOutput = [
|
|
575
|
+
3,
|
|
576
|
+
n0,
|
|
577
|
+
_GPGEO,
|
|
578
|
+
0,
|
|
579
|
+
[_vI, _sI, _st, _vEI],
|
|
580
|
+
[0, 64 | 0, 0, 0],
|
|
581
|
+
];
|
|
582
|
+
export var GetQueryInput = [
|
|
583
|
+
3,
|
|
584
|
+
n0,
|
|
585
|
+
_GQI,
|
|
586
|
+
0,
|
|
587
|
+
[_gIr, _qI],
|
|
588
|
+
[
|
|
589
|
+
[
|
|
590
|
+
0,
|
|
591
|
+
{
|
|
592
|
+
[_hL]: 1,
|
|
593
|
+
[_hH]: _gIr,
|
|
594
|
+
},
|
|
595
|
+
],
|
|
596
|
+
[0, 1],
|
|
597
|
+
],
|
|
598
|
+
];
|
|
599
|
+
export var GetQueryOutput = [3, n0, _GQO, 0, [_i, _qS, _w, _el, _sta], [0, 0, 1, 1, 0]];
|
|
600
|
+
export var GraphDataSummary = [
|
|
601
|
+
3,
|
|
602
|
+
n0,
|
|
603
|
+
_GDS,
|
|
604
|
+
0,
|
|
605
|
+
[_nN, _nE, _nNL, _nEL, _nL, _eL, _nNP, _nEP, _nP, _eP, _tNPV, _tEPV, _nS, _eS],
|
|
606
|
+
[
|
|
607
|
+
1,
|
|
608
|
+
1,
|
|
609
|
+
1,
|
|
610
|
+
1,
|
|
611
|
+
64 | 0,
|
|
612
|
+
64 | 0,
|
|
613
|
+
1,
|
|
614
|
+
1,
|
|
615
|
+
[1, n0, _LVML, 0, 128 | 1],
|
|
616
|
+
[1, n0, _LVML, 0, 128 | 1],
|
|
617
|
+
1,
|
|
618
|
+
1,
|
|
619
|
+
() => NodeStructures,
|
|
620
|
+
() => EdgeStructures,
|
|
621
|
+
],
|
|
622
|
+
];
|
|
623
|
+
export var GraphSnapshotSummary = [
|
|
624
|
+
3,
|
|
625
|
+
n0,
|
|
626
|
+
_GSS,
|
|
627
|
+
0,
|
|
628
|
+
[_i, _n, _a, _sGI, _sCT, _st, _kKI],
|
|
629
|
+
[0, 0, 0, 0, 4, 0, 0],
|
|
630
|
+
];
|
|
631
|
+
export var GraphSummary = [
|
|
632
|
+
3,
|
|
633
|
+
n0,
|
|
634
|
+
_GS,
|
|
635
|
+
0,
|
|
636
|
+
[_i, _n, _a, _st, _pM, _pC, _en, _rC, _kKI, _dP],
|
|
637
|
+
[0, 0, 0, 0, 1, 2, 0, 1, 0, 2],
|
|
638
|
+
];
|
|
639
|
+
export var ImportTaskDetails = [
|
|
640
|
+
3,
|
|
641
|
+
n0,
|
|
642
|
+
_ITD,
|
|
643
|
+
0,
|
|
644
|
+
[_st, _sT, _tES, _pP, _eC, _eD, _sC, _dEC],
|
|
645
|
+
[0, 4, 1, 1, 1, 0, 1, 1],
|
|
646
|
+
];
|
|
647
|
+
export var ImportTaskSummary = [
|
|
648
|
+
3,
|
|
649
|
+
n0,
|
|
650
|
+
_ITS,
|
|
651
|
+
0,
|
|
652
|
+
[_gI, _tIa, _so, _f, _pT, _rA, _st],
|
|
653
|
+
[0, 0, 0, 0, 0, 0, 0],
|
|
654
|
+
];
|
|
655
|
+
export var InternalServerException = [
|
|
656
|
+
-3,
|
|
657
|
+
n0,
|
|
658
|
+
_ISE,
|
|
659
|
+
{
|
|
660
|
+
[_e]: _se,
|
|
661
|
+
[_hE]: 500,
|
|
662
|
+
},
|
|
663
|
+
[_m],
|
|
664
|
+
[0],
|
|
665
|
+
];
|
|
666
|
+
TypeRegistry.for(n0).registerError(InternalServerException, __InternalServerException);
|
|
667
|
+
export var ListExportTasksInput = [
|
|
668
|
+
3,
|
|
669
|
+
n0,
|
|
670
|
+
_LETI,
|
|
671
|
+
0,
|
|
672
|
+
[_gIr, _nT, _mR],
|
|
673
|
+
[
|
|
674
|
+
[
|
|
675
|
+
0,
|
|
676
|
+
{
|
|
677
|
+
[_hQ]: _gIr,
|
|
678
|
+
},
|
|
679
|
+
],
|
|
680
|
+
[
|
|
681
|
+
0,
|
|
682
|
+
{
|
|
683
|
+
[_hQ]: _nT,
|
|
684
|
+
},
|
|
685
|
+
],
|
|
686
|
+
[
|
|
687
|
+
1,
|
|
688
|
+
{
|
|
689
|
+
[_hQ]: _mR,
|
|
690
|
+
},
|
|
691
|
+
],
|
|
692
|
+
],
|
|
693
|
+
];
|
|
694
|
+
export var ListExportTasksOutput = [
|
|
695
|
+
3,
|
|
696
|
+
n0,
|
|
697
|
+
_LETO,
|
|
698
|
+
0,
|
|
699
|
+
[_ta, _nT],
|
|
700
|
+
[() => ExportTaskSummaryList, 0],
|
|
701
|
+
];
|
|
702
|
+
export var ListGraphsInput = [
|
|
703
|
+
3,
|
|
704
|
+
n0,
|
|
705
|
+
_LGI,
|
|
706
|
+
0,
|
|
707
|
+
[_nT, _mR],
|
|
708
|
+
[
|
|
709
|
+
[
|
|
710
|
+
0,
|
|
711
|
+
{
|
|
712
|
+
[_hQ]: _nT,
|
|
713
|
+
},
|
|
714
|
+
],
|
|
715
|
+
[
|
|
716
|
+
1,
|
|
717
|
+
{
|
|
718
|
+
[_hQ]: _mR,
|
|
719
|
+
},
|
|
720
|
+
],
|
|
721
|
+
],
|
|
722
|
+
];
|
|
723
|
+
export var ListGraphSnapshotsInput = [
|
|
724
|
+
3,
|
|
725
|
+
n0,
|
|
726
|
+
_LGSI,
|
|
727
|
+
0,
|
|
728
|
+
[_gIr, _nT, _mR],
|
|
729
|
+
[
|
|
730
|
+
[
|
|
731
|
+
0,
|
|
732
|
+
{
|
|
733
|
+
[_hQ]: _gIr,
|
|
734
|
+
},
|
|
735
|
+
],
|
|
736
|
+
[
|
|
737
|
+
0,
|
|
738
|
+
{
|
|
739
|
+
[_hQ]: _nT,
|
|
740
|
+
},
|
|
741
|
+
],
|
|
742
|
+
[
|
|
743
|
+
1,
|
|
744
|
+
{
|
|
745
|
+
[_hQ]: _mR,
|
|
746
|
+
},
|
|
747
|
+
],
|
|
748
|
+
],
|
|
749
|
+
];
|
|
750
|
+
export var ListGraphSnapshotsOutput = [
|
|
751
|
+
3,
|
|
752
|
+
n0,
|
|
753
|
+
_LGSO,
|
|
754
|
+
0,
|
|
755
|
+
[_gSr, _nT],
|
|
756
|
+
[() => GraphSnapshotSummaryList, 0],
|
|
757
|
+
];
|
|
758
|
+
export var ListGraphsOutput = [3, n0, _LGO, 0, [_g, _nT], [() => GraphSummaryList, 0]];
|
|
759
|
+
export var ListImportTasksInput = [
|
|
760
|
+
3,
|
|
761
|
+
n0,
|
|
762
|
+
_LITI,
|
|
763
|
+
0,
|
|
764
|
+
[_nT, _mR],
|
|
765
|
+
[
|
|
766
|
+
[
|
|
767
|
+
0,
|
|
768
|
+
{
|
|
769
|
+
[_hQ]: _nT,
|
|
770
|
+
},
|
|
771
|
+
],
|
|
772
|
+
[
|
|
773
|
+
1,
|
|
774
|
+
{
|
|
775
|
+
[_hQ]: _mR,
|
|
776
|
+
},
|
|
777
|
+
],
|
|
778
|
+
],
|
|
779
|
+
];
|
|
780
|
+
export var ListImportTasksOutput = [
|
|
781
|
+
3,
|
|
782
|
+
n0,
|
|
783
|
+
_LITO,
|
|
784
|
+
0,
|
|
785
|
+
[_ta, _nT],
|
|
786
|
+
[() => ImportTaskSummaryList, 0],
|
|
787
|
+
];
|
|
788
|
+
export var ListPrivateGraphEndpointsInput = [
|
|
789
|
+
3,
|
|
790
|
+
n0,
|
|
791
|
+
_LPGEI,
|
|
792
|
+
0,
|
|
793
|
+
[_gIr, _nT, _mR],
|
|
794
|
+
[
|
|
795
|
+
[0, 1],
|
|
796
|
+
[
|
|
797
|
+
0,
|
|
798
|
+
{
|
|
799
|
+
[_hQ]: _nT,
|
|
800
|
+
},
|
|
801
|
+
],
|
|
802
|
+
[
|
|
803
|
+
1,
|
|
804
|
+
{
|
|
805
|
+
[_hQ]: _mR,
|
|
806
|
+
},
|
|
807
|
+
],
|
|
808
|
+
],
|
|
809
|
+
];
|
|
810
|
+
export var ListPrivateGraphEndpointsOutput = [
|
|
811
|
+
3,
|
|
812
|
+
n0,
|
|
813
|
+
_LPGEO,
|
|
814
|
+
0,
|
|
815
|
+
[_pGE, _nT],
|
|
816
|
+
[() => PrivateGraphEndpointSummaryList, 0],
|
|
817
|
+
];
|
|
818
|
+
export var ListQueriesInput = [
|
|
819
|
+
3,
|
|
820
|
+
n0,
|
|
821
|
+
_LQI,
|
|
822
|
+
0,
|
|
823
|
+
[_gIr, _mR, _sta],
|
|
824
|
+
[
|
|
825
|
+
[
|
|
826
|
+
0,
|
|
827
|
+
{
|
|
828
|
+
[_hL]: 1,
|
|
829
|
+
[_hH]: _gIr,
|
|
830
|
+
},
|
|
831
|
+
],
|
|
832
|
+
[
|
|
833
|
+
1,
|
|
834
|
+
{
|
|
835
|
+
[_hQ]: _mR,
|
|
836
|
+
},
|
|
837
|
+
],
|
|
838
|
+
[
|
|
839
|
+
0,
|
|
840
|
+
{
|
|
841
|
+
[_hQ]: _sta,
|
|
842
|
+
},
|
|
843
|
+
],
|
|
844
|
+
],
|
|
845
|
+
];
|
|
846
|
+
export var ListQueriesOutput = [3, n0, _LQO, 0, [_qu], [() => QuerySummaryList]];
|
|
847
|
+
export var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_rAe], [[0, 1]]];
|
|
848
|
+
export var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_t], [128 | 0]];
|
|
849
|
+
export var NeptuneImportOptions = [3, n0, _NIO, 0, [_sEP, _sEKKI, _pDVL, _pEI], [0, 0, 2, 2]];
|
|
850
|
+
export var NodeStructure = [3, n0, _NS, 0, [_co, _nP, _dOEL], [1, 64 | 0, 64 | 0]];
|
|
851
|
+
export var PrivateGraphEndpointSummary = [
|
|
852
|
+
3,
|
|
853
|
+
n0,
|
|
854
|
+
_PGES,
|
|
855
|
+
0,
|
|
856
|
+
[_vI, _sI, _st, _vEI],
|
|
857
|
+
[0, 64 | 0, 0, 0],
|
|
858
|
+
];
|
|
859
|
+
export var QuerySummary = [3, n0, _QS, 0, [_i, _qS, _w, _el, _sta], [0, 0, 1, 1, 0]];
|
|
860
|
+
export var ResetGraphInput = [3, n0, _RGI, 0, [_gIr, _sS], [[0, 1], 2]];
|
|
861
|
+
export var ResetGraphOutput = [
|
|
862
|
+
3,
|
|
863
|
+
n0,
|
|
864
|
+
_RGO,
|
|
865
|
+
0,
|
|
866
|
+
[_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
867
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
|
|
868
|
+
];
|
|
869
|
+
export var ResourceNotFoundException = [
|
|
870
|
+
-3,
|
|
871
|
+
n0,
|
|
872
|
+
_RNFE,
|
|
873
|
+
{
|
|
874
|
+
[_e]: _c,
|
|
875
|
+
[_hE]: 404,
|
|
876
|
+
},
|
|
877
|
+
[_m],
|
|
878
|
+
[0],
|
|
879
|
+
];
|
|
880
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException, __ResourceNotFoundException);
|
|
881
|
+
export var RestoreGraphFromSnapshotInput = [
|
|
882
|
+
3,
|
|
883
|
+
n0,
|
|
884
|
+
_RGFSI,
|
|
885
|
+
0,
|
|
886
|
+
[_sIn, _gN, _pM, _dP, _t, _rC, _pC],
|
|
887
|
+
[[0, 1], 0, 1, 2, 128 | 0, 1, 2],
|
|
888
|
+
];
|
|
889
|
+
export var RestoreGraphFromSnapshotOutput = [
|
|
890
|
+
3,
|
|
891
|
+
n0,
|
|
892
|
+
_RGFSO,
|
|
893
|
+
0,
|
|
894
|
+
[_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
895
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
|
|
896
|
+
];
|
|
897
|
+
export var ServiceQuotaExceededException = [
|
|
898
|
+
-3,
|
|
899
|
+
n0,
|
|
900
|
+
_SQEE,
|
|
901
|
+
{
|
|
902
|
+
[_e]: _c,
|
|
903
|
+
[_hE]: 402,
|
|
904
|
+
},
|
|
905
|
+
[_m, _rI, _rT, _sCe, _qC],
|
|
906
|
+
[0, 0, 0, 0, 0],
|
|
907
|
+
];
|
|
908
|
+
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, __ServiceQuotaExceededException);
|
|
909
|
+
export var StartExportTaskInput = [
|
|
910
|
+
3,
|
|
911
|
+
n0,
|
|
912
|
+
_SETI,
|
|
913
|
+
0,
|
|
914
|
+
[_gIr, _rA, _f, _d, _kKI, _pT, _eFx, _t],
|
|
915
|
+
[0, 0, 0, 0, 0, 0, () => ExportFilter, 128 | 0],
|
|
916
|
+
];
|
|
917
|
+
export var StartExportTaskOutput = [
|
|
918
|
+
3,
|
|
919
|
+
n0,
|
|
920
|
+
_SETO,
|
|
921
|
+
0,
|
|
922
|
+
[_gI, _rA, _tIa, _st, _f, _d, _kKI, _pT, _sR, _eFx],
|
|
923
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, () => ExportFilter],
|
|
924
|
+
];
|
|
925
|
+
export var StartGraphInput = [3, n0, _SGI, 0, [_gIr], [[0, 1]]];
|
|
926
|
+
export var StartGraphOutput = [
|
|
927
|
+
3,
|
|
928
|
+
n0,
|
|
929
|
+
_SGO,
|
|
930
|
+
0,
|
|
931
|
+
[_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
932
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
|
|
933
|
+
];
|
|
934
|
+
export var StartImportTaskInput = [
|
|
935
|
+
3,
|
|
936
|
+
n0,
|
|
937
|
+
_SITI,
|
|
938
|
+
0,
|
|
939
|
+
[_iO, _fOE, _so, _f, _pT, _bNH, _gIr, _rA],
|
|
940
|
+
[() => ImportOptions, 2, 0, 0, 0, 0, [0, 1], 0],
|
|
941
|
+
];
|
|
942
|
+
export var StartImportTaskOutput = [
|
|
943
|
+
3,
|
|
944
|
+
n0,
|
|
945
|
+
_SITO,
|
|
946
|
+
0,
|
|
947
|
+
[_gI, _tIa, _so, _f, _pT, _rA, _st, _iO],
|
|
948
|
+
[0, 0, 0, 0, 0, 0, 0, () => ImportOptions],
|
|
949
|
+
];
|
|
950
|
+
export var StopGraphInput = [3, n0, _SGIt, 0, [_gIr], [[0, 1]]];
|
|
951
|
+
export var StopGraphOutput = [
|
|
952
|
+
3,
|
|
953
|
+
n0,
|
|
954
|
+
_SGOt,
|
|
955
|
+
0,
|
|
956
|
+
[_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
957
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
|
|
958
|
+
];
|
|
959
|
+
export var TagResourceInput = [3, n0, _TRI, 0, [_rAe, _t], [[0, 1], 128 | 0]];
|
|
960
|
+
export var TagResourceOutput = [3, n0, _TRO, 0, [], []];
|
|
961
|
+
export var ThrottlingException = [
|
|
962
|
+
-3,
|
|
963
|
+
n0,
|
|
964
|
+
_TE,
|
|
965
|
+
{
|
|
966
|
+
[_e]: _c,
|
|
967
|
+
[_hE]: 429,
|
|
968
|
+
},
|
|
969
|
+
[_m],
|
|
970
|
+
[0],
|
|
971
|
+
];
|
|
972
|
+
TypeRegistry.for(n0).registerError(ThrottlingException, __ThrottlingException);
|
|
973
|
+
export var UnprocessableException = [
|
|
974
|
+
-3,
|
|
975
|
+
n0,
|
|
976
|
+
_UE,
|
|
977
|
+
{
|
|
978
|
+
[_e]: _c,
|
|
979
|
+
[_hE]: 422,
|
|
980
|
+
},
|
|
981
|
+
[_m, _r],
|
|
982
|
+
[0, 0],
|
|
983
|
+
];
|
|
984
|
+
TypeRegistry.for(n0).registerError(UnprocessableException, __UnprocessableException);
|
|
985
|
+
export var UntagResourceInput = [
|
|
986
|
+
3,
|
|
987
|
+
n0,
|
|
988
|
+
_URI,
|
|
989
|
+
0,
|
|
990
|
+
[_rAe, _tK],
|
|
991
|
+
[
|
|
992
|
+
[0, 1],
|
|
993
|
+
[
|
|
994
|
+
64 | 0,
|
|
995
|
+
{
|
|
996
|
+
[_hQ]: _tK,
|
|
997
|
+
},
|
|
998
|
+
],
|
|
999
|
+
],
|
|
1000
|
+
];
|
|
1001
|
+
export var UntagResourceOutput = [3, n0, _URO, 0, [], []];
|
|
1002
|
+
export var UpdateGraphInput = [3, n0, _UGI, 0, [_gIr, _pC, _pM, _dP], [[0, 1], 2, 1, 2]];
|
|
1003
|
+
export var UpdateGraphOutput = [
|
|
1004
|
+
3,
|
|
1005
|
+
n0,
|
|
1006
|
+
_UGO,
|
|
1007
|
+
0,
|
|
1008
|
+
[_i, _n, _a, _st, _sR, _cT, _pM, _en, _pC, _vSC, _rC, _kKI, _sSI, _dP, _bN],
|
|
1009
|
+
[0, 0, 0, 0, 0, 4, 1, 0, 2, () => VectorSearchConfiguration, 1, 0, 0, 2, 0],
|
|
1010
|
+
];
|
|
1011
|
+
export var ValidationException = [
|
|
1012
|
+
-3,
|
|
1013
|
+
n0,
|
|
1014
|
+
_VE,
|
|
1015
|
+
{
|
|
1016
|
+
[_e]: _c,
|
|
1017
|
+
[_hE]: 400,
|
|
1018
|
+
},
|
|
1019
|
+
[_m, _r],
|
|
1020
|
+
[0, 0],
|
|
1021
|
+
];
|
|
1022
|
+
TypeRegistry.for(n0).registerError(ValidationException, __ValidationException);
|
|
1023
|
+
export var VectorSearchConfiguration = [3, n0, _VSC, 0, [_di], [1]];
|
|
1024
|
+
export var __Unit = "unit";
|
|
1025
|
+
export var NeptuneGraphServiceException = [-3, _sm, "NeptuneGraphServiceException", 0, [], []];
|
|
1026
|
+
TypeRegistry.for(_sm).registerError(NeptuneGraphServiceException, __NeptuneGraphServiceException);
|
|
1027
|
+
export var EdgeLabels = 64 | 0;
|
|
1028
|
+
export var EdgeProperties = 64 | 0;
|
|
1029
|
+
export var EdgeStructures = [1, n0, _ESd, 0, () => EdgeStructure];
|
|
1030
|
+
export var ExportTaskSummaryList = [1, n0, _ETSL, 0, () => ExportTaskSummary];
|
|
1031
|
+
export var GraphSnapshotSummaryList = [1, n0, _GSSL, 0, () => GraphSnapshotSummary];
|
|
1032
|
+
export var GraphSummaryList = [1, n0, _GSL, 0, () => GraphSummary];
|
|
1033
|
+
export var ImportTaskSummaryList = [1, n0, _ITSL, 0, () => ImportTaskSummary];
|
|
1034
|
+
export var LongValuedMapList = [1, n0, _LVML, 0, 128 | 1];
|
|
1035
|
+
export var NodeLabels = 64 | 0;
|
|
1036
|
+
export var NodeProperties = 64 | 0;
|
|
1037
|
+
export var NodeStructures = [1, n0, _NSo, 0, () => NodeStructure];
|
|
1038
|
+
export var OutgoingEdgeLabels = 64 | 0;
|
|
1039
|
+
export var PrivateGraphEndpointSummaryList = [1, n0, _PGESL, 0, () => PrivateGraphEndpointSummary];
|
|
1040
|
+
export var QuerySummaryList = [1, n0, _QSL, 0, () => QuerySummary];
|
|
1041
|
+
export var SecurityGroupIds = 64 | 0;
|
|
1042
|
+
export var SubnetIds = 64 | 0;
|
|
1043
|
+
export var TagKeyList = 64 | 0;
|
|
1044
|
+
export var DocumentValuedMap = 128 | 15;
|
|
1045
|
+
export var ExportFilterPerLabelMap = [2, n0, _EFPLM, 0, 0, () => ExportFilterElement];
|
|
1046
|
+
export var ExportFilterPropertyMap = [2, n0, _EFPM, 0, 0, () => ExportFilterPropertyAttributes];
|
|
1047
|
+
export var LongValuedMap = 128 | 1;
|
|
1048
|
+
export var TagMap = 128 | 0;
|
|
1049
|
+
export var ImportOptions = [3, n0, _IO, 0, [_ne], [() => NeptuneImportOptions]];
|
|
1050
|
+
export var CancelExportTask = [
|
|
1051
|
+
9,
|
|
1052
|
+
n0,
|
|
1053
|
+
_CET,
|
|
1054
|
+
{
|
|
1055
|
+
[_h]: ["DELETE", "/exporttasks/{taskIdentifier}", 200],
|
|
1056
|
+
},
|
|
1057
|
+
() => CancelExportTaskInput,
|
|
1058
|
+
() => CancelExportTaskOutput,
|
|
1059
|
+
];
|
|
1060
|
+
export var CancelImportTask = [
|
|
1061
|
+
9,
|
|
1062
|
+
n0,
|
|
1063
|
+
_CIT,
|
|
1064
|
+
{
|
|
1065
|
+
[_h]: ["DELETE", "/importtasks/{taskIdentifier}", 200],
|
|
1066
|
+
},
|
|
1067
|
+
() => CancelImportTaskInput,
|
|
1068
|
+
() => CancelImportTaskOutput,
|
|
1069
|
+
];
|
|
1070
|
+
export var CancelQuery = [
|
|
1071
|
+
9,
|
|
1072
|
+
n0,
|
|
1073
|
+
_CQ,
|
|
1074
|
+
{
|
|
1075
|
+
[_en]: ["{graphIdentifier}."],
|
|
1076
|
+
[_h]: ["DELETE", "/queries/{queryId}", 200],
|
|
1077
|
+
},
|
|
1078
|
+
() => CancelQueryInput,
|
|
1079
|
+
() => __Unit,
|
|
1080
|
+
];
|
|
1081
|
+
export var CreateGraph = [
|
|
1082
|
+
9,
|
|
1083
|
+
n0,
|
|
1084
|
+
_CG,
|
|
1085
|
+
{
|
|
1086
|
+
[_h]: ["POST", "/graphs", 201],
|
|
1087
|
+
},
|
|
1088
|
+
() => CreateGraphInput,
|
|
1089
|
+
() => CreateGraphOutput,
|
|
1090
|
+
];
|
|
1091
|
+
export var CreateGraphSnapshot = [
|
|
1092
|
+
9,
|
|
1093
|
+
n0,
|
|
1094
|
+
_CGS,
|
|
1095
|
+
{
|
|
1096
|
+
[_h]: ["POST", "/snapshots", 201],
|
|
1097
|
+
},
|
|
1098
|
+
() => CreateGraphSnapshotInput,
|
|
1099
|
+
() => CreateGraphSnapshotOutput,
|
|
1100
|
+
];
|
|
1101
|
+
export var CreateGraphUsingImportTask = [
|
|
1102
|
+
9,
|
|
1103
|
+
n0,
|
|
1104
|
+
_CGUIT,
|
|
1105
|
+
{
|
|
1106
|
+
[_h]: ["POST", "/importtasks", 201],
|
|
1107
|
+
},
|
|
1108
|
+
() => CreateGraphUsingImportTaskInput,
|
|
1109
|
+
() => CreateGraphUsingImportTaskOutput,
|
|
1110
|
+
];
|
|
1111
|
+
export var CreatePrivateGraphEndpoint = [
|
|
1112
|
+
9,
|
|
1113
|
+
n0,
|
|
1114
|
+
_CPGE,
|
|
1115
|
+
{
|
|
1116
|
+
[_h]: ["POST", "/graphs/{graphIdentifier}/endpoints/", 201],
|
|
1117
|
+
},
|
|
1118
|
+
() => CreatePrivateGraphEndpointInput,
|
|
1119
|
+
() => CreatePrivateGraphEndpointOutput,
|
|
1120
|
+
];
|
|
1121
|
+
export var DeleteGraph = [
|
|
1122
|
+
9,
|
|
1123
|
+
n0,
|
|
1124
|
+
_DG,
|
|
1125
|
+
{
|
|
1126
|
+
[_h]: ["DELETE", "/graphs/{graphIdentifier}", 200],
|
|
1127
|
+
},
|
|
1128
|
+
() => DeleteGraphInput,
|
|
1129
|
+
() => DeleteGraphOutput,
|
|
1130
|
+
];
|
|
1131
|
+
export var DeleteGraphSnapshot = [
|
|
1132
|
+
9,
|
|
1133
|
+
n0,
|
|
1134
|
+
_DGS,
|
|
1135
|
+
{
|
|
1136
|
+
[_h]: ["DELETE", "/snapshots/{snapshotIdentifier}", 200],
|
|
1137
|
+
},
|
|
1138
|
+
() => DeleteGraphSnapshotInput,
|
|
1139
|
+
() => DeleteGraphSnapshotOutput,
|
|
1140
|
+
];
|
|
1141
|
+
export var DeletePrivateGraphEndpoint = [
|
|
1142
|
+
9,
|
|
1143
|
+
n0,
|
|
1144
|
+
_DPGE,
|
|
1145
|
+
{
|
|
1146
|
+
[_h]: ["DELETE", "/graphs/{graphIdentifier}/endpoints/{vpcId}", 200],
|
|
1147
|
+
},
|
|
1148
|
+
() => DeletePrivateGraphEndpointInput,
|
|
1149
|
+
() => DeletePrivateGraphEndpointOutput,
|
|
1150
|
+
];
|
|
1151
|
+
export var ExecuteQuery = [
|
|
1152
|
+
9,
|
|
1153
|
+
n0,
|
|
1154
|
+
_EQ,
|
|
1155
|
+
{
|
|
1156
|
+
[_h]: ["POST", "/queries", 200],
|
|
1157
|
+
[_en]: ["{graphIdentifier}."],
|
|
1158
|
+
},
|
|
1159
|
+
() => ExecuteQueryInput,
|
|
1160
|
+
() => ExecuteQueryOutput,
|
|
1161
|
+
];
|
|
1162
|
+
export var GetExportTask = [
|
|
1163
|
+
9,
|
|
1164
|
+
n0,
|
|
1165
|
+
_GET,
|
|
1166
|
+
{
|
|
1167
|
+
[_h]: ["GET", "/exporttasks/{taskIdentifier}", 200],
|
|
1168
|
+
},
|
|
1169
|
+
() => GetExportTaskInput,
|
|
1170
|
+
() => GetExportTaskOutput,
|
|
1171
|
+
];
|
|
1172
|
+
export var GetGraph = [
|
|
1173
|
+
9,
|
|
1174
|
+
n0,
|
|
1175
|
+
_GG,
|
|
1176
|
+
{
|
|
1177
|
+
[_h]: ["GET", "/graphs/{graphIdentifier}", 200],
|
|
1178
|
+
},
|
|
1179
|
+
() => GetGraphInput,
|
|
1180
|
+
() => GetGraphOutput,
|
|
1181
|
+
];
|
|
1182
|
+
export var GetGraphSnapshot = [
|
|
1183
|
+
9,
|
|
1184
|
+
n0,
|
|
1185
|
+
_GGS,
|
|
1186
|
+
{
|
|
1187
|
+
[_h]: ["GET", "/snapshots/{snapshotIdentifier}", 200],
|
|
1188
|
+
},
|
|
1189
|
+
() => GetGraphSnapshotInput,
|
|
1190
|
+
() => GetGraphSnapshotOutput,
|
|
1191
|
+
];
|
|
1192
|
+
export var GetGraphSummary = [
|
|
1193
|
+
9,
|
|
1194
|
+
n0,
|
|
1195
|
+
_GGSe,
|
|
1196
|
+
{
|
|
1197
|
+
[_en]: ["{graphIdentifier}."],
|
|
1198
|
+
[_h]: ["GET", "/summary", 200],
|
|
1199
|
+
},
|
|
1200
|
+
() => GetGraphSummaryInput,
|
|
1201
|
+
() => GetGraphSummaryOutput,
|
|
1202
|
+
];
|
|
1203
|
+
export var GetImportTask = [
|
|
1204
|
+
9,
|
|
1205
|
+
n0,
|
|
1206
|
+
_GIT,
|
|
1207
|
+
{
|
|
1208
|
+
[_h]: ["GET", "/importtasks/{taskIdentifier}", 200],
|
|
1209
|
+
},
|
|
1210
|
+
() => GetImportTaskInput,
|
|
1211
|
+
() => GetImportTaskOutput,
|
|
1212
|
+
];
|
|
1213
|
+
export var GetPrivateGraphEndpoint = [
|
|
1214
|
+
9,
|
|
1215
|
+
n0,
|
|
1216
|
+
_GPGE,
|
|
1217
|
+
{
|
|
1218
|
+
[_h]: ["GET", "/graphs/{graphIdentifier}/endpoints/{vpcId}", 200],
|
|
1219
|
+
},
|
|
1220
|
+
() => GetPrivateGraphEndpointInput,
|
|
1221
|
+
() => GetPrivateGraphEndpointOutput,
|
|
1222
|
+
];
|
|
1223
|
+
export var GetQuery = [
|
|
1224
|
+
9,
|
|
1225
|
+
n0,
|
|
1226
|
+
_GQ,
|
|
1227
|
+
{
|
|
1228
|
+
[_en]: ["{graphIdentifier}."],
|
|
1229
|
+
[_h]: ["GET", "/queries/{queryId}", 200],
|
|
1230
|
+
},
|
|
1231
|
+
() => GetQueryInput,
|
|
1232
|
+
() => GetQueryOutput,
|
|
1233
|
+
];
|
|
1234
|
+
export var ListExportTasks = [
|
|
1235
|
+
9,
|
|
1236
|
+
n0,
|
|
1237
|
+
_LET,
|
|
1238
|
+
{
|
|
1239
|
+
[_h]: ["GET", "/exporttasks", 200],
|
|
1240
|
+
},
|
|
1241
|
+
() => ListExportTasksInput,
|
|
1242
|
+
() => ListExportTasksOutput,
|
|
1243
|
+
];
|
|
1244
|
+
export var ListGraphs = [
|
|
1245
|
+
9,
|
|
1246
|
+
n0,
|
|
1247
|
+
_LG,
|
|
1248
|
+
{
|
|
1249
|
+
[_h]: ["GET", "/graphs", 200],
|
|
1250
|
+
},
|
|
1251
|
+
() => ListGraphsInput,
|
|
1252
|
+
() => ListGraphsOutput,
|
|
1253
|
+
];
|
|
1254
|
+
export var ListGraphSnapshots = [
|
|
1255
|
+
9,
|
|
1256
|
+
n0,
|
|
1257
|
+
_LGS,
|
|
1258
|
+
{
|
|
1259
|
+
[_h]: ["GET", "/snapshots", 200],
|
|
1260
|
+
},
|
|
1261
|
+
() => ListGraphSnapshotsInput,
|
|
1262
|
+
() => ListGraphSnapshotsOutput,
|
|
1263
|
+
];
|
|
1264
|
+
export var ListImportTasks = [
|
|
1265
|
+
9,
|
|
1266
|
+
n0,
|
|
1267
|
+
_LIT,
|
|
1268
|
+
{
|
|
1269
|
+
[_h]: ["GET", "/importtasks", 200],
|
|
1270
|
+
},
|
|
1271
|
+
() => ListImportTasksInput,
|
|
1272
|
+
() => ListImportTasksOutput,
|
|
1273
|
+
];
|
|
1274
|
+
export var ListPrivateGraphEndpoints = [
|
|
1275
|
+
9,
|
|
1276
|
+
n0,
|
|
1277
|
+
_LPGE,
|
|
1278
|
+
{
|
|
1279
|
+
[_h]: ["GET", "/graphs/{graphIdentifier}/endpoints/", 200],
|
|
1280
|
+
},
|
|
1281
|
+
() => ListPrivateGraphEndpointsInput,
|
|
1282
|
+
() => ListPrivateGraphEndpointsOutput,
|
|
1283
|
+
];
|
|
1284
|
+
export var ListQueries = [
|
|
1285
|
+
9,
|
|
1286
|
+
n0,
|
|
1287
|
+
_LQ,
|
|
1288
|
+
{
|
|
1289
|
+
[_en]: ["{graphIdentifier}."],
|
|
1290
|
+
[_h]: ["GET", "/queries", 200],
|
|
1291
|
+
},
|
|
1292
|
+
() => ListQueriesInput,
|
|
1293
|
+
() => ListQueriesOutput,
|
|
1294
|
+
];
|
|
1295
|
+
export var ListTagsForResource = [
|
|
1296
|
+
9,
|
|
1297
|
+
n0,
|
|
1298
|
+
_LTFR,
|
|
1299
|
+
{
|
|
1300
|
+
[_h]: ["GET", "/tags/{resourceArn}", 200],
|
|
1301
|
+
},
|
|
1302
|
+
() => ListTagsForResourceInput,
|
|
1303
|
+
() => ListTagsForResourceOutput,
|
|
1304
|
+
];
|
|
1305
|
+
export var ResetGraph = [
|
|
1306
|
+
9,
|
|
1307
|
+
n0,
|
|
1308
|
+
_RG,
|
|
1309
|
+
{
|
|
1310
|
+
[_h]: ["PUT", "/graphs/{graphIdentifier}", 200],
|
|
1311
|
+
},
|
|
1312
|
+
() => ResetGraphInput,
|
|
1313
|
+
() => ResetGraphOutput,
|
|
1314
|
+
];
|
|
1315
|
+
export var RestoreGraphFromSnapshot = [
|
|
1316
|
+
9,
|
|
1317
|
+
n0,
|
|
1318
|
+
_RGFS,
|
|
1319
|
+
{
|
|
1320
|
+
[_h]: ["POST", "/snapshots/{snapshotIdentifier}/restore", 201],
|
|
1321
|
+
},
|
|
1322
|
+
() => RestoreGraphFromSnapshotInput,
|
|
1323
|
+
() => RestoreGraphFromSnapshotOutput,
|
|
1324
|
+
];
|
|
1325
|
+
export var StartExportTask = [
|
|
1326
|
+
9,
|
|
1327
|
+
n0,
|
|
1328
|
+
_SET,
|
|
1329
|
+
{
|
|
1330
|
+
[_h]: ["POST", "/exporttasks", 201],
|
|
1331
|
+
},
|
|
1332
|
+
() => StartExportTaskInput,
|
|
1333
|
+
() => StartExportTaskOutput,
|
|
1334
|
+
];
|
|
1335
|
+
export var StartGraph = [
|
|
1336
|
+
9,
|
|
1337
|
+
n0,
|
|
1338
|
+
_SG,
|
|
1339
|
+
{
|
|
1340
|
+
[_h]: ["POST", "/graphs/{graphIdentifier}/start", 200],
|
|
1341
|
+
},
|
|
1342
|
+
() => StartGraphInput,
|
|
1343
|
+
() => StartGraphOutput,
|
|
1344
|
+
];
|
|
1345
|
+
export var StartImportTask = [
|
|
1346
|
+
9,
|
|
1347
|
+
n0,
|
|
1348
|
+
_SIT,
|
|
1349
|
+
{
|
|
1350
|
+
[_h]: ["POST", "/graphs/{graphIdentifier}/importtasks", 201],
|
|
1351
|
+
},
|
|
1352
|
+
() => StartImportTaskInput,
|
|
1353
|
+
() => StartImportTaskOutput,
|
|
1354
|
+
];
|
|
1355
|
+
export var StopGraph = [
|
|
1356
|
+
9,
|
|
1357
|
+
n0,
|
|
1358
|
+
_SGt,
|
|
1359
|
+
{
|
|
1360
|
+
[_h]: ["POST", "/graphs/{graphIdentifier}/stop", 200],
|
|
1361
|
+
},
|
|
1362
|
+
() => StopGraphInput,
|
|
1363
|
+
() => StopGraphOutput,
|
|
1364
|
+
];
|
|
1365
|
+
export var TagResource = [
|
|
1366
|
+
9,
|
|
1367
|
+
n0,
|
|
1368
|
+
_TR,
|
|
1369
|
+
{
|
|
1370
|
+
[_h]: ["POST", "/tags/{resourceArn}", 200],
|
|
1371
|
+
},
|
|
1372
|
+
() => TagResourceInput,
|
|
1373
|
+
() => TagResourceOutput,
|
|
1374
|
+
];
|
|
1375
|
+
export var UntagResource = [
|
|
1376
|
+
9,
|
|
1377
|
+
n0,
|
|
1378
|
+
_UR,
|
|
1379
|
+
{
|
|
1380
|
+
[_h]: ["DELETE", "/tags/{resourceArn}", 200],
|
|
1381
|
+
},
|
|
1382
|
+
() => UntagResourceInput,
|
|
1383
|
+
() => UntagResourceOutput,
|
|
1384
|
+
];
|
|
1385
|
+
export var UpdateGraph = [
|
|
1386
|
+
9,
|
|
1387
|
+
n0,
|
|
1388
|
+
_UG,
|
|
1389
|
+
{
|
|
1390
|
+
[_h]: ["PATCH", "/graphs/{graphIdentifier}", 200],
|
|
1391
|
+
},
|
|
1392
|
+
() => UpdateGraphInput,
|
|
1393
|
+
() => UpdateGraphOutput,
|
|
1394
|
+
];
|