@aws-sdk/client-neptune-graph 3.477.0 → 3.479.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 +1 -0
- package/dist-cjs/pagination/ListGraphSnapshotsPaginator.js +2 -24
- package/dist-cjs/pagination/ListGraphsPaginator.js +2 -24
- package/dist-cjs/pagination/ListImportTasksPaginator.js +2 -24
- package/dist-cjs/pagination/ListPrivateGraphEndpointsPaginator.js +2 -24
- 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/index.js +1 -0
- package/dist-es/pagination/ListGraphSnapshotsPaginator.js +2 -23
- package/dist-es/pagination/ListGraphsPaginator.js +2 -23
- package/dist-es/pagination/ListImportTasksPaginator.js +2 -23
- package/dist-es/pagination/ListPrivateGraphEndpointsPaginator.js +2 -23
- 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/index.d.ts +1 -0
- package/dist-types/pagination/ListGraphSnapshotsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGraphsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListImportTasksPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPrivateGraphEndpointsPaginator.d.ts +1 -1
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/pagination/ListGraphSnapshotsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListGraphsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListImportTasksPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListPrivateGraphEndpointsPaginator.d.ts +3 -3
- 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 +6 -5
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetGraphCommandInput } from "../commands/GetGraphCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
/**
|
|
5
|
+
* Wait until Graph is Deleted
|
|
6
|
+
* @deprecated Use waitUntilGraphDeleted instead. waitForGraphDeleted does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForGraphDeleted: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetGraphCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until Graph is Deleted
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetGraphCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilGraphDeleted: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetGraphCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetGraphSnapshotCommandInput } from "../commands/GetGraphSnapshotCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
/**
|
|
5
|
+
* Wait until GraphSnapshot is Available
|
|
6
|
+
* @deprecated Use waitUntilGraphSnapshotAvailable instead. waitForGraphSnapshotAvailable does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForGraphSnapshotAvailable: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetGraphSnapshotCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until GraphSnapshot is Available
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetGraphSnapshotCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilGraphSnapshotAvailable: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetGraphSnapshotCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetGraphSnapshotCommandInput } from "../commands/GetGraphSnapshotCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
/**
|
|
5
|
+
* Wait until GraphSnapshot is Deleted
|
|
6
|
+
* @deprecated Use waitUntilGraphSnapshotDeleted instead. waitForGraphSnapshotDeleted does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForGraphSnapshotDeleted: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetGraphSnapshotCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until GraphSnapshot is Deleted
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetGraphSnapshotCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilGraphSnapshotDeleted: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetGraphSnapshotCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetImportTaskCommandInput } from "../commands/GetImportTaskCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
/**
|
|
5
|
+
* Wait until Import Task is Cancelled
|
|
6
|
+
* @deprecated Use waitUntilImportTaskCancelled instead. waitForImportTaskCancelled does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForImportTaskCancelled: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetImportTaskCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until Import Task is Cancelled
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetImportTaskCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilImportTaskCancelled: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetImportTaskCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetImportTaskCommandInput } from "../commands/GetImportTaskCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
/**
|
|
5
|
+
* Wait until Import Task is Successful
|
|
6
|
+
* @deprecated Use waitUntilImportTaskSuccessful instead. waitForImportTaskSuccessful does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForImportTaskSuccessful: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetImportTaskCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until Import Task is Successful
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetImportTaskCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilImportTaskSuccessful: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetImportTaskCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetPrivateGraphEndpointCommandInput } from "../commands/GetPrivateGraphEndpointCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
/**
|
|
5
|
+
* Wait until PrivateGraphEndpoint is Available
|
|
6
|
+
* @deprecated Use waitUntilPrivateGraphEndpointAvailable instead. waitForPrivateGraphEndpointAvailable does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForPrivateGraphEndpointAvailable: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetPrivateGraphEndpointCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until PrivateGraphEndpoint is Available
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetPrivateGraphEndpointCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilPrivateGraphEndpointAvailable: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetPrivateGraphEndpointCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetPrivateGraphEndpointCommandInput } from "../commands/GetPrivateGraphEndpointCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
/**
|
|
5
|
+
* Wait until PrivateGraphEndpoint is Deleted
|
|
6
|
+
* @deprecated Use waitUntilPrivateGraphEndpointDeleted instead. waitForPrivateGraphEndpointDeleted does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForPrivateGraphEndpointDeleted: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetPrivateGraphEndpointCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until PrivateGraphEndpoint is Deleted
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetPrivateGraphEndpointCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilPrivateGraphEndpointDeleted: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetPrivateGraphEndpointCommandInput) => Promise<WaiterResult>;
|
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.479.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.478.0",
|
|
24
24
|
"@aws-sdk/core": "3.477.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.478.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.468.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.468.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.478.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.470.0",
|
|
32
32
|
"@aws-sdk/types": "3.468.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.478.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.470.0",
|
|
36
36
|
"@smithy/config-resolver": "^2.0.21",
|
|
@@ -57,6 +57,7 @@
|
|
|
57
57
|
"@smithy/util-endpoints": "^1.0.7",
|
|
58
58
|
"@smithy/util-retry": "^2.0.8",
|
|
59
59
|
"@smithy/util-utf8": "^2.0.2",
|
|
60
|
+
"@smithy/util-waiter": "^2.0.15",
|
|
60
61
|
"tslib": "^2.5.0"
|
|
61
62
|
},
|
|
62
63
|
"devDependencies": {
|