@aws-sdk/client-neptune-graph 3.478.0 → 3.481.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/commands/CancelImportTaskCommand.js +19 -42
- package/dist-cjs/commands/CreateGraphCommand.js +19 -42
- package/dist-cjs/commands/CreateGraphSnapshotCommand.js +19 -42
- package/dist-cjs/commands/CreateGraphUsingImportTaskCommand.js +19 -42
- package/dist-cjs/commands/CreatePrivateGraphEndpointCommand.js +19 -42
- package/dist-cjs/commands/DeleteGraphCommand.js +19 -42
- package/dist-cjs/commands/DeleteGraphSnapshotCommand.js +19 -42
- package/dist-cjs/commands/DeletePrivateGraphEndpointCommand.js +19 -42
- package/dist-cjs/commands/GetGraphCommand.js +19 -42
- package/dist-cjs/commands/GetGraphSnapshotCommand.js +19 -42
- package/dist-cjs/commands/GetImportTaskCommand.js +19 -42
- package/dist-cjs/commands/GetPrivateGraphEndpointCommand.js +19 -42
- package/dist-cjs/commands/ListGraphSnapshotsCommand.js +19 -42
- package/dist-cjs/commands/ListGraphsCommand.js +19 -42
- package/dist-cjs/commands/ListImportTasksCommand.js +19 -42
- package/dist-cjs/commands/ListPrivateGraphEndpointsCommand.js +19 -42
- package/dist-cjs/commands/ListTagsForResourceCommand.js +19 -42
- package/dist-cjs/commands/ResetGraphCommand.js +19 -42
- package/dist-cjs/commands/RestoreGraphFromSnapshotCommand.js +19 -42
- package/dist-cjs/commands/TagResourceCommand.js +19 -42
- package/dist-cjs/commands/UntagResourceCommand.js +19 -42
- package/dist-cjs/commands/UpdateGraphCommand.js +19 -42
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-cjs/index.js +1 -0
- package/dist-cjs/waiters/index.js +11 -0
- package/dist-cjs/waiters/waitForGraphAvailable.js +54 -0
- package/dist-cjs/waiters/waitForGraphDeleted.js +39 -0
- package/dist-cjs/waiters/waitForGraphSnapshotAvailable.js +54 -0
- package/dist-cjs/waiters/waitForGraphSnapshotDeleted.js +39 -0
- package/dist-cjs/waiters/waitForImportTaskCancelled.js +45 -0
- package/dist-cjs/waiters/waitForImportTaskSuccessful.js +72 -0
- package/dist-cjs/waiters/waitForPrivateGraphEndpointAvailable.js +54 -0
- package/dist-cjs/waiters/waitForPrivateGraphEndpointDeleted.js +39 -0
- package/dist-es/commands/CancelImportTaskCommand.js +19 -42
- package/dist-es/commands/CreateGraphCommand.js +19 -42
- package/dist-es/commands/CreateGraphSnapshotCommand.js +19 -42
- package/dist-es/commands/CreateGraphUsingImportTaskCommand.js +19 -42
- package/dist-es/commands/CreatePrivateGraphEndpointCommand.js +19 -42
- package/dist-es/commands/DeleteGraphCommand.js +19 -42
- package/dist-es/commands/DeleteGraphSnapshotCommand.js +19 -42
- package/dist-es/commands/DeletePrivateGraphEndpointCommand.js +19 -42
- package/dist-es/commands/GetGraphCommand.js +19 -42
- package/dist-es/commands/GetGraphSnapshotCommand.js +19 -42
- package/dist-es/commands/GetImportTaskCommand.js +19 -42
- package/dist-es/commands/GetPrivateGraphEndpointCommand.js +19 -42
- package/dist-es/commands/ListGraphSnapshotsCommand.js +19 -42
- package/dist-es/commands/ListGraphsCommand.js +19 -42
- package/dist-es/commands/ListImportTasksCommand.js +19 -42
- package/dist-es/commands/ListPrivateGraphEndpointsCommand.js +19 -42
- package/dist-es/commands/ListTagsForResourceCommand.js +19 -42
- package/dist-es/commands/ResetGraphCommand.js +19 -42
- package/dist-es/commands/RestoreGraphFromSnapshotCommand.js +19 -42
- package/dist-es/commands/TagResourceCommand.js +19 -42
- package/dist-es/commands/UntagResourceCommand.js +19 -42
- package/dist-es/commands/UpdateGraphCommand.js +19 -42
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-es/index.js +1 -0
- package/dist-es/waiters/index.js +8 -0
- package/dist-es/waiters/waitForGraphAvailable.js +49 -0
- package/dist-es/waiters/waitForGraphDeleted.js +34 -0
- package/dist-es/waiters/waitForGraphSnapshotAvailable.js +49 -0
- package/dist-es/waiters/waitForGraphSnapshotDeleted.js +34 -0
- package/dist-es/waiters/waitForImportTaskCancelled.js +40 -0
- package/dist-es/waiters/waitForImportTaskSuccessful.js +67 -0
- package/dist-es/waiters/waitForPrivateGraphEndpointAvailable.js +49 -0
- package/dist-es/waiters/waitForPrivateGraphEndpointDeleted.js +34 -0
- package/dist-types/commands/CancelImportTaskCommand.d.ts +6 -21
- package/dist-types/commands/CreateGraphCommand.d.ts +6 -21
- package/dist-types/commands/CreateGraphSnapshotCommand.d.ts +6 -21
- package/dist-types/commands/CreateGraphUsingImportTaskCommand.d.ts +6 -21
- package/dist-types/commands/CreatePrivateGraphEndpointCommand.d.ts +6 -21
- package/dist-types/commands/DeleteGraphCommand.d.ts +6 -21
- package/dist-types/commands/DeleteGraphSnapshotCommand.d.ts +6 -21
- package/dist-types/commands/DeletePrivateGraphEndpointCommand.d.ts +6 -21
- package/dist-types/commands/GetGraphCommand.d.ts +6 -21
- package/dist-types/commands/GetGraphSnapshotCommand.d.ts +6 -21
- package/dist-types/commands/GetImportTaskCommand.d.ts +6 -21
- package/dist-types/commands/GetPrivateGraphEndpointCommand.d.ts +6 -21
- package/dist-types/commands/ListGraphSnapshotsCommand.d.ts +6 -21
- package/dist-types/commands/ListGraphsCommand.d.ts +6 -21
- package/dist-types/commands/ListImportTasksCommand.d.ts +6 -21
- package/dist-types/commands/ListPrivateGraphEndpointsCommand.d.ts +6 -21
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
- package/dist-types/commands/ResetGraphCommand.d.ts +6 -21
- package/dist-types/commands/RestoreGraphFromSnapshotCommand.d.ts +6 -21
- package/dist-types/commands/TagResourceCommand.d.ts +6 -21
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
- package/dist-types/commands/UpdateGraphCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commands/CancelImportTaskCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/CreateGraphCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/CreateGraphSnapshotCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/CreateGraphUsingImportTaskCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/CreatePrivateGraphEndpointCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DeleteGraphCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DeleteGraphSnapshotCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DeletePrivateGraphEndpointCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/GetGraphCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetGraphSnapshotCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetImportTaskCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetPrivateGraphEndpointCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListGraphSnapshotsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListGraphsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListImportTasksCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListPrivateGraphEndpointsCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ResetGraphCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/RestoreGraphFromSnapshotCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UpdateGraphCommand.d.ts +14 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/index.d.ts +8 -0
- package/dist-types/ts3.4/waiters/waitForGraphAvailable.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForGraphDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForGraphSnapshotAvailable.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForGraphSnapshotDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForImportTaskCancelled.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForImportTaskSuccessful.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPrivateGraphEndpointAvailable.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPrivateGraphEndpointDeleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +8 -0
- package/dist-types/waiters/waitForGraphAvailable.d.ts +14 -0
- package/dist-types/waiters/waitForGraphDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForGraphSnapshotAvailable.d.ts +14 -0
- package/dist-types/waiters/waitForGraphSnapshotDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForImportTaskCancelled.d.ts +14 -0
- package/dist-types/waiters/waitForImportTaskSuccessful.d.ts +14 -0
- package/dist-types/waiters/waitForPrivateGraphEndpointAvailable.d.ts +14 -0
- package/dist-types/waiters/waitForPrivateGraphEndpointDeleted.d.ts +14 -0
- package/package.json +10 -9
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CancelImportTaskCommand extends smithy_client_1.Command
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "NeptuneGraphClient";
|
|
30
|
-
const commandName = "CancelImportTaskCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: (_) => _,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "AmazonNeptuneGraph",
|
|
39
|
-
operation: "CancelImportTask",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_CancelImportTaskCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_CancelImportTaskCommand)(output, context);
|
|
50
|
-
}
|
|
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() {
|
|
51
28
|
}
|
|
52
29
|
exports.CancelImportTaskCommand = CancelImportTaskCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateGraphCommand extends smithy_client_1.Command
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "NeptuneGraphClient";
|
|
30
|
-
const commandName = "CreateGraphCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: (_) => _,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "AmazonNeptuneGraph",
|
|
39
|
-
operation: "CreateGraph",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_CreateGraphCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_CreateGraphCommand)(output, context);
|
|
50
|
-
}
|
|
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() {
|
|
51
28
|
}
|
|
52
29
|
exports.CreateGraphCommand = CreateGraphCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateGraphSnapshotCommand extends smithy_client_1.Command
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "NeptuneGraphClient";
|
|
30
|
-
const commandName = "CreateGraphSnapshotCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: (_) => _,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "AmazonNeptuneGraph",
|
|
39
|
-
operation: "CreateGraphSnapshot",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_CreateGraphSnapshotCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_CreateGraphSnapshotCommand)(output, context);
|
|
50
|
-
}
|
|
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() {
|
|
51
28
|
}
|
|
52
29
|
exports.CreateGraphSnapshotCommand = CreateGraphSnapshotCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreateGraphUsingImportTaskCommand extends smithy_client_1.Command
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "NeptuneGraphClient";
|
|
30
|
-
const commandName = "CreateGraphUsingImportTaskCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: (_) => _,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "AmazonNeptuneGraph",
|
|
39
|
-
operation: "CreateGraphUsingImportTask",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_CreateGraphUsingImportTaskCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_CreateGraphUsingImportTaskCommand)(output, context);
|
|
50
|
-
}
|
|
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() {
|
|
51
28
|
}
|
|
52
29
|
exports.CreateGraphUsingImportTaskCommand = CreateGraphUsingImportTaskCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class CreatePrivateGraphEndpointCommand extends smithy_client_1.Command
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "NeptuneGraphClient";
|
|
30
|
-
const commandName = "CreatePrivateGraphEndpointCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: (_) => _,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "AmazonNeptuneGraph",
|
|
39
|
-
operation: "CreatePrivateGraphEndpoint",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_CreatePrivateGraphEndpointCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_CreatePrivateGraphEndpointCommand)(output, context);
|
|
50
|
-
}
|
|
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() {
|
|
51
28
|
}
|
|
52
29
|
exports.CreatePrivateGraphEndpointCommand = CreatePrivateGraphEndpointCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteGraphCommand extends smithy_client_1.Command
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "NeptuneGraphClient";
|
|
30
|
-
const commandName = "DeleteGraphCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: (_) => _,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "AmazonNeptuneGraph",
|
|
39
|
-
operation: "DeleteGraph",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_DeleteGraphCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_DeleteGraphCommand)(output, context);
|
|
50
|
-
}
|
|
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() {
|
|
51
28
|
}
|
|
52
29
|
exports.DeleteGraphCommand = DeleteGraphCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeleteGraphSnapshotCommand extends smithy_client_1.Command
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "NeptuneGraphClient";
|
|
30
|
-
const commandName = "DeleteGraphSnapshotCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: (_) => _,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "AmazonNeptuneGraph",
|
|
39
|
-
operation: "DeleteGraphSnapshot",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_DeleteGraphSnapshotCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_DeleteGraphSnapshotCommand)(output, context);
|
|
50
|
-
}
|
|
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() {
|
|
51
28
|
}
|
|
52
29
|
exports.DeleteGraphSnapshotCommand = DeleteGraphSnapshotCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class DeletePrivateGraphEndpointCommand extends smithy_client_1.Command
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "NeptuneGraphClient";
|
|
30
|
-
const commandName = "DeletePrivateGraphEndpointCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: (_) => _,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "AmazonNeptuneGraph",
|
|
39
|
-
operation: "DeletePrivateGraphEndpoint",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_DeletePrivateGraphEndpointCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_DeletePrivateGraphEndpointCommand)(output, context);
|
|
50
|
-
}
|
|
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() {
|
|
51
28
|
}
|
|
52
29
|
exports.DeletePrivateGraphEndpointCommand = DeletePrivateGraphEndpointCommand;
|
|
@@ -5,48 +5,25 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
|
5
5
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const
|
|
8
|
+
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
9
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class GetGraphCommand extends smithy_client_1.Command
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
const { logger } = configuration;
|
|
29
|
-
const clientName = "NeptuneGraphClient";
|
|
30
|
-
const commandName = "GetGraphCommand";
|
|
31
|
-
const handlerExecutionContext = {
|
|
32
|
-
logger,
|
|
33
|
-
clientName,
|
|
34
|
-
commandName,
|
|
35
|
-
inputFilterSensitiveLog: (_) => _,
|
|
36
|
-
outputFilterSensitiveLog: (_) => _,
|
|
37
|
-
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
|
-
service: "AmazonNeptuneGraph",
|
|
39
|
-
operation: "GetGraph",
|
|
40
|
-
},
|
|
41
|
-
};
|
|
42
|
-
const { requestHandler } = configuration;
|
|
43
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
44
|
-
}
|
|
45
|
-
serialize(input, context) {
|
|
46
|
-
return (0, Aws_restJson1_1.se_GetGraphCommand)(input, context);
|
|
47
|
-
}
|
|
48
|
-
deserialize(output, context) {
|
|
49
|
-
return (0, Aws_restJson1_1.de_GetGraphCommand)(output, context);
|
|
50
|
-
}
|
|
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() {
|
|
51
28
|
}
|
|
52
29
|
exports.GetGraphCommand = GetGraphCommand;
|