@aws-sdk/client-neptune-graph 3.890.0 → 3.891.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-types/commands/CancelExportTaskCommand.d.ts +2 -0
- package/dist-types/commands/CancelImportTaskCommand.d.ts +2 -0
- package/dist-types/commands/CancelQueryCommand.d.ts +2 -0
- package/dist-types/commands/CreateGraphCommand.d.ts +2 -0
- package/dist-types/commands/CreateGraphSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/CreateGraphUsingImportTaskCommand.d.ts +2 -0
- package/dist-types/commands/CreatePrivateGraphEndpointCommand.d.ts +2 -0
- package/dist-types/commands/DeleteGraphCommand.d.ts +2 -0
- package/dist-types/commands/DeleteGraphSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/DeletePrivateGraphEndpointCommand.d.ts +2 -0
- package/dist-types/commands/ExecuteQueryCommand.d.ts +2 -0
- package/dist-types/commands/GetExportTaskCommand.d.ts +2 -0
- package/dist-types/commands/GetGraphCommand.d.ts +2 -0
- package/dist-types/commands/GetGraphSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/GetGraphSummaryCommand.d.ts +2 -0
- package/dist-types/commands/GetImportTaskCommand.d.ts +2 -0
- package/dist-types/commands/GetPrivateGraphEndpointCommand.d.ts +2 -0
- package/dist-types/commands/GetQueryCommand.d.ts +2 -0
- package/dist-types/commands/ListExportTasksCommand.d.ts +2 -0
- package/dist-types/commands/ListGraphSnapshotsCommand.d.ts +2 -0
- package/dist-types/commands/ListGraphsCommand.d.ts +2 -0
- package/dist-types/commands/ListImportTasksCommand.d.ts +2 -0
- package/dist-types/commands/ListPrivateGraphEndpointsCommand.d.ts +2 -0
- package/dist-types/commands/ListQueriesCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/ResetGraphCommand.d.ts +2 -0
- package/dist-types/commands/RestoreGraphFromSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/StartExportTaskCommand.d.ts +2 -0
- package/dist-types/commands/StartGraphCommand.d.ts +2 -0
- package/dist-types/commands/StartImportTaskCommand.d.ts +2 -0
- package/dist-types/commands/StopGraphCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateGraphCommand.d.ts +2 -0
- package/package.json +10 -10
|
@@ -33,6 +33,8 @@ declare const CancelExportTaskCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, CancelExportTaskCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, CancelExportTaskCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // CancelExportTaskInput
|
|
38
40
|
* taskIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CancelImportTaskCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, CancelImportTaskCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, CancelImportTaskCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // CancelImportTaskInput
|
|
38
40
|
* taskIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CancelQueryCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, CancelQueryCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, CancelQueryCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // CancelQueryInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CreateGraphCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, CreateGraphCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, CreateGraphCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // CreateGraphInput
|
|
38
40
|
* graphName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CreateGraphSnapshotCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, CreateGraphSnapshotCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, CreateGraphSnapshotCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // CreateGraphSnapshotInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CreateGraphUsingImportTaskCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, CreateGraphUsingImportTaskCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, CreateGraphUsingImportTaskCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // CreateGraphUsingImportTaskInput
|
|
38
40
|
* graphName: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const CreatePrivateGraphEndpointCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, CreatePrivateGraphEndpointCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, CreatePrivateGraphEndpointCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // CreatePrivateGraphEndpointInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteGraphCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, DeleteGraphCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, DeleteGraphCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // DeleteGraphInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteGraphSnapshotCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, DeleteGraphSnapshotCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, DeleteGraphSnapshotCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // DeleteGraphSnapshotInput
|
|
38
40
|
* snapshotIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeletePrivateGraphEndpointCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, DeletePrivateGraphEndpointCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, DeletePrivateGraphEndpointCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // DeletePrivateGraphEndpointInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const ExecuteQueryCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { NeptuneGraphClient, ExecuteQueryCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
36
36
|
* // const { NeptuneGraphClient, ExecuteQueryCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
37
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
38
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
37
39
|
* const client = new NeptuneGraphClient(config);
|
|
38
40
|
* const input = { // ExecuteQueryInput
|
|
39
41
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetExportTaskCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, GetExportTaskCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, GetExportTaskCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // GetExportTaskInput
|
|
38
40
|
* taskIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetGraphCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, GetGraphCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, GetGraphCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // GetGraphInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetGraphSnapshotCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, GetGraphSnapshotCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, GetGraphSnapshotCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // GetGraphSnapshotInput
|
|
38
40
|
* snapshotIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetGraphSummaryCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, GetGraphSummaryCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, GetGraphSummaryCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // GetGraphSummaryInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetImportTaskCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, GetImportTaskCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, GetImportTaskCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // GetImportTaskInput
|
|
38
40
|
* taskIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetPrivateGraphEndpointCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, GetPrivateGraphEndpointCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, GetPrivateGraphEndpointCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // GetPrivateGraphEndpointInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetQueryCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, GetQueryCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, GetQueryCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // GetQueryInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListExportTasksCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, ListExportTasksCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, ListExportTasksCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // ListExportTasksInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListGraphSnapshotsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, ListGraphSnapshotsCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, ListGraphSnapshotsCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // ListGraphSnapshotsInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListGraphsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, ListGraphsCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, ListGraphsCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // ListGraphsInput
|
|
38
40
|
* nextToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListImportTasksCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, ListImportTasksCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, ListImportTasksCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // ListImportTasksInput
|
|
38
40
|
* nextToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListPrivateGraphEndpointsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, ListPrivateGraphEndpointsCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, ListPrivateGraphEndpointsCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // ListPrivateGraphEndpointsInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListQueriesCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, ListQueriesCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, ListQueriesCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // ListQueriesInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, ListTagsForResourceCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, ListTagsForResourceCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // ListTagsForResourceInput
|
|
38
40
|
* resourceArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ResetGraphCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, ResetGraphCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, ResetGraphCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // ResetGraphInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const RestoreGraphFromSnapshotCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, RestoreGraphFromSnapshotCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, RestoreGraphFromSnapshotCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // RestoreGraphFromSnapshotInput
|
|
38
40
|
* snapshotIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const StartExportTaskCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, StartExportTaskCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, StartExportTaskCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // StartExportTaskInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const StartGraphCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, StartGraphCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, StartGraphCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // StartGraphInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const StartImportTaskCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, StartImportTaskCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, StartImportTaskCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // StartImportTaskInput
|
|
38
40
|
* importOptions: { // ImportOptions Union: only one key present
|
|
@@ -33,6 +33,8 @@ declare const StopGraphCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, StopGraphCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, StopGraphCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // StopGraphInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const TagResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, TagResourceCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, TagResourceCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // TagResourceInput
|
|
38
40
|
* resourceArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UntagResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, UntagResourceCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, UntagResourceCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // UntagResourceInput
|
|
38
40
|
* resourceArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UpdateGraphCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { NeptuneGraphClient, UpdateGraphCommand } from "@aws-sdk/client-neptune-graph"; // ES Modules import
|
|
35
35
|
* // const { NeptuneGraphClient, UpdateGraphCommand } = require("@aws-sdk/client-neptune-graph"); // CommonJS import
|
|
36
|
+
* // import type { NeptuneGraphClientConfig } from "@aws-sdk/client-neptune-graph";
|
|
37
|
+
* const config = {}; // type is NeptuneGraphClientConfig
|
|
36
38
|
* const client = new NeptuneGraphClient(config);
|
|
37
39
|
* const input = { // UpdateGraphInput
|
|
38
40
|
* graphIdentifier: "STRING_VALUE", // required
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-neptune-graph",
|
|
3
3
|
"description": "AWS SDK for JavaScript Neptune Graph Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.891.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-neptune-graph",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.890.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.891.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.891.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.891.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.891.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.891.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.890.0",
|
|
30
30
|
"@aws-sdk/types": "3.887.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.891.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.887.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.891.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.2.2",
|
|
35
35
|
"@smithy/core": "^3.11.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
40
40
|
"@smithy/middleware-endpoint": "^4.2.2",
|
|
41
|
-
"@smithy/middleware-retry": "^4.2.
|
|
41
|
+
"@smithy/middleware-retry": "^4.2.3",
|
|
42
42
|
"@smithy/middleware-serde": "^4.1.1",
|
|
43
43
|
"@smithy/middleware-stack": "^4.1.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.2.2",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@smithy/util-defaults-mode-node": "^4.1.2",
|
|
55
55
|
"@smithy/util-endpoints": "^3.1.2",
|
|
56
56
|
"@smithy/util-middleware": "^4.1.1",
|
|
57
|
-
"@smithy/util-retry": "^4.1.
|
|
57
|
+
"@smithy/util-retry": "^4.1.2",
|
|
58
58
|
"@smithy/util-stream": "^4.3.1",
|
|
59
59
|
"@smithy/util-utf8": "^4.1.0",
|
|
60
60
|
"@smithy/util-waiter": "^4.1.1",
|