@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
|
@@ -1,18 +1,40 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
AutoTuneDesiredState,
|
|
3
|
+
AutoTuneState,
|
|
4
|
+
AutoTuneType,
|
|
5
|
+
ConfigChangeStatus,
|
|
6
|
+
DeploymentStatus,
|
|
7
|
+
DescribePackagesFilterName,
|
|
8
|
+
DomainPackageStatus,
|
|
9
|
+
DomainProcessingStatusType,
|
|
10
|
+
EngineType,
|
|
11
|
+
ESPartitionInstanceType,
|
|
12
|
+
ESWarmPartitionInstanceType,
|
|
13
|
+
InboundCrossClusterSearchConnectionStatusCode,
|
|
14
|
+
InitiatedBy,
|
|
15
|
+
LogType,
|
|
16
|
+
OptionState,
|
|
17
|
+
OutboundCrossClusterSearchConnectionStatusCode,
|
|
18
|
+
OverallChangeStatus,
|
|
19
|
+
PackageStatus,
|
|
20
|
+
PackageType,
|
|
21
|
+
PrincipalType,
|
|
22
|
+
PropertyValueType,
|
|
23
|
+
ReservedElasticsearchInstancePaymentOption,
|
|
24
|
+
RollbackOnDisable,
|
|
25
|
+
ScheduledAutoTuneActionType,
|
|
26
|
+
ScheduledAutoTuneSeverityType,
|
|
27
|
+
TimeUnit,
|
|
28
|
+
TLSSecurityPolicy,
|
|
29
|
+
UpgradeStatus,
|
|
30
|
+
UpgradeStep,
|
|
31
|
+
VolumeType,
|
|
32
|
+
VpcEndpointErrorCode,
|
|
33
|
+
VpcEndpointStatus,
|
|
34
|
+
} from "./enums";
|
|
3
35
|
export interface AcceptInboundCrossClusterSearchConnectionRequest {
|
|
4
36
|
CrossClusterSearchConnectionId: string | undefined;
|
|
5
37
|
}
|
|
6
|
-
export declare const InboundCrossClusterSearchConnectionStatusCode: {
|
|
7
|
-
readonly APPROVED: "APPROVED";
|
|
8
|
-
readonly DELETED: "DELETED";
|
|
9
|
-
readonly DELETING: "DELETING";
|
|
10
|
-
readonly PENDING_ACCEPTANCE: "PENDING_ACCEPTANCE";
|
|
11
|
-
readonly REJECTED: "REJECTED";
|
|
12
|
-
readonly REJECTING: "REJECTING";
|
|
13
|
-
};
|
|
14
|
-
export type InboundCrossClusterSearchConnectionStatusCode =
|
|
15
|
-
(typeof InboundCrossClusterSearchConnectionStatusCode)[keyof typeof InboundCrossClusterSearchConnectionStatusCode];
|
|
16
38
|
export interface InboundCrossClusterSearchConnectionStatus {
|
|
17
39
|
StatusCode?: InboundCrossClusterSearchConnectionStatusCode | undefined;
|
|
18
40
|
Message?: string | undefined;
|
|
@@ -33,40 +55,6 @@ export interface AcceptInboundCrossClusterSearchConnectionResponse {
|
|
|
33
55
|
| InboundCrossClusterSearchConnection
|
|
34
56
|
| undefined;
|
|
35
57
|
}
|
|
36
|
-
export declare class DisabledOperationException extends __BaseException {
|
|
37
|
-
readonly name: "DisabledOperationException";
|
|
38
|
-
readonly $fault: "client";
|
|
39
|
-
constructor(
|
|
40
|
-
opts: __ExceptionOptionType<DisabledOperationException, __BaseException>
|
|
41
|
-
);
|
|
42
|
-
}
|
|
43
|
-
export declare class LimitExceededException extends __BaseException {
|
|
44
|
-
readonly name: "LimitExceededException";
|
|
45
|
-
readonly $fault: "client";
|
|
46
|
-
constructor(
|
|
47
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
48
|
-
);
|
|
49
|
-
}
|
|
50
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
51
|
-
readonly name: "ResourceNotFoundException";
|
|
52
|
-
readonly $fault: "client";
|
|
53
|
-
constructor(
|
|
54
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
55
|
-
);
|
|
56
|
-
}
|
|
57
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
58
|
-
readonly name: "AccessDeniedException";
|
|
59
|
-
readonly $fault: "client";
|
|
60
|
-
constructor(
|
|
61
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
62
|
-
);
|
|
63
|
-
}
|
|
64
|
-
export declare const OptionState: {
|
|
65
|
-
readonly Active: "Active";
|
|
66
|
-
readonly Processing: "Processing";
|
|
67
|
-
readonly RequiresIndexDocuments: "RequiresIndexDocuments";
|
|
68
|
-
};
|
|
69
|
-
export type OptionState = (typeof OptionState)[keyof typeof OptionState];
|
|
70
58
|
export interface OptionStatus {
|
|
71
59
|
CreationDate: Date | undefined;
|
|
72
60
|
UpdateDate: Date | undefined;
|
|
@@ -90,23 +78,6 @@ export interface AddTagsRequest {
|
|
|
90
78
|
ARN: string | undefined;
|
|
91
79
|
TagList: Tag[] | undefined;
|
|
92
80
|
}
|
|
93
|
-
export declare class BaseException extends __BaseException {
|
|
94
|
-
readonly name: "BaseException";
|
|
95
|
-
readonly $fault: "client";
|
|
96
|
-
constructor(opts: __ExceptionOptionType<BaseException, __BaseException>);
|
|
97
|
-
}
|
|
98
|
-
export declare class InternalException extends __BaseException {
|
|
99
|
-
readonly name: "InternalException";
|
|
100
|
-
readonly $fault: "server";
|
|
101
|
-
constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
|
|
102
|
-
}
|
|
103
|
-
export declare class ValidationException extends __BaseException {
|
|
104
|
-
readonly name: "ValidationException";
|
|
105
|
-
readonly $fault: "client";
|
|
106
|
-
constructor(
|
|
107
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
108
|
-
);
|
|
109
|
-
}
|
|
110
81
|
export interface AdvancedOptionsStatus {
|
|
111
82
|
Options: Record<string, string> | undefined;
|
|
112
83
|
Status: OptionStatus | undefined;
|
|
@@ -158,23 +129,10 @@ export interface AssociatePackageRequest {
|
|
|
158
129
|
PackageID: string | undefined;
|
|
159
130
|
DomainName: string | undefined;
|
|
160
131
|
}
|
|
161
|
-
export declare const DomainPackageStatus: {
|
|
162
|
-
readonly ACTIVE: "ACTIVE";
|
|
163
|
-
readonly ASSOCIATING: "ASSOCIATING";
|
|
164
|
-
readonly ASSOCIATION_FAILED: "ASSOCIATION_FAILED";
|
|
165
|
-
readonly DISSOCIATING: "DISSOCIATING";
|
|
166
|
-
readonly DISSOCIATION_FAILED: "DISSOCIATION_FAILED";
|
|
167
|
-
};
|
|
168
|
-
export type DomainPackageStatus =
|
|
169
|
-
(typeof DomainPackageStatus)[keyof typeof DomainPackageStatus];
|
|
170
132
|
export interface ErrorDetails {
|
|
171
133
|
ErrorType?: string | undefined;
|
|
172
134
|
ErrorMessage?: string | undefined;
|
|
173
135
|
}
|
|
174
|
-
export declare const PackageType: {
|
|
175
|
-
readonly TXT_DICTIONARY: "TXT-DICTIONARY";
|
|
176
|
-
};
|
|
177
|
-
export type PackageType = (typeof PackageType)[keyof typeof PackageType];
|
|
178
136
|
export interface DomainPackageDetails {
|
|
179
137
|
PackageID?: string | undefined;
|
|
180
138
|
PackageName?: string | undefined;
|
|
@@ -189,20 +147,10 @@ export interface DomainPackageDetails {
|
|
|
189
147
|
export interface AssociatePackageResponse {
|
|
190
148
|
DomainPackageDetails?: DomainPackageDetails | undefined;
|
|
191
149
|
}
|
|
192
|
-
export declare class ConflictException extends __BaseException {
|
|
193
|
-
readonly name: "ConflictException";
|
|
194
|
-
readonly $fault: "client";
|
|
195
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
196
|
-
}
|
|
197
150
|
export interface AuthorizeVpcEndpointAccessRequest {
|
|
198
151
|
DomainName: string | undefined;
|
|
199
152
|
Account: string | undefined;
|
|
200
153
|
}
|
|
201
|
-
export declare const PrincipalType: {
|
|
202
|
-
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
203
|
-
readonly AWS_SERVICE: "AWS_SERVICE";
|
|
204
|
-
};
|
|
205
|
-
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
206
154
|
export interface AuthorizedPrincipal {
|
|
207
155
|
PrincipalType?: PrincipalType | undefined;
|
|
208
156
|
Principal?: string | undefined;
|
|
@@ -227,15 +175,6 @@ export interface CancelDomainConfigChangeResponse {
|
|
|
227
175
|
export interface CancelElasticsearchServiceSoftwareUpdateRequest {
|
|
228
176
|
DomainName: string | undefined;
|
|
229
177
|
}
|
|
230
|
-
export declare const DeploymentStatus: {
|
|
231
|
-
readonly COMPLETED: "COMPLETED";
|
|
232
|
-
readonly ELIGIBLE: "ELIGIBLE";
|
|
233
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
234
|
-
readonly NOT_ELIGIBLE: "NOT_ELIGIBLE";
|
|
235
|
-
readonly PENDING_UPDATE: "PENDING_UPDATE";
|
|
236
|
-
};
|
|
237
|
-
export type DeploymentStatus =
|
|
238
|
-
(typeof DeploymentStatus)[keyof typeof DeploymentStatus];
|
|
239
178
|
export interface ServiceSoftwareOptions {
|
|
240
179
|
CurrentVersion?: string | undefined;
|
|
241
180
|
NewVersion?: string | undefined;
|
|
@@ -249,16 +188,6 @@ export interface ServiceSoftwareOptions {
|
|
|
249
188
|
export interface CancelElasticsearchServiceSoftwareUpdateResponse {
|
|
250
189
|
ServiceSoftwareOptions?: ServiceSoftwareOptions | undefined;
|
|
251
190
|
}
|
|
252
|
-
export declare const AutoTuneDesiredState: {
|
|
253
|
-
readonly DISABLED: "DISABLED";
|
|
254
|
-
readonly ENABLED: "ENABLED";
|
|
255
|
-
};
|
|
256
|
-
export type AutoTuneDesiredState =
|
|
257
|
-
(typeof AutoTuneDesiredState)[keyof typeof AutoTuneDesiredState];
|
|
258
|
-
export declare const TimeUnit: {
|
|
259
|
-
readonly HOURS: "HOURS";
|
|
260
|
-
};
|
|
261
|
-
export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
|
|
262
191
|
export interface Duration {
|
|
263
192
|
Value?: number | undefined;
|
|
264
193
|
Unit?: TimeUnit | undefined;
|
|
@@ -278,13 +207,6 @@ export interface CognitoOptions {
|
|
|
278
207
|
IdentityPoolId?: string | undefined;
|
|
279
208
|
RoleArn?: string | undefined;
|
|
280
209
|
}
|
|
281
|
-
export declare const TLSSecurityPolicy: {
|
|
282
|
-
readonly POLICY_MIN_TLS_1_0_2019_07: "Policy-Min-TLS-1-0-2019-07";
|
|
283
|
-
readonly POLICY_MIN_TLS_1_2_2019_07: "Policy-Min-TLS-1-2-2019-07";
|
|
284
|
-
readonly POLICY_MIN_TLS_1_2_PFS_2023_10: "Policy-Min-TLS-1-2-PFS-2023-10";
|
|
285
|
-
};
|
|
286
|
-
export type TLSSecurityPolicy =
|
|
287
|
-
(typeof TLSSecurityPolicy)[keyof typeof TLSSecurityPolicy];
|
|
288
210
|
export interface DomainEndpointOptions {
|
|
289
211
|
EnforceHTTPS?: boolean | undefined;
|
|
290
212
|
TLSSecurityPolicy?: TLSSecurityPolicy | undefined;
|
|
@@ -292,13 +214,6 @@ export interface DomainEndpointOptions {
|
|
|
292
214
|
CustomEndpoint?: string | undefined;
|
|
293
215
|
CustomEndpointCertificateArn?: string | undefined;
|
|
294
216
|
}
|
|
295
|
-
export declare const VolumeType: {
|
|
296
|
-
readonly gp2: "gp2";
|
|
297
|
-
readonly gp3: "gp3";
|
|
298
|
-
readonly io1: "io1";
|
|
299
|
-
readonly standard: "standard";
|
|
300
|
-
};
|
|
301
|
-
export type VolumeType = (typeof VolumeType)[keyof typeof VolumeType];
|
|
302
217
|
export interface EBSOptions {
|
|
303
218
|
EBSEnabled?: boolean | undefined;
|
|
304
219
|
VolumeType?: VolumeType | undefined;
|
|
@@ -309,74 +224,6 @@ export interface EBSOptions {
|
|
|
309
224
|
export interface ColdStorageOptions {
|
|
310
225
|
Enabled: boolean | undefined;
|
|
311
226
|
}
|
|
312
|
-
export declare const ESPartitionInstanceType: {
|
|
313
|
-
readonly c4_2xlarge_elasticsearch: "c4.2xlarge.elasticsearch";
|
|
314
|
-
readonly c4_4xlarge_elasticsearch: "c4.4xlarge.elasticsearch";
|
|
315
|
-
readonly c4_8xlarge_elasticsearch: "c4.8xlarge.elasticsearch";
|
|
316
|
-
readonly c4_large_elasticsearch: "c4.large.elasticsearch";
|
|
317
|
-
readonly c4_xlarge_elasticsearch: "c4.xlarge.elasticsearch";
|
|
318
|
-
readonly c5_18xlarge_elasticsearch: "c5.18xlarge.elasticsearch";
|
|
319
|
-
readonly c5_2xlarge_elasticsearch: "c5.2xlarge.elasticsearch";
|
|
320
|
-
readonly c5_4xlarge_elasticsearch: "c5.4xlarge.elasticsearch";
|
|
321
|
-
readonly c5_9xlarge_elasticsearch: "c5.9xlarge.elasticsearch";
|
|
322
|
-
readonly c5_large_elasticsearch: "c5.large.elasticsearch";
|
|
323
|
-
readonly c5_xlarge_elasticsearch: "c5.xlarge.elasticsearch";
|
|
324
|
-
readonly d2_2xlarge_elasticsearch: "d2.2xlarge.elasticsearch";
|
|
325
|
-
readonly d2_4xlarge_elasticsearch: "d2.4xlarge.elasticsearch";
|
|
326
|
-
readonly d2_8xlarge_elasticsearch: "d2.8xlarge.elasticsearch";
|
|
327
|
-
readonly d2_xlarge_elasticsearch: "d2.xlarge.elasticsearch";
|
|
328
|
-
readonly i2_2xlarge_elasticsearch: "i2.2xlarge.elasticsearch";
|
|
329
|
-
readonly i2_xlarge_elasticsearch: "i2.xlarge.elasticsearch";
|
|
330
|
-
readonly i3_16xlarge_elasticsearch: "i3.16xlarge.elasticsearch";
|
|
331
|
-
readonly i3_2xlarge_elasticsearch: "i3.2xlarge.elasticsearch";
|
|
332
|
-
readonly i3_4xlarge_elasticsearch: "i3.4xlarge.elasticsearch";
|
|
333
|
-
readonly i3_8xlarge_elasticsearch: "i3.8xlarge.elasticsearch";
|
|
334
|
-
readonly i3_large_elasticsearch: "i3.large.elasticsearch";
|
|
335
|
-
readonly i3_xlarge_elasticsearch: "i3.xlarge.elasticsearch";
|
|
336
|
-
readonly m3_2xlarge_elasticsearch: "m3.2xlarge.elasticsearch";
|
|
337
|
-
readonly m3_large_elasticsearch: "m3.large.elasticsearch";
|
|
338
|
-
readonly m3_medium_elasticsearch: "m3.medium.elasticsearch";
|
|
339
|
-
readonly m3_xlarge_elasticsearch: "m3.xlarge.elasticsearch";
|
|
340
|
-
readonly m4_10xlarge_elasticsearch: "m4.10xlarge.elasticsearch";
|
|
341
|
-
readonly m4_2xlarge_elasticsearch: "m4.2xlarge.elasticsearch";
|
|
342
|
-
readonly m4_4xlarge_elasticsearch: "m4.4xlarge.elasticsearch";
|
|
343
|
-
readonly m4_large_elasticsearch: "m4.large.elasticsearch";
|
|
344
|
-
readonly m4_xlarge_elasticsearch: "m4.xlarge.elasticsearch";
|
|
345
|
-
readonly m5_12xlarge_elasticsearch: "m5.12xlarge.elasticsearch";
|
|
346
|
-
readonly m5_2xlarge_elasticsearch: "m5.2xlarge.elasticsearch";
|
|
347
|
-
readonly m5_4xlarge_elasticsearch: "m5.4xlarge.elasticsearch";
|
|
348
|
-
readonly m5_large_elasticsearch: "m5.large.elasticsearch";
|
|
349
|
-
readonly m5_xlarge_elasticsearch: "m5.xlarge.elasticsearch";
|
|
350
|
-
readonly r3_2xlarge_elasticsearch: "r3.2xlarge.elasticsearch";
|
|
351
|
-
readonly r3_4xlarge_elasticsearch: "r3.4xlarge.elasticsearch";
|
|
352
|
-
readonly r3_8xlarge_elasticsearch: "r3.8xlarge.elasticsearch";
|
|
353
|
-
readonly r3_large_elasticsearch: "r3.large.elasticsearch";
|
|
354
|
-
readonly r3_xlarge_elasticsearch: "r3.xlarge.elasticsearch";
|
|
355
|
-
readonly r4_16xlarge_elasticsearch: "r4.16xlarge.elasticsearch";
|
|
356
|
-
readonly r4_2xlarge_elasticsearch: "r4.2xlarge.elasticsearch";
|
|
357
|
-
readonly r4_4xlarge_elasticsearch: "r4.4xlarge.elasticsearch";
|
|
358
|
-
readonly r4_8xlarge_elasticsearch: "r4.8xlarge.elasticsearch";
|
|
359
|
-
readonly r4_large_elasticsearch: "r4.large.elasticsearch";
|
|
360
|
-
readonly r4_xlarge_elasticsearch: "r4.xlarge.elasticsearch";
|
|
361
|
-
readonly r5_12xlarge_elasticsearch: "r5.12xlarge.elasticsearch";
|
|
362
|
-
readonly r5_2xlarge_elasticsearch: "r5.2xlarge.elasticsearch";
|
|
363
|
-
readonly r5_4xlarge_elasticsearch: "r5.4xlarge.elasticsearch";
|
|
364
|
-
readonly r5_large_elasticsearch: "r5.large.elasticsearch";
|
|
365
|
-
readonly r5_xlarge_elasticsearch: "r5.xlarge.elasticsearch";
|
|
366
|
-
readonly t2_medium_elasticsearch: "t2.medium.elasticsearch";
|
|
367
|
-
readonly t2_micro_elasticsearch: "t2.micro.elasticsearch";
|
|
368
|
-
readonly t2_small_elasticsearch: "t2.small.elasticsearch";
|
|
369
|
-
readonly ultrawarm1_large_elasticsearch: "ultrawarm1.large.elasticsearch";
|
|
370
|
-
readonly ultrawarm1_medium_elasticsearch: "ultrawarm1.medium.elasticsearch";
|
|
371
|
-
};
|
|
372
|
-
export type ESPartitionInstanceType =
|
|
373
|
-
(typeof ESPartitionInstanceType)[keyof typeof ESPartitionInstanceType];
|
|
374
|
-
export declare const ESWarmPartitionInstanceType: {
|
|
375
|
-
readonly ultrawarm1_large_elasticsearch: "ultrawarm1.large.elasticsearch";
|
|
376
|
-
readonly ultrawarm1_medium_elasticsearch: "ultrawarm1.medium.elasticsearch";
|
|
377
|
-
};
|
|
378
|
-
export type ESWarmPartitionInstanceType =
|
|
379
|
-
(typeof ESWarmPartitionInstanceType)[keyof typeof ESWarmPartitionInstanceType];
|
|
380
227
|
export interface ZoneAwarenessConfig {
|
|
381
228
|
AvailabilityZoneCount?: number | undefined;
|
|
382
229
|
}
|
|
@@ -397,13 +244,6 @@ export interface EncryptionAtRestOptions {
|
|
|
397
244
|
Enabled?: boolean | undefined;
|
|
398
245
|
KmsKeyId?: string | undefined;
|
|
399
246
|
}
|
|
400
|
-
export declare const LogType: {
|
|
401
|
-
readonly AUDIT_LOGS: "AUDIT_LOGS";
|
|
402
|
-
readonly ES_APPLICATION_LOGS: "ES_APPLICATION_LOGS";
|
|
403
|
-
readonly INDEX_SLOW_LOGS: "INDEX_SLOW_LOGS";
|
|
404
|
-
readonly SEARCH_SLOW_LOGS: "SEARCH_SLOW_LOGS";
|
|
405
|
-
};
|
|
406
|
-
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
407
247
|
export interface LogPublishingOption {
|
|
408
248
|
CloudWatchLogsLogGroupArn?: string | undefined;
|
|
409
249
|
Enabled?: boolean | undefined;
|
|
@@ -438,39 +278,10 @@ export interface CreateElasticsearchDomainRequest {
|
|
|
438
278
|
AutoTuneOptions?: AutoTuneOptionsInput | undefined;
|
|
439
279
|
TagList?: Tag[] | undefined;
|
|
440
280
|
}
|
|
441
|
-
export declare const AutoTuneState: {
|
|
442
|
-
readonly DISABLED: "DISABLED";
|
|
443
|
-
readonly DISABLED_AND_ROLLBACK_COMPLETE: "DISABLED_AND_ROLLBACK_COMPLETE";
|
|
444
|
-
readonly DISABLED_AND_ROLLBACK_ERROR: "DISABLED_AND_ROLLBACK_ERROR";
|
|
445
|
-
readonly DISABLED_AND_ROLLBACK_IN_PROGRESS: "DISABLED_AND_ROLLBACK_IN_PROGRESS";
|
|
446
|
-
readonly DISABLED_AND_ROLLBACK_SCHEDULED: "DISABLED_AND_ROLLBACK_SCHEDULED";
|
|
447
|
-
readonly DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS";
|
|
448
|
-
readonly ENABLED: "ENABLED";
|
|
449
|
-
readonly ENABLE_IN_PROGRESS: "ENABLE_IN_PROGRESS";
|
|
450
|
-
readonly ERROR: "ERROR";
|
|
451
|
-
};
|
|
452
|
-
export type AutoTuneState = (typeof AutoTuneState)[keyof typeof AutoTuneState];
|
|
453
281
|
export interface AutoTuneOptionsOutput {
|
|
454
282
|
State?: AutoTuneState | undefined;
|
|
455
283
|
ErrorMessage?: string | undefined;
|
|
456
284
|
}
|
|
457
|
-
export declare const ConfigChangeStatus: {
|
|
458
|
-
readonly APPLYING_CHANGES: "ApplyingChanges";
|
|
459
|
-
readonly CANCELLED: "Cancelled";
|
|
460
|
-
readonly COMPLETED: "Completed";
|
|
461
|
-
readonly INITIALIZING: "Initializing";
|
|
462
|
-
readonly PENDING: "Pending";
|
|
463
|
-
readonly PENDING_USER_INPUT: "PendingUserInput";
|
|
464
|
-
readonly VALIDATING: "Validating";
|
|
465
|
-
readonly VALIDATION_FAILED: "ValidationFailed";
|
|
466
|
-
};
|
|
467
|
-
export type ConfigChangeStatus =
|
|
468
|
-
(typeof ConfigChangeStatus)[keyof typeof ConfigChangeStatus];
|
|
469
|
-
export declare const InitiatedBy: {
|
|
470
|
-
readonly CUSTOMER: "CUSTOMER";
|
|
471
|
-
readonly SERVICE: "SERVICE";
|
|
472
|
-
};
|
|
473
|
-
export type InitiatedBy = (typeof InitiatedBy)[keyof typeof InitiatedBy];
|
|
474
285
|
export interface ChangeProgressDetails {
|
|
475
286
|
ChangeId?: string | undefined;
|
|
476
287
|
Message?: string | undefined;
|
|
@@ -479,23 +290,6 @@ export interface ChangeProgressDetails {
|
|
|
479
290
|
LastUpdatedTime?: Date | undefined;
|
|
480
291
|
InitiatedBy?: InitiatedBy | undefined;
|
|
481
292
|
}
|
|
482
|
-
export declare const DomainProcessingStatusType: {
|
|
483
|
-
readonly ACTIVE: "Active";
|
|
484
|
-
readonly CREATING: "Creating";
|
|
485
|
-
readonly DELETING: "Deleting";
|
|
486
|
-
readonly ISOLATED: "Isolated";
|
|
487
|
-
readonly MODIFYING: "Modifying";
|
|
488
|
-
readonly UPDATING: "UpdatingServiceSoftware";
|
|
489
|
-
readonly UPGRADING: "UpgradingEngineVersion";
|
|
490
|
-
};
|
|
491
|
-
export type DomainProcessingStatusType =
|
|
492
|
-
(typeof DomainProcessingStatusType)[keyof typeof DomainProcessingStatusType];
|
|
493
|
-
export declare const PropertyValueType: {
|
|
494
|
-
readonly PLAIN_TEXT: "PLAIN_TEXT";
|
|
495
|
-
readonly STRINGIFIED_JSON: "STRINGIFIED_JSON";
|
|
496
|
-
};
|
|
497
|
-
export type PropertyValueType =
|
|
498
|
-
(typeof PropertyValueType)[keyof typeof PropertyValueType];
|
|
499
293
|
export interface ModifyingProperties {
|
|
500
294
|
Name?: string | undefined;
|
|
501
295
|
ActiveValue?: string | undefined;
|
|
@@ -542,37 +336,11 @@ export interface ElasticsearchDomainStatus {
|
|
|
542
336
|
export interface CreateElasticsearchDomainResponse {
|
|
543
337
|
DomainStatus?: ElasticsearchDomainStatus | undefined;
|
|
544
338
|
}
|
|
545
|
-
export declare class InvalidTypeException extends __BaseException {
|
|
546
|
-
readonly name: "InvalidTypeException";
|
|
547
|
-
readonly $fault: "client";
|
|
548
|
-
constructor(
|
|
549
|
-
opts: __ExceptionOptionType<InvalidTypeException, __BaseException>
|
|
550
|
-
);
|
|
551
|
-
}
|
|
552
|
-
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
553
|
-
readonly name: "ResourceAlreadyExistsException";
|
|
554
|
-
readonly $fault: "client";
|
|
555
|
-
constructor(
|
|
556
|
-
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
557
|
-
);
|
|
558
|
-
}
|
|
559
339
|
export interface CreateOutboundCrossClusterSearchConnectionRequest {
|
|
560
340
|
SourceDomainInfo: DomainInformation | undefined;
|
|
561
341
|
DestinationDomainInfo: DomainInformation | undefined;
|
|
562
342
|
ConnectionAlias: string | undefined;
|
|
563
343
|
}
|
|
564
|
-
export declare const OutboundCrossClusterSearchConnectionStatusCode: {
|
|
565
|
-
readonly ACTIVE: "ACTIVE";
|
|
566
|
-
readonly DELETED: "DELETED";
|
|
567
|
-
readonly DELETING: "DELETING";
|
|
568
|
-
readonly PENDING_ACCEPTANCE: "PENDING_ACCEPTANCE";
|
|
569
|
-
readonly PROVISIONING: "PROVISIONING";
|
|
570
|
-
readonly REJECTED: "REJECTED";
|
|
571
|
-
readonly VALIDATING: "VALIDATING";
|
|
572
|
-
readonly VALIDATION_FAILED: "VALIDATION_FAILED";
|
|
573
|
-
};
|
|
574
|
-
export type OutboundCrossClusterSearchConnectionStatusCode =
|
|
575
|
-
(typeof OutboundCrossClusterSearchConnectionStatusCode)[keyof typeof OutboundCrossClusterSearchConnectionStatusCode];
|
|
576
344
|
export interface OutboundCrossClusterSearchConnectionStatus {
|
|
577
345
|
StatusCode?: OutboundCrossClusterSearchConnectionStatusCode | undefined;
|
|
578
346
|
Message?: string | undefined;
|
|
@@ -594,17 +362,6 @@ export interface CreatePackageRequest {
|
|
|
594
362
|
PackageDescription?: string | undefined;
|
|
595
363
|
PackageSource: PackageSource | undefined;
|
|
596
364
|
}
|
|
597
|
-
export declare const PackageStatus: {
|
|
598
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
599
|
-
readonly COPYING: "COPYING";
|
|
600
|
-
readonly COPY_FAILED: "COPY_FAILED";
|
|
601
|
-
readonly DELETED: "DELETED";
|
|
602
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
603
|
-
readonly DELETING: "DELETING";
|
|
604
|
-
readonly VALIDATING: "VALIDATING";
|
|
605
|
-
readonly VALIDATION_FAILED: "VALIDATION_FAILED";
|
|
606
|
-
};
|
|
607
|
-
export type PackageStatus = (typeof PackageStatus)[keyof typeof PackageStatus];
|
|
608
365
|
export interface PackageDetails {
|
|
609
366
|
PackageID?: string | undefined;
|
|
610
367
|
PackageName?: string | undefined;
|
|
@@ -624,17 +381,6 @@ export interface CreateVpcEndpointRequest {
|
|
|
624
381
|
VpcOptions: VPCOptions | undefined;
|
|
625
382
|
ClientToken?: string | undefined;
|
|
626
383
|
}
|
|
627
|
-
export declare const VpcEndpointStatus: {
|
|
628
|
-
readonly ACTIVE: "ACTIVE";
|
|
629
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
630
|
-
readonly CREATING: "CREATING";
|
|
631
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
632
|
-
readonly DELETING: "DELETING";
|
|
633
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
634
|
-
readonly UPDATING: "UPDATING";
|
|
635
|
-
};
|
|
636
|
-
export type VpcEndpointStatus =
|
|
637
|
-
(typeof VpcEndpointStatus)[keyof typeof VpcEndpointStatus];
|
|
638
384
|
export interface VpcEndpoint {
|
|
639
385
|
VpcEndpointId?: string | undefined;
|
|
640
386
|
VpcEndpointOwner?: string | undefined;
|
|
@@ -698,19 +444,6 @@ export interface DescribeDomainAutoTunesRequest {
|
|
|
698
444
|
MaxResults?: number | undefined;
|
|
699
445
|
NextToken?: string | undefined;
|
|
700
446
|
}
|
|
701
|
-
export declare const ScheduledAutoTuneActionType: {
|
|
702
|
-
readonly JVM_HEAP_SIZE_TUNING: "JVM_HEAP_SIZE_TUNING";
|
|
703
|
-
readonly JVM_YOUNG_GEN_TUNING: "JVM_YOUNG_GEN_TUNING";
|
|
704
|
-
};
|
|
705
|
-
export type ScheduledAutoTuneActionType =
|
|
706
|
-
(typeof ScheduledAutoTuneActionType)[keyof typeof ScheduledAutoTuneActionType];
|
|
707
|
-
export declare const ScheduledAutoTuneSeverityType: {
|
|
708
|
-
readonly HIGH: "HIGH";
|
|
709
|
-
readonly LOW: "LOW";
|
|
710
|
-
readonly MEDIUM: "MEDIUM";
|
|
711
|
-
};
|
|
712
|
-
export type ScheduledAutoTuneSeverityType =
|
|
713
|
-
(typeof ScheduledAutoTuneSeverityType)[keyof typeof ScheduledAutoTuneSeverityType];
|
|
714
447
|
export interface ScheduledAutoTuneDetails {
|
|
715
448
|
Date?: Date | undefined;
|
|
716
449
|
ActionType?: ScheduledAutoTuneActionType | undefined;
|
|
@@ -720,10 +453,6 @@ export interface ScheduledAutoTuneDetails {
|
|
|
720
453
|
export interface AutoTuneDetails {
|
|
721
454
|
ScheduledAutoTuneDetails?: ScheduledAutoTuneDetails | undefined;
|
|
722
455
|
}
|
|
723
|
-
export declare const AutoTuneType: {
|
|
724
|
-
readonly SCHEDULED_ACTION: "SCHEDULED_ACTION";
|
|
725
|
-
};
|
|
726
|
-
export type AutoTuneType = (typeof AutoTuneType)[keyof typeof AutoTuneType];
|
|
727
456
|
export interface AutoTune {
|
|
728
457
|
AutoTuneType?: AutoTuneType | undefined;
|
|
729
458
|
AutoTuneDetails?: AutoTuneDetails | undefined;
|
|
@@ -742,14 +471,6 @@ export interface ChangeProgressStage {
|
|
|
742
471
|
Description?: string | undefined;
|
|
743
472
|
LastUpdated?: Date | undefined;
|
|
744
473
|
}
|
|
745
|
-
export declare const OverallChangeStatus: {
|
|
746
|
-
readonly COMPLETED: "COMPLETED";
|
|
747
|
-
readonly FAILED: "FAILED";
|
|
748
|
-
readonly PENDING: "PENDING";
|
|
749
|
-
readonly PROCESSING: "PROCESSING";
|
|
750
|
-
};
|
|
751
|
-
export type OverallChangeStatus =
|
|
752
|
-
(typeof OverallChangeStatus)[keyof typeof OverallChangeStatus];
|
|
753
474
|
export interface ChangeProgressStatusDetails {
|
|
754
475
|
ChangeId?: string | undefined;
|
|
755
476
|
StartTime?: Date | undefined;
|
|
@@ -774,12 +495,6 @@ export interface DescribeElasticsearchDomainResponse {
|
|
|
774
495
|
export interface DescribeElasticsearchDomainConfigRequest {
|
|
775
496
|
DomainName: string | undefined;
|
|
776
497
|
}
|
|
777
|
-
export declare const RollbackOnDisable: {
|
|
778
|
-
readonly DEFAULT_ROLLBACK: "DEFAULT_ROLLBACK";
|
|
779
|
-
readonly NO_ROLLBACK: "NO_ROLLBACK";
|
|
780
|
-
};
|
|
781
|
-
export type RollbackOnDisable =
|
|
782
|
-
(typeof RollbackOnDisable)[keyof typeof RollbackOnDisable];
|
|
783
498
|
export interface AutoTuneOptions {
|
|
784
499
|
DesiredState?: AutoTuneDesiredState | undefined;
|
|
785
500
|
RollbackOnDisable?: RollbackOnDisable | undefined;
|
|
@@ -908,16 +623,6 @@ export interface DescribeInboundCrossClusterSearchConnectionsResponse {
|
|
|
908
623
|
| undefined;
|
|
909
624
|
NextToken?: string | undefined;
|
|
910
625
|
}
|
|
911
|
-
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
912
|
-
readonly name: "InvalidPaginationTokenException";
|
|
913
|
-
readonly $fault: "client";
|
|
914
|
-
constructor(
|
|
915
|
-
opts: __ExceptionOptionType<
|
|
916
|
-
InvalidPaginationTokenException,
|
|
917
|
-
__BaseException
|
|
918
|
-
>
|
|
919
|
-
);
|
|
920
|
-
}
|
|
921
626
|
export interface DescribeOutboundCrossClusterSearchConnectionsRequest {
|
|
922
627
|
Filters?: Filter[] | undefined;
|
|
923
628
|
MaxResults?: number | undefined;
|
|
@@ -929,13 +634,6 @@ export interface DescribeOutboundCrossClusterSearchConnectionsResponse {
|
|
|
929
634
|
| undefined;
|
|
930
635
|
NextToken?: string | undefined;
|
|
931
636
|
}
|
|
932
|
-
export declare const DescribePackagesFilterName: {
|
|
933
|
-
readonly PackageID: "PackageID";
|
|
934
|
-
readonly PackageName: "PackageName";
|
|
935
|
-
readonly PackageStatus: "PackageStatus";
|
|
936
|
-
};
|
|
937
|
-
export type DescribePackagesFilterName =
|
|
938
|
-
(typeof DescribePackagesFilterName)[keyof typeof DescribePackagesFilterName];
|
|
939
637
|
export interface DescribePackagesFilter {
|
|
940
638
|
Name?: DescribePackagesFilterName | undefined;
|
|
941
639
|
Value?: string[] | undefined;
|
|
@@ -954,13 +652,6 @@ export interface DescribeReservedElasticsearchInstanceOfferingsRequest {
|
|
|
954
652
|
MaxResults?: number | undefined;
|
|
955
653
|
NextToken?: string | undefined;
|
|
956
654
|
}
|
|
957
|
-
export declare const ReservedElasticsearchInstancePaymentOption: {
|
|
958
|
-
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
959
|
-
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
960
|
-
readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
|
|
961
|
-
};
|
|
962
|
-
export type ReservedElasticsearchInstancePaymentOption =
|
|
963
|
-
(typeof ReservedElasticsearchInstancePaymentOption)[keyof typeof ReservedElasticsearchInstancePaymentOption];
|
|
964
655
|
export interface RecurringCharge {
|
|
965
656
|
RecurringChargeAmount?: number | undefined;
|
|
966
657
|
RecurringChargeFrequency?: string | undefined;
|
|
@@ -1008,12 +699,6 @@ export interface DescribeReservedElasticsearchInstancesResponse {
|
|
|
1008
699
|
export interface DescribeVpcEndpointsRequest {
|
|
1009
700
|
VpcEndpointIds: string[] | undefined;
|
|
1010
701
|
}
|
|
1011
|
-
export declare const VpcEndpointErrorCode: {
|
|
1012
|
-
readonly ENDPOINT_NOT_FOUND: "ENDPOINT_NOT_FOUND";
|
|
1013
|
-
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
1014
|
-
};
|
|
1015
|
-
export type VpcEndpointErrorCode =
|
|
1016
|
-
(typeof VpcEndpointErrorCode)[keyof typeof VpcEndpointErrorCode];
|
|
1017
702
|
export interface VpcEndpointError {
|
|
1018
703
|
VpcEndpointId?: string | undefined;
|
|
1019
704
|
ErrorCode?: VpcEndpointErrorCode | undefined;
|
|
@@ -1060,19 +745,6 @@ export interface GetUpgradeHistoryRequest {
|
|
|
1060
745
|
MaxResults?: number | undefined;
|
|
1061
746
|
NextToken?: string | undefined;
|
|
1062
747
|
}
|
|
1063
|
-
export declare const UpgradeStep: {
|
|
1064
|
-
readonly PRE_UPGRADE_CHECK: "PRE_UPGRADE_CHECK";
|
|
1065
|
-
readonly SNAPSHOT: "SNAPSHOT";
|
|
1066
|
-
readonly UPGRADE: "UPGRADE";
|
|
1067
|
-
};
|
|
1068
|
-
export type UpgradeStep = (typeof UpgradeStep)[keyof typeof UpgradeStep];
|
|
1069
|
-
export declare const UpgradeStatus: {
|
|
1070
|
-
readonly FAILED: "FAILED";
|
|
1071
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1072
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
1073
|
-
readonly SUCCEEDED_WITH_ISSUES: "SUCCEEDED_WITH_ISSUES";
|
|
1074
|
-
};
|
|
1075
|
-
export type UpgradeStatus = (typeof UpgradeStatus)[keyof typeof UpgradeStatus];
|
|
1076
748
|
export interface UpgradeStepItem {
|
|
1077
749
|
UpgradeStep?: UpgradeStep | undefined;
|
|
1078
750
|
UpgradeStepStatus?: UpgradeStatus | undefined;
|
|
@@ -1097,11 +769,6 @@ export interface GetUpgradeStatusResponse {
|
|
|
1097
769
|
StepStatus?: UpgradeStatus | undefined;
|
|
1098
770
|
UpgradeName?: string | undefined;
|
|
1099
771
|
}
|
|
1100
|
-
export declare const EngineType: {
|
|
1101
|
-
readonly Elasticsearch: "Elasticsearch";
|
|
1102
|
-
readonly OpenSearch: "OpenSearch";
|
|
1103
|
-
};
|
|
1104
|
-
export type EngineType = (typeof EngineType)[keyof typeof EngineType];
|
|
1105
772
|
export interface ListDomainNamesRequest {
|
|
1106
773
|
EngineType?: EngineType | undefined;
|
|
1107
774
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elasticsearch-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elasticsearch Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.936.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-elasticsearch-service",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|