@aws-sdk/client-neptunedata 3.934.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 +85 -84
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +84 -0
- package/dist-es/models/errors.js +624 -0
- package/dist-es/models/models_0.js +1 -708
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +164 -0
- package/dist-types/models/errors.d.ts +931 -0
- package/dist-types/models/models_0.d.ts +90 -1184
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +98 -0
- package/dist-types/ts3.4/models/errors.d.ts +355 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -453
- 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
|
@@ -391,7 +391,7 @@ const _ve = "version";
|
|
|
391
391
|
const _w = "waited";
|
|
392
392
|
const n0 = "com.amazonaws.neptunedata";
|
|
393
393
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
394
|
-
import { AccessDeniedException as __AccessDeniedException, BadRequestException as __BadRequestException, BulkLoadIdNotFoundException as __BulkLoadIdNotFoundException, CancelledByUserException as __CancelledByUserException, ClientTimeoutException as __ClientTimeoutException, ConcurrentModificationException as __ConcurrentModificationException, ConstraintViolationException as __ConstraintViolationException, ExpiredStreamException as __ExpiredStreamException, FailureByQueryException as __FailureByQueryException, IllegalArgumentException as __IllegalArgumentException, InternalFailureException as __InternalFailureException, InvalidArgumentException as __InvalidArgumentException, InvalidNumericDataException as __InvalidNumericDataException, InvalidParameterException as __InvalidParameterException, LoadUrlAccessDeniedException as __LoadUrlAccessDeniedException, MalformedQueryException as __MalformedQueryException, MemoryLimitExceededException as __MemoryLimitExceededException, MethodNotAllowedException as __MethodNotAllowedException, MissingParameterException as __MissingParameterException, MLResourceNotFoundException as __MLResourceNotFoundException, ParsingException as __ParsingException, PreconditionsFailedException as __PreconditionsFailedException, QueryLimitExceededException as __QueryLimitExceededException, QueryLimitException as __QueryLimitException, QueryTooLargeException as __QueryTooLargeException, ReadOnlyViolationException as __ReadOnlyViolationException, S3Exception as __S3Exception, ServerShutdownException as __ServerShutdownException, StatisticsNotAvailableException as __StatisticsNotAvailableException, StreamRecordsNotFoundException as __StreamRecordsNotFoundException, ThrottlingException as __ThrottlingException, TimeLimitExceededException as __TimeLimitExceededException, TooManyRequestsException as __TooManyRequestsException, UnsupportedOperationException as __UnsupportedOperationException, } from "../models/
|
|
394
|
+
import { AccessDeniedException as __AccessDeniedException, BadRequestException as __BadRequestException, BulkLoadIdNotFoundException as __BulkLoadIdNotFoundException, CancelledByUserException as __CancelledByUserException, ClientTimeoutException as __ClientTimeoutException, ConcurrentModificationException as __ConcurrentModificationException, ConstraintViolationException as __ConstraintViolationException, ExpiredStreamException as __ExpiredStreamException, FailureByQueryException as __FailureByQueryException, IllegalArgumentException as __IllegalArgumentException, InternalFailureException as __InternalFailureException, InvalidArgumentException as __InvalidArgumentException, InvalidNumericDataException as __InvalidNumericDataException, InvalidParameterException as __InvalidParameterException, LoadUrlAccessDeniedException as __LoadUrlAccessDeniedException, MalformedQueryException as __MalformedQueryException, MemoryLimitExceededException as __MemoryLimitExceededException, MethodNotAllowedException as __MethodNotAllowedException, MissingParameterException as __MissingParameterException, MLResourceNotFoundException as __MLResourceNotFoundException, ParsingException as __ParsingException, PreconditionsFailedException as __PreconditionsFailedException, QueryLimitExceededException as __QueryLimitExceededException, QueryLimitException as __QueryLimitException, QueryTooLargeException as __QueryTooLargeException, ReadOnlyViolationException as __ReadOnlyViolationException, S3Exception as __S3Exception, ServerShutdownException as __ServerShutdownException, StatisticsNotAvailableException as __StatisticsNotAvailableException, StreamRecordsNotFoundException as __StreamRecordsNotFoundException, ThrottlingException as __ThrottlingException, TimeLimitExceededException as __TimeLimitExceededException, TooManyRequestsException as __TooManyRequestsException, UnsupportedOperationException as __UnsupportedOperationException, } from "../models/errors";
|
|
395
395
|
import { NeptunedataServiceException as __NeptunedataServiceException } from "../models/NeptunedataServiceException";
|
|
396
396
|
export var ReportAsText = [
|
|
397
397
|
0,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -9,5 +9,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { NeptunedataExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
|
-
export * from "./models";
|
|
12
|
+
export * from "./models/enums";
|
|
13
|
+
export * from "./models/errors";
|
|
14
|
+
export type * from "./models/models_0";
|
|
13
15
|
export { NeptunedataServiceException } from "./models/NeptunedataServiceException";
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const Action: {
|
|
6
|
+
readonly INITIALIZE_RESET: "initiateDatabaseReset";
|
|
7
|
+
readonly PERFORM_RESET: "performDatabaseReset";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type Action = (typeof Action)[keyof typeof Action];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const OpenCypherExplainMode: {
|
|
18
|
+
readonly DETAILS: "details";
|
|
19
|
+
readonly DYNAMIC: "dynamic";
|
|
20
|
+
readonly STATIC: "static";
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export type OpenCypherExplainMode = (typeof OpenCypherExplainMode)[keyof typeof OpenCypherExplainMode];
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
* @enum
|
|
29
|
+
*/
|
|
30
|
+
export declare const Encoding: {
|
|
31
|
+
readonly GZIP: "gzip";
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
export type Encoding = (typeof Encoding)[keyof typeof Encoding];
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
* @enum
|
|
40
|
+
*/
|
|
41
|
+
export declare const IteratorType: {
|
|
42
|
+
readonly AFTER_SEQUENCE_NUMBER: "AFTER_SEQUENCE_NUMBER";
|
|
43
|
+
readonly AT_SEQUENCE_NUMBER: "AT_SEQUENCE_NUMBER";
|
|
44
|
+
readonly LATEST: "LATEST";
|
|
45
|
+
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
export type IteratorType = (typeof IteratorType)[keyof typeof IteratorType];
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
* @enum
|
|
54
|
+
*/
|
|
55
|
+
export declare const GraphSummaryType: {
|
|
56
|
+
readonly BASIC: "basic";
|
|
57
|
+
readonly DETAILED: "detailed";
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
export type GraphSummaryType = (typeof GraphSummaryType)[keyof typeof GraphSummaryType];
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
* @enum
|
|
66
|
+
*/
|
|
67
|
+
export declare const StatisticsAutoGenerationMode: {
|
|
68
|
+
readonly DISABLE_AUTOCOMPUTE: "disableAutoCompute";
|
|
69
|
+
readonly ENABLE_AUTOCOMPUTE: "enableAutoCompute";
|
|
70
|
+
readonly REFRESH: "refresh";
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export type StatisticsAutoGenerationMode = (typeof StatisticsAutoGenerationMode)[keyof typeof StatisticsAutoGenerationMode];
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
* @enum
|
|
79
|
+
*/
|
|
80
|
+
export declare const Format: {
|
|
81
|
+
readonly CSV: "csv";
|
|
82
|
+
readonly NQUADS: "nquads";
|
|
83
|
+
readonly NTRIPLES: "ntriples";
|
|
84
|
+
readonly OPENCYPHER: "opencypher";
|
|
85
|
+
readonly RDFXML: "rdfxml";
|
|
86
|
+
readonly TURTLE: "turtle";
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export type Format = (typeof Format)[keyof typeof Format];
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
* @enum
|
|
95
|
+
*/
|
|
96
|
+
export declare const Mode: {
|
|
97
|
+
readonly AUTO: "AUTO";
|
|
98
|
+
readonly NEW: "NEW";
|
|
99
|
+
readonly RESUME: "RESUME";
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export type Mode = (typeof Mode)[keyof typeof Mode];
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
* @enum
|
|
108
|
+
*/
|
|
109
|
+
export declare const Parallelism: {
|
|
110
|
+
readonly HIGH: "HIGH";
|
|
111
|
+
readonly LOW: "LOW";
|
|
112
|
+
readonly MEDIUM: "MEDIUM";
|
|
113
|
+
readonly OVERSUBSCRIBE: "OVERSUBSCRIBE";
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
export type Parallelism = (typeof Parallelism)[keyof typeof Parallelism];
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
* @enum
|
|
122
|
+
*/
|
|
123
|
+
export declare const S3BucketRegion: {
|
|
124
|
+
readonly AF_SOUTH_1: "af-south-1";
|
|
125
|
+
readonly AP_EAST_1: "ap-east-1";
|
|
126
|
+
readonly AP_EAST_2: "ap-east-2";
|
|
127
|
+
readonly AP_NORTHEAST_1: "ap-northeast-1";
|
|
128
|
+
readonly AP_NORTHEAST_2: "ap-northeast-2";
|
|
129
|
+
readonly AP_NORTHEAST_3: "ap-northeast-3";
|
|
130
|
+
readonly AP_SOUTHEAST_1: "ap-southeast-1";
|
|
131
|
+
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
132
|
+
readonly AP_SOUTHEAST_3: "ap-southeast-3";
|
|
133
|
+
readonly AP_SOUTHEAST_4: "ap-southeast-4";
|
|
134
|
+
readonly AP_SOUTHEAST_5: "ap-southeast-5";
|
|
135
|
+
readonly AP_SOUTHEAST_7: "ap-southeast-7";
|
|
136
|
+
readonly AP_SOUTH_1: "ap-south-1";
|
|
137
|
+
readonly AP_SOUTH_2: "ap-south-2";
|
|
138
|
+
readonly CA_CENTRAL_1: "ca-central-1";
|
|
139
|
+
readonly CA_WEST_1: "ca-west-1";
|
|
140
|
+
readonly CN_NORTHWEST_1: "cn-northwest-1";
|
|
141
|
+
readonly CN_NORTH_1: "cn-north-1";
|
|
142
|
+
readonly EU_CENTRAL_1: "eu-central-1";
|
|
143
|
+
readonly EU_CENTRAL_2: "eu-central-2";
|
|
144
|
+
readonly EU_NORTH_1: "eu-north-1";
|
|
145
|
+
readonly EU_SOUTH_2: "eu-south-2";
|
|
146
|
+
readonly EU_WEST_1: "eu-west-1";
|
|
147
|
+
readonly EU_WEST_2: "eu-west-2";
|
|
148
|
+
readonly EU_WEST_3: "eu-west-3";
|
|
149
|
+
readonly IL_CENTRAL_1: "il-central-1";
|
|
150
|
+
readonly ME_CENTRAL_1: "me-central-1";
|
|
151
|
+
readonly ME_SOUTH_1: "me-south-1";
|
|
152
|
+
readonly MX_CENTRAL_1: "mx-central-1";
|
|
153
|
+
readonly SA_EAST_1: "sa-east-1";
|
|
154
|
+
readonly US_EAST_1: "us-east-1";
|
|
155
|
+
readonly US_EAST_2: "us-east-2";
|
|
156
|
+
readonly US_GOV_EAST_1: "us-gov-east-1";
|
|
157
|
+
readonly US_GOV_WEST_1: "us-gov-west-1";
|
|
158
|
+
readonly US_WEST_1: "us-west-1";
|
|
159
|
+
readonly US_WEST_2: "us-west-2";
|
|
160
|
+
};
|
|
161
|
+
/**
|
|
162
|
+
* @public
|
|
163
|
+
*/
|
|
164
|
+
export type S3BucketRegion = (typeof S3BucketRegion)[keyof typeof S3BucketRegion];
|