@aws-sdk/client-neptune-graph 3.952.0 → 3.953.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/index.js +420 -293
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CancelExportTaskCommand.js +2 -2
- package/dist-es/commands/CancelImportTaskCommand.js +2 -2
- package/dist-es/commands/CancelQueryCommand.js +2 -2
- package/dist-es/commands/CreateGraphCommand.js +2 -2
- package/dist-es/commands/CreateGraphSnapshotCommand.js +2 -2
- package/dist-es/commands/CreateGraphUsingImportTaskCommand.js +2 -2
- package/dist-es/commands/CreatePrivateGraphEndpointCommand.js +2 -2
- package/dist-es/commands/DeleteGraphCommand.js +2 -2
- package/dist-es/commands/DeleteGraphSnapshotCommand.js +2 -2
- package/dist-es/commands/DeletePrivateGraphEndpointCommand.js +2 -2
- package/dist-es/commands/ExecuteQueryCommand.js +2 -2
- package/dist-es/commands/GetExportTaskCommand.js +2 -2
- package/dist-es/commands/GetGraphCommand.js +2 -2
- package/dist-es/commands/GetGraphSnapshotCommand.js +2 -2
- package/dist-es/commands/GetGraphSummaryCommand.js +2 -2
- package/dist-es/commands/GetImportTaskCommand.js +2 -2
- package/dist-es/commands/GetPrivateGraphEndpointCommand.js +2 -2
- package/dist-es/commands/GetQueryCommand.js +2 -2
- package/dist-es/commands/ListExportTasksCommand.js +2 -2
- package/dist-es/commands/ListGraphSnapshotsCommand.js +2 -2
- package/dist-es/commands/ListGraphsCommand.js +2 -2
- package/dist-es/commands/ListImportTasksCommand.js +2 -2
- package/dist-es/commands/ListPrivateGraphEndpointsCommand.js +2 -2
- package/dist-es/commands/ListQueriesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ResetGraphCommand.js +2 -2
- package/dist-es/commands/RestoreGraphFromSnapshotCommand.js +2 -2
- package/dist-es/commands/StartExportTaskCommand.js +2 -2
- package/dist-es/commands/StartGraphCommand.js +2 -2
- package/dist-es/commands/StartImportTaskCommand.js +2 -2
- package/dist-es/commands/StopGraphCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateGraphCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +249 -249
- package/dist-types/NeptuneGraphClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +128 -152
- package/dist-types/ts3.4/NeptuneGraphClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +127 -154
- package/package.json +36 -36
|
@@ -27,7 +27,12 @@ const getRuntimeConfig = (config) => {
|
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
30
|
-
protocol: config?.protocol ??
|
|
30
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
31
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
32
|
+
defaultNamespace: "com.amazonaws.neptunegraph",
|
|
33
|
+
version: "2023-11-29",
|
|
34
|
+
serviceTarget: "AmazonNeptuneGraph",
|
|
35
|
+
},
|
|
31
36
|
sdkStreamMixin: config?.sdkStreamMixin ?? util_stream_1.sdkStreamMixin,
|
|
32
37
|
serviceId: config?.serviceId ?? "Neptune Graph",
|
|
33
38
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelExportTask } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelExportTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelExportTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class CancelExportTaskCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "CancelExportTask", {})
|
|
16
16
|
.n("NeptuneGraphClient", "CancelExportTaskCommand")
|
|
17
|
-
.sc(CancelExportTask)
|
|
17
|
+
.sc(CancelExportTask$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelImportTask } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelImportTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelImportTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class CancelImportTaskCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "CancelImportTask", {})
|
|
16
16
|
.n("NeptuneGraphClient", "CancelImportTaskCommand")
|
|
17
|
-
.sc(CancelImportTask)
|
|
17
|
+
.sc(CancelImportTask$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelQuery } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelQuery$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelQueryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class CancelQueryCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "CancelQuery", {})
|
|
16
16
|
.n("NeptuneGraphClient", "CancelQueryCommand")
|
|
17
|
-
.sc(CancelQuery)
|
|
17
|
+
.sc(CancelQuery$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateGraph } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateGraph$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateGraphCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class CreateGraphCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "CreateGraph", {})
|
|
16
16
|
.n("NeptuneGraphClient", "CreateGraphCommand")
|
|
17
|
-
.sc(CreateGraph)
|
|
17
|
+
.sc(CreateGraph$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateGraphSnapshot } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateGraphSnapshot$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateGraphSnapshotCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class CreateGraphSnapshotCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "CreateGraphSnapshot", {})
|
|
16
16
|
.n("NeptuneGraphClient", "CreateGraphSnapshotCommand")
|
|
17
|
-
.sc(CreateGraphSnapshot)
|
|
17
|
+
.sc(CreateGraphSnapshot$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateGraphUsingImportTask } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateGraphUsingImportTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateGraphUsingImportTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class CreateGraphUsingImportTaskCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "CreateGraphUsingImportTask", {})
|
|
16
16
|
.n("NeptuneGraphClient", "CreateGraphUsingImportTaskCommand")
|
|
17
|
-
.sc(CreateGraphUsingImportTask)
|
|
17
|
+
.sc(CreateGraphUsingImportTask$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreatePrivateGraphEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePrivateGraphEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePrivateGraphEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class CreatePrivateGraphEndpointCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "CreatePrivateGraphEndpoint", {})
|
|
16
16
|
.n("NeptuneGraphClient", "CreatePrivateGraphEndpointCommand")
|
|
17
|
-
.sc(CreatePrivateGraphEndpoint)
|
|
17
|
+
.sc(CreatePrivateGraphEndpoint$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteGraph } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteGraph$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteGraphCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DeleteGraphCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "DeleteGraph", {})
|
|
16
16
|
.n("NeptuneGraphClient", "DeleteGraphCommand")
|
|
17
|
-
.sc(DeleteGraph)
|
|
17
|
+
.sc(DeleteGraph$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteGraphSnapshot } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteGraphSnapshot$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteGraphSnapshotCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DeleteGraphSnapshotCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "DeleteGraphSnapshot", {})
|
|
16
16
|
.n("NeptuneGraphClient", "DeleteGraphSnapshotCommand")
|
|
17
|
-
.sc(DeleteGraphSnapshot)
|
|
17
|
+
.sc(DeleteGraphSnapshot$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePrivateGraphEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePrivateGraphEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePrivateGraphEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DeletePrivateGraphEndpointCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "DeletePrivateGraphEndpoint", {})
|
|
16
16
|
.n("NeptuneGraphClient", "DeletePrivateGraphEndpointCommand")
|
|
17
|
-
.sc(DeletePrivateGraphEndpoint)
|
|
17
|
+
.sc(DeletePrivateGraphEndpoint$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ExecuteQuery } from "../schemas/schemas_0";
|
|
4
|
+
import { ExecuteQuery$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ExecuteQueryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class ExecuteQueryCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "ExecuteQuery", {})
|
|
16
16
|
.n("NeptuneGraphClient", "ExecuteQueryCommand")
|
|
17
|
-
.sc(ExecuteQuery)
|
|
17
|
+
.sc(ExecuteQuery$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetExportTask } from "../schemas/schemas_0";
|
|
4
|
+
import { GetExportTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetExportTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class GetExportTaskCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "GetExportTask", {})
|
|
16
16
|
.n("NeptuneGraphClient", "GetExportTaskCommand")
|
|
17
|
-
.sc(GetExportTask)
|
|
17
|
+
.sc(GetExportTask$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetGraph } from "../schemas/schemas_0";
|
|
4
|
+
import { GetGraph$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetGraphCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class GetGraphCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "GetGraph", {})
|
|
16
16
|
.n("NeptuneGraphClient", "GetGraphCommand")
|
|
17
|
-
.sc(GetGraph)
|
|
17
|
+
.sc(GetGraph$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetGraphSnapshot } from "../schemas/schemas_0";
|
|
4
|
+
import { GetGraphSnapshot$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetGraphSnapshotCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class GetGraphSnapshotCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "GetGraphSnapshot", {})
|
|
16
16
|
.n("NeptuneGraphClient", "GetGraphSnapshotCommand")
|
|
17
|
-
.sc(GetGraphSnapshot)
|
|
17
|
+
.sc(GetGraphSnapshot$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetGraphSummary } from "../schemas/schemas_0";
|
|
4
|
+
import { GetGraphSummary$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetGraphSummaryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class GetGraphSummaryCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "GetGraphSummary", {})
|
|
16
16
|
.n("NeptuneGraphClient", "GetGraphSummaryCommand")
|
|
17
|
-
.sc(GetGraphSummary)
|
|
17
|
+
.sc(GetGraphSummary$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetImportTask } from "../schemas/schemas_0";
|
|
4
|
+
import { GetImportTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetImportTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class GetImportTaskCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "GetImportTask", {})
|
|
16
16
|
.n("NeptuneGraphClient", "GetImportTaskCommand")
|
|
17
|
-
.sc(GetImportTask)
|
|
17
|
+
.sc(GetImportTask$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetPrivateGraphEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { GetPrivateGraphEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetPrivateGraphEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class GetPrivateGraphEndpointCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "GetPrivateGraphEndpoint", {})
|
|
16
16
|
.n("NeptuneGraphClient", "GetPrivateGraphEndpointCommand")
|
|
17
|
-
.sc(GetPrivateGraphEndpoint)
|
|
17
|
+
.sc(GetPrivateGraphEndpoint$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetQuery } from "../schemas/schemas_0";
|
|
4
|
+
import { GetQuery$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetQueryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class GetQueryCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "GetQuery", {})
|
|
16
16
|
.n("NeptuneGraphClient", "GetQueryCommand")
|
|
17
|
-
.sc(GetQuery)
|
|
17
|
+
.sc(GetQuery$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListExportTasks } from "../schemas/schemas_0";
|
|
4
|
+
import { ListExportTasks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListExportTasksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class ListExportTasksCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "ListExportTasks", {})
|
|
16
16
|
.n("NeptuneGraphClient", "ListExportTasksCommand")
|
|
17
|
-
.sc(ListExportTasks)
|
|
17
|
+
.sc(ListExportTasks$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListGraphSnapshots } from "../schemas/schemas_0";
|
|
4
|
+
import { ListGraphSnapshots$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListGraphSnapshotsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class ListGraphSnapshotsCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "ListGraphSnapshots", {})
|
|
16
16
|
.n("NeptuneGraphClient", "ListGraphSnapshotsCommand")
|
|
17
|
-
.sc(ListGraphSnapshots)
|
|
17
|
+
.sc(ListGraphSnapshots$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListGraphs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListGraphs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListGraphsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class ListGraphsCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "ListGraphs", {})
|
|
16
16
|
.n("NeptuneGraphClient", "ListGraphsCommand")
|
|
17
|
-
.sc(ListGraphs)
|
|
17
|
+
.sc(ListGraphs$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListImportTasks } from "../schemas/schemas_0";
|
|
4
|
+
import { ListImportTasks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListImportTasksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class ListImportTasksCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "ListImportTasks", {})
|
|
16
16
|
.n("NeptuneGraphClient", "ListImportTasksCommand")
|
|
17
|
-
.sc(ListImportTasks)
|
|
17
|
+
.sc(ListImportTasks$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPrivateGraphEndpoints } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPrivateGraphEndpoints$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPrivateGraphEndpointsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class ListPrivateGraphEndpointsCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "ListPrivateGraphEndpoints", {})
|
|
16
16
|
.n("NeptuneGraphClient", "ListPrivateGraphEndpointsCommand")
|
|
17
|
-
.sc(ListPrivateGraphEndpoints)
|
|
17
|
+
.sc(ListPrivateGraphEndpoints$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListQueries } from "../schemas/schemas_0";
|
|
4
|
+
import { ListQueries$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListQueriesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class ListQueriesCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "ListQueries", {})
|
|
16
16
|
.n("NeptuneGraphClient", "ListQueriesCommand")
|
|
17
|
-
.sc(ListQueries)
|
|
17
|
+
.sc(ListQueries$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "ListTagsForResource", {})
|
|
16
16
|
.n("NeptuneGraphClient", "ListTagsForResourceCommand")
|
|
17
|
-
.sc(ListTagsForResource)
|
|
17
|
+
.sc(ListTagsForResource$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ResetGraph } from "../schemas/schemas_0";
|
|
4
|
+
import { ResetGraph$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ResetGraphCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class ResetGraphCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "ResetGraph", {})
|
|
16
16
|
.n("NeptuneGraphClient", "ResetGraphCommand")
|
|
17
|
-
.sc(ResetGraph)
|
|
17
|
+
.sc(ResetGraph$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RestoreGraphFromSnapshot } from "../schemas/schemas_0";
|
|
4
|
+
import { RestoreGraphFromSnapshot$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RestoreGraphFromSnapshotCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class RestoreGraphFromSnapshotCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "RestoreGraphFromSnapshot", {})
|
|
16
16
|
.n("NeptuneGraphClient", "RestoreGraphFromSnapshotCommand")
|
|
17
|
-
.sc(RestoreGraphFromSnapshot)
|
|
17
|
+
.sc(RestoreGraphFromSnapshot$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartExportTask } from "../schemas/schemas_0";
|
|
4
|
+
import { StartExportTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartExportTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class StartExportTaskCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "StartExportTask", {})
|
|
16
16
|
.n("NeptuneGraphClient", "StartExportTaskCommand")
|
|
17
|
-
.sc(StartExportTask)
|
|
17
|
+
.sc(StartExportTask$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartGraph } from "../schemas/schemas_0";
|
|
4
|
+
import { StartGraph$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartGraphCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class StartGraphCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "StartGraph", {})
|
|
16
16
|
.n("NeptuneGraphClient", "StartGraphCommand")
|
|
17
|
-
.sc(StartGraph)
|
|
17
|
+
.sc(StartGraph$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartImportTask } from "../schemas/schemas_0";
|
|
4
|
+
import { StartImportTask$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartImportTaskCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class StartImportTaskCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "StartImportTask", {})
|
|
16
16
|
.n("NeptuneGraphClient", "StartImportTaskCommand")
|
|
17
|
-
.sc(StartImportTask)
|
|
17
|
+
.sc(StartImportTask$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopGraph } from "../schemas/schemas_0";
|
|
4
|
+
import { StopGraph$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopGraphCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class StopGraphCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "StopGraph", {})
|
|
16
16
|
.n("NeptuneGraphClient", "StopGraphCommand")
|
|
17
|
-
.sc(StopGraph)
|
|
17
|
+
.sc(StopGraph$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class TagResourceCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "TagResource", {})
|
|
16
16
|
.n("NeptuneGraphClient", "TagResourceCommand")
|
|
17
|
-
.sc(TagResource)
|
|
17
|
+
.sc(TagResource$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class UntagResourceCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "UntagResource", {})
|
|
16
16
|
.n("NeptuneGraphClient", "UntagResourceCommand")
|
|
17
|
-
.sc(UntagResource)
|
|
17
|
+
.sc(UntagResource$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateGraph } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateGraph$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateGraphCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class UpdateGraphCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("AmazonNeptuneGraph", "UpdateGraph", {})
|
|
16
16
|
.n("NeptuneGraphClient", "UpdateGraphCommand")
|
|
17
|
-
.sc(UpdateGraph)
|
|
17
|
+
.sc(UpdateGraph$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -24,7 +24,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
24
24
|
},
|
|
25
25
|
],
|
|
26
26
|
logger: config?.logger ?? new NoOpLogger(),
|
|
27
|
-
protocol: config?.protocol ??
|
|
27
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
28
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
29
|
+
defaultNamespace: "com.amazonaws.neptunegraph",
|
|
30
|
+
version: "2023-11-29",
|
|
31
|
+
serviceTarget: "AmazonNeptuneGraph",
|
|
32
|
+
},
|
|
28
33
|
sdkStreamMixin: config?.sdkStreamMixin ?? sdkStreamMixin,
|
|
29
34
|
serviceId: config?.serviceId ?? "Neptune Graph",
|
|
30
35
|
urlParser: config?.urlParser ?? parseUrl,
|