@aws-sdk/client-neptune-graph 3.533.0 → 3.540.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/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/NeptuneGraph.d.ts +4 -1
- package/dist-types/NeptuneGraphClient.d.ts +1 -1
- package/dist-types/commands/CancelImportTaskCommand.d.ts +2 -1
- package/dist-types/commands/CancelQueryCommand.d.ts +2 -1
- package/dist-types/commands/CreateGraphCommand.d.ts +2 -1
- package/dist-types/commands/CreateGraphSnapshotCommand.d.ts +2 -1
- package/dist-types/commands/CreateGraphUsingImportTaskCommand.d.ts +2 -1
- package/dist-types/commands/CreatePrivateGraphEndpointCommand.d.ts +2 -1
- package/dist-types/commands/DeleteGraphCommand.d.ts +2 -1
- package/dist-types/commands/DeleteGraphSnapshotCommand.d.ts +2 -1
- package/dist-types/commands/DeletePrivateGraphEndpointCommand.d.ts +2 -1
- package/dist-types/commands/ExecuteQueryCommand.d.ts +2 -1
- package/dist-types/commands/GetGraphCommand.d.ts +2 -1
- package/dist-types/commands/GetGraphSnapshotCommand.d.ts +2 -1
- package/dist-types/commands/GetGraphSummaryCommand.d.ts +2 -1
- package/dist-types/commands/GetImportTaskCommand.d.ts +2 -1
- package/dist-types/commands/GetPrivateGraphEndpointCommand.d.ts +2 -1
- package/dist-types/commands/GetQueryCommand.d.ts +2 -1
- package/dist-types/commands/ListGraphSnapshotsCommand.d.ts +2 -1
- package/dist-types/commands/ListGraphsCommand.d.ts +2 -1
- package/dist-types/commands/ListImportTasksCommand.d.ts +2 -1
- package/dist-types/commands/ListPrivateGraphEndpointsCommand.d.ts +2 -1
- package/dist-types/commands/ListQueriesCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/ResetGraphCommand.d.ts +2 -1
- package/dist-types/commands/RestoreGraphFromSnapshotCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateGraphCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +341 -341
- package/dist-types/ts3.4/NeptuneGraph.d.ts +3 -0
- package/dist-types/ts3.4/commands/CancelImportTaskCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateGraphCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateGraphSnapshotCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateGraphUsingImportTaskCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreatePrivateGraphEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteGraphCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteGraphSnapshotCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeletePrivateGraphEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ExecuteQueryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetGraphCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetGraphSnapshotCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetGraphSummaryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetImportTaskCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetPrivateGraphEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetQueryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListGraphSnapshotsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListGraphsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListImportTasksCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListPrivateGraphEndpointsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListQueriesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ResetGraphCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RestoreGraphFromSnapshotCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateGraphCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +42 -42
|
@@ -317,6 +317,7 @@ export interface NeptuneGraph {
|
|
|
317
317
|
options: __HttpHandlerOptions,
|
|
318
318
|
cb: (err: any, data?: GetQueryCommandOutput) => void
|
|
319
319
|
): void;
|
|
320
|
+
listGraphs(): Promise<ListGraphsCommandOutput>;
|
|
320
321
|
listGraphs(
|
|
321
322
|
args: ListGraphsCommandInput,
|
|
322
323
|
options?: __HttpHandlerOptions
|
|
@@ -330,6 +331,7 @@ export interface NeptuneGraph {
|
|
|
330
331
|
options: __HttpHandlerOptions,
|
|
331
332
|
cb: (err: any, data?: ListGraphsCommandOutput) => void
|
|
332
333
|
): void;
|
|
334
|
+
listGraphSnapshots(): Promise<ListGraphSnapshotsCommandOutput>;
|
|
333
335
|
listGraphSnapshots(
|
|
334
336
|
args: ListGraphSnapshotsCommandInput,
|
|
335
337
|
options?: __HttpHandlerOptions
|
|
@@ -343,6 +345,7 @@ export interface NeptuneGraph {
|
|
|
343
345
|
options: __HttpHandlerOptions,
|
|
344
346
|
cb: (err: any, data?: ListGraphSnapshotsCommandOutput) => void
|
|
345
347
|
): void;
|
|
348
|
+
listImportTasks(): Promise<ListImportTasksCommandOutput>;
|
|
346
349
|
listImportTasks(
|
|
347
350
|
args: ListImportTasksCommandInput,
|
|
348
351
|
options?: __HttpHandlerOptions
|
|
@@ -24,6 +24,15 @@ declare const CancelImportTaskCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: CancelImportTaskCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
CancelImportTaskCommandInput,
|
|
31
|
+
CancelImportTaskCommandOutput,
|
|
32
|
+
NeptuneGraphClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class CancelImportTaskCommand extends CancelImportTaskCommand_base {}
|
|
@@ -19,6 +19,15 @@ declare const CancelQueryCommand_base: {
|
|
|
19
19
|
ServiceInputTypes,
|
|
20
20
|
ServiceOutputTypes
|
|
21
21
|
>;
|
|
22
|
+
new (
|
|
23
|
+
__0_0: CancelQueryCommandInput
|
|
24
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
25
|
+
CancelQueryCommandInput,
|
|
26
|
+
CancelQueryCommandOutput,
|
|
27
|
+
NeptuneGraphClientResolvedConfig,
|
|
28
|
+
ServiceInputTypes,
|
|
29
|
+
ServiceOutputTypes
|
|
30
|
+
>;
|
|
22
31
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
23
32
|
};
|
|
24
33
|
export declare class CancelQueryCommand extends CancelQueryCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const CreateGraphCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: CreateGraphCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
CreateGraphCommandInput,
|
|
28
|
+
CreateGraphCommandOutput,
|
|
29
|
+
NeptuneGraphClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class CreateGraphCommand extends CreateGraphCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CreateGraphSnapshotCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateGraphSnapshotCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateGraphSnapshotCommandInput,
|
|
32
|
+
CreateGraphSnapshotCommandOutput,
|
|
33
|
+
NeptuneGraphClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreateGraphSnapshotCommand extends CreateGraphSnapshotCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CreateGraphUsingImportTaskCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateGraphUsingImportTaskCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateGraphUsingImportTaskCommandInput,
|
|
32
|
+
CreateGraphUsingImportTaskCommandOutput,
|
|
33
|
+
NeptuneGraphClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreateGraphUsingImportTaskCommand extends CreateGraphUsingImportTaskCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CreatePrivateGraphEndpointCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreatePrivateGraphEndpointCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreatePrivateGraphEndpointCommandInput,
|
|
32
|
+
CreatePrivateGraphEndpointCommandOutput,
|
|
33
|
+
NeptuneGraphClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreatePrivateGraphEndpointCommand extends CreatePrivateGraphEndpointCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const DeleteGraphCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DeleteGraphCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteGraphCommandInput,
|
|
28
|
+
DeleteGraphCommandOutput,
|
|
29
|
+
NeptuneGraphClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class DeleteGraphCommand extends DeleteGraphCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DeleteGraphSnapshotCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeleteGraphSnapshotCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteGraphSnapshotCommandInput,
|
|
32
|
+
DeleteGraphSnapshotCommandOutput,
|
|
33
|
+
NeptuneGraphClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DeleteGraphSnapshotCommand extends DeleteGraphSnapshotCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DeletePrivateGraphEndpointCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeletePrivateGraphEndpointCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeletePrivateGraphEndpointCommandInput,
|
|
32
|
+
DeletePrivateGraphEndpointCommandOutput,
|
|
33
|
+
NeptuneGraphClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DeletePrivateGraphEndpointCommand extends DeletePrivateGraphEndpointCommand_base {}
|
|
@@ -29,6 +29,15 @@ declare const ExecuteQueryCommand_base: {
|
|
|
29
29
|
ServiceInputTypes,
|
|
30
30
|
ServiceOutputTypes
|
|
31
31
|
>;
|
|
32
|
+
new (
|
|
33
|
+
__0_0: ExecuteQueryCommandInput
|
|
34
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
35
|
+
ExecuteQueryCommandInput,
|
|
36
|
+
ExecuteQueryCommandOutput,
|
|
37
|
+
NeptuneGraphClientResolvedConfig,
|
|
38
|
+
ServiceInputTypes,
|
|
39
|
+
ServiceOutputTypes
|
|
40
|
+
>;
|
|
32
41
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
42
|
};
|
|
34
43
|
export declare class ExecuteQueryCommand extends ExecuteQueryCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetGraphCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetGraphCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetGraphCommandInput,
|
|
28
|
+
GetGraphCommandOutput,
|
|
29
|
+
NeptuneGraphClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetGraphCommand extends GetGraphCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const GetGraphSnapshotCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: GetGraphSnapshotCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
GetGraphSnapshotCommandInput,
|
|
31
|
+
GetGraphSnapshotCommandOutput,
|
|
32
|
+
NeptuneGraphClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class GetGraphSnapshotCommand extends GetGraphSnapshotCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const GetGraphSummaryCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: GetGraphSummaryCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
GetGraphSummaryCommandInput,
|
|
31
|
+
GetGraphSummaryCommandOutput,
|
|
32
|
+
NeptuneGraphClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class GetGraphSummaryCommand extends GetGraphSummaryCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetImportTaskCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetImportTaskCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetImportTaskCommandInput,
|
|
28
|
+
GetImportTaskCommandOutput,
|
|
29
|
+
NeptuneGraphClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetImportTaskCommand extends GetImportTaskCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const GetPrivateGraphEndpointCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetPrivateGraphEndpointCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetPrivateGraphEndpointCommandInput,
|
|
32
|
+
GetPrivateGraphEndpointCommandOutput,
|
|
33
|
+
NeptuneGraphClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class GetPrivateGraphEndpointCommand extends GetPrivateGraphEndpointCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const GetQueryCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: GetQueryCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
GetQueryCommandInput,
|
|
28
|
+
GetQueryCommandOutput,
|
|
29
|
+
NeptuneGraphClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class GetQueryCommand extends GetQueryCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListGraphSnapshotsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [ListGraphSnapshotsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListGraphSnapshotsCommandInput,
|
|
32
|
+
ListGraphSnapshotsCommandOutput,
|
|
33
|
+
NeptuneGraphClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListGraphSnapshotsCommand extends ListGraphSnapshotsCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ListGraphsCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
...[input]: [] | [ListGraphsCommandInput]
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ListGraphsCommandInput,
|
|
28
|
+
ListGraphsCommandOutput,
|
|
29
|
+
NeptuneGraphClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ListGraphsCommand extends ListGraphsCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const ListImportTasksCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
...[input]: [] | [ListImportTasksCommandInput]
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
ListImportTasksCommandInput,
|
|
31
|
+
ListImportTasksCommandOutput,
|
|
32
|
+
NeptuneGraphClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class ListImportTasksCommand extends ListImportTasksCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListPrivateGraphEndpointsCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListPrivateGraphEndpointsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListPrivateGraphEndpointsCommandInput,
|
|
32
|
+
ListPrivateGraphEndpointsCommandOutput,
|
|
33
|
+
NeptuneGraphClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListPrivateGraphEndpointsCommand extends ListPrivateGraphEndpointsCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ListQueriesCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: ListQueriesCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ListQueriesCommandInput,
|
|
28
|
+
ListQueriesCommandOutput,
|
|
29
|
+
NeptuneGraphClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ListQueriesCommand extends ListQueriesCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListTagsForResourceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListTagsForResourceCommandInput,
|
|
32
|
+
ListTagsForResourceCommandOutput,
|
|
33
|
+
NeptuneGraphClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const ResetGraphCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: ResetGraphCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
ResetGraphCommandInput,
|
|
28
|
+
ResetGraphCommandOutput,
|
|
29
|
+
NeptuneGraphClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class ResetGraphCommand extends ResetGraphCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const RestoreGraphFromSnapshotCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: RestoreGraphFromSnapshotCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
RestoreGraphFromSnapshotCommandInput,
|
|
32
|
+
RestoreGraphFromSnapshotCommandOutput,
|
|
33
|
+
NeptuneGraphClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class RestoreGraphFromSnapshotCommand extends RestoreGraphFromSnapshotCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const TagResourceCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: TagResourceCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
TagResourceCommandInput,
|
|
28
|
+
TagResourceCommandOutput,
|
|
29
|
+
NeptuneGraphClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class TagResourceCommand extends TagResourceCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const UntagResourceCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: UntagResourceCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
UntagResourceCommandInput,
|
|
28
|
+
UntagResourceCommandOutput,
|
|
29
|
+
NeptuneGraphClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const UpdateGraphCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: UpdateGraphCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
UpdateGraphCommandInput,
|
|
28
|
+
UpdateGraphCommandOutput,
|
|
29
|
+
NeptuneGraphClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class UpdateGraphCommand extends UpdateGraphCommand_base {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-neptune-graph",
|
|
3
3
|
"description": "AWS SDK for JavaScript Neptune Graph Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.540.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-neptune-graph",
|
|
@@ -20,49 +20,49 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.
|
|
36
|
-
"@smithy/core": "^1.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.
|
|
38
|
-
"@smithy/hash-node": "^2.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.
|
|
43
|
-
"@smithy/middleware-serde": "^2.
|
|
44
|
-
"@smithy/middleware-stack": "^2.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.
|
|
47
|
-
"@smithy/protocol-http": "^3.
|
|
48
|
-
"@smithy/smithy-client": "^2.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.
|
|
51
|
-
"@smithy/util-base64": "^2.
|
|
52
|
-
"@smithy/util-body-length-browser": "^2.
|
|
53
|
-
"@smithy/util-body-length-node": "^2.
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.
|
|
56
|
-
"@smithy/util-endpoints": "^1.
|
|
57
|
-
"@smithy/util-middleware": "^2.
|
|
58
|
-
"@smithy/util-retry": "^2.
|
|
59
|
-
"@smithy/util-stream": "^2.
|
|
60
|
-
"@smithy/util-utf8": "^2.
|
|
61
|
-
"@smithy/util-waiter": "^2.
|
|
62
|
-
"tslib": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.540.0",
|
|
24
|
+
"@aws-sdk/core": "3.535.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.540.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.540.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
31
|
+
"@aws-sdk/types": "3.535.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.540.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.2.0",
|
|
36
|
+
"@smithy/core": "^1.4.0",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.5.0",
|
|
38
|
+
"@smithy/hash-node": "^2.2.0",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.2.0",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.2.0",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.5.0",
|
|
42
|
+
"@smithy/middleware-retry": "^2.2.0",
|
|
43
|
+
"@smithy/middleware-serde": "^2.3.0",
|
|
44
|
+
"@smithy/middleware-stack": "^2.2.0",
|
|
45
|
+
"@smithy/node-config-provider": "^2.3.0",
|
|
46
|
+
"@smithy/node-http-handler": "^2.5.0",
|
|
47
|
+
"@smithy/protocol-http": "^3.3.0",
|
|
48
|
+
"@smithy/smithy-client": "^2.5.0",
|
|
49
|
+
"@smithy/types": "^2.12.0",
|
|
50
|
+
"@smithy/url-parser": "^2.2.0",
|
|
51
|
+
"@smithy/util-base64": "^2.3.0",
|
|
52
|
+
"@smithy/util-body-length-browser": "^2.2.0",
|
|
53
|
+
"@smithy/util-body-length-node": "^2.3.0",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.2.0",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.3.0",
|
|
56
|
+
"@smithy/util-endpoints": "^1.2.0",
|
|
57
|
+
"@smithy/util-middleware": "^2.2.0",
|
|
58
|
+
"@smithy/util-retry": "^2.2.0",
|
|
59
|
+
"@smithy/util-stream": "^2.2.0",
|
|
60
|
+
"@smithy/util-utf8": "^2.3.0",
|
|
61
|
+
"@smithy/util-waiter": "^2.2.0",
|
|
62
|
+
"tslib": "^2.6.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@smithy/service-client-documentation-generator": "^2.
|
|
65
|
+
"@smithy/service-client-documentation-generator": "^2.2.0",
|
|
66
66
|
"@tsconfig/node14": "1.0.3",
|
|
67
67
|
"@types/node": "^14.14.31",
|
|
68
68
|
"concurrently": "7.0.0",
|