@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
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ResetGraphCommand = 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 ResetGraphCommand 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", "ResetGraph", {})
|
|
23
|
-
.n("NeptuneGraphClient", "ResetGraphCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_ResetGraphCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_ResetGraphCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.ResetGraphCommand = ResetGraphCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RestoreGraphFromSnapshotCommand = 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 RestoreGraphFromSnapshotCommand 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", "RestoreGraphFromSnapshot", {})
|
|
23
|
-
.n("NeptuneGraphClient", "RestoreGraphFromSnapshotCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_RestoreGraphFromSnapshotCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_RestoreGraphFromSnapshotCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.RestoreGraphFromSnapshotCommand = RestoreGraphFromSnapshotCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TagResourceCommand = 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 TagResourceCommand 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", "TagResource", {})
|
|
23
|
-
.n("NeptuneGraphClient", "TagResourceCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_TagResourceCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_TagResourceCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.TagResourceCommand = TagResourceCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UntagResourceCommand = 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 UntagResourceCommand 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", "UntagResource", {})
|
|
23
|
-
.n("NeptuneGraphClient", "UntagResourceCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_UntagResourceCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_UntagResourceCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateGraphCommand = 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 UpdateGraphCommand 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", "UpdateGraph", {})
|
|
23
|
-
.n("NeptuneGraphClient", "UpdateGraphCommand")
|
|
24
|
-
.f(void 0, void 0)
|
|
25
|
-
.ser(Aws_restJson1_1.se_UpdateGraphCommand)
|
|
26
|
-
.de(Aws_restJson1_1.de_UpdateGraphCommand)
|
|
27
|
-
.build() {
|
|
28
|
-
}
|
|
29
|
-
exports.UpdateGraphCommand = UpdateGraphCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,25 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./CancelImportTaskCommand"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./CreateGraphCommand"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./CreateGraphSnapshotCommand"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./CreateGraphUsingImportTaskCommand"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./CreatePrivateGraphEndpointCommand"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./DeleteGraphCommand"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./DeleteGraphSnapshotCommand"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./DeletePrivateGraphEndpointCommand"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./GetGraphCommand"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./GetGraphSnapshotCommand"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("./GetImportTaskCommand"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./GetPrivateGraphEndpointCommand"), exports);
|
|
16
|
-
tslib_1.__exportStar(require("./ListGraphSnapshotsCommand"), exports);
|
|
17
|
-
tslib_1.__exportStar(require("./ListGraphsCommand"), exports);
|
|
18
|
-
tslib_1.__exportStar(require("./ListImportTasksCommand"), exports);
|
|
19
|
-
tslib_1.__exportStar(require("./ListPrivateGraphEndpointsCommand"), exports);
|
|
20
|
-
tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./ResetGraphCommand"), exports);
|
|
22
|
-
tslib_1.__exportStar(require("./RestoreGraphFromSnapshotCommand"), exports);
|
|
23
|
-
tslib_1.__exportStar(require("./TagResourceCommand"), exports);
|
|
24
|
-
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
25
|
-
tslib_1.__exportStar(require("./UpdateGraphCommand"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,18 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.commonParams = exports.resolveClientEndpointParameters = void 0;
|
|
4
|
-
const resolveClientEndpointParameters = (options) => {
|
|
5
|
-
return {
|
|
6
|
-
...options,
|
|
7
|
-
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
8
|
-
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
9
|
-
defaultSigningName: "neptune-graph",
|
|
10
|
-
};
|
|
11
|
-
};
|
|
12
|
-
exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
|
|
13
|
-
exports.commonParams = {
|
|
14
|
-
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
15
|
-
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
16
|
-
Region: { type: "builtInParams", name: "region" },
|
|
17
|
-
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
|
-
};
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("./index.js");
|