@aws-sdk/client-neptune-graph 3.933.0 → 3.935.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 +114 -113
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +113 -0
- package/dist-es/models/errors.js +115 -0
- package/dist-es/models/models_0.js +1 -228
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +265 -0
- package/dist-types/models/errors.d.ts +138 -0
- package/dist-types/models/models_0.d.ts +1 -402
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +143 -0
- package/dist-types/ts3.4/models/errors.d.ts +72 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -210
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,228 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export class InternalServerException extends __BaseException {
|
|
15
|
-
name = "InternalServerException";
|
|
16
|
-
$fault = "server";
|
|
17
|
-
$retryable = {};
|
|
18
|
-
constructor(opts) {
|
|
19
|
-
super({
|
|
20
|
-
name: "InternalServerException",
|
|
21
|
-
$fault: "server",
|
|
22
|
-
...opts,
|
|
23
|
-
});
|
|
24
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
28
|
-
name = "ResourceNotFoundException";
|
|
29
|
-
$fault = "client";
|
|
30
|
-
constructor(opts) {
|
|
31
|
-
super({
|
|
32
|
-
name: "ResourceNotFoundException",
|
|
33
|
-
$fault: "client",
|
|
34
|
-
...opts,
|
|
35
|
-
});
|
|
36
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
export class ThrottlingException extends __BaseException {
|
|
40
|
-
name = "ThrottlingException";
|
|
41
|
-
$fault = "client";
|
|
42
|
-
$retryable = {
|
|
43
|
-
throttling: true,
|
|
44
|
-
};
|
|
45
|
-
constructor(opts) {
|
|
46
|
-
super({
|
|
47
|
-
name: "ThrottlingException",
|
|
48
|
-
$fault: "client",
|
|
49
|
-
...opts,
|
|
50
|
-
});
|
|
51
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
export const ValidationExceptionReason = {
|
|
55
|
-
BAD_REQUEST: "BAD_REQUEST",
|
|
56
|
-
CONSTRAINT_VIOLATION: "CONSTRAINT_VIOLATION",
|
|
57
|
-
ILLEGAL_ARGUMENT: "ILLEGAL_ARGUMENT",
|
|
58
|
-
MALFORMED_QUERY: "MALFORMED_QUERY",
|
|
59
|
-
QUERY_CANCELLED: "QUERY_CANCELLED",
|
|
60
|
-
QUERY_TOO_LARGE: "QUERY_TOO_LARGE",
|
|
61
|
-
UNSUPPORTED_OPERATION: "UNSUPPORTED_OPERATION",
|
|
62
|
-
};
|
|
63
|
-
export class ValidationException extends __BaseException {
|
|
64
|
-
name = "ValidationException";
|
|
65
|
-
$fault = "client";
|
|
66
|
-
reason;
|
|
67
|
-
constructor(opts) {
|
|
68
|
-
super({
|
|
69
|
-
name: "ValidationException",
|
|
70
|
-
$fault: "client",
|
|
71
|
-
...opts,
|
|
72
|
-
});
|
|
73
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
74
|
-
this.reason = opts.reason;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
export const ConflictExceptionReason = {
|
|
78
|
-
CONCURRENT_MODIFICATION: "CONCURRENT_MODIFICATION",
|
|
79
|
-
};
|
|
80
|
-
export class ConflictException extends __BaseException {
|
|
81
|
-
name = "ConflictException";
|
|
82
|
-
$fault = "client";
|
|
83
|
-
reason;
|
|
84
|
-
constructor(opts) {
|
|
85
|
-
super({
|
|
86
|
-
name: "ConflictException",
|
|
87
|
-
$fault: "client",
|
|
88
|
-
...opts,
|
|
89
|
-
});
|
|
90
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
91
|
-
this.reason = opts.reason;
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
export const ExplainMode = {
|
|
95
|
-
DETAILS: "DETAILS",
|
|
96
|
-
STATIC: "STATIC",
|
|
97
|
-
};
|
|
98
|
-
export const QueryLanguage = {
|
|
99
|
-
OPEN_CYPHER: "OPEN_CYPHER",
|
|
100
|
-
};
|
|
101
|
-
export const PlanCacheType = {
|
|
102
|
-
AUTO: "AUTO",
|
|
103
|
-
DISABLED: "DISABLED",
|
|
104
|
-
ENABLED: "ENABLED",
|
|
105
|
-
};
|
|
106
|
-
export const UnprocessableExceptionReason = {
|
|
107
|
-
INTERNAL_LIMIT_EXCEEDED: "INTERNAL_LIMIT_EXCEEDED",
|
|
108
|
-
MEMORY_LIMIT_EXCEEDED: "MEMORY_LIMIT_EXCEEDED",
|
|
109
|
-
PARTITION_FULL: "PARTITION_FULL",
|
|
110
|
-
QUERY_TIMEOUT: "QUERY_TIMEOUT",
|
|
111
|
-
STORAGE_LIMIT_EXCEEDED: "STORAGE_LIMIT_EXCEEDED",
|
|
112
|
-
};
|
|
113
|
-
export class UnprocessableException extends __BaseException {
|
|
114
|
-
name = "UnprocessableException";
|
|
115
|
-
$fault = "client";
|
|
116
|
-
reason;
|
|
117
|
-
constructor(opts) {
|
|
118
|
-
super({
|
|
119
|
-
name: "UnprocessableException",
|
|
120
|
-
$fault: "client",
|
|
121
|
-
...opts,
|
|
122
|
-
});
|
|
123
|
-
Object.setPrototypeOf(this, UnprocessableException.prototype);
|
|
124
|
-
this.reason = opts.reason;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
export const GraphSummaryMode = {
|
|
128
|
-
BASIC: "BASIC",
|
|
129
|
-
DETAILED: "DETAILED",
|
|
130
|
-
};
|
|
131
|
-
export const QueryState = {
|
|
132
|
-
CANCELLING: "CANCELLING",
|
|
133
|
-
RUNNING: "RUNNING",
|
|
134
|
-
WAITING: "WAITING",
|
|
135
|
-
};
|
|
136
|
-
export const GraphStatus = {
|
|
137
|
-
AVAILABLE: "AVAILABLE",
|
|
138
|
-
CREATING: "CREATING",
|
|
139
|
-
DELETING: "DELETING",
|
|
140
|
-
FAILED: "FAILED",
|
|
141
|
-
IMPORTING: "IMPORTING",
|
|
142
|
-
RESETTING: "RESETTING",
|
|
143
|
-
SNAPSHOTTING: "SNAPSHOTTING",
|
|
144
|
-
STARTING: "STARTING",
|
|
145
|
-
STOPPED: "STOPPED",
|
|
146
|
-
STOPPING: "STOPPING",
|
|
147
|
-
UPDATING: "UPDATING",
|
|
148
|
-
};
|
|
149
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
150
|
-
name = "ServiceQuotaExceededException";
|
|
151
|
-
$fault = "client";
|
|
152
|
-
resourceId;
|
|
153
|
-
resourceType;
|
|
154
|
-
serviceCode;
|
|
155
|
-
quotaCode;
|
|
156
|
-
constructor(opts) {
|
|
157
|
-
super({
|
|
158
|
-
name: "ServiceQuotaExceededException",
|
|
159
|
-
$fault: "client",
|
|
160
|
-
...opts,
|
|
161
|
-
});
|
|
162
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
163
|
-
this.resourceId = opts.resourceId;
|
|
164
|
-
this.resourceType = opts.resourceType;
|
|
165
|
-
this.serviceCode = opts.serviceCode;
|
|
166
|
-
this.quotaCode = opts.quotaCode;
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
export const QueryStateInput = {
|
|
170
|
-
ALL: "ALL",
|
|
171
|
-
CANCELLING: "CANCELLING",
|
|
172
|
-
RUNNING: "RUNNING",
|
|
173
|
-
WAITING: "WAITING",
|
|
174
|
-
};
|
|
175
|
-
export const PrivateGraphEndpointStatus = {
|
|
176
|
-
AVAILABLE: "AVAILABLE",
|
|
177
|
-
CREATING: "CREATING",
|
|
178
|
-
DELETING: "DELETING",
|
|
179
|
-
FAILED: "FAILED",
|
|
180
|
-
};
|
|
181
|
-
export const SnapshotStatus = {
|
|
182
|
-
AVAILABLE: "AVAILABLE",
|
|
183
|
-
CREATING: "CREATING",
|
|
184
|
-
DELETING: "DELETING",
|
|
185
|
-
FAILED: "FAILED",
|
|
186
|
-
};
|
|
187
|
-
export const ExportFormat = {
|
|
188
|
-
CSV: "CSV",
|
|
189
|
-
PARQUET: "PARQUET",
|
|
190
|
-
};
|
|
191
|
-
export const ParquetType = {
|
|
192
|
-
COLUMNAR: "COLUMNAR",
|
|
193
|
-
};
|
|
194
|
-
export const ExportTaskStatus = {
|
|
195
|
-
CANCELLED: "CANCELLED",
|
|
196
|
-
CANCELLING: "CANCELLING",
|
|
197
|
-
DELETED: "DELETED",
|
|
198
|
-
EXPORTING: "EXPORTING",
|
|
199
|
-
FAILED: "FAILED",
|
|
200
|
-
INITIALIZING: "INITIALIZING",
|
|
201
|
-
SUCCEEDED: "SUCCEEDED",
|
|
202
|
-
};
|
|
203
|
-
export const Format = {
|
|
204
|
-
CSV: "CSV",
|
|
205
|
-
NTRIPLES: "NTRIPLES",
|
|
206
|
-
OPEN_CYPHER: "OPEN_CYPHER",
|
|
207
|
-
PARQUET: "PARQUET",
|
|
208
|
-
};
|
|
209
|
-
export const ImportTaskStatus = {
|
|
210
|
-
ANALYZING_DATA: "ANALYZING_DATA",
|
|
211
|
-
CANCELLED: "CANCELLED",
|
|
212
|
-
CANCELLING: "CANCELLING",
|
|
213
|
-
DELETED: "DELETED",
|
|
214
|
-
EXPORTING: "EXPORTING",
|
|
215
|
-
FAILED: "FAILED",
|
|
216
|
-
IMPORTING: "IMPORTING",
|
|
217
|
-
INITIALIZING: "INITIALIZING",
|
|
218
|
-
REPROVISIONING: "REPROVISIONING",
|
|
219
|
-
ROLLING_BACK: "ROLLING_BACK",
|
|
220
|
-
SUCCEEDED: "SUCCEEDED",
|
|
221
|
-
};
|
|
222
|
-
export const BlankNodeHandling = {
|
|
223
|
-
CONVERT_TO_IRI: "convertToIri",
|
|
224
|
-
};
|
|
225
|
-
export const MultiValueHandlingType = {
|
|
226
|
-
PICK_FIRST: "PICK_FIRST",
|
|
227
|
-
TO_LIST: "TO_LIST",
|
|
228
|
-
};
|
|
1
|
+
export {};
|
|
@@ -262,7 +262,7 @@ const _vSGI = "vpcSecurityGroupIds";
|
|
|
262
262
|
const _w = "waited";
|
|
263
263
|
const n0 = "com.amazonaws.neptunegraph";
|
|
264
264
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
265
|
-
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, UnprocessableException as __UnprocessableException, ValidationException as __ValidationException, } from "../models/
|
|
265
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, UnprocessableException as __UnprocessableException, ValidationException as __ValidationException, } from "../models/errors";
|
|
266
266
|
import { NeptuneGraphServiceException as __NeptuneGraphServiceException } from "../models/NeptuneGraphServiceException";
|
|
267
267
|
export var QueryResponseBlob = [
|
|
268
268
|
0,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -11,5 +11,7 @@ export type { NeptuneGraphExtensionConfiguration } from "./extensionConfiguratio
|
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
13
|
export * from "./waiters";
|
|
14
|
-
export * from "./models";
|
|
14
|
+
export * from "./models/enums";
|
|
15
|
+
export * from "./models/errors";
|
|
16
|
+
export type * from "./models/models_0";
|
|
15
17
|
export { NeptuneGraphServiceException } from "./models/NeptuneGraphServiceException";
|
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ValidationExceptionReason: {
|
|
6
|
+
readonly BAD_REQUEST: "BAD_REQUEST";
|
|
7
|
+
readonly CONSTRAINT_VIOLATION: "CONSTRAINT_VIOLATION";
|
|
8
|
+
readonly ILLEGAL_ARGUMENT: "ILLEGAL_ARGUMENT";
|
|
9
|
+
readonly MALFORMED_QUERY: "MALFORMED_QUERY";
|
|
10
|
+
readonly QUERY_CANCELLED: "QUERY_CANCELLED";
|
|
11
|
+
readonly QUERY_TOO_LARGE: "QUERY_TOO_LARGE";
|
|
12
|
+
readonly UNSUPPORTED_OPERATION: "UNSUPPORTED_OPERATION";
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
* @enum
|
|
21
|
+
*/
|
|
22
|
+
export declare const ConflictExceptionReason: {
|
|
23
|
+
readonly CONCURRENT_MODIFICATION: "CONCURRENT_MODIFICATION";
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export type ConflictExceptionReason = (typeof ConflictExceptionReason)[keyof typeof ConflictExceptionReason];
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
* @enum
|
|
32
|
+
*/
|
|
33
|
+
export declare const ExplainMode: {
|
|
34
|
+
readonly DETAILS: "DETAILS";
|
|
35
|
+
readonly STATIC: "STATIC";
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
export type ExplainMode = (typeof ExplainMode)[keyof typeof ExplainMode];
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
* @enum
|
|
44
|
+
*/
|
|
45
|
+
export declare const QueryLanguage: {
|
|
46
|
+
readonly OPEN_CYPHER: "OPEN_CYPHER";
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
export type QueryLanguage = (typeof QueryLanguage)[keyof typeof QueryLanguage];
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
* @enum
|
|
55
|
+
*/
|
|
56
|
+
export declare const PlanCacheType: {
|
|
57
|
+
readonly AUTO: "AUTO";
|
|
58
|
+
readonly DISABLED: "DISABLED";
|
|
59
|
+
readonly ENABLED: "ENABLED";
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
export type PlanCacheType = (typeof PlanCacheType)[keyof typeof PlanCacheType];
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
* @enum
|
|
68
|
+
*/
|
|
69
|
+
export declare const UnprocessableExceptionReason: {
|
|
70
|
+
readonly INTERNAL_LIMIT_EXCEEDED: "INTERNAL_LIMIT_EXCEEDED";
|
|
71
|
+
readonly MEMORY_LIMIT_EXCEEDED: "MEMORY_LIMIT_EXCEEDED";
|
|
72
|
+
readonly PARTITION_FULL: "PARTITION_FULL";
|
|
73
|
+
readonly QUERY_TIMEOUT: "QUERY_TIMEOUT";
|
|
74
|
+
readonly STORAGE_LIMIT_EXCEEDED: "STORAGE_LIMIT_EXCEEDED";
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export type UnprocessableExceptionReason = (typeof UnprocessableExceptionReason)[keyof typeof UnprocessableExceptionReason];
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
* @enum
|
|
83
|
+
*/
|
|
84
|
+
export declare const GraphSummaryMode: {
|
|
85
|
+
readonly BASIC: "BASIC";
|
|
86
|
+
readonly DETAILED: "DETAILED";
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export type GraphSummaryMode = (typeof GraphSummaryMode)[keyof typeof GraphSummaryMode];
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
* @enum
|
|
95
|
+
*/
|
|
96
|
+
export declare const QueryState: {
|
|
97
|
+
readonly CANCELLING: "CANCELLING";
|
|
98
|
+
readonly RUNNING: "RUNNING";
|
|
99
|
+
readonly WAITING: "WAITING";
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export type QueryState = (typeof QueryState)[keyof typeof QueryState];
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
* @enum
|
|
108
|
+
*/
|
|
109
|
+
export declare const GraphStatus: {
|
|
110
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
111
|
+
readonly CREATING: "CREATING";
|
|
112
|
+
readonly DELETING: "DELETING";
|
|
113
|
+
readonly FAILED: "FAILED";
|
|
114
|
+
readonly IMPORTING: "IMPORTING";
|
|
115
|
+
readonly RESETTING: "RESETTING";
|
|
116
|
+
readonly SNAPSHOTTING: "SNAPSHOTTING";
|
|
117
|
+
readonly STARTING: "STARTING";
|
|
118
|
+
readonly STOPPED: "STOPPED";
|
|
119
|
+
readonly STOPPING: "STOPPING";
|
|
120
|
+
readonly UPDATING: "UPDATING";
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
*/
|
|
125
|
+
export type GraphStatus = (typeof GraphStatus)[keyof typeof GraphStatus];
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
* @enum
|
|
129
|
+
*/
|
|
130
|
+
export declare const QueryStateInput: {
|
|
131
|
+
readonly ALL: "ALL";
|
|
132
|
+
readonly CANCELLING: "CANCELLING";
|
|
133
|
+
readonly RUNNING: "RUNNING";
|
|
134
|
+
readonly WAITING: "WAITING";
|
|
135
|
+
};
|
|
136
|
+
/**
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
export type QueryStateInput = (typeof QueryStateInput)[keyof typeof QueryStateInput];
|
|
140
|
+
/**
|
|
141
|
+
* @public
|
|
142
|
+
* @enum
|
|
143
|
+
*/
|
|
144
|
+
export declare const PrivateGraphEndpointStatus: {
|
|
145
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
146
|
+
readonly CREATING: "CREATING";
|
|
147
|
+
readonly DELETING: "DELETING";
|
|
148
|
+
readonly FAILED: "FAILED";
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
153
|
+
export type PrivateGraphEndpointStatus = (typeof PrivateGraphEndpointStatus)[keyof typeof PrivateGraphEndpointStatus];
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
* @enum
|
|
157
|
+
*/
|
|
158
|
+
export declare const SnapshotStatus: {
|
|
159
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
160
|
+
readonly CREATING: "CREATING";
|
|
161
|
+
readonly DELETING: "DELETING";
|
|
162
|
+
readonly FAILED: "FAILED";
|
|
163
|
+
};
|
|
164
|
+
/**
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
export type SnapshotStatus = (typeof SnapshotStatus)[keyof typeof SnapshotStatus];
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
* @enum
|
|
171
|
+
*/
|
|
172
|
+
export declare const ExportFormat: {
|
|
173
|
+
readonly CSV: "CSV";
|
|
174
|
+
readonly PARQUET: "PARQUET";
|
|
175
|
+
};
|
|
176
|
+
/**
|
|
177
|
+
* @public
|
|
178
|
+
*/
|
|
179
|
+
export type ExportFormat = (typeof ExportFormat)[keyof typeof ExportFormat];
|
|
180
|
+
/**
|
|
181
|
+
* @public
|
|
182
|
+
* @enum
|
|
183
|
+
*/
|
|
184
|
+
export declare const ParquetType: {
|
|
185
|
+
readonly COLUMNAR: "COLUMNAR";
|
|
186
|
+
};
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
*/
|
|
190
|
+
export type ParquetType = (typeof ParquetType)[keyof typeof ParquetType];
|
|
191
|
+
/**
|
|
192
|
+
* @public
|
|
193
|
+
* @enum
|
|
194
|
+
*/
|
|
195
|
+
export declare const ExportTaskStatus: {
|
|
196
|
+
readonly CANCELLED: "CANCELLED";
|
|
197
|
+
readonly CANCELLING: "CANCELLING";
|
|
198
|
+
readonly DELETED: "DELETED";
|
|
199
|
+
readonly EXPORTING: "EXPORTING";
|
|
200
|
+
readonly FAILED: "FAILED";
|
|
201
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
202
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
203
|
+
};
|
|
204
|
+
/**
|
|
205
|
+
* @public
|
|
206
|
+
*/
|
|
207
|
+
export type ExportTaskStatus = (typeof ExportTaskStatus)[keyof typeof ExportTaskStatus];
|
|
208
|
+
/**
|
|
209
|
+
* @public
|
|
210
|
+
* @enum
|
|
211
|
+
*/
|
|
212
|
+
export declare const Format: {
|
|
213
|
+
readonly CSV: "CSV";
|
|
214
|
+
readonly NTRIPLES: "NTRIPLES";
|
|
215
|
+
readonly OPEN_CYPHER: "OPEN_CYPHER";
|
|
216
|
+
readonly PARQUET: "PARQUET";
|
|
217
|
+
};
|
|
218
|
+
/**
|
|
219
|
+
* @public
|
|
220
|
+
*/
|
|
221
|
+
export type Format = (typeof Format)[keyof typeof Format];
|
|
222
|
+
/**
|
|
223
|
+
* @public
|
|
224
|
+
* @enum
|
|
225
|
+
*/
|
|
226
|
+
export declare const ImportTaskStatus: {
|
|
227
|
+
readonly ANALYZING_DATA: "ANALYZING_DATA";
|
|
228
|
+
readonly CANCELLED: "CANCELLED";
|
|
229
|
+
readonly CANCELLING: "CANCELLING";
|
|
230
|
+
readonly DELETED: "DELETED";
|
|
231
|
+
readonly EXPORTING: "EXPORTING";
|
|
232
|
+
readonly FAILED: "FAILED";
|
|
233
|
+
readonly IMPORTING: "IMPORTING";
|
|
234
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
235
|
+
readonly REPROVISIONING: "REPROVISIONING";
|
|
236
|
+
readonly ROLLING_BACK: "ROLLING_BACK";
|
|
237
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
238
|
+
};
|
|
239
|
+
/**
|
|
240
|
+
* @public
|
|
241
|
+
*/
|
|
242
|
+
export type ImportTaskStatus = (typeof ImportTaskStatus)[keyof typeof ImportTaskStatus];
|
|
243
|
+
/**
|
|
244
|
+
* @public
|
|
245
|
+
* @enum
|
|
246
|
+
*/
|
|
247
|
+
export declare const BlankNodeHandling: {
|
|
248
|
+
readonly CONVERT_TO_IRI: "convertToIri";
|
|
249
|
+
};
|
|
250
|
+
/**
|
|
251
|
+
* @public
|
|
252
|
+
*/
|
|
253
|
+
export type BlankNodeHandling = (typeof BlankNodeHandling)[keyof typeof BlankNodeHandling];
|
|
254
|
+
/**
|
|
255
|
+
* @public
|
|
256
|
+
* @enum
|
|
257
|
+
*/
|
|
258
|
+
export declare const MultiValueHandlingType: {
|
|
259
|
+
readonly PICK_FIRST: "PICK_FIRST";
|
|
260
|
+
readonly TO_LIST: "TO_LIST";
|
|
261
|
+
};
|
|
262
|
+
/**
|
|
263
|
+
* @public
|
|
264
|
+
*/
|
|
265
|
+
export type MultiValueHandlingType = (typeof MultiValueHandlingType)[keyof typeof MultiValueHandlingType];
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ConflictExceptionReason, UnprocessableExceptionReason, ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { NeptuneGraphServiceException as __BaseException } from "./NeptuneGraphServiceException";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Raised in case of an authentication or authorization failure.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
9
|
+
readonly name: "AccessDeniedException";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>A failure occurred on the server.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class InternalServerException extends __BaseException {
|
|
21
|
+
readonly name: "InternalServerException";
|
|
22
|
+
readonly $fault: "server";
|
|
23
|
+
$retryable: {};
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>A specified resource could not be located.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
34
|
+
readonly name: "ResourceNotFoundException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
/**
|
|
37
|
+
* @internal
|
|
38
|
+
*/
|
|
39
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* <p>The exception was interrupted by throttling.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export declare class ThrottlingException extends __BaseException {
|
|
46
|
+
readonly name: "ThrottlingException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
$retryable: {
|
|
49
|
+
throttling: boolean;
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* @internal
|
|
53
|
+
*/
|
|
54
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* <p>A resource could not be validated.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
export declare class ValidationException extends __BaseException {
|
|
61
|
+
readonly name: "ValidationException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
/**
|
|
64
|
+
* <p>The reason that the resource could not be validated.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
reason?: ValidationExceptionReason | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
71
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* <p>Raised when a conflict is encountered.</p>
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
export declare class ConflictException extends __BaseException {
|
|
78
|
+
readonly name: "ConflictException";
|
|
79
|
+
readonly $fault: "client";
|
|
80
|
+
/**
|
|
81
|
+
* <p>The reason for the conflict exception.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
reason?: ConflictExceptionReason | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
88
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* <p>Request cannot be processed due to known reasons. Eg. partition full.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
export declare class UnprocessableException extends __BaseException {
|
|
95
|
+
readonly name: "UnprocessableException";
|
|
96
|
+
readonly $fault: "client";
|
|
97
|
+
/**
|
|
98
|
+
* <p>The reason for the unprocessable exception.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
reason: UnprocessableExceptionReason | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
105
|
+
constructor(opts: __ExceptionOptionType<UnprocessableException, __BaseException>);
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* <p>A service quota was exceeded.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
112
|
+
readonly name: "ServiceQuotaExceededException";
|
|
113
|
+
readonly $fault: "client";
|
|
114
|
+
/**
|
|
115
|
+
* <p>The identifier of the resource that exceeded quota.</p>
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
resourceId?: string | undefined;
|
|
119
|
+
/**
|
|
120
|
+
* <p>The type of the resource that exceeded quota. Ex: Graph, Snapshot</p>
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
resourceType?: string | undefined;
|
|
124
|
+
/**
|
|
125
|
+
* <p>The service code that exceeded quota.</p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
serviceCode?: string | undefined;
|
|
129
|
+
/**
|
|
130
|
+
* <p>Service quota code of the resource for which quota was exceeded.</p>
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
quotaCode?: string | undefined;
|
|
134
|
+
/**
|
|
135
|
+
* @internal
|
|
136
|
+
*/
|
|
137
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
138
|
+
}
|