@aws-sdk/client-neptune-graph 3.490.0 → 3.495.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/NeptuneGraph.js +1 -55
- package/dist-cjs/NeptuneGraphClient.js +1 -43
- package/dist-cjs/commands/CancelImportTaskCommand.js +1 -29
- package/dist-cjs/commands/CreateGraphCommand.js +1 -29
- package/dist-cjs/commands/CreateGraphSnapshotCommand.js +1 -29
- package/dist-cjs/commands/CreateGraphUsingImportTaskCommand.js +1 -29
- package/dist-cjs/commands/CreatePrivateGraphEndpointCommand.js +1 -29
- package/dist-cjs/commands/DeleteGraphCommand.js +1 -29
- package/dist-cjs/commands/DeleteGraphSnapshotCommand.js +1 -29
- package/dist-cjs/commands/DeletePrivateGraphEndpointCommand.js +1 -29
- package/dist-cjs/commands/GetGraphCommand.js +1 -29
- package/dist-cjs/commands/GetGraphSnapshotCommand.js +1 -29
- package/dist-cjs/commands/GetImportTaskCommand.js +1 -29
- package/dist-cjs/commands/GetPrivateGraphEndpointCommand.js +1 -29
- package/dist-cjs/commands/ListGraphSnapshotsCommand.js +1 -29
- package/dist-cjs/commands/ListGraphsCommand.js +1 -29
- package/dist-cjs/commands/ListImportTasksCommand.js +1 -29
- package/dist-cjs/commands/ListPrivateGraphEndpointsCommand.js +1 -29
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -29
- package/dist-cjs/commands/ResetGraphCommand.js +1 -29
- package/dist-cjs/commands/RestoreGraphFromSnapshotCommand.js +1 -29
- package/dist-cjs/commands/TagResourceCommand.js +1 -29
- package/dist-cjs/commands/UntagResourceCommand.js +1 -29
- package/dist-cjs/commands/UpdateGraphCommand.js +1 -29
- package/dist-cjs/commands/index.js +1 -25
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +2794 -12
- package/dist-cjs/models/NeptuneGraphServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -149
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListGraphSnapshotsPaginator.js +1 -7
- package/dist-cjs/pagination/ListGraphsPaginator.js +1 -7
- package/dist-cjs/pagination/ListImportTasksPaginator.js +1 -7
- package/dist-cjs/pagination/ListPrivateGraphEndpointsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -8
- package/dist-cjs/protocols/Aws_restJson1.js +1 -1606
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/dist-cjs/waiters/index.js +1 -11
- package/dist-cjs/waiters/waitForGraphAvailable.js +1 -54
- package/dist-cjs/waiters/waitForGraphDeleted.js +1 -39
- package/dist-cjs/waiters/waitForGraphSnapshotAvailable.js +1 -54
- package/dist-cjs/waiters/waitForGraphSnapshotDeleted.js +1 -39
- package/dist-cjs/waiters/waitForImportTaskCancelled.js +1 -45
- package/dist-cjs/waiters/waitForImportTaskSuccessful.js +1 -72
- package/dist-cjs/waiters/waitForPrivateGraphEndpointAvailable.js +1 -54
- package/dist-cjs/waiters/waitForPrivateGraphEndpointDeleted.js +1 -39
- package/package.json +41 -41
package/dist-cjs/NeptuneGraph.js
CHANGED
|
@@ -1,55 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.NeptuneGraph = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const CancelImportTaskCommand_1 = require("./commands/CancelImportTaskCommand");
|
|
6
|
-
const CreateGraphCommand_1 = require("./commands/CreateGraphCommand");
|
|
7
|
-
const CreateGraphSnapshotCommand_1 = require("./commands/CreateGraphSnapshotCommand");
|
|
8
|
-
const CreateGraphUsingImportTaskCommand_1 = require("./commands/CreateGraphUsingImportTaskCommand");
|
|
9
|
-
const CreatePrivateGraphEndpointCommand_1 = require("./commands/CreatePrivateGraphEndpointCommand");
|
|
10
|
-
const DeleteGraphCommand_1 = require("./commands/DeleteGraphCommand");
|
|
11
|
-
const DeleteGraphSnapshotCommand_1 = require("./commands/DeleteGraphSnapshotCommand");
|
|
12
|
-
const DeletePrivateGraphEndpointCommand_1 = require("./commands/DeletePrivateGraphEndpointCommand");
|
|
13
|
-
const GetGraphCommand_1 = require("./commands/GetGraphCommand");
|
|
14
|
-
const GetGraphSnapshotCommand_1 = require("./commands/GetGraphSnapshotCommand");
|
|
15
|
-
const GetImportTaskCommand_1 = require("./commands/GetImportTaskCommand");
|
|
16
|
-
const GetPrivateGraphEndpointCommand_1 = require("./commands/GetPrivateGraphEndpointCommand");
|
|
17
|
-
const ListGraphsCommand_1 = require("./commands/ListGraphsCommand");
|
|
18
|
-
const ListGraphSnapshotsCommand_1 = require("./commands/ListGraphSnapshotsCommand");
|
|
19
|
-
const ListImportTasksCommand_1 = require("./commands/ListImportTasksCommand");
|
|
20
|
-
const ListPrivateGraphEndpointsCommand_1 = require("./commands/ListPrivateGraphEndpointsCommand");
|
|
21
|
-
const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
|
|
22
|
-
const ResetGraphCommand_1 = require("./commands/ResetGraphCommand");
|
|
23
|
-
const RestoreGraphFromSnapshotCommand_1 = require("./commands/RestoreGraphFromSnapshotCommand");
|
|
24
|
-
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
25
|
-
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
26
|
-
const UpdateGraphCommand_1 = require("./commands/UpdateGraphCommand");
|
|
27
|
-
const NeptuneGraphClient_1 = require("./NeptuneGraphClient");
|
|
28
|
-
const commands = {
|
|
29
|
-
CancelImportTaskCommand: CancelImportTaskCommand_1.CancelImportTaskCommand,
|
|
30
|
-
CreateGraphCommand: CreateGraphCommand_1.CreateGraphCommand,
|
|
31
|
-
CreateGraphSnapshotCommand: CreateGraphSnapshotCommand_1.CreateGraphSnapshotCommand,
|
|
32
|
-
CreateGraphUsingImportTaskCommand: CreateGraphUsingImportTaskCommand_1.CreateGraphUsingImportTaskCommand,
|
|
33
|
-
CreatePrivateGraphEndpointCommand: CreatePrivateGraphEndpointCommand_1.CreatePrivateGraphEndpointCommand,
|
|
34
|
-
DeleteGraphCommand: DeleteGraphCommand_1.DeleteGraphCommand,
|
|
35
|
-
DeleteGraphSnapshotCommand: DeleteGraphSnapshotCommand_1.DeleteGraphSnapshotCommand,
|
|
36
|
-
DeletePrivateGraphEndpointCommand: DeletePrivateGraphEndpointCommand_1.DeletePrivateGraphEndpointCommand,
|
|
37
|
-
GetGraphCommand: GetGraphCommand_1.GetGraphCommand,
|
|
38
|
-
GetGraphSnapshotCommand: GetGraphSnapshotCommand_1.GetGraphSnapshotCommand,
|
|
39
|
-
GetImportTaskCommand: GetImportTaskCommand_1.GetImportTaskCommand,
|
|
40
|
-
GetPrivateGraphEndpointCommand: GetPrivateGraphEndpointCommand_1.GetPrivateGraphEndpointCommand,
|
|
41
|
-
ListGraphsCommand: ListGraphsCommand_1.ListGraphsCommand,
|
|
42
|
-
ListGraphSnapshotsCommand: ListGraphSnapshotsCommand_1.ListGraphSnapshotsCommand,
|
|
43
|
-
ListImportTasksCommand: ListImportTasksCommand_1.ListImportTasksCommand,
|
|
44
|
-
ListPrivateGraphEndpointsCommand: ListPrivateGraphEndpointsCommand_1.ListPrivateGraphEndpointsCommand,
|
|
45
|
-
ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
|
|
46
|
-
ResetGraphCommand: ResetGraphCommand_1.ResetGraphCommand,
|
|
47
|
-
RestoreGraphFromSnapshotCommand: RestoreGraphFromSnapshotCommand_1.RestoreGraphFromSnapshotCommand,
|
|
48
|
-
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
49
|
-
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
50
|
-
UpdateGraphCommand: UpdateGraphCommand_1.UpdateGraphCommand,
|
|
51
|
-
};
|
|
52
|
-
class NeptuneGraph extends NeptuneGraphClient_1.NeptuneGraphClient {
|
|
53
|
-
}
|
|
54
|
-
exports.NeptuneGraph = NeptuneGraph;
|
|
55
|
-
(0, smithy_client_1.createAggregatedClient)(commands, NeptuneGraph);
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,43 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.NeptuneGraphClient = exports.__Client = void 0;
|
|
4
|
-
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
5
|
-
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
6
|
-
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
7
|
-
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
8
|
-
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
9
|
-
const config_resolver_1 = require("@smithy/config-resolver");
|
|
10
|
-
const middleware_content_length_1 = require("@smithy/middleware-content-length");
|
|
11
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
12
|
-
const middleware_retry_1 = require("@smithy/middleware-retry");
|
|
13
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
14
|
-
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
15
|
-
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
16
|
-
const runtimeConfig_1 = require("./runtimeConfig");
|
|
17
|
-
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
18
|
-
class NeptuneGraphClient extends smithy_client_1.Client {
|
|
19
|
-
constructor(...[configuration]) {
|
|
20
|
-
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
21
|
-
const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
|
|
22
|
-
const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
|
|
23
|
-
const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
|
|
24
|
-
const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
|
|
25
|
-
const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
|
|
26
|
-
const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
|
|
27
|
-
const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
|
|
28
|
-
const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
|
|
29
|
-
super(_config_8);
|
|
30
|
-
this.config = _config_8;
|
|
31
|
-
this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
|
|
32
|
-
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
33
|
-
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
34
|
-
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
35
|
-
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
36
|
-
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
37
|
-
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
38
|
-
}
|
|
39
|
-
destroy() {
|
|
40
|
-
super.destroy();
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
exports.NeptuneGraphClient = NeptuneGraphClient;
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CancelImportTaskCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CancelImportTaskCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "CancelImportTask", {})
|
|
23
|
-
.n("NeptuneGraphClient", "CancelImportTaskCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_CancelImportTaskCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_CancelImportTaskCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.CancelImportTaskCommand = CancelImportTaskCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateGraphCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateGraphCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "CreateGraph", {})
|
|
23
|
-
.n("NeptuneGraphClient", "CreateGraphCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_CreateGraphCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_CreateGraphCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.CreateGraphCommand = CreateGraphCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateGraphSnapshotCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateGraphSnapshotCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "CreateGraphSnapshot", {})
|
|
23
|
-
.n("NeptuneGraphClient", "CreateGraphSnapshotCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_CreateGraphSnapshotCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_CreateGraphSnapshotCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.CreateGraphSnapshotCommand = CreateGraphSnapshotCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateGraphUsingImportTaskCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateGraphUsingImportTaskCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "CreateGraphUsingImportTask", {})
|
|
23
|
-
.n("NeptuneGraphClient", "CreateGraphUsingImportTaskCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_CreateGraphUsingImportTaskCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_CreateGraphUsingImportTaskCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.CreateGraphUsingImportTaskCommand = CreateGraphUsingImportTaskCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreatePrivateGraphEndpointCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreatePrivateGraphEndpointCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "CreatePrivateGraphEndpoint", {})
|
|
23
|
-
.n("NeptuneGraphClient", "CreatePrivateGraphEndpointCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_CreatePrivateGraphEndpointCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_CreatePrivateGraphEndpointCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.CreatePrivateGraphEndpointCommand = CreatePrivateGraphEndpointCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteGraphCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteGraphCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "DeleteGraph", {})
|
|
23
|
-
.n("NeptuneGraphClient", "DeleteGraphCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_DeleteGraphCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_DeleteGraphCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.DeleteGraphCommand = DeleteGraphCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteGraphSnapshotCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteGraphSnapshotCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "DeleteGraphSnapshot", {})
|
|
23
|
-
.n("NeptuneGraphClient", "DeleteGraphSnapshotCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_DeleteGraphSnapshotCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_DeleteGraphSnapshotCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.DeleteGraphSnapshotCommand = DeleteGraphSnapshotCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeletePrivateGraphEndpointCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeletePrivateGraphEndpointCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "DeletePrivateGraphEndpoint", {})
|
|
23
|
-
.n("NeptuneGraphClient", "DeletePrivateGraphEndpointCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_DeletePrivateGraphEndpointCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_DeletePrivateGraphEndpointCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.DeletePrivateGraphEndpointCommand = DeletePrivateGraphEndpointCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetGraphCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetGraphCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "GetGraph", {})
|
|
23
|
-
.n("NeptuneGraphClient", "GetGraphCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_GetGraphCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_GetGraphCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.GetGraphCommand = GetGraphCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetGraphSnapshotCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetGraphSnapshotCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "GetGraphSnapshot", {})
|
|
23
|
-
.n("NeptuneGraphClient", "GetGraphSnapshotCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_GetGraphSnapshotCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_GetGraphSnapshotCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.GetGraphSnapshotCommand = GetGraphSnapshotCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetImportTaskCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetImportTaskCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "GetImportTask", {})
|
|
23
|
-
.n("NeptuneGraphClient", "GetImportTaskCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_GetImportTaskCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_GetImportTaskCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.GetImportTaskCommand = GetImportTaskCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetPrivateGraphEndpointCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetPrivateGraphEndpointCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "GetPrivateGraphEndpoint", {})
|
|
23
|
-
.n("NeptuneGraphClient", "GetPrivateGraphEndpointCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_GetPrivateGraphEndpointCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_GetPrivateGraphEndpointCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.GetPrivateGraphEndpointCommand = GetPrivateGraphEndpointCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListGraphSnapshotsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class ListGraphSnapshotsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "ListGraphSnapshots", {})
|
|
23
|
-
.n("NeptuneGraphClient", "ListGraphSnapshotsCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_ListGraphSnapshotsCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_ListGraphSnapshotsCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.ListGraphSnapshotsCommand = ListGraphSnapshotsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListGraphsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class ListGraphsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "ListGraphs", {})
|
|
23
|
-
.n("NeptuneGraphClient", "ListGraphsCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_ListGraphsCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_ListGraphsCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.ListGraphsCommand = ListGraphsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListImportTasksCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class ListImportTasksCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "ListImportTasks", {})
|
|
23
|
-
.n("NeptuneGraphClient", "ListImportTasksCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_ListImportTasksCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_ListImportTasksCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.ListImportTasksCommand = ListImportTasksCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListPrivateGraphEndpointsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class ListPrivateGraphEndpointsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "ListPrivateGraphEndpoints", {})
|
|
23
|
-
.n("NeptuneGraphClient", "ListPrivateGraphEndpointsCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_ListPrivateGraphEndpointsCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_ListPrivateGraphEndpointsCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.ListPrivateGraphEndpointsCommand = ListPrivateGraphEndpointsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListTagsForResourceCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class ListTagsForResourceCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
ApiType: { type: "staticContextParams", value: `ControlPlane` },
|
|
15
|
-
})
|
|
16
|
-
.m(function (Command, cs, config, o) {
|
|
17
|
-
return [
|
|
18
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
19
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
20
|
-
];
|
|
21
|
-
})
|
|
22
|
-
.s("AmazonNeptuneGraph", "ListTagsForResource", {})
|
|
23
|
-
.n("NeptuneGraphClient", "ListTagsForResourceCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_ListTagsForResourceCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_ListTagsForResourceCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1
|
+
module.exports = require("../index.js");
|