@aws-sdk/client-elasticsearch-service 3.934.0 → 3.936.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 +241 -240
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +240 -0
- package/dist-es/models/errors.js +133 -0
- package/dist-es/models/models_0.js +1 -373
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +496 -0
- package/dist-types/models/errors.d.ts +134 -0
- package/dist-types/models/models_0.d.ts +1 -630
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +291 -0
- package/dist-types/ts3.4/models/errors.d.ts +76 -0
- package/dist-types/ts3.4/models/models_0.d.ts +34 -367
- package/package.json +19 -19
- 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
|
@@ -0,0 +1,496 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const InboundCrossClusterSearchConnectionStatusCode: {
|
|
6
|
+
readonly APPROVED: "APPROVED";
|
|
7
|
+
readonly DELETED: "DELETED";
|
|
8
|
+
readonly DELETING: "DELETING";
|
|
9
|
+
readonly PENDING_ACCEPTANCE: "PENDING_ACCEPTANCE";
|
|
10
|
+
readonly REJECTED: "REJECTED";
|
|
11
|
+
readonly REJECTING: "REJECTING";
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export type InboundCrossClusterSearchConnectionStatusCode = (typeof InboundCrossClusterSearchConnectionStatusCode)[keyof typeof InboundCrossClusterSearchConnectionStatusCode];
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
* @enum
|
|
20
|
+
*/
|
|
21
|
+
export declare const OptionState: {
|
|
22
|
+
readonly Active: "Active";
|
|
23
|
+
readonly Processing: "Processing";
|
|
24
|
+
readonly RequiresIndexDocuments: "RequiresIndexDocuments";
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export type OptionState = (typeof OptionState)[keyof typeof OptionState];
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
* @enum
|
|
33
|
+
*/
|
|
34
|
+
export declare const DomainPackageStatus: {
|
|
35
|
+
readonly ACTIVE: "ACTIVE";
|
|
36
|
+
readonly ASSOCIATING: "ASSOCIATING";
|
|
37
|
+
readonly ASSOCIATION_FAILED: "ASSOCIATION_FAILED";
|
|
38
|
+
readonly DISSOCIATING: "DISSOCIATING";
|
|
39
|
+
readonly DISSOCIATION_FAILED: "DISSOCIATION_FAILED";
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export type DomainPackageStatus = (typeof DomainPackageStatus)[keyof typeof DomainPackageStatus];
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
* @enum
|
|
48
|
+
*/
|
|
49
|
+
export declare const PackageType: {
|
|
50
|
+
readonly TXT_DICTIONARY: "TXT-DICTIONARY";
|
|
51
|
+
};
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export type PackageType = (typeof PackageType)[keyof typeof PackageType];
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
* @enum
|
|
59
|
+
*/
|
|
60
|
+
export declare const PrincipalType: {
|
|
61
|
+
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
62
|
+
readonly AWS_SERVICE: "AWS_SERVICE";
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
* @enum
|
|
71
|
+
*/
|
|
72
|
+
export declare const DeploymentStatus: {
|
|
73
|
+
readonly COMPLETED: "COMPLETED";
|
|
74
|
+
readonly ELIGIBLE: "ELIGIBLE";
|
|
75
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
76
|
+
readonly NOT_ELIGIBLE: "NOT_ELIGIBLE";
|
|
77
|
+
readonly PENDING_UPDATE: "PENDING_UPDATE";
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export type DeploymentStatus = (typeof DeploymentStatus)[keyof typeof DeploymentStatus];
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
* @enum
|
|
86
|
+
*/
|
|
87
|
+
export declare const AutoTuneDesiredState: {
|
|
88
|
+
readonly DISABLED: "DISABLED";
|
|
89
|
+
readonly ENABLED: "ENABLED";
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
export type AutoTuneDesiredState = (typeof AutoTuneDesiredState)[keyof typeof AutoTuneDesiredState];
|
|
95
|
+
/**
|
|
96
|
+
* @public
|
|
97
|
+
* @enum
|
|
98
|
+
*/
|
|
99
|
+
export declare const TimeUnit: {
|
|
100
|
+
readonly HOURS: "HOURS";
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
* @enum
|
|
109
|
+
*/
|
|
110
|
+
export declare const TLSSecurityPolicy: {
|
|
111
|
+
readonly POLICY_MIN_TLS_1_0_2019_07: "Policy-Min-TLS-1-0-2019-07";
|
|
112
|
+
readonly POLICY_MIN_TLS_1_2_2019_07: "Policy-Min-TLS-1-2-2019-07";
|
|
113
|
+
readonly POLICY_MIN_TLS_1_2_PFS_2023_10: "Policy-Min-TLS-1-2-PFS-2023-10";
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
export type TLSSecurityPolicy = (typeof TLSSecurityPolicy)[keyof typeof TLSSecurityPolicy];
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
* @enum
|
|
122
|
+
*/
|
|
123
|
+
export declare const VolumeType: {
|
|
124
|
+
readonly gp2: "gp2";
|
|
125
|
+
readonly gp3: "gp3";
|
|
126
|
+
readonly io1: "io1";
|
|
127
|
+
readonly standard: "standard";
|
|
128
|
+
};
|
|
129
|
+
/**
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
export type VolumeType = (typeof VolumeType)[keyof typeof VolumeType];
|
|
133
|
+
/**
|
|
134
|
+
* @public
|
|
135
|
+
* @enum
|
|
136
|
+
*/
|
|
137
|
+
export declare const ESPartitionInstanceType: {
|
|
138
|
+
readonly c4_2xlarge_elasticsearch: "c4.2xlarge.elasticsearch";
|
|
139
|
+
readonly c4_4xlarge_elasticsearch: "c4.4xlarge.elasticsearch";
|
|
140
|
+
readonly c4_8xlarge_elasticsearch: "c4.8xlarge.elasticsearch";
|
|
141
|
+
readonly c4_large_elasticsearch: "c4.large.elasticsearch";
|
|
142
|
+
readonly c4_xlarge_elasticsearch: "c4.xlarge.elasticsearch";
|
|
143
|
+
readonly c5_18xlarge_elasticsearch: "c5.18xlarge.elasticsearch";
|
|
144
|
+
readonly c5_2xlarge_elasticsearch: "c5.2xlarge.elasticsearch";
|
|
145
|
+
readonly c5_4xlarge_elasticsearch: "c5.4xlarge.elasticsearch";
|
|
146
|
+
readonly c5_9xlarge_elasticsearch: "c5.9xlarge.elasticsearch";
|
|
147
|
+
readonly c5_large_elasticsearch: "c5.large.elasticsearch";
|
|
148
|
+
readonly c5_xlarge_elasticsearch: "c5.xlarge.elasticsearch";
|
|
149
|
+
readonly d2_2xlarge_elasticsearch: "d2.2xlarge.elasticsearch";
|
|
150
|
+
readonly d2_4xlarge_elasticsearch: "d2.4xlarge.elasticsearch";
|
|
151
|
+
readonly d2_8xlarge_elasticsearch: "d2.8xlarge.elasticsearch";
|
|
152
|
+
readonly d2_xlarge_elasticsearch: "d2.xlarge.elasticsearch";
|
|
153
|
+
readonly i2_2xlarge_elasticsearch: "i2.2xlarge.elasticsearch";
|
|
154
|
+
readonly i2_xlarge_elasticsearch: "i2.xlarge.elasticsearch";
|
|
155
|
+
readonly i3_16xlarge_elasticsearch: "i3.16xlarge.elasticsearch";
|
|
156
|
+
readonly i3_2xlarge_elasticsearch: "i3.2xlarge.elasticsearch";
|
|
157
|
+
readonly i3_4xlarge_elasticsearch: "i3.4xlarge.elasticsearch";
|
|
158
|
+
readonly i3_8xlarge_elasticsearch: "i3.8xlarge.elasticsearch";
|
|
159
|
+
readonly i3_large_elasticsearch: "i3.large.elasticsearch";
|
|
160
|
+
readonly i3_xlarge_elasticsearch: "i3.xlarge.elasticsearch";
|
|
161
|
+
readonly m3_2xlarge_elasticsearch: "m3.2xlarge.elasticsearch";
|
|
162
|
+
readonly m3_large_elasticsearch: "m3.large.elasticsearch";
|
|
163
|
+
readonly m3_medium_elasticsearch: "m3.medium.elasticsearch";
|
|
164
|
+
readonly m3_xlarge_elasticsearch: "m3.xlarge.elasticsearch";
|
|
165
|
+
readonly m4_10xlarge_elasticsearch: "m4.10xlarge.elasticsearch";
|
|
166
|
+
readonly m4_2xlarge_elasticsearch: "m4.2xlarge.elasticsearch";
|
|
167
|
+
readonly m4_4xlarge_elasticsearch: "m4.4xlarge.elasticsearch";
|
|
168
|
+
readonly m4_large_elasticsearch: "m4.large.elasticsearch";
|
|
169
|
+
readonly m4_xlarge_elasticsearch: "m4.xlarge.elasticsearch";
|
|
170
|
+
readonly m5_12xlarge_elasticsearch: "m5.12xlarge.elasticsearch";
|
|
171
|
+
readonly m5_2xlarge_elasticsearch: "m5.2xlarge.elasticsearch";
|
|
172
|
+
readonly m5_4xlarge_elasticsearch: "m5.4xlarge.elasticsearch";
|
|
173
|
+
readonly m5_large_elasticsearch: "m5.large.elasticsearch";
|
|
174
|
+
readonly m5_xlarge_elasticsearch: "m5.xlarge.elasticsearch";
|
|
175
|
+
readonly r3_2xlarge_elasticsearch: "r3.2xlarge.elasticsearch";
|
|
176
|
+
readonly r3_4xlarge_elasticsearch: "r3.4xlarge.elasticsearch";
|
|
177
|
+
readonly r3_8xlarge_elasticsearch: "r3.8xlarge.elasticsearch";
|
|
178
|
+
readonly r3_large_elasticsearch: "r3.large.elasticsearch";
|
|
179
|
+
readonly r3_xlarge_elasticsearch: "r3.xlarge.elasticsearch";
|
|
180
|
+
readonly r4_16xlarge_elasticsearch: "r4.16xlarge.elasticsearch";
|
|
181
|
+
readonly r4_2xlarge_elasticsearch: "r4.2xlarge.elasticsearch";
|
|
182
|
+
readonly r4_4xlarge_elasticsearch: "r4.4xlarge.elasticsearch";
|
|
183
|
+
readonly r4_8xlarge_elasticsearch: "r4.8xlarge.elasticsearch";
|
|
184
|
+
readonly r4_large_elasticsearch: "r4.large.elasticsearch";
|
|
185
|
+
readonly r4_xlarge_elasticsearch: "r4.xlarge.elasticsearch";
|
|
186
|
+
readonly r5_12xlarge_elasticsearch: "r5.12xlarge.elasticsearch";
|
|
187
|
+
readonly r5_2xlarge_elasticsearch: "r5.2xlarge.elasticsearch";
|
|
188
|
+
readonly r5_4xlarge_elasticsearch: "r5.4xlarge.elasticsearch";
|
|
189
|
+
readonly r5_large_elasticsearch: "r5.large.elasticsearch";
|
|
190
|
+
readonly r5_xlarge_elasticsearch: "r5.xlarge.elasticsearch";
|
|
191
|
+
readonly t2_medium_elasticsearch: "t2.medium.elasticsearch";
|
|
192
|
+
readonly t2_micro_elasticsearch: "t2.micro.elasticsearch";
|
|
193
|
+
readonly t2_small_elasticsearch: "t2.small.elasticsearch";
|
|
194
|
+
readonly ultrawarm1_large_elasticsearch: "ultrawarm1.large.elasticsearch";
|
|
195
|
+
readonly ultrawarm1_medium_elasticsearch: "ultrawarm1.medium.elasticsearch";
|
|
196
|
+
};
|
|
197
|
+
/**
|
|
198
|
+
* @public
|
|
199
|
+
*/
|
|
200
|
+
export type ESPartitionInstanceType = (typeof ESPartitionInstanceType)[keyof typeof ESPartitionInstanceType];
|
|
201
|
+
/**
|
|
202
|
+
* @public
|
|
203
|
+
* @enum
|
|
204
|
+
*/
|
|
205
|
+
export declare const ESWarmPartitionInstanceType: {
|
|
206
|
+
readonly ultrawarm1_large_elasticsearch: "ultrawarm1.large.elasticsearch";
|
|
207
|
+
readonly ultrawarm1_medium_elasticsearch: "ultrawarm1.medium.elasticsearch";
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
212
|
+
export type ESWarmPartitionInstanceType = (typeof ESWarmPartitionInstanceType)[keyof typeof ESWarmPartitionInstanceType];
|
|
213
|
+
/**
|
|
214
|
+
* @public
|
|
215
|
+
* @enum
|
|
216
|
+
*/
|
|
217
|
+
export declare const LogType: {
|
|
218
|
+
readonly AUDIT_LOGS: "AUDIT_LOGS";
|
|
219
|
+
readonly ES_APPLICATION_LOGS: "ES_APPLICATION_LOGS";
|
|
220
|
+
readonly INDEX_SLOW_LOGS: "INDEX_SLOW_LOGS";
|
|
221
|
+
readonly SEARCH_SLOW_LOGS: "SEARCH_SLOW_LOGS";
|
|
222
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* @public
|
|
225
|
+
*/
|
|
226
|
+
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
227
|
+
/**
|
|
228
|
+
* @public
|
|
229
|
+
* @enum
|
|
230
|
+
*/
|
|
231
|
+
export declare const AutoTuneState: {
|
|
232
|
+
readonly DISABLED: "DISABLED";
|
|
233
|
+
readonly DISABLED_AND_ROLLBACK_COMPLETE: "DISABLED_AND_ROLLBACK_COMPLETE";
|
|
234
|
+
readonly DISABLED_AND_ROLLBACK_ERROR: "DISABLED_AND_ROLLBACK_ERROR";
|
|
235
|
+
readonly DISABLED_AND_ROLLBACK_IN_PROGRESS: "DISABLED_AND_ROLLBACK_IN_PROGRESS";
|
|
236
|
+
readonly DISABLED_AND_ROLLBACK_SCHEDULED: "DISABLED_AND_ROLLBACK_SCHEDULED";
|
|
237
|
+
readonly DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS";
|
|
238
|
+
readonly ENABLED: "ENABLED";
|
|
239
|
+
readonly ENABLE_IN_PROGRESS: "ENABLE_IN_PROGRESS";
|
|
240
|
+
readonly ERROR: "ERROR";
|
|
241
|
+
};
|
|
242
|
+
/**
|
|
243
|
+
* @public
|
|
244
|
+
*/
|
|
245
|
+
export type AutoTuneState = (typeof AutoTuneState)[keyof typeof AutoTuneState];
|
|
246
|
+
/**
|
|
247
|
+
* @public
|
|
248
|
+
* @enum
|
|
249
|
+
*/
|
|
250
|
+
export declare const ConfigChangeStatus: {
|
|
251
|
+
readonly APPLYING_CHANGES: "ApplyingChanges";
|
|
252
|
+
readonly CANCELLED: "Cancelled";
|
|
253
|
+
readonly COMPLETED: "Completed";
|
|
254
|
+
readonly INITIALIZING: "Initializing";
|
|
255
|
+
readonly PENDING: "Pending";
|
|
256
|
+
readonly PENDING_USER_INPUT: "PendingUserInput";
|
|
257
|
+
readonly VALIDATING: "Validating";
|
|
258
|
+
readonly VALIDATION_FAILED: "ValidationFailed";
|
|
259
|
+
};
|
|
260
|
+
/**
|
|
261
|
+
* @public
|
|
262
|
+
*/
|
|
263
|
+
export type ConfigChangeStatus = (typeof ConfigChangeStatus)[keyof typeof ConfigChangeStatus];
|
|
264
|
+
/**
|
|
265
|
+
* @public
|
|
266
|
+
* @enum
|
|
267
|
+
*/
|
|
268
|
+
export declare const InitiatedBy: {
|
|
269
|
+
readonly CUSTOMER: "CUSTOMER";
|
|
270
|
+
readonly SERVICE: "SERVICE";
|
|
271
|
+
};
|
|
272
|
+
/**
|
|
273
|
+
* @public
|
|
274
|
+
*/
|
|
275
|
+
export type InitiatedBy = (typeof InitiatedBy)[keyof typeof InitiatedBy];
|
|
276
|
+
/**
|
|
277
|
+
* @public
|
|
278
|
+
* @enum
|
|
279
|
+
*/
|
|
280
|
+
export declare const DomainProcessingStatusType: {
|
|
281
|
+
readonly ACTIVE: "Active";
|
|
282
|
+
readonly CREATING: "Creating";
|
|
283
|
+
readonly DELETING: "Deleting";
|
|
284
|
+
readonly ISOLATED: "Isolated";
|
|
285
|
+
readonly MODIFYING: "Modifying";
|
|
286
|
+
readonly UPDATING: "UpdatingServiceSoftware";
|
|
287
|
+
readonly UPGRADING: "UpgradingEngineVersion";
|
|
288
|
+
};
|
|
289
|
+
/**
|
|
290
|
+
* @public
|
|
291
|
+
*/
|
|
292
|
+
export type DomainProcessingStatusType = (typeof DomainProcessingStatusType)[keyof typeof DomainProcessingStatusType];
|
|
293
|
+
/**
|
|
294
|
+
* @public
|
|
295
|
+
* @enum
|
|
296
|
+
*/
|
|
297
|
+
export declare const PropertyValueType: {
|
|
298
|
+
readonly PLAIN_TEXT: "PLAIN_TEXT";
|
|
299
|
+
readonly STRINGIFIED_JSON: "STRINGIFIED_JSON";
|
|
300
|
+
};
|
|
301
|
+
/**
|
|
302
|
+
* @public
|
|
303
|
+
*/
|
|
304
|
+
export type PropertyValueType = (typeof PropertyValueType)[keyof typeof PropertyValueType];
|
|
305
|
+
/**
|
|
306
|
+
* @public
|
|
307
|
+
* @enum
|
|
308
|
+
*/
|
|
309
|
+
export declare const OutboundCrossClusterSearchConnectionStatusCode: {
|
|
310
|
+
readonly ACTIVE: "ACTIVE";
|
|
311
|
+
readonly DELETED: "DELETED";
|
|
312
|
+
readonly DELETING: "DELETING";
|
|
313
|
+
readonly PENDING_ACCEPTANCE: "PENDING_ACCEPTANCE";
|
|
314
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
315
|
+
readonly REJECTED: "REJECTED";
|
|
316
|
+
readonly VALIDATING: "VALIDATING";
|
|
317
|
+
readonly VALIDATION_FAILED: "VALIDATION_FAILED";
|
|
318
|
+
};
|
|
319
|
+
/**
|
|
320
|
+
* @public
|
|
321
|
+
*/
|
|
322
|
+
export type OutboundCrossClusterSearchConnectionStatusCode = (typeof OutboundCrossClusterSearchConnectionStatusCode)[keyof typeof OutboundCrossClusterSearchConnectionStatusCode];
|
|
323
|
+
/**
|
|
324
|
+
* @public
|
|
325
|
+
* @enum
|
|
326
|
+
*/
|
|
327
|
+
export declare const PackageStatus: {
|
|
328
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
329
|
+
readonly COPYING: "COPYING";
|
|
330
|
+
readonly COPY_FAILED: "COPY_FAILED";
|
|
331
|
+
readonly DELETED: "DELETED";
|
|
332
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
333
|
+
readonly DELETING: "DELETING";
|
|
334
|
+
readonly VALIDATING: "VALIDATING";
|
|
335
|
+
readonly VALIDATION_FAILED: "VALIDATION_FAILED";
|
|
336
|
+
};
|
|
337
|
+
/**
|
|
338
|
+
* @public
|
|
339
|
+
*/
|
|
340
|
+
export type PackageStatus = (typeof PackageStatus)[keyof typeof PackageStatus];
|
|
341
|
+
/**
|
|
342
|
+
* @public
|
|
343
|
+
* @enum
|
|
344
|
+
*/
|
|
345
|
+
export declare const VpcEndpointStatus: {
|
|
346
|
+
readonly ACTIVE: "ACTIVE";
|
|
347
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
348
|
+
readonly CREATING: "CREATING";
|
|
349
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
350
|
+
readonly DELETING: "DELETING";
|
|
351
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
352
|
+
readonly UPDATING: "UPDATING";
|
|
353
|
+
};
|
|
354
|
+
/**
|
|
355
|
+
* @public
|
|
356
|
+
*/
|
|
357
|
+
export type VpcEndpointStatus = (typeof VpcEndpointStatus)[keyof typeof VpcEndpointStatus];
|
|
358
|
+
/**
|
|
359
|
+
* @public
|
|
360
|
+
* @enum
|
|
361
|
+
*/
|
|
362
|
+
export declare const ScheduledAutoTuneActionType: {
|
|
363
|
+
readonly JVM_HEAP_SIZE_TUNING: "JVM_HEAP_SIZE_TUNING";
|
|
364
|
+
readonly JVM_YOUNG_GEN_TUNING: "JVM_YOUNG_GEN_TUNING";
|
|
365
|
+
};
|
|
366
|
+
/**
|
|
367
|
+
* @public
|
|
368
|
+
*/
|
|
369
|
+
export type ScheduledAutoTuneActionType = (typeof ScheduledAutoTuneActionType)[keyof typeof ScheduledAutoTuneActionType];
|
|
370
|
+
/**
|
|
371
|
+
* @public
|
|
372
|
+
* @enum
|
|
373
|
+
*/
|
|
374
|
+
export declare const ScheduledAutoTuneSeverityType: {
|
|
375
|
+
readonly HIGH: "HIGH";
|
|
376
|
+
readonly LOW: "LOW";
|
|
377
|
+
readonly MEDIUM: "MEDIUM";
|
|
378
|
+
};
|
|
379
|
+
/**
|
|
380
|
+
* @public
|
|
381
|
+
*/
|
|
382
|
+
export type ScheduledAutoTuneSeverityType = (typeof ScheduledAutoTuneSeverityType)[keyof typeof ScheduledAutoTuneSeverityType];
|
|
383
|
+
/**
|
|
384
|
+
* @public
|
|
385
|
+
* @enum
|
|
386
|
+
*/
|
|
387
|
+
export declare const AutoTuneType: {
|
|
388
|
+
readonly SCHEDULED_ACTION: "SCHEDULED_ACTION";
|
|
389
|
+
};
|
|
390
|
+
/**
|
|
391
|
+
* @public
|
|
392
|
+
*/
|
|
393
|
+
export type AutoTuneType = (typeof AutoTuneType)[keyof typeof AutoTuneType];
|
|
394
|
+
/**
|
|
395
|
+
* @public
|
|
396
|
+
* @enum
|
|
397
|
+
*/
|
|
398
|
+
export declare const OverallChangeStatus: {
|
|
399
|
+
readonly COMPLETED: "COMPLETED";
|
|
400
|
+
readonly FAILED: "FAILED";
|
|
401
|
+
readonly PENDING: "PENDING";
|
|
402
|
+
readonly PROCESSING: "PROCESSING";
|
|
403
|
+
};
|
|
404
|
+
/**
|
|
405
|
+
* @public
|
|
406
|
+
*/
|
|
407
|
+
export type OverallChangeStatus = (typeof OverallChangeStatus)[keyof typeof OverallChangeStatus];
|
|
408
|
+
/**
|
|
409
|
+
* @public
|
|
410
|
+
* @enum
|
|
411
|
+
*/
|
|
412
|
+
export declare const RollbackOnDisable: {
|
|
413
|
+
readonly DEFAULT_ROLLBACK: "DEFAULT_ROLLBACK";
|
|
414
|
+
readonly NO_ROLLBACK: "NO_ROLLBACK";
|
|
415
|
+
};
|
|
416
|
+
/**
|
|
417
|
+
* @public
|
|
418
|
+
*/
|
|
419
|
+
export type RollbackOnDisable = (typeof RollbackOnDisable)[keyof typeof RollbackOnDisable];
|
|
420
|
+
/**
|
|
421
|
+
* @public
|
|
422
|
+
* @enum
|
|
423
|
+
*/
|
|
424
|
+
export declare const DescribePackagesFilterName: {
|
|
425
|
+
readonly PackageID: "PackageID";
|
|
426
|
+
readonly PackageName: "PackageName";
|
|
427
|
+
readonly PackageStatus: "PackageStatus";
|
|
428
|
+
};
|
|
429
|
+
/**
|
|
430
|
+
* @public
|
|
431
|
+
*/
|
|
432
|
+
export type DescribePackagesFilterName = (typeof DescribePackagesFilterName)[keyof typeof DescribePackagesFilterName];
|
|
433
|
+
/**
|
|
434
|
+
* @public
|
|
435
|
+
* @enum
|
|
436
|
+
*/
|
|
437
|
+
export declare const ReservedElasticsearchInstancePaymentOption: {
|
|
438
|
+
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
439
|
+
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
440
|
+
readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
|
|
441
|
+
};
|
|
442
|
+
/**
|
|
443
|
+
* @public
|
|
444
|
+
*/
|
|
445
|
+
export type ReservedElasticsearchInstancePaymentOption = (typeof ReservedElasticsearchInstancePaymentOption)[keyof typeof ReservedElasticsearchInstancePaymentOption];
|
|
446
|
+
/**
|
|
447
|
+
* @public
|
|
448
|
+
* @enum
|
|
449
|
+
*/
|
|
450
|
+
export declare const VpcEndpointErrorCode: {
|
|
451
|
+
readonly ENDPOINT_NOT_FOUND: "ENDPOINT_NOT_FOUND";
|
|
452
|
+
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
453
|
+
};
|
|
454
|
+
/**
|
|
455
|
+
* @public
|
|
456
|
+
*/
|
|
457
|
+
export type VpcEndpointErrorCode = (typeof VpcEndpointErrorCode)[keyof typeof VpcEndpointErrorCode];
|
|
458
|
+
/**
|
|
459
|
+
* @public
|
|
460
|
+
* @enum
|
|
461
|
+
*/
|
|
462
|
+
export declare const UpgradeStep: {
|
|
463
|
+
readonly PRE_UPGRADE_CHECK: "PRE_UPGRADE_CHECK";
|
|
464
|
+
readonly SNAPSHOT: "SNAPSHOT";
|
|
465
|
+
readonly UPGRADE: "UPGRADE";
|
|
466
|
+
};
|
|
467
|
+
/**
|
|
468
|
+
* @public
|
|
469
|
+
*/
|
|
470
|
+
export type UpgradeStep = (typeof UpgradeStep)[keyof typeof UpgradeStep];
|
|
471
|
+
/**
|
|
472
|
+
* @public
|
|
473
|
+
* @enum
|
|
474
|
+
*/
|
|
475
|
+
export declare const UpgradeStatus: {
|
|
476
|
+
readonly FAILED: "FAILED";
|
|
477
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
478
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
479
|
+
readonly SUCCEEDED_WITH_ISSUES: "SUCCEEDED_WITH_ISSUES";
|
|
480
|
+
};
|
|
481
|
+
/**
|
|
482
|
+
* @public
|
|
483
|
+
*/
|
|
484
|
+
export type UpgradeStatus = (typeof UpgradeStatus)[keyof typeof UpgradeStatus];
|
|
485
|
+
/**
|
|
486
|
+
* @public
|
|
487
|
+
* @enum
|
|
488
|
+
*/
|
|
489
|
+
export declare const EngineType: {
|
|
490
|
+
readonly Elasticsearch: "Elasticsearch";
|
|
491
|
+
readonly OpenSearch: "OpenSearch";
|
|
492
|
+
};
|
|
493
|
+
/**
|
|
494
|
+
* @public
|
|
495
|
+
*/
|
|
496
|
+
export type EngineType = (typeof EngineType)[keyof typeof EngineType];
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ElasticsearchServiceServiceException as __BaseException } from "./ElasticsearchServiceServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>An error occured because the client wanted to access a not supported operation. Gives http status code of 409.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class DisabledOperationException extends __BaseException {
|
|
8
|
+
readonly name: "DisabledOperationException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<DisabledOperationException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>An exception for trying to create more than allowed resources or sub-resources. Gives http status code of 409.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class LimitExceededException extends __BaseException {
|
|
20
|
+
readonly name: "LimitExceededException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>An exception for accessing or deleting a resource that does not exist. Gives http status code of 400.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
32
|
+
readonly name: "ResourceNotFoundException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>An error occurred because user does not have permissions to access the resource. Returns HTTP status code 403.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
44
|
+
readonly name: "AccessDeniedException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
/**
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
49
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* <p>An error occurred while processing the request.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export declare class BaseException extends __BaseException {
|
|
56
|
+
readonly name: "BaseException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
constructor(opts: __ExceptionOptionType<BaseException, __BaseException>);
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* <p>The request processing has failed because of an unknown error, exception or failure (the failure is internal to the service) . Gives http status code of 500.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export declare class InternalException extends __BaseException {
|
|
68
|
+
readonly name: "InternalException";
|
|
69
|
+
readonly $fault: "server";
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
73
|
+
constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class ValidationException extends __BaseException {
|
|
80
|
+
readonly name: "ValidationException";
|
|
81
|
+
readonly $fault: "client";
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* <p>An error occurred because the client attempts to remove a resource that is currently in use. Returns HTTP status code 409.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export declare class ConflictException extends __BaseException {
|
|
92
|
+
readonly name: "ConflictException";
|
|
93
|
+
readonly $fault: "client";
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* <p>An exception for trying to create or access sub-resource that is either invalid or not supported. Gives http status code of 409.</p>
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
export declare class InvalidTypeException extends __BaseException {
|
|
104
|
+
readonly name: "InvalidTypeException";
|
|
105
|
+
readonly $fault: "client";
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
109
|
+
constructor(opts: __ExceptionOptionType<InvalidTypeException, __BaseException>);
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* <p>An exception for creating a resource that already exists. Gives http status code of 400.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
116
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
117
|
+
readonly $fault: "client";
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
121
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* <p>The request processing has failed because of invalid pagination token provided by customer. Returns an HTTP status code of 400. </p>
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
128
|
+
readonly name: "InvalidPaginationTokenException";
|
|
129
|
+
readonly $fault: "client";
|
|
130
|
+
/**
|
|
131
|
+
* @internal
|
|
132
|
+
*/
|
|
133
|
+
constructor(opts: __ExceptionOptionType<InvalidPaginationTokenException, __BaseException>);
|
|
134
|
+
}
|