@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
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
RestoreGraphFromSnapshotInput,
|
|
11
5
|
RestoreGraphFromSnapshotOutput,
|
|
@@ -21,22 +15,16 @@ export interface RestoreGraphFromSnapshotCommandInput
|
|
|
21
15
|
export interface RestoreGraphFromSnapshotCommandOutput
|
|
22
16
|
extends RestoreGraphFromSnapshotOutput,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: RestoreGraphFromSnapshotCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: RestoreGraphFromSnapshotCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: NeptuneGraphClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const RestoreGraphFromSnapshotCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: RestoreGraphFromSnapshotCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
RestoreGraphFromSnapshotCommandInput,
|
|
38
|
-
RestoreGraphFromSnapshotCommandOutput
|
|
23
|
+
RestoreGraphFromSnapshotCommandOutput,
|
|
24
|
+
NeptuneGraphClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class RestoreGraphFromSnapshotCommand extends RestoreGraphFromSnapshotCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
NeptuneGraphClientResolvedConfig,
|
|
@@ -17,19 +11,16 @@ export interface TagResourceCommandInput extends TagResourceInput {}
|
|
|
17
11
|
export interface TagResourceCommandOutput
|
|
18
12
|
extends TagResourceOutput,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const TagResourceCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: TagResourceCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
TagResourceCommandInput,
|
|
19
|
+
TagResourceCommandOutput,
|
|
20
|
+
NeptuneGraphClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
NeptuneGraphClientResolvedConfig,
|
|
@@ -17,19 +11,16 @@ export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
|
17
11
|
export interface UntagResourceCommandOutput
|
|
18
12
|
extends UntagResourceOutput,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const UntagResourceCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: UntagResourceCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
UntagResourceCommandInput,
|
|
19
|
+
UntagResourceCommandOutput,
|
|
20
|
+
NeptuneGraphClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import { UpdateGraphInput, UpdateGraphOutput } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
NeptuneGraphClientResolvedConfig,
|
|
@@ -17,19 +11,16 @@ export interface UpdateGraphCommandInput extends UpdateGraphInput {}
|
|
|
17
11
|
export interface UpdateGraphCommandOutput
|
|
18
12
|
extends UpdateGraphOutput,
|
|
19
13
|
__MetadataBearer {}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
private serialize;
|
|
34
|
-
private deserialize;
|
|
35
|
-
}
|
|
14
|
+
declare const UpdateGraphCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: UpdateGraphCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
UpdateGraphCommandInput,
|
|
19
|
+
UpdateGraphCommandOutput,
|
|
20
|
+
NeptuneGraphClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
export declare class UpdateGraphCommand extends UpdateGraphCommand_base {}
|
|
@@ -25,6 +25,24 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
25
25
|
ClientInputEndpointParameters & {
|
|
26
26
|
defaultSigningName: string;
|
|
27
27
|
};
|
|
28
|
+
export declare const commonParams: {
|
|
29
|
+
readonly UseFIPS: {
|
|
30
|
+
readonly type: "builtInParams";
|
|
31
|
+
readonly name: "useFipsEndpoint";
|
|
32
|
+
};
|
|
33
|
+
readonly Endpoint: {
|
|
34
|
+
readonly type: "builtInParams";
|
|
35
|
+
readonly name: "endpoint";
|
|
36
|
+
};
|
|
37
|
+
readonly Region: {
|
|
38
|
+
readonly type: "builtInParams";
|
|
39
|
+
readonly name: "region";
|
|
40
|
+
};
|
|
41
|
+
readonly UseDualStack: {
|
|
42
|
+
readonly type: "builtInParams";
|
|
43
|
+
readonly name: "useDualstackEndpoint";
|
|
44
|
+
};
|
|
45
|
+
};
|
|
28
46
|
export interface EndpointParameters extends __EndpointParameters {
|
|
29
47
|
Region?: string;
|
|
30
48
|
UseFIPS?: boolean;
|
|
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { NeptuneGraphExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
+
export * from "./waiters";
|
|
8
9
|
export * from "./models";
|
|
9
10
|
import "@aws-sdk/util-endpoints";
|
|
10
11
|
export { NeptuneGraphServiceException } from "./models/NeptuneGraphServiceException";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from "./waitForGraphAvailable";
|
|
2
|
+
export * from "./waitForGraphDeleted";
|
|
3
|
+
export * from "./waitForGraphSnapshotAvailable";
|
|
4
|
+
export * from "./waitForGraphSnapshotDeleted";
|
|
5
|
+
export * from "./waitForImportTaskCancelled";
|
|
6
|
+
export * from "./waitForImportTaskSuccessful";
|
|
7
|
+
export * from "./waitForPrivateGraphEndpointAvailable";
|
|
8
|
+
export * from "./waitForPrivateGraphEndpointDeleted";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetGraphCommandInput } from "../commands/GetGraphCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
export declare const waitForGraphAvailable: (
|
|
5
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
6
|
+
input: GetGraphCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilGraphAvailable: (
|
|
9
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
10
|
+
input: GetGraphCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetGraphCommandInput } from "../commands/GetGraphCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
export declare const waitForGraphDeleted: (
|
|
5
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
6
|
+
input: GetGraphCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilGraphDeleted: (
|
|
9
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
10
|
+
input: GetGraphCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetGraphSnapshotCommandInput } from "../commands/GetGraphSnapshotCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
export declare const waitForGraphSnapshotAvailable: (
|
|
5
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
6
|
+
input: GetGraphSnapshotCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilGraphSnapshotAvailable: (
|
|
9
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
10
|
+
input: GetGraphSnapshotCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetGraphSnapshotCommandInput } from "../commands/GetGraphSnapshotCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
export declare const waitForGraphSnapshotDeleted: (
|
|
5
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
6
|
+
input: GetGraphSnapshotCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilGraphSnapshotDeleted: (
|
|
9
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
10
|
+
input: GetGraphSnapshotCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetImportTaskCommandInput } from "../commands/GetImportTaskCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
export declare const waitForImportTaskCancelled: (
|
|
5
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
6
|
+
input: GetImportTaskCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilImportTaskCancelled: (
|
|
9
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
10
|
+
input: GetImportTaskCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetImportTaskCommandInput } from "../commands/GetImportTaskCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
export declare const waitForImportTaskSuccessful: (
|
|
5
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
6
|
+
input: GetImportTaskCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilImportTaskSuccessful: (
|
|
9
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
10
|
+
input: GetImportTaskCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetPrivateGraphEndpointCommandInput } from "../commands/GetPrivateGraphEndpointCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
export declare const waitForPrivateGraphEndpointAvailable: (
|
|
5
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
6
|
+
input: GetPrivateGraphEndpointCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilPrivateGraphEndpointAvailable: (
|
|
9
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
10
|
+
input: GetPrivateGraphEndpointCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetPrivateGraphEndpointCommandInput } from "../commands/GetPrivateGraphEndpointCommand";
|
|
3
|
+
import { NeptuneGraphClient } from "../NeptuneGraphClient";
|
|
4
|
+
export declare const waitForPrivateGraphEndpointDeleted: (
|
|
5
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
6
|
+
input: GetPrivateGraphEndpointCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilPrivateGraphEndpointDeleted: (
|
|
9
|
+
params: WaiterConfiguration<NeptuneGraphClient>,
|
|
10
|
+
input: GetPrivateGraphEndpointCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from "./waitForGraphAvailable";
|
|
2
|
+
export * from "./waitForGraphDeleted";
|
|
3
|
+
export * from "./waitForGraphSnapshotAvailable";
|
|
4
|
+
export * from "./waitForGraphSnapshotDeleted";
|
|
5
|
+
export * from "./waitForImportTaskCancelled";
|
|
6
|
+
export * from "./waitForImportTaskSuccessful";
|
|
7
|
+
export * from "./waitForPrivateGraphEndpointAvailable";
|
|
8
|
+
export * from "./waitForPrivateGraphEndpointDeleted";
|
|
@@ -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 Available
|
|
6
|
+
* @deprecated Use waitUntilGraphAvailable instead. waitForGraphAvailable does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForGraphAvailable: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetGraphCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until Graph is Available
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetGraphCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilGraphAvailable: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetGraphCommandInput) => Promise<WaiterResult>;
|
|
@@ -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.481.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,9 +20,9 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.481.0",
|
|
24
|
+
"@aws-sdk/core": "3.481.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.481.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",
|
|
@@ -34,29 +34,30 @@
|
|
|
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",
|
|
37
|
-
"@smithy/core": "^1.2.
|
|
37
|
+
"@smithy/core": "^1.2.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^2.3.1",
|
|
39
39
|
"@smithy/hash-node": "^2.0.17",
|
|
40
40
|
"@smithy/invalid-dependency": "^2.0.15",
|
|
41
41
|
"@smithy/middleware-content-length": "^2.0.17",
|
|
42
42
|
"@smithy/middleware-endpoint": "^2.2.3",
|
|
43
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
+
"@smithy/middleware-retry": "^2.0.25",
|
|
44
44
|
"@smithy/middleware-serde": "^2.0.15",
|
|
45
45
|
"@smithy/middleware-stack": "^2.0.9",
|
|
46
46
|
"@smithy/node-config-provider": "^2.1.8",
|
|
47
47
|
"@smithy/node-http-handler": "^2.2.1",
|
|
48
48
|
"@smithy/protocol-http": "^3.0.11",
|
|
49
|
-
"@smithy/smithy-client": "^2.
|
|
49
|
+
"@smithy/smithy-client": "^2.2.0",
|
|
50
50
|
"@smithy/types": "^2.7.0",
|
|
51
51
|
"@smithy/url-parser": "^2.0.15",
|
|
52
52
|
"@smithy/util-base64": "^2.0.1",
|
|
53
53
|
"@smithy/util-body-length-browser": "^2.0.1",
|
|
54
54
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^2.0.23",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^2.0.30",
|
|
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": {
|