@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,39 @@
|
|
|
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
|
+
CreateGraphSnapshotInput,
|
|
11
|
+
CreateGraphSnapshotOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NeptuneGraphClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NeptuneGraphClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateGraphSnapshotCommandInput
|
|
20
|
+
extends CreateGraphSnapshotInput {}
|
|
21
|
+
export interface CreateGraphSnapshotCommandOutput
|
|
22
|
+
extends CreateGraphSnapshotOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateGraphSnapshotCommand extends $Command<
|
|
25
|
+
CreateGraphSnapshotCommandInput,
|
|
26
|
+
CreateGraphSnapshotCommandOutput,
|
|
27
|
+
NeptuneGraphClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateGraphSnapshotCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateGraphSnapshotCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<CreateGraphSnapshotCommandInput, CreateGraphSnapshotCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
CreateGraphUsingImportTaskInput,
|
|
11
|
+
CreateGraphUsingImportTaskOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NeptuneGraphClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NeptuneGraphClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateGraphUsingImportTaskCommandInput
|
|
20
|
+
extends CreateGraphUsingImportTaskInput {}
|
|
21
|
+
export interface CreateGraphUsingImportTaskCommandOutput
|
|
22
|
+
extends CreateGraphUsingImportTaskOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateGraphUsingImportTaskCommand extends $Command<
|
|
25
|
+
CreateGraphUsingImportTaskCommandInput,
|
|
26
|
+
CreateGraphUsingImportTaskCommandOutput,
|
|
27
|
+
NeptuneGraphClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateGraphUsingImportTaskCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateGraphUsingImportTaskCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CreateGraphUsingImportTaskCommandInput,
|
|
38
|
+
CreateGraphUsingImportTaskCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
CreatePrivateGraphEndpointInput,
|
|
11
|
+
CreatePrivateGraphEndpointOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NeptuneGraphClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NeptuneGraphClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreatePrivateGraphEndpointCommandInput
|
|
20
|
+
extends CreatePrivateGraphEndpointInput {}
|
|
21
|
+
export interface CreatePrivateGraphEndpointCommandOutput
|
|
22
|
+
extends CreatePrivateGraphEndpointOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreatePrivateGraphEndpointCommand extends $Command<
|
|
25
|
+
CreatePrivateGraphEndpointCommandInput,
|
|
26
|
+
CreatePrivateGraphEndpointCommandOutput,
|
|
27
|
+
NeptuneGraphClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreatePrivateGraphEndpointCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreatePrivateGraphEndpointCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CreatePrivateGraphEndpointCommandInput,
|
|
38
|
+
CreatePrivateGraphEndpointCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -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 { DeleteGraphInput, DeleteGraphOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NeptuneGraphClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NeptuneGraphClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface DeleteGraphCommandInput extends DeleteGraphInput {}
|
|
17
|
+
export interface DeleteGraphCommandOutput
|
|
18
|
+
extends DeleteGraphOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class DeleteGraphCommand extends $Command<
|
|
21
|
+
DeleteGraphCommandInput,
|
|
22
|
+
DeleteGraphCommandOutput,
|
|
23
|
+
NeptuneGraphClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: DeleteGraphCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: DeleteGraphCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeleteGraphCommandInput, DeleteGraphCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
DeleteGraphSnapshotInput,
|
|
11
|
+
DeleteGraphSnapshotOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NeptuneGraphClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NeptuneGraphClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteGraphSnapshotCommandInput
|
|
20
|
+
extends DeleteGraphSnapshotInput {}
|
|
21
|
+
export interface DeleteGraphSnapshotCommandOutput
|
|
22
|
+
extends DeleteGraphSnapshotOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DeleteGraphSnapshotCommand extends $Command<
|
|
25
|
+
DeleteGraphSnapshotCommandInput,
|
|
26
|
+
DeleteGraphSnapshotCommandOutput,
|
|
27
|
+
NeptuneGraphClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DeleteGraphSnapshotCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DeleteGraphSnapshotCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<DeleteGraphSnapshotCommandInput, DeleteGraphSnapshotCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
DeletePrivateGraphEndpointInput,
|
|
11
|
+
DeletePrivateGraphEndpointOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NeptuneGraphClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NeptuneGraphClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeletePrivateGraphEndpointCommandInput
|
|
20
|
+
extends DeletePrivateGraphEndpointInput {}
|
|
21
|
+
export interface DeletePrivateGraphEndpointCommandOutput
|
|
22
|
+
extends DeletePrivateGraphEndpointOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DeletePrivateGraphEndpointCommand extends $Command<
|
|
25
|
+
DeletePrivateGraphEndpointCommandInput,
|
|
26
|
+
DeletePrivateGraphEndpointCommandOutput,
|
|
27
|
+
NeptuneGraphClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DeletePrivateGraphEndpointCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DeletePrivateGraphEndpointCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DeletePrivateGraphEndpointCommandInput,
|
|
38
|
+
DeletePrivateGraphEndpointCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -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 { GetGraphInput, GetGraphOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NeptuneGraphClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NeptuneGraphClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetGraphCommandInput extends GetGraphInput {}
|
|
17
|
+
export interface GetGraphCommandOutput
|
|
18
|
+
extends GetGraphOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetGraphCommand extends $Command<
|
|
21
|
+
GetGraphCommandInput,
|
|
22
|
+
GetGraphCommandOutput,
|
|
23
|
+
NeptuneGraphClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetGraphCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetGraphCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetGraphCommandInput, GetGraphCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
GetGraphSnapshotInput,
|
|
11
|
+
GetGraphSnapshotOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NeptuneGraphClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NeptuneGraphClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetGraphSnapshotCommandInput extends GetGraphSnapshotInput {}
|
|
20
|
+
export interface GetGraphSnapshotCommandOutput
|
|
21
|
+
extends GetGraphSnapshotOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetGraphSnapshotCommand extends $Command<
|
|
24
|
+
GetGraphSnapshotCommandInput,
|
|
25
|
+
GetGraphSnapshotCommandOutput,
|
|
26
|
+
NeptuneGraphClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetGraphSnapshotCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetGraphSnapshotCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetGraphSnapshotCommandInput, GetGraphSnapshotCommandOutput>;
|
|
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 { GetImportTaskInput, GetImportTaskOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NeptuneGraphClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NeptuneGraphClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetImportTaskCommandInput extends GetImportTaskInput {}
|
|
17
|
+
export interface GetImportTaskCommandOutput
|
|
18
|
+
extends GetImportTaskOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetImportTaskCommand extends $Command<
|
|
21
|
+
GetImportTaskCommandInput,
|
|
22
|
+
GetImportTaskCommandOutput,
|
|
23
|
+
NeptuneGraphClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetImportTaskCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetImportTaskCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetImportTaskCommandInput, GetImportTaskCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
GetPrivateGraphEndpointInput,
|
|
11
|
+
GetPrivateGraphEndpointOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NeptuneGraphClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NeptuneGraphClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetPrivateGraphEndpointCommandInput
|
|
20
|
+
extends GetPrivateGraphEndpointInput {}
|
|
21
|
+
export interface GetPrivateGraphEndpointCommandOutput
|
|
22
|
+
extends GetPrivateGraphEndpointOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetPrivateGraphEndpointCommand extends $Command<
|
|
25
|
+
GetPrivateGraphEndpointCommandInput,
|
|
26
|
+
GetPrivateGraphEndpointCommandOutput,
|
|
27
|
+
NeptuneGraphClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetPrivateGraphEndpointCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetPrivateGraphEndpointCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
GetPrivateGraphEndpointCommandInput,
|
|
38
|
+
GetPrivateGraphEndpointCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
ListGraphSnapshotsInput,
|
|
11
|
+
ListGraphSnapshotsOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NeptuneGraphClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NeptuneGraphClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListGraphSnapshotsCommandInput
|
|
20
|
+
extends ListGraphSnapshotsInput {}
|
|
21
|
+
export interface ListGraphSnapshotsCommandOutput
|
|
22
|
+
extends ListGraphSnapshotsOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListGraphSnapshotsCommand extends $Command<
|
|
25
|
+
ListGraphSnapshotsCommandInput,
|
|
26
|
+
ListGraphSnapshotsCommandOutput,
|
|
27
|
+
NeptuneGraphClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListGraphSnapshotsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListGraphSnapshotsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<ListGraphSnapshotsCommandInput, ListGraphSnapshotsCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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 { ListGraphsInput, ListGraphsOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NeptuneGraphClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NeptuneGraphClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface ListGraphsCommandInput extends ListGraphsInput {}
|
|
17
|
+
export interface ListGraphsCommandOutput
|
|
18
|
+
extends ListGraphsOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class ListGraphsCommand extends $Command<
|
|
21
|
+
ListGraphsCommandInput,
|
|
22
|
+
ListGraphsCommandOutput,
|
|
23
|
+
NeptuneGraphClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: ListGraphsCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: ListGraphsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListGraphsCommandInput, ListGraphsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
ListImportTasksInput,
|
|
11
|
+
ListImportTasksOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NeptuneGraphClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NeptuneGraphClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListImportTasksCommandInput extends ListImportTasksInput {}
|
|
20
|
+
export interface ListImportTasksCommandOutput
|
|
21
|
+
extends ListImportTasksOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListImportTasksCommand extends $Command<
|
|
24
|
+
ListImportTasksCommandInput,
|
|
25
|
+
ListImportTasksCommandOutput,
|
|
26
|
+
NeptuneGraphClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListImportTasksCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListImportTasksCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListImportTasksCommandInput, ListImportTasksCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
ListPrivateGraphEndpointsInput,
|
|
11
|
+
ListPrivateGraphEndpointsOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NeptuneGraphClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NeptuneGraphClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListPrivateGraphEndpointsCommandInput
|
|
20
|
+
extends ListPrivateGraphEndpointsInput {}
|
|
21
|
+
export interface ListPrivateGraphEndpointsCommandOutput
|
|
22
|
+
extends ListPrivateGraphEndpointsOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListPrivateGraphEndpointsCommand extends $Command<
|
|
25
|
+
ListPrivateGraphEndpointsCommandInput,
|
|
26
|
+
ListPrivateGraphEndpointsCommandOutput,
|
|
27
|
+
NeptuneGraphClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListPrivateGraphEndpointsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListPrivateGraphEndpointsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListPrivateGraphEndpointsCommandInput,
|
|
38
|
+
ListPrivateGraphEndpointsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
ListTagsForResourceInput,
|
|
11
|
+
ListTagsForResourceOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NeptuneGraphClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NeptuneGraphClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListTagsForResourceCommandInput
|
|
20
|
+
extends ListTagsForResourceInput {}
|
|
21
|
+
export interface ListTagsForResourceCommandOutput
|
|
22
|
+
extends ListTagsForResourceOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
25
|
+
ListTagsForResourceCommandInput,
|
|
26
|
+
ListTagsForResourceCommandOutput,
|
|
27
|
+
NeptuneGraphClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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 { ResetGraphInput, ResetGraphOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
NeptuneGraphClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../NeptuneGraphClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface ResetGraphCommandInput extends ResetGraphInput {}
|
|
17
|
+
export interface ResetGraphCommandOutput
|
|
18
|
+
extends ResetGraphOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class ResetGraphCommand extends $Command<
|
|
21
|
+
ResetGraphCommandInput,
|
|
22
|
+
ResetGraphCommandOutput,
|
|
23
|
+
NeptuneGraphClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: ResetGraphCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: ResetGraphCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ResetGraphCommandInput, ResetGraphCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
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
|
+
RestoreGraphFromSnapshotInput,
|
|
11
|
+
RestoreGraphFromSnapshotOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
NeptuneGraphClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../NeptuneGraphClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface RestoreGraphFromSnapshotCommandInput
|
|
20
|
+
extends RestoreGraphFromSnapshotInput {}
|
|
21
|
+
export interface RestoreGraphFromSnapshotCommandOutput
|
|
22
|
+
extends RestoreGraphFromSnapshotOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class RestoreGraphFromSnapshotCommand extends $Command<
|
|
25
|
+
RestoreGraphFromSnapshotCommandInput,
|
|
26
|
+
RestoreGraphFromSnapshotCommandOutput,
|
|
27
|
+
NeptuneGraphClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: RestoreGraphFromSnapshotCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: RestoreGraphFromSnapshotCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: NeptuneGraphClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
RestoreGraphFromSnapshotCommandInput,
|
|
38
|
+
RestoreGraphFromSnapshotCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|