@aws-sdk/client-neptune-graph 3.474.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/LICENSE +201 -0
- package/README.md +383 -0
- package/dist-cjs/NeptuneGraph.js +55 -0
- package/dist-cjs/NeptuneGraphClient.js +43 -0
- package/dist-cjs/commands/CancelImportTaskCommand.js +52 -0
- package/dist-cjs/commands/CreateGraphCommand.js +52 -0
- package/dist-cjs/commands/CreateGraphSnapshotCommand.js +52 -0
- package/dist-cjs/commands/CreateGraphUsingImportTaskCommand.js +52 -0
- package/dist-cjs/commands/CreatePrivateGraphEndpointCommand.js +52 -0
- package/dist-cjs/commands/DeleteGraphCommand.js +52 -0
- package/dist-cjs/commands/DeleteGraphSnapshotCommand.js +52 -0
- package/dist-cjs/commands/DeletePrivateGraphEndpointCommand.js +52 -0
- package/dist-cjs/commands/GetGraphCommand.js +52 -0
- package/dist-cjs/commands/GetGraphSnapshotCommand.js +52 -0
- package/dist-cjs/commands/GetImportTaskCommand.js +52 -0
- package/dist-cjs/commands/GetPrivateGraphEndpointCommand.js +52 -0
- package/dist-cjs/commands/ListGraphSnapshotsCommand.js +52 -0
- package/dist-cjs/commands/ListGraphsCommand.js +52 -0
- package/dist-cjs/commands/ListImportTasksCommand.js +52 -0
- package/dist-cjs/commands/ListPrivateGraphEndpointsCommand.js +52 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +52 -0
- package/dist-cjs/commands/ResetGraphCommand.js +52 -0
- package/dist-cjs/commands/RestoreGraphFromSnapshotCommand.js +52 -0
- package/dist-cjs/commands/TagResourceCommand.js +52 -0
- package/dist-cjs/commands/UntagResourceCommand.js +52 -0
- package/dist-cjs/commands/UpdateGraphCommand.js +52 -0
- package/dist-cjs/commands/index.js +25 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/NeptuneGraphServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +149 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListGraphSnapshotsPaginator.js +29 -0
- package/dist-cjs/pagination/ListGraphsPaginator.js +29 -0
- package/dist-cjs/pagination/ListImportTasksPaginator.js +29 -0
- package/dist-cjs/pagination/ListPrivateGraphEndpointsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +8 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1763 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +24 -0
- package/dist-cjs/runtimeExtensions.js +22 -0
- package/dist-es/NeptuneGraph.js +51 -0
- package/dist-es/NeptuneGraphClient.js +39 -0
- package/dist-es/commands/CancelImportTaskCommand.js +48 -0
- package/dist-es/commands/CreateGraphCommand.js +48 -0
- package/dist-es/commands/CreateGraphSnapshotCommand.js +48 -0
- package/dist-es/commands/CreateGraphUsingImportTaskCommand.js +48 -0
- package/dist-es/commands/CreatePrivateGraphEndpointCommand.js +48 -0
- package/dist-es/commands/DeleteGraphCommand.js +48 -0
- package/dist-es/commands/DeleteGraphSnapshotCommand.js +48 -0
- package/dist-es/commands/DeletePrivateGraphEndpointCommand.js +48 -0
- package/dist-es/commands/GetGraphCommand.js +48 -0
- package/dist-es/commands/GetGraphSnapshotCommand.js +48 -0
- package/dist-es/commands/GetImportTaskCommand.js +48 -0
- package/dist-es/commands/GetPrivateGraphEndpointCommand.js +48 -0
- package/dist-es/commands/ListGraphSnapshotsCommand.js +48 -0
- package/dist-es/commands/ListGraphsCommand.js +48 -0
- package/dist-es/commands/ListImportTasksCommand.js +48 -0
- package/dist-es/commands/ListPrivateGraphEndpointsCommand.js +48 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +48 -0
- package/dist-es/commands/ResetGraphCommand.js +48 -0
- package/dist-es/commands/RestoreGraphFromSnapshotCommand.js +48 -0
- package/dist-es/commands/TagResourceCommand.js +48 -0
- package/dist-es/commands/UntagResourceCommand.js +48 -0
- package/dist-es/commands/UpdateGraphCommand.js +48 -0
- package/dist-es/commands/index.js +22 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/NeptuneGraphServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +140 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListGraphSnapshotsPaginator.js +25 -0
- package/dist-es/pagination/ListGraphsPaginator.js +25 -0
- package/dist-es/pagination/ListImportTasksPaginator.js +25 -0
- package/dist-es/pagination/ListPrivateGraphEndpointsPaginator.js +25 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +1716 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +20 -0
- package/dist-es/runtimeExtensions.js +18 -0
- package/dist-types/NeptuneGraph.d.ts +166 -0
- package/dist-types/NeptuneGraphClient.d.ts +193 -0
- package/dist-types/commands/CancelImportTaskCommand.d.ts +93 -0
- package/dist-types/commands/CreateGraphCommand.d.ts +115 -0
- package/dist-types/commands/CreateGraphSnapshotCommand.d.ts +101 -0
- package/dist-types/commands/CreateGraphUsingImportTaskCommand.d.ts +129 -0
- package/dist-types/commands/CreatePrivateGraphEndpointCommand.d.ts +104 -0
- package/dist-types/commands/DeleteGraphCommand.d.ts +105 -0
- package/dist-types/commands/DeleteGraphSnapshotCommand.d.ts +94 -0
- package/dist-types/commands/DeletePrivateGraphEndpointCommand.d.ts +94 -0
- package/dist-types/commands/GetGraphCommand.d.ts +101 -0
- package/dist-types/commands/GetGraphSnapshotCommand.d.ts +91 -0
- package/dist-types/commands/GetImportTaskCommand.d.ts +110 -0
- package/dist-types/commands/GetPrivateGraphEndpointCommand.d.ts +91 -0
- package/dist-types/commands/ListGraphSnapshotsCommand.d.ts +98 -0
- package/dist-types/commands/ListGraphsCommand.d.ts +97 -0
- package/dist-types/commands/ListImportTasksCommand.d.ts +96 -0
- package/dist-types/commands/ListPrivateGraphEndpointsCommand.d.ts +97 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +87 -0
- package/dist-types/commands/ResetGraphCommand.d.ts +105 -0
- package/dist-types/commands/RestoreGraphFromSnapshotCommand.d.ts +115 -0
- package/dist-types/commands/TagResourceCommand.d.ts +86 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +86 -0
- package/dist-types/commands/UpdateGraphCommand.d.ts +107 -0
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +23 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +17 -0
- package/dist-types/models/NeptuneGraphServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2021 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListGraphSnapshotsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGraphsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListImportTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPrivateGraphEndpointsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +200 -0
- package/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/dist-types/runtimeConfig.d.ts +46 -0
- package/dist-types/runtimeConfig.native.d.ts +45 -0
- package/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/NeptuneGraph.d.ts +381 -0
- package/dist-types/ts3.4/NeptuneGraphClient.d.ts +251 -0
- package/dist-types/ts3.4/commands/CancelImportTaskCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateGraphCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/CreateGraphSnapshotCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateGraphUsingImportTaskCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreatePrivateGraphEndpointCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteGraphCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteGraphSnapshotCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeletePrivateGraphEndpointCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetGraphCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetGraphSnapshotCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetImportTaskCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetPrivateGraphEndpointCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListGraphSnapshotsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListGraphsCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListImportTasksCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListPrivateGraphEndpointsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ResetGraphCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/RestoreGraphFromSnapshotCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateGraphCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +22 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/NeptuneGraphServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +494 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListGraphSnapshotsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGraphsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListImportTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPrivateGraphEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +269 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +100 -0
|
@@ -0,0 +1,381 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
CancelImportTaskCommandInput,
|
|
4
|
+
CancelImportTaskCommandOutput,
|
|
5
|
+
} from "./commands/CancelImportTaskCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateGraphCommandInput,
|
|
8
|
+
CreateGraphCommandOutput,
|
|
9
|
+
} from "./commands/CreateGraphCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateGraphSnapshotCommandInput,
|
|
12
|
+
CreateGraphSnapshotCommandOutput,
|
|
13
|
+
} from "./commands/CreateGraphSnapshotCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateGraphUsingImportTaskCommandInput,
|
|
16
|
+
CreateGraphUsingImportTaskCommandOutput,
|
|
17
|
+
} from "./commands/CreateGraphUsingImportTaskCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreatePrivateGraphEndpointCommandInput,
|
|
20
|
+
CreatePrivateGraphEndpointCommandOutput,
|
|
21
|
+
} from "./commands/CreatePrivateGraphEndpointCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteGraphCommandInput,
|
|
24
|
+
DeleteGraphCommandOutput,
|
|
25
|
+
} from "./commands/DeleteGraphCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteGraphSnapshotCommandInput,
|
|
28
|
+
DeleteGraphSnapshotCommandOutput,
|
|
29
|
+
} from "./commands/DeleteGraphSnapshotCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeletePrivateGraphEndpointCommandInput,
|
|
32
|
+
DeletePrivateGraphEndpointCommandOutput,
|
|
33
|
+
} from "./commands/DeletePrivateGraphEndpointCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetGraphCommandInput,
|
|
36
|
+
GetGraphCommandOutput,
|
|
37
|
+
} from "./commands/GetGraphCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetGraphSnapshotCommandInput,
|
|
40
|
+
GetGraphSnapshotCommandOutput,
|
|
41
|
+
} from "./commands/GetGraphSnapshotCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetImportTaskCommandInput,
|
|
44
|
+
GetImportTaskCommandOutput,
|
|
45
|
+
} from "./commands/GetImportTaskCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetPrivateGraphEndpointCommandInput,
|
|
48
|
+
GetPrivateGraphEndpointCommandOutput,
|
|
49
|
+
} from "./commands/GetPrivateGraphEndpointCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListGraphsCommandInput,
|
|
52
|
+
ListGraphsCommandOutput,
|
|
53
|
+
} from "./commands/ListGraphsCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListGraphSnapshotsCommandInput,
|
|
56
|
+
ListGraphSnapshotsCommandOutput,
|
|
57
|
+
} from "./commands/ListGraphSnapshotsCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListImportTasksCommandInput,
|
|
60
|
+
ListImportTasksCommandOutput,
|
|
61
|
+
} from "./commands/ListImportTasksCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListPrivateGraphEndpointsCommandInput,
|
|
64
|
+
ListPrivateGraphEndpointsCommandOutput,
|
|
65
|
+
} from "./commands/ListPrivateGraphEndpointsCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListTagsForResourceCommandInput,
|
|
68
|
+
ListTagsForResourceCommandOutput,
|
|
69
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
70
|
+
import {
|
|
71
|
+
ResetGraphCommandInput,
|
|
72
|
+
ResetGraphCommandOutput,
|
|
73
|
+
} from "./commands/ResetGraphCommand";
|
|
74
|
+
import {
|
|
75
|
+
RestoreGraphFromSnapshotCommandInput,
|
|
76
|
+
RestoreGraphFromSnapshotCommandOutput,
|
|
77
|
+
} from "./commands/RestoreGraphFromSnapshotCommand";
|
|
78
|
+
import {
|
|
79
|
+
TagResourceCommandInput,
|
|
80
|
+
TagResourceCommandOutput,
|
|
81
|
+
} from "./commands/TagResourceCommand";
|
|
82
|
+
import {
|
|
83
|
+
UntagResourceCommandInput,
|
|
84
|
+
UntagResourceCommandOutput,
|
|
85
|
+
} from "./commands/UntagResourceCommand";
|
|
86
|
+
import {
|
|
87
|
+
UpdateGraphCommandInput,
|
|
88
|
+
UpdateGraphCommandOutput,
|
|
89
|
+
} from "./commands/UpdateGraphCommand";
|
|
90
|
+
import { NeptuneGraphClient } from "./NeptuneGraphClient";
|
|
91
|
+
export interface NeptuneGraph {
|
|
92
|
+
cancelImportTask(
|
|
93
|
+
args: CancelImportTaskCommandInput,
|
|
94
|
+
options?: __HttpHandlerOptions
|
|
95
|
+
): Promise<CancelImportTaskCommandOutput>;
|
|
96
|
+
cancelImportTask(
|
|
97
|
+
args: CancelImportTaskCommandInput,
|
|
98
|
+
cb: (err: any, data?: CancelImportTaskCommandOutput) => void
|
|
99
|
+
): void;
|
|
100
|
+
cancelImportTask(
|
|
101
|
+
args: CancelImportTaskCommandInput,
|
|
102
|
+
options: __HttpHandlerOptions,
|
|
103
|
+
cb: (err: any, data?: CancelImportTaskCommandOutput) => void
|
|
104
|
+
): void;
|
|
105
|
+
createGraph(
|
|
106
|
+
args: CreateGraphCommandInput,
|
|
107
|
+
options?: __HttpHandlerOptions
|
|
108
|
+
): Promise<CreateGraphCommandOutput>;
|
|
109
|
+
createGraph(
|
|
110
|
+
args: CreateGraphCommandInput,
|
|
111
|
+
cb: (err: any, data?: CreateGraphCommandOutput) => void
|
|
112
|
+
): void;
|
|
113
|
+
createGraph(
|
|
114
|
+
args: CreateGraphCommandInput,
|
|
115
|
+
options: __HttpHandlerOptions,
|
|
116
|
+
cb: (err: any, data?: CreateGraphCommandOutput) => void
|
|
117
|
+
): void;
|
|
118
|
+
createGraphSnapshot(
|
|
119
|
+
args: CreateGraphSnapshotCommandInput,
|
|
120
|
+
options?: __HttpHandlerOptions
|
|
121
|
+
): Promise<CreateGraphSnapshotCommandOutput>;
|
|
122
|
+
createGraphSnapshot(
|
|
123
|
+
args: CreateGraphSnapshotCommandInput,
|
|
124
|
+
cb: (err: any, data?: CreateGraphSnapshotCommandOutput) => void
|
|
125
|
+
): void;
|
|
126
|
+
createGraphSnapshot(
|
|
127
|
+
args: CreateGraphSnapshotCommandInput,
|
|
128
|
+
options: __HttpHandlerOptions,
|
|
129
|
+
cb: (err: any, data?: CreateGraphSnapshotCommandOutput) => void
|
|
130
|
+
): void;
|
|
131
|
+
createGraphUsingImportTask(
|
|
132
|
+
args: CreateGraphUsingImportTaskCommandInput,
|
|
133
|
+
options?: __HttpHandlerOptions
|
|
134
|
+
): Promise<CreateGraphUsingImportTaskCommandOutput>;
|
|
135
|
+
createGraphUsingImportTask(
|
|
136
|
+
args: CreateGraphUsingImportTaskCommandInput,
|
|
137
|
+
cb: (err: any, data?: CreateGraphUsingImportTaskCommandOutput) => void
|
|
138
|
+
): void;
|
|
139
|
+
createGraphUsingImportTask(
|
|
140
|
+
args: CreateGraphUsingImportTaskCommandInput,
|
|
141
|
+
options: __HttpHandlerOptions,
|
|
142
|
+
cb: (err: any, data?: CreateGraphUsingImportTaskCommandOutput) => void
|
|
143
|
+
): void;
|
|
144
|
+
createPrivateGraphEndpoint(
|
|
145
|
+
args: CreatePrivateGraphEndpointCommandInput,
|
|
146
|
+
options?: __HttpHandlerOptions
|
|
147
|
+
): Promise<CreatePrivateGraphEndpointCommandOutput>;
|
|
148
|
+
createPrivateGraphEndpoint(
|
|
149
|
+
args: CreatePrivateGraphEndpointCommandInput,
|
|
150
|
+
cb: (err: any, data?: CreatePrivateGraphEndpointCommandOutput) => void
|
|
151
|
+
): void;
|
|
152
|
+
createPrivateGraphEndpoint(
|
|
153
|
+
args: CreatePrivateGraphEndpointCommandInput,
|
|
154
|
+
options: __HttpHandlerOptions,
|
|
155
|
+
cb: (err: any, data?: CreatePrivateGraphEndpointCommandOutput) => void
|
|
156
|
+
): void;
|
|
157
|
+
deleteGraph(
|
|
158
|
+
args: DeleteGraphCommandInput,
|
|
159
|
+
options?: __HttpHandlerOptions
|
|
160
|
+
): Promise<DeleteGraphCommandOutput>;
|
|
161
|
+
deleteGraph(
|
|
162
|
+
args: DeleteGraphCommandInput,
|
|
163
|
+
cb: (err: any, data?: DeleteGraphCommandOutput) => void
|
|
164
|
+
): void;
|
|
165
|
+
deleteGraph(
|
|
166
|
+
args: DeleteGraphCommandInput,
|
|
167
|
+
options: __HttpHandlerOptions,
|
|
168
|
+
cb: (err: any, data?: DeleteGraphCommandOutput) => void
|
|
169
|
+
): void;
|
|
170
|
+
deleteGraphSnapshot(
|
|
171
|
+
args: DeleteGraphSnapshotCommandInput,
|
|
172
|
+
options?: __HttpHandlerOptions
|
|
173
|
+
): Promise<DeleteGraphSnapshotCommandOutput>;
|
|
174
|
+
deleteGraphSnapshot(
|
|
175
|
+
args: DeleteGraphSnapshotCommandInput,
|
|
176
|
+
cb: (err: any, data?: DeleteGraphSnapshotCommandOutput) => void
|
|
177
|
+
): void;
|
|
178
|
+
deleteGraphSnapshot(
|
|
179
|
+
args: DeleteGraphSnapshotCommandInput,
|
|
180
|
+
options: __HttpHandlerOptions,
|
|
181
|
+
cb: (err: any, data?: DeleteGraphSnapshotCommandOutput) => void
|
|
182
|
+
): void;
|
|
183
|
+
deletePrivateGraphEndpoint(
|
|
184
|
+
args: DeletePrivateGraphEndpointCommandInput,
|
|
185
|
+
options?: __HttpHandlerOptions
|
|
186
|
+
): Promise<DeletePrivateGraphEndpointCommandOutput>;
|
|
187
|
+
deletePrivateGraphEndpoint(
|
|
188
|
+
args: DeletePrivateGraphEndpointCommandInput,
|
|
189
|
+
cb: (err: any, data?: DeletePrivateGraphEndpointCommandOutput) => void
|
|
190
|
+
): void;
|
|
191
|
+
deletePrivateGraphEndpoint(
|
|
192
|
+
args: DeletePrivateGraphEndpointCommandInput,
|
|
193
|
+
options: __HttpHandlerOptions,
|
|
194
|
+
cb: (err: any, data?: DeletePrivateGraphEndpointCommandOutput) => void
|
|
195
|
+
): void;
|
|
196
|
+
getGraph(
|
|
197
|
+
args: GetGraphCommandInput,
|
|
198
|
+
options?: __HttpHandlerOptions
|
|
199
|
+
): Promise<GetGraphCommandOutput>;
|
|
200
|
+
getGraph(
|
|
201
|
+
args: GetGraphCommandInput,
|
|
202
|
+
cb: (err: any, data?: GetGraphCommandOutput) => void
|
|
203
|
+
): void;
|
|
204
|
+
getGraph(
|
|
205
|
+
args: GetGraphCommandInput,
|
|
206
|
+
options: __HttpHandlerOptions,
|
|
207
|
+
cb: (err: any, data?: GetGraphCommandOutput) => void
|
|
208
|
+
): void;
|
|
209
|
+
getGraphSnapshot(
|
|
210
|
+
args: GetGraphSnapshotCommandInput,
|
|
211
|
+
options?: __HttpHandlerOptions
|
|
212
|
+
): Promise<GetGraphSnapshotCommandOutput>;
|
|
213
|
+
getGraphSnapshot(
|
|
214
|
+
args: GetGraphSnapshotCommandInput,
|
|
215
|
+
cb: (err: any, data?: GetGraphSnapshotCommandOutput) => void
|
|
216
|
+
): void;
|
|
217
|
+
getGraphSnapshot(
|
|
218
|
+
args: GetGraphSnapshotCommandInput,
|
|
219
|
+
options: __HttpHandlerOptions,
|
|
220
|
+
cb: (err: any, data?: GetGraphSnapshotCommandOutput) => void
|
|
221
|
+
): void;
|
|
222
|
+
getImportTask(
|
|
223
|
+
args: GetImportTaskCommandInput,
|
|
224
|
+
options?: __HttpHandlerOptions
|
|
225
|
+
): Promise<GetImportTaskCommandOutput>;
|
|
226
|
+
getImportTask(
|
|
227
|
+
args: GetImportTaskCommandInput,
|
|
228
|
+
cb: (err: any, data?: GetImportTaskCommandOutput) => void
|
|
229
|
+
): void;
|
|
230
|
+
getImportTask(
|
|
231
|
+
args: GetImportTaskCommandInput,
|
|
232
|
+
options: __HttpHandlerOptions,
|
|
233
|
+
cb: (err: any, data?: GetImportTaskCommandOutput) => void
|
|
234
|
+
): void;
|
|
235
|
+
getPrivateGraphEndpoint(
|
|
236
|
+
args: GetPrivateGraphEndpointCommandInput,
|
|
237
|
+
options?: __HttpHandlerOptions
|
|
238
|
+
): Promise<GetPrivateGraphEndpointCommandOutput>;
|
|
239
|
+
getPrivateGraphEndpoint(
|
|
240
|
+
args: GetPrivateGraphEndpointCommandInput,
|
|
241
|
+
cb: (err: any, data?: GetPrivateGraphEndpointCommandOutput) => void
|
|
242
|
+
): void;
|
|
243
|
+
getPrivateGraphEndpoint(
|
|
244
|
+
args: GetPrivateGraphEndpointCommandInput,
|
|
245
|
+
options: __HttpHandlerOptions,
|
|
246
|
+
cb: (err: any, data?: GetPrivateGraphEndpointCommandOutput) => void
|
|
247
|
+
): void;
|
|
248
|
+
listGraphs(
|
|
249
|
+
args: ListGraphsCommandInput,
|
|
250
|
+
options?: __HttpHandlerOptions
|
|
251
|
+
): Promise<ListGraphsCommandOutput>;
|
|
252
|
+
listGraphs(
|
|
253
|
+
args: ListGraphsCommandInput,
|
|
254
|
+
cb: (err: any, data?: ListGraphsCommandOutput) => void
|
|
255
|
+
): void;
|
|
256
|
+
listGraphs(
|
|
257
|
+
args: ListGraphsCommandInput,
|
|
258
|
+
options: __HttpHandlerOptions,
|
|
259
|
+
cb: (err: any, data?: ListGraphsCommandOutput) => void
|
|
260
|
+
): void;
|
|
261
|
+
listGraphSnapshots(
|
|
262
|
+
args: ListGraphSnapshotsCommandInput,
|
|
263
|
+
options?: __HttpHandlerOptions
|
|
264
|
+
): Promise<ListGraphSnapshotsCommandOutput>;
|
|
265
|
+
listGraphSnapshots(
|
|
266
|
+
args: ListGraphSnapshotsCommandInput,
|
|
267
|
+
cb: (err: any, data?: ListGraphSnapshotsCommandOutput) => void
|
|
268
|
+
): void;
|
|
269
|
+
listGraphSnapshots(
|
|
270
|
+
args: ListGraphSnapshotsCommandInput,
|
|
271
|
+
options: __HttpHandlerOptions,
|
|
272
|
+
cb: (err: any, data?: ListGraphSnapshotsCommandOutput) => void
|
|
273
|
+
): void;
|
|
274
|
+
listImportTasks(
|
|
275
|
+
args: ListImportTasksCommandInput,
|
|
276
|
+
options?: __HttpHandlerOptions
|
|
277
|
+
): Promise<ListImportTasksCommandOutput>;
|
|
278
|
+
listImportTasks(
|
|
279
|
+
args: ListImportTasksCommandInput,
|
|
280
|
+
cb: (err: any, data?: ListImportTasksCommandOutput) => void
|
|
281
|
+
): void;
|
|
282
|
+
listImportTasks(
|
|
283
|
+
args: ListImportTasksCommandInput,
|
|
284
|
+
options: __HttpHandlerOptions,
|
|
285
|
+
cb: (err: any, data?: ListImportTasksCommandOutput) => void
|
|
286
|
+
): void;
|
|
287
|
+
listPrivateGraphEndpoints(
|
|
288
|
+
args: ListPrivateGraphEndpointsCommandInput,
|
|
289
|
+
options?: __HttpHandlerOptions
|
|
290
|
+
): Promise<ListPrivateGraphEndpointsCommandOutput>;
|
|
291
|
+
listPrivateGraphEndpoints(
|
|
292
|
+
args: ListPrivateGraphEndpointsCommandInput,
|
|
293
|
+
cb: (err: any, data?: ListPrivateGraphEndpointsCommandOutput) => void
|
|
294
|
+
): void;
|
|
295
|
+
listPrivateGraphEndpoints(
|
|
296
|
+
args: ListPrivateGraphEndpointsCommandInput,
|
|
297
|
+
options: __HttpHandlerOptions,
|
|
298
|
+
cb: (err: any, data?: ListPrivateGraphEndpointsCommandOutput) => void
|
|
299
|
+
): void;
|
|
300
|
+
listTagsForResource(
|
|
301
|
+
args: ListTagsForResourceCommandInput,
|
|
302
|
+
options?: __HttpHandlerOptions
|
|
303
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
304
|
+
listTagsForResource(
|
|
305
|
+
args: ListTagsForResourceCommandInput,
|
|
306
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
307
|
+
): void;
|
|
308
|
+
listTagsForResource(
|
|
309
|
+
args: ListTagsForResourceCommandInput,
|
|
310
|
+
options: __HttpHandlerOptions,
|
|
311
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
312
|
+
): void;
|
|
313
|
+
resetGraph(
|
|
314
|
+
args: ResetGraphCommandInput,
|
|
315
|
+
options?: __HttpHandlerOptions
|
|
316
|
+
): Promise<ResetGraphCommandOutput>;
|
|
317
|
+
resetGraph(
|
|
318
|
+
args: ResetGraphCommandInput,
|
|
319
|
+
cb: (err: any, data?: ResetGraphCommandOutput) => void
|
|
320
|
+
): void;
|
|
321
|
+
resetGraph(
|
|
322
|
+
args: ResetGraphCommandInput,
|
|
323
|
+
options: __HttpHandlerOptions,
|
|
324
|
+
cb: (err: any, data?: ResetGraphCommandOutput) => void
|
|
325
|
+
): void;
|
|
326
|
+
restoreGraphFromSnapshot(
|
|
327
|
+
args: RestoreGraphFromSnapshotCommandInput,
|
|
328
|
+
options?: __HttpHandlerOptions
|
|
329
|
+
): Promise<RestoreGraphFromSnapshotCommandOutput>;
|
|
330
|
+
restoreGraphFromSnapshot(
|
|
331
|
+
args: RestoreGraphFromSnapshotCommandInput,
|
|
332
|
+
cb: (err: any, data?: RestoreGraphFromSnapshotCommandOutput) => void
|
|
333
|
+
): void;
|
|
334
|
+
restoreGraphFromSnapshot(
|
|
335
|
+
args: RestoreGraphFromSnapshotCommandInput,
|
|
336
|
+
options: __HttpHandlerOptions,
|
|
337
|
+
cb: (err: any, data?: RestoreGraphFromSnapshotCommandOutput) => void
|
|
338
|
+
): void;
|
|
339
|
+
tagResource(
|
|
340
|
+
args: TagResourceCommandInput,
|
|
341
|
+
options?: __HttpHandlerOptions
|
|
342
|
+
): Promise<TagResourceCommandOutput>;
|
|
343
|
+
tagResource(
|
|
344
|
+
args: TagResourceCommandInput,
|
|
345
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
346
|
+
): void;
|
|
347
|
+
tagResource(
|
|
348
|
+
args: TagResourceCommandInput,
|
|
349
|
+
options: __HttpHandlerOptions,
|
|
350
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
351
|
+
): void;
|
|
352
|
+
untagResource(
|
|
353
|
+
args: UntagResourceCommandInput,
|
|
354
|
+
options?: __HttpHandlerOptions
|
|
355
|
+
): Promise<UntagResourceCommandOutput>;
|
|
356
|
+
untagResource(
|
|
357
|
+
args: UntagResourceCommandInput,
|
|
358
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
359
|
+
): void;
|
|
360
|
+
untagResource(
|
|
361
|
+
args: UntagResourceCommandInput,
|
|
362
|
+
options: __HttpHandlerOptions,
|
|
363
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
364
|
+
): void;
|
|
365
|
+
updateGraph(
|
|
366
|
+
args: UpdateGraphCommandInput,
|
|
367
|
+
options?: __HttpHandlerOptions
|
|
368
|
+
): Promise<UpdateGraphCommandOutput>;
|
|
369
|
+
updateGraph(
|
|
370
|
+
args: UpdateGraphCommandInput,
|
|
371
|
+
cb: (err: any, data?: UpdateGraphCommandOutput) => void
|
|
372
|
+
): void;
|
|
373
|
+
updateGraph(
|
|
374
|
+
args: UpdateGraphCommandInput,
|
|
375
|
+
options: __HttpHandlerOptions,
|
|
376
|
+
cb: (err: any, data?: UpdateGraphCommandOutput) => void
|
|
377
|
+
): void;
|
|
378
|
+
}
|
|
379
|
+
export declare class NeptuneGraph
|
|
380
|
+
extends NeptuneGraphClient
|
|
381
|
+
implements NeptuneGraph {}
|
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
AwsAuthInputConfig,
|
|
7
|
+
AwsAuthResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-signing";
|
|
9
|
+
import {
|
|
10
|
+
UserAgentInputConfig,
|
|
11
|
+
UserAgentResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
13
|
+
import { Credentials as __Credentials } from "@aws-sdk/types";
|
|
14
|
+
import {
|
|
15
|
+
RegionInputConfig,
|
|
16
|
+
RegionResolvedConfig,
|
|
17
|
+
} from "@smithy/config-resolver";
|
|
18
|
+
import {
|
|
19
|
+
EndpointInputConfig,
|
|
20
|
+
EndpointResolvedConfig,
|
|
21
|
+
} from "@smithy/middleware-endpoint";
|
|
22
|
+
import {
|
|
23
|
+
RetryInputConfig,
|
|
24
|
+
RetryResolvedConfig,
|
|
25
|
+
} from "@smithy/middleware-retry";
|
|
26
|
+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
27
|
+
import {
|
|
28
|
+
Client as __Client,
|
|
29
|
+
DefaultsMode as __DefaultsMode,
|
|
30
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
31
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
32
|
+
} from "@smithy/smithy-client";
|
|
33
|
+
import {
|
|
34
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
35
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
36
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
37
|
+
Decoder as __Decoder,
|
|
38
|
+
Encoder as __Encoder,
|
|
39
|
+
HashConstructor as __HashConstructor,
|
|
40
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
41
|
+
Logger as __Logger,
|
|
42
|
+
Provider as __Provider,
|
|
43
|
+
Provider,
|
|
44
|
+
StreamCollector as __StreamCollector,
|
|
45
|
+
UrlParser as __UrlParser,
|
|
46
|
+
UserAgent as __UserAgent,
|
|
47
|
+
} from "@smithy/types";
|
|
48
|
+
import {
|
|
49
|
+
CancelImportTaskCommandInput,
|
|
50
|
+
CancelImportTaskCommandOutput,
|
|
51
|
+
} from "./commands/CancelImportTaskCommand";
|
|
52
|
+
import {
|
|
53
|
+
CreateGraphCommandInput,
|
|
54
|
+
CreateGraphCommandOutput,
|
|
55
|
+
} from "./commands/CreateGraphCommand";
|
|
56
|
+
import {
|
|
57
|
+
CreateGraphSnapshotCommandInput,
|
|
58
|
+
CreateGraphSnapshotCommandOutput,
|
|
59
|
+
} from "./commands/CreateGraphSnapshotCommand";
|
|
60
|
+
import {
|
|
61
|
+
CreateGraphUsingImportTaskCommandInput,
|
|
62
|
+
CreateGraphUsingImportTaskCommandOutput,
|
|
63
|
+
} from "./commands/CreateGraphUsingImportTaskCommand";
|
|
64
|
+
import {
|
|
65
|
+
CreatePrivateGraphEndpointCommandInput,
|
|
66
|
+
CreatePrivateGraphEndpointCommandOutput,
|
|
67
|
+
} from "./commands/CreatePrivateGraphEndpointCommand";
|
|
68
|
+
import {
|
|
69
|
+
DeleteGraphCommandInput,
|
|
70
|
+
DeleteGraphCommandOutput,
|
|
71
|
+
} from "./commands/DeleteGraphCommand";
|
|
72
|
+
import {
|
|
73
|
+
DeleteGraphSnapshotCommandInput,
|
|
74
|
+
DeleteGraphSnapshotCommandOutput,
|
|
75
|
+
} from "./commands/DeleteGraphSnapshotCommand";
|
|
76
|
+
import {
|
|
77
|
+
DeletePrivateGraphEndpointCommandInput,
|
|
78
|
+
DeletePrivateGraphEndpointCommandOutput,
|
|
79
|
+
} from "./commands/DeletePrivateGraphEndpointCommand";
|
|
80
|
+
import {
|
|
81
|
+
GetGraphCommandInput,
|
|
82
|
+
GetGraphCommandOutput,
|
|
83
|
+
} from "./commands/GetGraphCommand";
|
|
84
|
+
import {
|
|
85
|
+
GetGraphSnapshotCommandInput,
|
|
86
|
+
GetGraphSnapshotCommandOutput,
|
|
87
|
+
} from "./commands/GetGraphSnapshotCommand";
|
|
88
|
+
import {
|
|
89
|
+
GetImportTaskCommandInput,
|
|
90
|
+
GetImportTaskCommandOutput,
|
|
91
|
+
} from "./commands/GetImportTaskCommand";
|
|
92
|
+
import {
|
|
93
|
+
GetPrivateGraphEndpointCommandInput,
|
|
94
|
+
GetPrivateGraphEndpointCommandOutput,
|
|
95
|
+
} from "./commands/GetPrivateGraphEndpointCommand";
|
|
96
|
+
import {
|
|
97
|
+
ListGraphsCommandInput,
|
|
98
|
+
ListGraphsCommandOutput,
|
|
99
|
+
} from "./commands/ListGraphsCommand";
|
|
100
|
+
import {
|
|
101
|
+
ListGraphSnapshotsCommandInput,
|
|
102
|
+
ListGraphSnapshotsCommandOutput,
|
|
103
|
+
} from "./commands/ListGraphSnapshotsCommand";
|
|
104
|
+
import {
|
|
105
|
+
ListImportTasksCommandInput,
|
|
106
|
+
ListImportTasksCommandOutput,
|
|
107
|
+
} from "./commands/ListImportTasksCommand";
|
|
108
|
+
import {
|
|
109
|
+
ListPrivateGraphEndpointsCommandInput,
|
|
110
|
+
ListPrivateGraphEndpointsCommandOutput,
|
|
111
|
+
} from "./commands/ListPrivateGraphEndpointsCommand";
|
|
112
|
+
import {
|
|
113
|
+
ListTagsForResourceCommandInput,
|
|
114
|
+
ListTagsForResourceCommandOutput,
|
|
115
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
116
|
+
import {
|
|
117
|
+
ResetGraphCommandInput,
|
|
118
|
+
ResetGraphCommandOutput,
|
|
119
|
+
} from "./commands/ResetGraphCommand";
|
|
120
|
+
import {
|
|
121
|
+
RestoreGraphFromSnapshotCommandInput,
|
|
122
|
+
RestoreGraphFromSnapshotCommandOutput,
|
|
123
|
+
} from "./commands/RestoreGraphFromSnapshotCommand";
|
|
124
|
+
import {
|
|
125
|
+
TagResourceCommandInput,
|
|
126
|
+
TagResourceCommandOutput,
|
|
127
|
+
} from "./commands/TagResourceCommand";
|
|
128
|
+
import {
|
|
129
|
+
UntagResourceCommandInput,
|
|
130
|
+
UntagResourceCommandOutput,
|
|
131
|
+
} from "./commands/UntagResourceCommand";
|
|
132
|
+
import {
|
|
133
|
+
UpdateGraphCommandInput,
|
|
134
|
+
UpdateGraphCommandOutput,
|
|
135
|
+
} from "./commands/UpdateGraphCommand";
|
|
136
|
+
import {
|
|
137
|
+
ClientInputEndpointParameters,
|
|
138
|
+
ClientResolvedEndpointParameters,
|
|
139
|
+
EndpointParameters,
|
|
140
|
+
} from "./endpoint/EndpointParameters";
|
|
141
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
142
|
+
export { __Client };
|
|
143
|
+
export type ServiceInputTypes =
|
|
144
|
+
| CancelImportTaskCommandInput
|
|
145
|
+
| CreateGraphCommandInput
|
|
146
|
+
| CreateGraphSnapshotCommandInput
|
|
147
|
+
| CreateGraphUsingImportTaskCommandInput
|
|
148
|
+
| CreatePrivateGraphEndpointCommandInput
|
|
149
|
+
| DeleteGraphCommandInput
|
|
150
|
+
| DeleteGraphSnapshotCommandInput
|
|
151
|
+
| DeletePrivateGraphEndpointCommandInput
|
|
152
|
+
| GetGraphCommandInput
|
|
153
|
+
| GetGraphSnapshotCommandInput
|
|
154
|
+
| GetImportTaskCommandInput
|
|
155
|
+
| GetPrivateGraphEndpointCommandInput
|
|
156
|
+
| ListGraphSnapshotsCommandInput
|
|
157
|
+
| ListGraphsCommandInput
|
|
158
|
+
| ListImportTasksCommandInput
|
|
159
|
+
| ListPrivateGraphEndpointsCommandInput
|
|
160
|
+
| ListTagsForResourceCommandInput
|
|
161
|
+
| ResetGraphCommandInput
|
|
162
|
+
| RestoreGraphFromSnapshotCommandInput
|
|
163
|
+
| TagResourceCommandInput
|
|
164
|
+
| UntagResourceCommandInput
|
|
165
|
+
| UpdateGraphCommandInput;
|
|
166
|
+
export type ServiceOutputTypes =
|
|
167
|
+
| CancelImportTaskCommandOutput
|
|
168
|
+
| CreateGraphCommandOutput
|
|
169
|
+
| CreateGraphSnapshotCommandOutput
|
|
170
|
+
| CreateGraphUsingImportTaskCommandOutput
|
|
171
|
+
| CreatePrivateGraphEndpointCommandOutput
|
|
172
|
+
| DeleteGraphCommandOutput
|
|
173
|
+
| DeleteGraphSnapshotCommandOutput
|
|
174
|
+
| DeletePrivateGraphEndpointCommandOutput
|
|
175
|
+
| GetGraphCommandOutput
|
|
176
|
+
| GetGraphSnapshotCommandOutput
|
|
177
|
+
| GetImportTaskCommandOutput
|
|
178
|
+
| GetPrivateGraphEndpointCommandOutput
|
|
179
|
+
| ListGraphSnapshotsCommandOutput
|
|
180
|
+
| ListGraphsCommandOutput
|
|
181
|
+
| ListImportTasksCommandOutput
|
|
182
|
+
| ListPrivateGraphEndpointsCommandOutput
|
|
183
|
+
| ListTagsForResourceCommandOutput
|
|
184
|
+
| ResetGraphCommandOutput
|
|
185
|
+
| RestoreGraphFromSnapshotCommandOutput
|
|
186
|
+
| TagResourceCommandOutput
|
|
187
|
+
| UntagResourceCommandOutput
|
|
188
|
+
| UpdateGraphCommandOutput;
|
|
189
|
+
export interface ClientDefaults
|
|
190
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
191
|
+
requestHandler?: __HttpHandler;
|
|
192
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
193
|
+
urlParser?: __UrlParser;
|
|
194
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
195
|
+
streamCollector?: __StreamCollector;
|
|
196
|
+
base64Decoder?: __Decoder;
|
|
197
|
+
base64Encoder?: __Encoder;
|
|
198
|
+
utf8Decoder?: __Decoder;
|
|
199
|
+
utf8Encoder?: __Encoder;
|
|
200
|
+
runtime?: string;
|
|
201
|
+
disableHostPrefix?: boolean;
|
|
202
|
+
serviceId?: string;
|
|
203
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
204
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
205
|
+
region?: string | __Provider<string>;
|
|
206
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
207
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
208
|
+
maxAttempts?: number | __Provider<number>;
|
|
209
|
+
retryMode?: string | __Provider<string>;
|
|
210
|
+
logger?: __Logger;
|
|
211
|
+
extensions?: RuntimeExtension[];
|
|
212
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
213
|
+
}
|
|
214
|
+
export type NeptuneGraphClientConfigType = Partial<
|
|
215
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
216
|
+
> &
|
|
217
|
+
ClientDefaults &
|
|
218
|
+
RegionInputConfig &
|
|
219
|
+
EndpointInputConfig<EndpointParameters> &
|
|
220
|
+
RetryInputConfig &
|
|
221
|
+
HostHeaderInputConfig &
|
|
222
|
+
AwsAuthInputConfig &
|
|
223
|
+
UserAgentInputConfig &
|
|
224
|
+
ClientInputEndpointParameters;
|
|
225
|
+
export interface NeptuneGraphClientConfig
|
|
226
|
+
extends NeptuneGraphClientConfigType {}
|
|
227
|
+
export type NeptuneGraphClientResolvedConfigType =
|
|
228
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
229
|
+
Required<ClientDefaults> &
|
|
230
|
+
RuntimeExtensionsConfig &
|
|
231
|
+
RegionResolvedConfig &
|
|
232
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
233
|
+
RetryResolvedConfig &
|
|
234
|
+
HostHeaderResolvedConfig &
|
|
235
|
+
AwsAuthResolvedConfig &
|
|
236
|
+
UserAgentResolvedConfig &
|
|
237
|
+
ClientResolvedEndpointParameters;
|
|
238
|
+
export interface NeptuneGraphClientResolvedConfig
|
|
239
|
+
extends NeptuneGraphClientResolvedConfigType {}
|
|
240
|
+
export declare class NeptuneGraphClient extends __Client<
|
|
241
|
+
__HttpHandlerOptions,
|
|
242
|
+
ServiceInputTypes,
|
|
243
|
+
ServiceOutputTypes,
|
|
244
|
+
NeptuneGraphClientResolvedConfig
|
|
245
|
+
> {
|
|
246
|
+
readonly config: NeptuneGraphClientResolvedConfig;
|
|
247
|
+
constructor(
|
|
248
|
+
...[configuration]: __CheckOptionalClientConfig<NeptuneGraphClientConfig>
|
|
249
|
+
);
|
|
250
|
+
destroy(): void;
|
|
251
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
CancelImportTaskInput,
|
|
11
|
+
CancelImportTaskOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NeptuneGraphClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NeptuneGraphClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CancelImportTaskCommandInput extends CancelImportTaskInput {}
|
|
20
|
+
export interface CancelImportTaskCommandOutput
|
|
21
|
+
extends CancelImportTaskOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CancelImportTaskCommand extends $Command<
|
|
24
|
+
CancelImportTaskCommandInput,
|
|
25
|
+
CancelImportTaskCommandOutput,
|
|
26
|
+
NeptuneGraphClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CancelImportTaskCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CancelImportTaskCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CancelImportTaskCommandInput, CancelImportTaskCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { CreateGraphInput, CreateGraphOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NeptuneGraphClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NeptuneGraphClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface CreateGraphCommandInput extends CreateGraphInput {}
|
|
17
|
+
export interface CreateGraphCommandOutput
|
|
18
|
+
extends CreateGraphOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class CreateGraphCommand extends $Command<
|
|
21
|
+
CreateGraphCommandInput,
|
|
22
|
+
CreateGraphCommandOutput,
|
|
23
|
+
NeptuneGraphClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: CreateGraphCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: CreateGraphCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CreateGraphCommandInput, CreateGraphCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|