@aws-sdk/client-neptune-graph 3.504.0 → 3.505.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/README.md +43 -3
- package/dist-cjs/commands/CancelQueryCommand.js +1 -0
- package/dist-cjs/commands/ExecuteQueryCommand.js +1 -0
- package/dist-cjs/commands/GetGraphSummaryCommand.js +1 -0
- package/dist-cjs/commands/GetQueryCommand.js +1 -0
- package/dist-cjs/commands/ListQueriesCommand.js +1 -0
- package/dist-cjs/index.js +624 -41
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/NeptuneGraph.js +10 -0
- package/dist-es/commands/CancelQueryCommand.js +25 -0
- package/dist-es/commands/ExecuteQueryCommand.js +26 -0
- package/dist-es/commands/GetGraphSummaryCommand.js +25 -0
- package/dist-es/commands/GetQueryCommand.js +25 -0
- package/dist-es/commands/ListQueriesCommand.js +25 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +91 -29
- package/dist-es/protocols/Aws_restJson1.js +385 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/NeptuneGraph.d.ts +38 -3
- package/dist-types/NeptuneGraphClient.d.ts +16 -6
- package/dist-types/commands/CancelImportTaskCommand.d.ts +2 -2
- package/dist-types/commands/CancelQueryCommand.d.ts +72 -0
- package/dist-types/commands/CreateGraphCommand.d.ts +1 -1
- package/dist-types/commands/CreateGraphSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/CreateGraphUsingImportTaskCommand.d.ts +1 -1
- package/dist-types/commands/CreatePrivateGraphEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DeleteGraphCommand.d.ts +1 -1
- package/dist-types/commands/DeleteGraphSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/DeletePrivateGraphEndpointCommand.d.ts +1 -1
- package/dist-types/commands/ExecuteQueryCommand.d.ts +90 -0
- package/dist-types/commands/GetGraphCommand.d.ts +1 -1
- package/dist-types/commands/GetGraphSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/GetGraphSummaryCommand.d.ts +120 -0
- package/dist-types/commands/GetImportTaskCommand.d.ts +1 -1
- package/dist-types/commands/GetPrivateGraphEndpointCommand.d.ts +1 -1
- package/dist-types/commands/GetQueryCommand.d.ts +78 -0
- package/dist-types/commands/ListGraphSnapshotsCommand.d.ts +1 -1
- package/dist-types/commands/ListImportTasksCommand.d.ts +1 -1
- package/dist-types/commands/ListPrivateGraphEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/ListQueriesCommand.d.ts +80 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ResetGraphCommand.d.ts +1 -1
- package/dist-types/commands/RestoreGraphFromSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGraphCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +522 -78
- package/dist-types/protocols/Aws_restJson1.d.ts +46 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/NeptuneGraph.d.ts +85 -0
- package/dist-types/ts3.4/NeptuneGraphClient.d.ts +32 -0
- package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +24 -0
- package/dist-types/ts3.4/commands/ExecuteQueryCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetGraphSummaryCommand.d.ts +29 -0
- package/dist-types/ts3.4/commands/GetQueryCommand.d.ts +26 -0
- package/dist-types/ts3.4/commands/ListQueriesCommand.d.ts +26 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +182 -44
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +64 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +2 -1
|
@@ -1,5 +1,61 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { StreamingBlobTypes } from "@smithy/types";
|
|
2
3
|
import { NeptuneGraphServiceException as __BaseException } from "./NeptuneGraphServiceException";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export interface CancelQueryInput {
|
|
12
|
+
graphIdentifier: string | undefined;
|
|
13
|
+
queryId: string | undefined;
|
|
14
|
+
}
|
|
15
|
+
export declare class InternalServerException extends __BaseException {
|
|
16
|
+
readonly name: "InternalServerException";
|
|
17
|
+
readonly $fault: "server";
|
|
18
|
+
$retryable: {};
|
|
19
|
+
constructor(
|
|
20
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
24
|
+
readonly name: "ResourceNotFoundException";
|
|
25
|
+
readonly $fault: "client";
|
|
26
|
+
constructor(
|
|
27
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
export declare class ThrottlingException extends __BaseException {
|
|
31
|
+
readonly name: "ThrottlingException";
|
|
32
|
+
readonly $fault: "client";
|
|
33
|
+
$retryable: {
|
|
34
|
+
throttling: boolean;
|
|
35
|
+
};
|
|
36
|
+
constructor(
|
|
37
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
export declare const ValidationExceptionReason: {
|
|
41
|
+
readonly BAD_REQUEST: "BAD_REQUEST";
|
|
42
|
+
readonly CONSTRAINT_VIOLATION: "CONSTRAINT_VIOLATION";
|
|
43
|
+
readonly ILLEGAL_ARGUMENT: "ILLEGAL_ARGUMENT";
|
|
44
|
+
readonly MALFORMED_QUERY: "MALFORMED_QUERY";
|
|
45
|
+
readonly QUERY_CANCELLED: "QUERY_CANCELLED";
|
|
46
|
+
readonly QUERY_TOO_LARGE: "QUERY_TOO_LARGE";
|
|
47
|
+
readonly UNSUPPORTED_OPERATION: "UNSUPPORTED_OPERATION";
|
|
48
|
+
};
|
|
49
|
+
export type ValidationExceptionReason =
|
|
50
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
51
|
+
export declare class ValidationException extends __BaseException {
|
|
52
|
+
readonly name: "ValidationException";
|
|
53
|
+
readonly $fault: "client";
|
|
54
|
+
reason?: ValidationExceptionReason;
|
|
55
|
+
constructor(
|
|
56
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
3
59
|
export declare const ConflictExceptionReason: {
|
|
4
60
|
readonly CONCURRENT_MODIFICATION: "CONCURRENT_MODIFICATION";
|
|
5
61
|
};
|
|
@@ -11,6 +67,106 @@ export declare class ConflictException extends __BaseException {
|
|
|
11
67
|
reason?: ConflictExceptionReason;
|
|
12
68
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
13
69
|
}
|
|
70
|
+
export declare const ExplainMode: {
|
|
71
|
+
readonly DETAILS: "DETAILS";
|
|
72
|
+
readonly STATIC: "STATIC";
|
|
73
|
+
};
|
|
74
|
+
export type ExplainMode = (typeof ExplainMode)[keyof typeof ExplainMode];
|
|
75
|
+
export declare const QueryLanguage: {
|
|
76
|
+
readonly OPEN_CYPHER: "OPEN_CYPHER";
|
|
77
|
+
};
|
|
78
|
+
export type QueryLanguage = (typeof QueryLanguage)[keyof typeof QueryLanguage];
|
|
79
|
+
export declare const PlanCacheType: {
|
|
80
|
+
readonly AUTO: "AUTO";
|
|
81
|
+
readonly DISABLED: "DISABLED";
|
|
82
|
+
readonly ENABLED: "ENABLED";
|
|
83
|
+
};
|
|
84
|
+
export type PlanCacheType = (typeof PlanCacheType)[keyof typeof PlanCacheType];
|
|
85
|
+
export interface ExecuteQueryInput {
|
|
86
|
+
graphIdentifier: string | undefined;
|
|
87
|
+
queryString: string | undefined;
|
|
88
|
+
language: QueryLanguage | undefined;
|
|
89
|
+
planCache?: PlanCacheType;
|
|
90
|
+
explainMode?: ExplainMode;
|
|
91
|
+
queryTimeoutMilliseconds?: number;
|
|
92
|
+
}
|
|
93
|
+
export interface ExecuteQueryOutput {
|
|
94
|
+
payload: StreamingBlobTypes | undefined;
|
|
95
|
+
}
|
|
96
|
+
export declare const UnprocessableExceptionReason: {
|
|
97
|
+
readonly INTERNAL_LIMIT_EXCEEDED: "INTERNAL_LIMIT_EXCEEDED";
|
|
98
|
+
readonly MEMORY_LIMIT_EXCEEDED: "MEMORY_LIMIT_EXCEEDED";
|
|
99
|
+
readonly PARTITION_FULL: "PARTITION_FULL";
|
|
100
|
+
readonly QUERY_TIMEOUT: "QUERY_TIMEOUT";
|
|
101
|
+
readonly STORAGE_LIMIT_EXCEEDED: "STORAGE_LIMIT_EXCEEDED";
|
|
102
|
+
};
|
|
103
|
+
export type UnprocessableExceptionReason =
|
|
104
|
+
(typeof UnprocessableExceptionReason)[keyof typeof UnprocessableExceptionReason];
|
|
105
|
+
export declare class UnprocessableException extends __BaseException {
|
|
106
|
+
readonly name: "UnprocessableException";
|
|
107
|
+
readonly $fault: "client";
|
|
108
|
+
reason: UnprocessableExceptionReason | undefined;
|
|
109
|
+
constructor(
|
|
110
|
+
opts: __ExceptionOptionType<UnprocessableException, __BaseException>
|
|
111
|
+
);
|
|
112
|
+
}
|
|
113
|
+
export declare const GraphSummaryMode: {
|
|
114
|
+
readonly BASIC: "BASIC";
|
|
115
|
+
readonly DETAILED: "DETAILED";
|
|
116
|
+
};
|
|
117
|
+
export type GraphSummaryMode =
|
|
118
|
+
(typeof GraphSummaryMode)[keyof typeof GraphSummaryMode];
|
|
119
|
+
export interface GetGraphSummaryInput {
|
|
120
|
+
graphIdentifier: string | undefined;
|
|
121
|
+
mode?: GraphSummaryMode;
|
|
122
|
+
}
|
|
123
|
+
export interface EdgeStructure {
|
|
124
|
+
count?: number;
|
|
125
|
+
edgeProperties?: string[];
|
|
126
|
+
}
|
|
127
|
+
export interface NodeStructure {
|
|
128
|
+
count?: number;
|
|
129
|
+
nodeProperties?: string[];
|
|
130
|
+
distinctOutgoingEdgeLabels?: string[];
|
|
131
|
+
}
|
|
132
|
+
export interface GraphDataSummary {
|
|
133
|
+
numNodes?: number;
|
|
134
|
+
numEdges?: number;
|
|
135
|
+
numNodeLabels?: number;
|
|
136
|
+
numEdgeLabels?: number;
|
|
137
|
+
nodeLabels?: string[];
|
|
138
|
+
edgeLabels?: string[];
|
|
139
|
+
numNodeProperties?: number;
|
|
140
|
+
numEdgeProperties?: number;
|
|
141
|
+
nodeProperties?: Record<string, number>[];
|
|
142
|
+
edgeProperties?: Record<string, number>[];
|
|
143
|
+
totalNodePropertyValues?: number;
|
|
144
|
+
totalEdgePropertyValues?: number;
|
|
145
|
+
nodeStructures?: NodeStructure[];
|
|
146
|
+
edgeStructures?: EdgeStructure[];
|
|
147
|
+
}
|
|
148
|
+
export interface GetGraphSummaryOutput {
|
|
149
|
+
version?: string;
|
|
150
|
+
lastStatisticsComputationTime?: Date;
|
|
151
|
+
graphSummary?: GraphDataSummary;
|
|
152
|
+
}
|
|
153
|
+
export interface GetQueryInput {
|
|
154
|
+
graphIdentifier: string | undefined;
|
|
155
|
+
queryId: string | undefined;
|
|
156
|
+
}
|
|
157
|
+
export declare const QueryState: {
|
|
158
|
+
readonly CANCELLING: "CANCELLING";
|
|
159
|
+
readonly RUNNING: "RUNNING";
|
|
160
|
+
readonly WAITING: "WAITING";
|
|
161
|
+
};
|
|
162
|
+
export type QueryState = (typeof QueryState)[keyof typeof QueryState];
|
|
163
|
+
export interface GetQueryOutput {
|
|
164
|
+
id?: string;
|
|
165
|
+
queryString?: string;
|
|
166
|
+
waited?: number;
|
|
167
|
+
elapsed?: number;
|
|
168
|
+
state?: QueryState;
|
|
169
|
+
}
|
|
14
170
|
export interface VectorSearchConfiguration {
|
|
15
171
|
dimension: number | undefined;
|
|
16
172
|
}
|
|
@@ -51,14 +207,6 @@ export interface CreateGraphOutput {
|
|
|
51
207
|
deletionProtection?: boolean;
|
|
52
208
|
buildNumber?: string;
|
|
53
209
|
}
|
|
54
|
-
export declare class InternalServerException extends __BaseException {
|
|
55
|
-
readonly name: "InternalServerException";
|
|
56
|
-
readonly $fault: "server";
|
|
57
|
-
$retryable: {};
|
|
58
|
-
constructor(
|
|
59
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
60
|
-
);
|
|
61
|
-
}
|
|
62
210
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
63
211
|
readonly name: "ServiceQuotaExceededException";
|
|
64
212
|
readonly $fault: "client";
|
|
@@ -70,35 +218,6 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
70
218
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
71
219
|
);
|
|
72
220
|
}
|
|
73
|
-
export declare class ThrottlingException extends __BaseException {
|
|
74
|
-
readonly name: "ThrottlingException";
|
|
75
|
-
readonly $fault: "client";
|
|
76
|
-
$retryable: {
|
|
77
|
-
throttling: boolean;
|
|
78
|
-
};
|
|
79
|
-
constructor(
|
|
80
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
81
|
-
);
|
|
82
|
-
}
|
|
83
|
-
export declare const ValidationExceptionReason: {
|
|
84
|
-
readonly BAD_REQUEST: "BAD_REQUEST";
|
|
85
|
-
readonly CONSTRAINT_VIOLATION: "CONSTRAINT_VIOLATION";
|
|
86
|
-
readonly ILLEGAL_ARGUMENT: "ILLEGAL_ARGUMENT";
|
|
87
|
-
readonly MALFORMED_QUERY: "MALFORMED_QUERY";
|
|
88
|
-
readonly QUERY_CANCELLED: "QUERY_CANCELLED";
|
|
89
|
-
readonly QUERY_TOO_LARGE: "QUERY_TOO_LARGE";
|
|
90
|
-
readonly UNSUPPORTED_OPERATION: "UNSUPPORTED_OPERATION";
|
|
91
|
-
};
|
|
92
|
-
export type ValidationExceptionReason =
|
|
93
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
94
|
-
export declare class ValidationException extends __BaseException {
|
|
95
|
-
readonly name: "ValidationException";
|
|
96
|
-
readonly $fault: "client";
|
|
97
|
-
reason?: ValidationExceptionReason;
|
|
98
|
-
constructor(
|
|
99
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
100
|
-
);
|
|
101
|
-
}
|
|
102
221
|
export interface DeleteGraphInput {
|
|
103
222
|
graphIdentifier: string | undefined;
|
|
104
223
|
skipSnapshot: boolean | undefined;
|
|
@@ -120,13 +239,6 @@ export interface DeleteGraphOutput {
|
|
|
120
239
|
deletionProtection?: boolean;
|
|
121
240
|
buildNumber?: string;
|
|
122
241
|
}
|
|
123
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
124
|
-
readonly name: "ResourceNotFoundException";
|
|
125
|
-
readonly $fault: "client";
|
|
126
|
-
constructor(
|
|
127
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
128
|
-
);
|
|
129
|
-
}
|
|
130
242
|
export interface GetGraphInput {
|
|
131
243
|
graphIdentifier: string | undefined;
|
|
132
244
|
}
|
|
@@ -237,6 +349,29 @@ export interface UpdateGraphOutput {
|
|
|
237
349
|
deletionProtection?: boolean;
|
|
238
350
|
buildNumber?: string;
|
|
239
351
|
}
|
|
352
|
+
export declare const QueryStateInput: {
|
|
353
|
+
readonly ALL: "ALL";
|
|
354
|
+
readonly CANCELLING: "CANCELLING";
|
|
355
|
+
readonly RUNNING: "RUNNING";
|
|
356
|
+
readonly WAITING: "WAITING";
|
|
357
|
+
};
|
|
358
|
+
export type QueryStateInput =
|
|
359
|
+
(typeof QueryStateInput)[keyof typeof QueryStateInput];
|
|
360
|
+
export interface ListQueriesInput {
|
|
361
|
+
graphIdentifier: string | undefined;
|
|
362
|
+
maxResults: number | undefined;
|
|
363
|
+
state?: QueryStateInput;
|
|
364
|
+
}
|
|
365
|
+
export interface QuerySummary {
|
|
366
|
+
id?: string;
|
|
367
|
+
queryString?: string;
|
|
368
|
+
waited?: number;
|
|
369
|
+
elapsed?: number;
|
|
370
|
+
state?: QueryState;
|
|
371
|
+
}
|
|
372
|
+
export interface ListQueriesOutput {
|
|
373
|
+
queries: QuerySummary[] | undefined;
|
|
374
|
+
}
|
|
240
375
|
export interface ListTagsForResourceInput {
|
|
241
376
|
resourceArn: string | undefined;
|
|
242
377
|
}
|
|
@@ -492,3 +627,6 @@ export interface UntagResourceInput {
|
|
|
492
627
|
tagKeys: string[] | undefined;
|
|
493
628
|
}
|
|
494
629
|
export interface UntagResourceOutput {}
|
|
630
|
+
export declare const ExecuteQueryOutputFilterSensitiveLog: (
|
|
631
|
+
obj: ExecuteQueryOutput
|
|
632
|
+
) => any;
|
|
@@ -2,11 +2,18 @@ import {
|
|
|
2
2
|
HttpRequest as __HttpRequest,
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
|
-
import {
|
|
5
|
+
import {
|
|
6
|
+
SdkStreamSerdeContext as __SdkStreamSerdeContext,
|
|
7
|
+
SerdeContext as __SerdeContext,
|
|
8
|
+
} from "@smithy/types";
|
|
6
9
|
import {
|
|
7
10
|
CancelImportTaskCommandInput,
|
|
8
11
|
CancelImportTaskCommandOutput,
|
|
9
12
|
} from "../commands/CancelImportTaskCommand";
|
|
13
|
+
import {
|
|
14
|
+
CancelQueryCommandInput,
|
|
15
|
+
CancelQueryCommandOutput,
|
|
16
|
+
} from "../commands/CancelQueryCommand";
|
|
10
17
|
import {
|
|
11
18
|
CreateGraphCommandInput,
|
|
12
19
|
CreateGraphCommandOutput,
|
|
@@ -35,6 +42,10 @@ import {
|
|
|
35
42
|
DeletePrivateGraphEndpointCommandInput,
|
|
36
43
|
DeletePrivateGraphEndpointCommandOutput,
|
|
37
44
|
} from "../commands/DeletePrivateGraphEndpointCommand";
|
|
45
|
+
import {
|
|
46
|
+
ExecuteQueryCommandInput,
|
|
47
|
+
ExecuteQueryCommandOutput,
|
|
48
|
+
} from "../commands/ExecuteQueryCommand";
|
|
38
49
|
import {
|
|
39
50
|
GetGraphCommandInput,
|
|
40
51
|
GetGraphCommandOutput,
|
|
@@ -43,6 +54,10 @@ import {
|
|
|
43
54
|
GetGraphSnapshotCommandInput,
|
|
44
55
|
GetGraphSnapshotCommandOutput,
|
|
45
56
|
} from "../commands/GetGraphSnapshotCommand";
|
|
57
|
+
import {
|
|
58
|
+
GetGraphSummaryCommandInput,
|
|
59
|
+
GetGraphSummaryCommandOutput,
|
|
60
|
+
} from "../commands/GetGraphSummaryCommand";
|
|
46
61
|
import {
|
|
47
62
|
GetImportTaskCommandInput,
|
|
48
63
|
GetImportTaskCommandOutput,
|
|
@@ -51,6 +66,10 @@ import {
|
|
|
51
66
|
GetPrivateGraphEndpointCommandInput,
|
|
52
67
|
GetPrivateGraphEndpointCommandOutput,
|
|
53
68
|
} from "../commands/GetPrivateGraphEndpointCommand";
|
|
69
|
+
import {
|
|
70
|
+
GetQueryCommandInput,
|
|
71
|
+
GetQueryCommandOutput,
|
|
72
|
+
} from "../commands/GetQueryCommand";
|
|
54
73
|
import {
|
|
55
74
|
ListGraphsCommandInput,
|
|
56
75
|
ListGraphsCommandOutput,
|
|
@@ -67,6 +86,10 @@ import {
|
|
|
67
86
|
ListPrivateGraphEndpointsCommandInput,
|
|
68
87
|
ListPrivateGraphEndpointsCommandOutput,
|
|
69
88
|
} from "../commands/ListPrivateGraphEndpointsCommand";
|
|
89
|
+
import {
|
|
90
|
+
ListQueriesCommandInput,
|
|
91
|
+
ListQueriesCommandOutput,
|
|
92
|
+
} from "../commands/ListQueriesCommand";
|
|
70
93
|
import {
|
|
71
94
|
ListTagsForResourceCommandInput,
|
|
72
95
|
ListTagsForResourceCommandOutput,
|
|
@@ -95,6 +118,10 @@ export declare const se_CancelImportTaskCommand: (
|
|
|
95
118
|
input: CancelImportTaskCommandInput,
|
|
96
119
|
context: __SerdeContext
|
|
97
120
|
) => Promise<__HttpRequest>;
|
|
121
|
+
export declare const se_CancelQueryCommand: (
|
|
122
|
+
input: CancelQueryCommandInput,
|
|
123
|
+
context: __SerdeContext
|
|
124
|
+
) => Promise<__HttpRequest>;
|
|
98
125
|
export declare const se_CreateGraphCommand: (
|
|
99
126
|
input: CreateGraphCommandInput,
|
|
100
127
|
context: __SerdeContext
|
|
@@ -123,6 +150,10 @@ export declare const se_DeletePrivateGraphEndpointCommand: (
|
|
|
123
150
|
input: DeletePrivateGraphEndpointCommandInput,
|
|
124
151
|
context: __SerdeContext
|
|
125
152
|
) => Promise<__HttpRequest>;
|
|
153
|
+
export declare const se_ExecuteQueryCommand: (
|
|
154
|
+
input: ExecuteQueryCommandInput,
|
|
155
|
+
context: __SerdeContext
|
|
156
|
+
) => Promise<__HttpRequest>;
|
|
126
157
|
export declare const se_GetGraphCommand: (
|
|
127
158
|
input: GetGraphCommandInput,
|
|
128
159
|
context: __SerdeContext
|
|
@@ -131,6 +162,10 @@ export declare const se_GetGraphSnapshotCommand: (
|
|
|
131
162
|
input: GetGraphSnapshotCommandInput,
|
|
132
163
|
context: __SerdeContext
|
|
133
164
|
) => Promise<__HttpRequest>;
|
|
165
|
+
export declare const se_GetGraphSummaryCommand: (
|
|
166
|
+
input: GetGraphSummaryCommandInput,
|
|
167
|
+
context: __SerdeContext
|
|
168
|
+
) => Promise<__HttpRequest>;
|
|
134
169
|
export declare const se_GetImportTaskCommand: (
|
|
135
170
|
input: GetImportTaskCommandInput,
|
|
136
171
|
context: __SerdeContext
|
|
@@ -139,6 +174,10 @@ export declare const se_GetPrivateGraphEndpointCommand: (
|
|
|
139
174
|
input: GetPrivateGraphEndpointCommandInput,
|
|
140
175
|
context: __SerdeContext
|
|
141
176
|
) => Promise<__HttpRequest>;
|
|
177
|
+
export declare const se_GetQueryCommand: (
|
|
178
|
+
input: GetQueryCommandInput,
|
|
179
|
+
context: __SerdeContext
|
|
180
|
+
) => Promise<__HttpRequest>;
|
|
142
181
|
export declare const se_ListGraphsCommand: (
|
|
143
182
|
input: ListGraphsCommandInput,
|
|
144
183
|
context: __SerdeContext
|
|
@@ -155,6 +194,10 @@ export declare const se_ListPrivateGraphEndpointsCommand: (
|
|
|
155
194
|
input: ListPrivateGraphEndpointsCommandInput,
|
|
156
195
|
context: __SerdeContext
|
|
157
196
|
) => Promise<__HttpRequest>;
|
|
197
|
+
export declare const se_ListQueriesCommand: (
|
|
198
|
+
input: ListQueriesCommandInput,
|
|
199
|
+
context: __SerdeContext
|
|
200
|
+
) => Promise<__HttpRequest>;
|
|
158
201
|
export declare const se_ListTagsForResourceCommand: (
|
|
159
202
|
input: ListTagsForResourceCommandInput,
|
|
160
203
|
context: __SerdeContext
|
|
@@ -183,6 +226,10 @@ export declare const de_CancelImportTaskCommand: (
|
|
|
183
226
|
output: __HttpResponse,
|
|
184
227
|
context: __SerdeContext
|
|
185
228
|
) => Promise<CancelImportTaskCommandOutput>;
|
|
229
|
+
export declare const de_CancelQueryCommand: (
|
|
230
|
+
output: __HttpResponse,
|
|
231
|
+
context: __SerdeContext
|
|
232
|
+
) => Promise<CancelQueryCommandOutput>;
|
|
186
233
|
export declare const de_CreateGraphCommand: (
|
|
187
234
|
output: __HttpResponse,
|
|
188
235
|
context: __SerdeContext
|
|
@@ -211,6 +258,10 @@ export declare const de_DeletePrivateGraphEndpointCommand: (
|
|
|
211
258
|
output: __HttpResponse,
|
|
212
259
|
context: __SerdeContext
|
|
213
260
|
) => Promise<DeletePrivateGraphEndpointCommandOutput>;
|
|
261
|
+
export declare const de_ExecuteQueryCommand: (
|
|
262
|
+
output: __HttpResponse,
|
|
263
|
+
context: __SerdeContext & __SdkStreamSerdeContext
|
|
264
|
+
) => Promise<ExecuteQueryCommandOutput>;
|
|
214
265
|
export declare const de_GetGraphCommand: (
|
|
215
266
|
output: __HttpResponse,
|
|
216
267
|
context: __SerdeContext
|
|
@@ -219,6 +270,10 @@ export declare const de_GetGraphSnapshotCommand: (
|
|
|
219
270
|
output: __HttpResponse,
|
|
220
271
|
context: __SerdeContext
|
|
221
272
|
) => Promise<GetGraphSnapshotCommandOutput>;
|
|
273
|
+
export declare const de_GetGraphSummaryCommand: (
|
|
274
|
+
output: __HttpResponse,
|
|
275
|
+
context: __SerdeContext
|
|
276
|
+
) => Promise<GetGraphSummaryCommandOutput>;
|
|
222
277
|
export declare const de_GetImportTaskCommand: (
|
|
223
278
|
output: __HttpResponse,
|
|
224
279
|
context: __SerdeContext
|
|
@@ -227,6 +282,10 @@ export declare const de_GetPrivateGraphEndpointCommand: (
|
|
|
227
282
|
output: __HttpResponse,
|
|
228
283
|
context: __SerdeContext
|
|
229
284
|
) => Promise<GetPrivateGraphEndpointCommandOutput>;
|
|
285
|
+
export declare const de_GetQueryCommand: (
|
|
286
|
+
output: __HttpResponse,
|
|
287
|
+
context: __SerdeContext
|
|
288
|
+
) => Promise<GetQueryCommandOutput>;
|
|
230
289
|
export declare const de_ListGraphsCommand: (
|
|
231
290
|
output: __HttpResponse,
|
|
232
291
|
context: __SerdeContext
|
|
@@ -243,6 +302,10 @@ export declare const de_ListPrivateGraphEndpointsCommand: (
|
|
|
243
302
|
output: __HttpResponse,
|
|
244
303
|
context: __SerdeContext
|
|
245
304
|
) => Promise<ListPrivateGraphEndpointsCommandOutput>;
|
|
305
|
+
export declare const de_ListQueriesCommand: (
|
|
306
|
+
output: __HttpResponse,
|
|
307
|
+
context: __SerdeContext
|
|
308
|
+
) => Promise<ListQueriesCommandOutput>;
|
|
246
309
|
export declare const de_ListTagsForResourceCommand: (
|
|
247
310
|
output: __HttpResponse,
|
|
248
311
|
context: __SerdeContext
|
|
@@ -44,6 +44,7 @@ export declare const getRuntimeConfig: (config: NeptuneGraphClientConfig) => {
|
|
|
44
44
|
serviceId: string;
|
|
45
45
|
logger: import("@smithy/types").Logger;
|
|
46
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
47
|
+
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
47
48
|
endpoint?:
|
|
48
49
|
| ((
|
|
49
50
|
| string
|
|
@@ -48,6 +48,7 @@ export declare const getRuntimeConfig: (config: NeptuneGraphClientConfig) => {
|
|
|
48
48
|
serviceId: string;
|
|
49
49
|
logger: import("@smithy/types").Logger;
|
|
50
50
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
51
|
+
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
51
52
|
endpoint?:
|
|
52
53
|
| ((
|
|
53
54
|
| string
|
|
@@ -45,6 +45,7 @@ export declare const getRuntimeConfig: (config: NeptuneGraphClientConfig) => {
|
|
|
45
45
|
| import("@smithy/types").Provider<
|
|
46
46
|
import("@smithy/smithy-client").DefaultsMode
|
|
47
47
|
>;
|
|
48
|
+
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
48
49
|
endpoint?:
|
|
49
50
|
| string
|
|
50
51
|
| import("@smithy/types").Endpoint
|
|
@@ -12,6 +12,7 @@ export declare const getRuntimeConfig: (config: NeptuneGraphClientConfig) => {
|
|
|
12
12
|
) => import("@smithy/types").EndpointV2;
|
|
13
13
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
14
14
|
logger: import("@smithy/types").Logger;
|
|
15
|
+
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
15
16
|
serviceId: string;
|
|
16
17
|
urlParser: import("@smithy/types").UrlParser;
|
|
17
18
|
utf8Decoder: import("@smithy/types").Decoder;
|
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.505.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",
|
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
"@smithy/util-defaults-mode-node": "^2.1.1",
|
|
57
57
|
"@smithy/util-endpoints": "^1.1.1",
|
|
58
58
|
"@smithy/util-retry": "^2.1.1",
|
|
59
|
+
"@smithy/util-stream": "^2.1.1",
|
|
59
60
|
"@smithy/util-utf8": "^2.1.1",
|
|
60
61
|
"@smithy/util-waiter": "^2.1.1",
|
|
61
62
|
"tslib": "^2.5.0"
|