@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,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ElasticsearchServiceServiceException as __BaseException } from "./ElasticsearchServiceServiceException";
|
|
1
|
+
import { AutoTuneDesiredState, AutoTuneState, AutoTuneType, ConfigChangeStatus, DeploymentStatus, DescribePackagesFilterName, DomainPackageStatus, DomainProcessingStatusType, EngineType, ESPartitionInstanceType, ESWarmPartitionInstanceType, InboundCrossClusterSearchConnectionStatusCode, InitiatedBy, LogType, OptionState, OutboundCrossClusterSearchConnectionStatusCode, OverallChangeStatus, PackageStatus, PackageType, PrincipalType, PropertyValueType, ReservedElasticsearchInstancePaymentOption, RollbackOnDisable, ScheduledAutoTuneActionType, ScheduledAutoTuneSeverityType, TimeUnit, TLSSecurityPolicy, UpgradeStatus, UpgradeStep, VolumeType, VpcEndpointErrorCode, VpcEndpointStatus } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* <p>Container for the parameters to the <code><a>AcceptInboundCrossClusterSearchConnection</a></code> operation.</p>
|
|
5
4
|
* @public
|
|
@@ -11,22 +10,6 @@ export interface AcceptInboundCrossClusterSearchConnectionRequest {
|
|
|
11
10
|
*/
|
|
12
11
|
CrossClusterSearchConnectionId: string | undefined;
|
|
13
12
|
}
|
|
14
|
-
/**
|
|
15
|
-
* @public
|
|
16
|
-
* @enum
|
|
17
|
-
*/
|
|
18
|
-
export declare const InboundCrossClusterSearchConnectionStatusCode: {
|
|
19
|
-
readonly APPROVED: "APPROVED";
|
|
20
|
-
readonly DELETED: "DELETED";
|
|
21
|
-
readonly DELETING: "DELETING";
|
|
22
|
-
readonly PENDING_ACCEPTANCE: "PENDING_ACCEPTANCE";
|
|
23
|
-
readonly REJECTED: "REJECTED";
|
|
24
|
-
readonly REJECTING: "REJECTING";
|
|
25
|
-
};
|
|
26
|
-
/**
|
|
27
|
-
* @public
|
|
28
|
-
*/
|
|
29
|
-
export type InboundCrossClusterSearchConnectionStatusCode = (typeof InboundCrossClusterSearchConnectionStatusCode)[keyof typeof InboundCrossClusterSearchConnectionStatusCode];
|
|
30
13
|
/**
|
|
31
14
|
* <p>Specifies the coonection status of an inbound cross-cluster search connection.</p>
|
|
32
15
|
* @public
|
|
@@ -100,67 +83,6 @@ export interface AcceptInboundCrossClusterSearchConnectionResponse {
|
|
|
100
83
|
*/
|
|
101
84
|
CrossClusterSearchConnection?: InboundCrossClusterSearchConnection | undefined;
|
|
102
85
|
}
|
|
103
|
-
/**
|
|
104
|
-
* <p>An error occured because the client wanted to access a not supported operation. Gives http status code of 409.</p>
|
|
105
|
-
* @public
|
|
106
|
-
*/
|
|
107
|
-
export declare class DisabledOperationException extends __BaseException {
|
|
108
|
-
readonly name: "DisabledOperationException";
|
|
109
|
-
readonly $fault: "client";
|
|
110
|
-
/**
|
|
111
|
-
* @internal
|
|
112
|
-
*/
|
|
113
|
-
constructor(opts: __ExceptionOptionType<DisabledOperationException, __BaseException>);
|
|
114
|
-
}
|
|
115
|
-
/**
|
|
116
|
-
* <p>An exception for trying to create more than allowed resources or sub-resources. Gives http status code of 409.</p>
|
|
117
|
-
* @public
|
|
118
|
-
*/
|
|
119
|
-
export declare class LimitExceededException extends __BaseException {
|
|
120
|
-
readonly name: "LimitExceededException";
|
|
121
|
-
readonly $fault: "client";
|
|
122
|
-
/**
|
|
123
|
-
* @internal
|
|
124
|
-
*/
|
|
125
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
126
|
-
}
|
|
127
|
-
/**
|
|
128
|
-
* <p>An exception for accessing or deleting a resource that does not exist. Gives http status code of 400.</p>
|
|
129
|
-
* @public
|
|
130
|
-
*/
|
|
131
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
132
|
-
readonly name: "ResourceNotFoundException";
|
|
133
|
-
readonly $fault: "client";
|
|
134
|
-
/**
|
|
135
|
-
* @internal
|
|
136
|
-
*/
|
|
137
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
138
|
-
}
|
|
139
|
-
/**
|
|
140
|
-
* <p>An error occurred because user does not have permissions to access the resource. Returns HTTP status code 403.</p>
|
|
141
|
-
* @public
|
|
142
|
-
*/
|
|
143
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
144
|
-
readonly name: "AccessDeniedException";
|
|
145
|
-
readonly $fault: "client";
|
|
146
|
-
/**
|
|
147
|
-
* @internal
|
|
148
|
-
*/
|
|
149
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
150
|
-
}
|
|
151
|
-
/**
|
|
152
|
-
* @public
|
|
153
|
-
* @enum
|
|
154
|
-
*/
|
|
155
|
-
export declare const OptionState: {
|
|
156
|
-
readonly Active: "Active";
|
|
157
|
-
readonly Processing: "Processing";
|
|
158
|
-
readonly RequiresIndexDocuments: "RequiresIndexDocuments";
|
|
159
|
-
};
|
|
160
|
-
/**
|
|
161
|
-
* @public
|
|
162
|
-
*/
|
|
163
|
-
export type OptionState = (typeof OptionState)[keyof typeof OptionState];
|
|
164
86
|
/**
|
|
165
87
|
* <p>Provides the current status of the entity.</p>
|
|
166
88
|
* @public
|
|
@@ -295,42 +217,6 @@ export interface AddTagsRequest {
|
|
|
295
217
|
*/
|
|
296
218
|
TagList: Tag[] | undefined;
|
|
297
219
|
}
|
|
298
|
-
/**
|
|
299
|
-
* <p>An error occurred while processing the request.</p>
|
|
300
|
-
* @public
|
|
301
|
-
*/
|
|
302
|
-
export declare class BaseException extends __BaseException {
|
|
303
|
-
readonly name: "BaseException";
|
|
304
|
-
readonly $fault: "client";
|
|
305
|
-
/**
|
|
306
|
-
* @internal
|
|
307
|
-
*/
|
|
308
|
-
constructor(opts: __ExceptionOptionType<BaseException, __BaseException>);
|
|
309
|
-
}
|
|
310
|
-
/**
|
|
311
|
-
* <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>
|
|
312
|
-
* @public
|
|
313
|
-
*/
|
|
314
|
-
export declare class InternalException extends __BaseException {
|
|
315
|
-
readonly name: "InternalException";
|
|
316
|
-
readonly $fault: "server";
|
|
317
|
-
/**
|
|
318
|
-
* @internal
|
|
319
|
-
*/
|
|
320
|
-
constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
|
|
321
|
-
}
|
|
322
|
-
/**
|
|
323
|
-
* <p>An exception for missing / invalid input fields. Gives http status code of 400.</p>
|
|
324
|
-
* @public
|
|
325
|
-
*/
|
|
326
|
-
export declare class ValidationException extends __BaseException {
|
|
327
|
-
readonly name: "ValidationException";
|
|
328
|
-
readonly $fault: "client";
|
|
329
|
-
/**
|
|
330
|
-
* @internal
|
|
331
|
-
*/
|
|
332
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
333
|
-
}
|
|
334
220
|
/**
|
|
335
221
|
* <p> Status of the advanced options for the specified Elasticsearch domain. Currently, the following advanced options are available:</p>
|
|
336
222
|
* <ul>
|
|
@@ -562,21 +448,6 @@ export interface AssociatePackageRequest {
|
|
|
562
448
|
*/
|
|
563
449
|
DomainName: string | undefined;
|
|
564
450
|
}
|
|
565
|
-
/**
|
|
566
|
-
* @public
|
|
567
|
-
* @enum
|
|
568
|
-
*/
|
|
569
|
-
export declare const DomainPackageStatus: {
|
|
570
|
-
readonly ACTIVE: "ACTIVE";
|
|
571
|
-
readonly ASSOCIATING: "ASSOCIATING";
|
|
572
|
-
readonly ASSOCIATION_FAILED: "ASSOCIATION_FAILED";
|
|
573
|
-
readonly DISSOCIATING: "DISSOCIATING";
|
|
574
|
-
readonly DISSOCIATION_FAILED: "DISSOCIATION_FAILED";
|
|
575
|
-
};
|
|
576
|
-
/**
|
|
577
|
-
* @public
|
|
578
|
-
*/
|
|
579
|
-
export type DomainPackageStatus = (typeof DomainPackageStatus)[keyof typeof DomainPackageStatus];
|
|
580
451
|
/**
|
|
581
452
|
* @public
|
|
582
453
|
*/
|
|
@@ -584,17 +455,6 @@ export interface ErrorDetails {
|
|
|
584
455
|
ErrorType?: string | undefined;
|
|
585
456
|
ErrorMessage?: string | undefined;
|
|
586
457
|
}
|
|
587
|
-
/**
|
|
588
|
-
* @public
|
|
589
|
-
* @enum
|
|
590
|
-
*/
|
|
591
|
-
export declare const PackageType: {
|
|
592
|
-
readonly TXT_DICTIONARY: "TXT-DICTIONARY";
|
|
593
|
-
};
|
|
594
|
-
/**
|
|
595
|
-
* @public
|
|
596
|
-
*/
|
|
597
|
-
export type PackageType = (typeof PackageType)[keyof typeof PackageType];
|
|
598
458
|
/**
|
|
599
459
|
* <p>Information on a package that is associated with a domain.</p>
|
|
600
460
|
* @public
|
|
@@ -659,18 +519,6 @@ export interface AssociatePackageResponse {
|
|
|
659
519
|
*/
|
|
660
520
|
DomainPackageDetails?: DomainPackageDetails | undefined;
|
|
661
521
|
}
|
|
662
|
-
/**
|
|
663
|
-
* <p>An error occurred because the client attempts to remove a resource that is currently in use. Returns HTTP status code 409.</p>
|
|
664
|
-
* @public
|
|
665
|
-
*/
|
|
666
|
-
export declare class ConflictException extends __BaseException {
|
|
667
|
-
readonly name: "ConflictException";
|
|
668
|
-
readonly $fault: "client";
|
|
669
|
-
/**
|
|
670
|
-
* @internal
|
|
671
|
-
*/
|
|
672
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
673
|
-
}
|
|
674
522
|
/**
|
|
675
523
|
* <p>Container for request parameters to the <code><a>AuthorizeVpcEndpointAccess</a></code> operation.
|
|
676
524
|
* Specifies the account to be permitted to manage VPC endpoints against the domain.</p>
|
|
@@ -688,18 +536,6 @@ export interface AuthorizeVpcEndpointAccessRequest {
|
|
|
688
536
|
*/
|
|
689
537
|
Account: string | undefined;
|
|
690
538
|
}
|
|
691
|
-
/**
|
|
692
|
-
* @public
|
|
693
|
-
* @enum
|
|
694
|
-
*/
|
|
695
|
-
export declare const PrincipalType: {
|
|
696
|
-
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
697
|
-
readonly AWS_SERVICE: "AWS_SERVICE";
|
|
698
|
-
};
|
|
699
|
-
/**
|
|
700
|
-
* @public
|
|
701
|
-
*/
|
|
702
|
-
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
703
539
|
/**
|
|
704
540
|
* <p>Information about an account or service that has access to an Amazon
|
|
705
541
|
* OpenSearch Service domain through the use of an interface VPC endpoint.</p>
|
|
@@ -799,21 +635,6 @@ export interface CancelElasticsearchServiceSoftwareUpdateRequest {
|
|
|
799
635
|
*/
|
|
800
636
|
DomainName: string | undefined;
|
|
801
637
|
}
|
|
802
|
-
/**
|
|
803
|
-
* @public
|
|
804
|
-
* @enum
|
|
805
|
-
*/
|
|
806
|
-
export declare const DeploymentStatus: {
|
|
807
|
-
readonly COMPLETED: "COMPLETED";
|
|
808
|
-
readonly ELIGIBLE: "ELIGIBLE";
|
|
809
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
810
|
-
readonly NOT_ELIGIBLE: "NOT_ELIGIBLE";
|
|
811
|
-
readonly PENDING_UPDATE: "PENDING_UPDATE";
|
|
812
|
-
};
|
|
813
|
-
/**
|
|
814
|
-
* @public
|
|
815
|
-
*/
|
|
816
|
-
export type DeploymentStatus = (typeof DeploymentStatus)[keyof typeof DeploymentStatus];
|
|
817
638
|
/**
|
|
818
639
|
* <p>The current options of an Elasticsearch domain service software options.</p>
|
|
819
640
|
* @public
|
|
@@ -871,29 +692,6 @@ export interface CancelElasticsearchServiceSoftwareUpdateResponse {
|
|
|
871
692
|
*/
|
|
872
693
|
ServiceSoftwareOptions?: ServiceSoftwareOptions | undefined;
|
|
873
694
|
}
|
|
874
|
-
/**
|
|
875
|
-
* @public
|
|
876
|
-
* @enum
|
|
877
|
-
*/
|
|
878
|
-
export declare const AutoTuneDesiredState: {
|
|
879
|
-
readonly DISABLED: "DISABLED";
|
|
880
|
-
readonly ENABLED: "ENABLED";
|
|
881
|
-
};
|
|
882
|
-
/**
|
|
883
|
-
* @public
|
|
884
|
-
*/
|
|
885
|
-
export type AutoTuneDesiredState = (typeof AutoTuneDesiredState)[keyof typeof AutoTuneDesiredState];
|
|
886
|
-
/**
|
|
887
|
-
* @public
|
|
888
|
-
* @enum
|
|
889
|
-
*/
|
|
890
|
-
export declare const TimeUnit: {
|
|
891
|
-
readonly HOURS: "HOURS";
|
|
892
|
-
};
|
|
893
|
-
/**
|
|
894
|
-
* @public
|
|
895
|
-
*/
|
|
896
|
-
export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
|
|
897
695
|
/**
|
|
898
696
|
* <p>Specifies maintenance schedule duration: duration value and duration unit. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information.</p>
|
|
899
697
|
* @public
|
|
@@ -973,19 +771,6 @@ export interface CognitoOptions {
|
|
|
973
771
|
*/
|
|
974
772
|
RoleArn?: string | undefined;
|
|
975
773
|
}
|
|
976
|
-
/**
|
|
977
|
-
* @public
|
|
978
|
-
* @enum
|
|
979
|
-
*/
|
|
980
|
-
export declare const TLSSecurityPolicy: {
|
|
981
|
-
readonly POLICY_MIN_TLS_1_0_2019_07: "Policy-Min-TLS-1-0-2019-07";
|
|
982
|
-
readonly POLICY_MIN_TLS_1_2_2019_07: "Policy-Min-TLS-1-2-2019-07";
|
|
983
|
-
readonly POLICY_MIN_TLS_1_2_PFS_2023_10: "Policy-Min-TLS-1-2-PFS-2023-10";
|
|
984
|
-
};
|
|
985
|
-
/**
|
|
986
|
-
* @public
|
|
987
|
-
*/
|
|
988
|
-
export type TLSSecurityPolicy = (typeof TLSSecurityPolicy)[keyof typeof TLSSecurityPolicy];
|
|
989
774
|
/**
|
|
990
775
|
* <p>Options to configure endpoint for the Elasticsearch domain.</p>
|
|
991
776
|
* @public
|
|
@@ -1024,20 +809,6 @@ export interface DomainEndpointOptions {
|
|
|
1024
809
|
*/
|
|
1025
810
|
CustomEndpointCertificateArn?: string | undefined;
|
|
1026
811
|
}
|
|
1027
|
-
/**
|
|
1028
|
-
* @public
|
|
1029
|
-
* @enum
|
|
1030
|
-
*/
|
|
1031
|
-
export declare const VolumeType: {
|
|
1032
|
-
readonly gp2: "gp2";
|
|
1033
|
-
readonly gp3: "gp3";
|
|
1034
|
-
readonly io1: "io1";
|
|
1035
|
-
readonly standard: "standard";
|
|
1036
|
-
};
|
|
1037
|
-
/**
|
|
1038
|
-
* @public
|
|
1039
|
-
*/
|
|
1040
|
-
export type VolumeType = (typeof VolumeType)[keyof typeof VolumeType];
|
|
1041
812
|
/**
|
|
1042
813
|
* <p>Options to enable, disable, and specify the properties of EBS storage volumes. For more information, see <a href="http://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/es-createupdatedomains.html#es-createdomain-configure-ebs" target="_blank"> Configuring EBS-based Storage</a>.</p>
|
|
1043
814
|
* @public
|
|
@@ -1080,86 +851,6 @@ export interface ColdStorageOptions {
|
|
|
1080
851
|
*/
|
|
1081
852
|
Enabled: boolean | undefined;
|
|
1082
853
|
}
|
|
1083
|
-
/**
|
|
1084
|
-
* @public
|
|
1085
|
-
* @enum
|
|
1086
|
-
*/
|
|
1087
|
-
export declare const ESPartitionInstanceType: {
|
|
1088
|
-
readonly c4_2xlarge_elasticsearch: "c4.2xlarge.elasticsearch";
|
|
1089
|
-
readonly c4_4xlarge_elasticsearch: "c4.4xlarge.elasticsearch";
|
|
1090
|
-
readonly c4_8xlarge_elasticsearch: "c4.8xlarge.elasticsearch";
|
|
1091
|
-
readonly c4_large_elasticsearch: "c4.large.elasticsearch";
|
|
1092
|
-
readonly c4_xlarge_elasticsearch: "c4.xlarge.elasticsearch";
|
|
1093
|
-
readonly c5_18xlarge_elasticsearch: "c5.18xlarge.elasticsearch";
|
|
1094
|
-
readonly c5_2xlarge_elasticsearch: "c5.2xlarge.elasticsearch";
|
|
1095
|
-
readonly c5_4xlarge_elasticsearch: "c5.4xlarge.elasticsearch";
|
|
1096
|
-
readonly c5_9xlarge_elasticsearch: "c5.9xlarge.elasticsearch";
|
|
1097
|
-
readonly c5_large_elasticsearch: "c5.large.elasticsearch";
|
|
1098
|
-
readonly c5_xlarge_elasticsearch: "c5.xlarge.elasticsearch";
|
|
1099
|
-
readonly d2_2xlarge_elasticsearch: "d2.2xlarge.elasticsearch";
|
|
1100
|
-
readonly d2_4xlarge_elasticsearch: "d2.4xlarge.elasticsearch";
|
|
1101
|
-
readonly d2_8xlarge_elasticsearch: "d2.8xlarge.elasticsearch";
|
|
1102
|
-
readonly d2_xlarge_elasticsearch: "d2.xlarge.elasticsearch";
|
|
1103
|
-
readonly i2_2xlarge_elasticsearch: "i2.2xlarge.elasticsearch";
|
|
1104
|
-
readonly i2_xlarge_elasticsearch: "i2.xlarge.elasticsearch";
|
|
1105
|
-
readonly i3_16xlarge_elasticsearch: "i3.16xlarge.elasticsearch";
|
|
1106
|
-
readonly i3_2xlarge_elasticsearch: "i3.2xlarge.elasticsearch";
|
|
1107
|
-
readonly i3_4xlarge_elasticsearch: "i3.4xlarge.elasticsearch";
|
|
1108
|
-
readonly i3_8xlarge_elasticsearch: "i3.8xlarge.elasticsearch";
|
|
1109
|
-
readonly i3_large_elasticsearch: "i3.large.elasticsearch";
|
|
1110
|
-
readonly i3_xlarge_elasticsearch: "i3.xlarge.elasticsearch";
|
|
1111
|
-
readonly m3_2xlarge_elasticsearch: "m3.2xlarge.elasticsearch";
|
|
1112
|
-
readonly m3_large_elasticsearch: "m3.large.elasticsearch";
|
|
1113
|
-
readonly m3_medium_elasticsearch: "m3.medium.elasticsearch";
|
|
1114
|
-
readonly m3_xlarge_elasticsearch: "m3.xlarge.elasticsearch";
|
|
1115
|
-
readonly m4_10xlarge_elasticsearch: "m4.10xlarge.elasticsearch";
|
|
1116
|
-
readonly m4_2xlarge_elasticsearch: "m4.2xlarge.elasticsearch";
|
|
1117
|
-
readonly m4_4xlarge_elasticsearch: "m4.4xlarge.elasticsearch";
|
|
1118
|
-
readonly m4_large_elasticsearch: "m4.large.elasticsearch";
|
|
1119
|
-
readonly m4_xlarge_elasticsearch: "m4.xlarge.elasticsearch";
|
|
1120
|
-
readonly m5_12xlarge_elasticsearch: "m5.12xlarge.elasticsearch";
|
|
1121
|
-
readonly m5_2xlarge_elasticsearch: "m5.2xlarge.elasticsearch";
|
|
1122
|
-
readonly m5_4xlarge_elasticsearch: "m5.4xlarge.elasticsearch";
|
|
1123
|
-
readonly m5_large_elasticsearch: "m5.large.elasticsearch";
|
|
1124
|
-
readonly m5_xlarge_elasticsearch: "m5.xlarge.elasticsearch";
|
|
1125
|
-
readonly r3_2xlarge_elasticsearch: "r3.2xlarge.elasticsearch";
|
|
1126
|
-
readonly r3_4xlarge_elasticsearch: "r3.4xlarge.elasticsearch";
|
|
1127
|
-
readonly r3_8xlarge_elasticsearch: "r3.8xlarge.elasticsearch";
|
|
1128
|
-
readonly r3_large_elasticsearch: "r3.large.elasticsearch";
|
|
1129
|
-
readonly r3_xlarge_elasticsearch: "r3.xlarge.elasticsearch";
|
|
1130
|
-
readonly r4_16xlarge_elasticsearch: "r4.16xlarge.elasticsearch";
|
|
1131
|
-
readonly r4_2xlarge_elasticsearch: "r4.2xlarge.elasticsearch";
|
|
1132
|
-
readonly r4_4xlarge_elasticsearch: "r4.4xlarge.elasticsearch";
|
|
1133
|
-
readonly r4_8xlarge_elasticsearch: "r4.8xlarge.elasticsearch";
|
|
1134
|
-
readonly r4_large_elasticsearch: "r4.large.elasticsearch";
|
|
1135
|
-
readonly r4_xlarge_elasticsearch: "r4.xlarge.elasticsearch";
|
|
1136
|
-
readonly r5_12xlarge_elasticsearch: "r5.12xlarge.elasticsearch";
|
|
1137
|
-
readonly r5_2xlarge_elasticsearch: "r5.2xlarge.elasticsearch";
|
|
1138
|
-
readonly r5_4xlarge_elasticsearch: "r5.4xlarge.elasticsearch";
|
|
1139
|
-
readonly r5_large_elasticsearch: "r5.large.elasticsearch";
|
|
1140
|
-
readonly r5_xlarge_elasticsearch: "r5.xlarge.elasticsearch";
|
|
1141
|
-
readonly t2_medium_elasticsearch: "t2.medium.elasticsearch";
|
|
1142
|
-
readonly t2_micro_elasticsearch: "t2.micro.elasticsearch";
|
|
1143
|
-
readonly t2_small_elasticsearch: "t2.small.elasticsearch";
|
|
1144
|
-
readonly ultrawarm1_large_elasticsearch: "ultrawarm1.large.elasticsearch";
|
|
1145
|
-
readonly ultrawarm1_medium_elasticsearch: "ultrawarm1.medium.elasticsearch";
|
|
1146
|
-
};
|
|
1147
|
-
/**
|
|
1148
|
-
* @public
|
|
1149
|
-
*/
|
|
1150
|
-
export type ESPartitionInstanceType = (typeof ESPartitionInstanceType)[keyof typeof ESPartitionInstanceType];
|
|
1151
|
-
/**
|
|
1152
|
-
* @public
|
|
1153
|
-
* @enum
|
|
1154
|
-
*/
|
|
1155
|
-
export declare const ESWarmPartitionInstanceType: {
|
|
1156
|
-
readonly ultrawarm1_large_elasticsearch: "ultrawarm1.large.elasticsearch";
|
|
1157
|
-
readonly ultrawarm1_medium_elasticsearch: "ultrawarm1.medium.elasticsearch";
|
|
1158
|
-
};
|
|
1159
|
-
/**
|
|
1160
|
-
* @public
|
|
1161
|
-
*/
|
|
1162
|
-
export type ESWarmPartitionInstanceType = (typeof ESWarmPartitionInstanceType)[keyof typeof ESWarmPartitionInstanceType];
|
|
1163
854
|
/**
|
|
1164
855
|
* <p>Specifies the zone awareness configuration for the domain cluster, such as the number of availability zones.</p>
|
|
1165
856
|
* @public
|
|
@@ -1248,20 +939,6 @@ export interface EncryptionAtRestOptions {
|
|
|
1248
939
|
*/
|
|
1249
940
|
KmsKeyId?: string | undefined;
|
|
1250
941
|
}
|
|
1251
|
-
/**
|
|
1252
|
-
* @public
|
|
1253
|
-
* @enum
|
|
1254
|
-
*/
|
|
1255
|
-
export declare const LogType: {
|
|
1256
|
-
readonly AUDIT_LOGS: "AUDIT_LOGS";
|
|
1257
|
-
readonly ES_APPLICATION_LOGS: "ES_APPLICATION_LOGS";
|
|
1258
|
-
readonly INDEX_SLOW_LOGS: "INDEX_SLOW_LOGS";
|
|
1259
|
-
readonly SEARCH_SLOW_LOGS: "SEARCH_SLOW_LOGS";
|
|
1260
|
-
};
|
|
1261
|
-
/**
|
|
1262
|
-
* @public
|
|
1263
|
-
*/
|
|
1264
|
-
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
1265
942
|
/**
|
|
1266
943
|
* <p>Log Publishing option that is set for given domain.
|
|
1267
944
|
* <br></br>Attributes and their details:
|
|
@@ -1409,25 +1086,6 @@ export interface CreateElasticsearchDomainRequest {
|
|
|
1409
1086
|
*/
|
|
1410
1087
|
TagList?: Tag[] | undefined;
|
|
1411
1088
|
}
|
|
1412
|
-
/**
|
|
1413
|
-
* @public
|
|
1414
|
-
* @enum
|
|
1415
|
-
*/
|
|
1416
|
-
export declare const AutoTuneState: {
|
|
1417
|
-
readonly DISABLED: "DISABLED";
|
|
1418
|
-
readonly DISABLED_AND_ROLLBACK_COMPLETE: "DISABLED_AND_ROLLBACK_COMPLETE";
|
|
1419
|
-
readonly DISABLED_AND_ROLLBACK_ERROR: "DISABLED_AND_ROLLBACK_ERROR";
|
|
1420
|
-
readonly DISABLED_AND_ROLLBACK_IN_PROGRESS: "DISABLED_AND_ROLLBACK_IN_PROGRESS";
|
|
1421
|
-
readonly DISABLED_AND_ROLLBACK_SCHEDULED: "DISABLED_AND_ROLLBACK_SCHEDULED";
|
|
1422
|
-
readonly DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS";
|
|
1423
|
-
readonly ENABLED: "ENABLED";
|
|
1424
|
-
readonly ENABLE_IN_PROGRESS: "ENABLE_IN_PROGRESS";
|
|
1425
|
-
readonly ERROR: "ERROR";
|
|
1426
|
-
};
|
|
1427
|
-
/**
|
|
1428
|
-
* @public
|
|
1429
|
-
*/
|
|
1430
|
-
export type AutoTuneState = (typeof AutoTuneState)[keyof typeof AutoTuneState];
|
|
1431
1089
|
/**
|
|
1432
1090
|
* <p>Specifies the Auto-Tune options: the Auto-Tune desired state for the domain and list of maintenance schedules.</p>
|
|
1433
1091
|
* @public
|
|
@@ -1444,36 +1102,6 @@ export interface AutoTuneOptionsOutput {
|
|
|
1444
1102
|
*/
|
|
1445
1103
|
ErrorMessage?: string | undefined;
|
|
1446
1104
|
}
|
|
1447
|
-
/**
|
|
1448
|
-
* @public
|
|
1449
|
-
* @enum
|
|
1450
|
-
*/
|
|
1451
|
-
export declare const ConfigChangeStatus: {
|
|
1452
|
-
readonly APPLYING_CHANGES: "ApplyingChanges";
|
|
1453
|
-
readonly CANCELLED: "Cancelled";
|
|
1454
|
-
readonly COMPLETED: "Completed";
|
|
1455
|
-
readonly INITIALIZING: "Initializing";
|
|
1456
|
-
readonly PENDING: "Pending";
|
|
1457
|
-
readonly PENDING_USER_INPUT: "PendingUserInput";
|
|
1458
|
-
readonly VALIDATING: "Validating";
|
|
1459
|
-
readonly VALIDATION_FAILED: "ValidationFailed";
|
|
1460
|
-
};
|
|
1461
|
-
/**
|
|
1462
|
-
* @public
|
|
1463
|
-
*/
|
|
1464
|
-
export type ConfigChangeStatus = (typeof ConfigChangeStatus)[keyof typeof ConfigChangeStatus];
|
|
1465
|
-
/**
|
|
1466
|
-
* @public
|
|
1467
|
-
* @enum
|
|
1468
|
-
*/
|
|
1469
|
-
export declare const InitiatedBy: {
|
|
1470
|
-
readonly CUSTOMER: "CUSTOMER";
|
|
1471
|
-
readonly SERVICE: "SERVICE";
|
|
1472
|
-
};
|
|
1473
|
-
/**
|
|
1474
|
-
* @public
|
|
1475
|
-
*/
|
|
1476
|
-
export type InitiatedBy = (typeof InitiatedBy)[keyof typeof InitiatedBy];
|
|
1477
1105
|
/**
|
|
1478
1106
|
* <p>Specifies change details of the domain configuration change.</p>
|
|
1479
1107
|
* @public
|
|
@@ -1510,35 +1138,6 @@ export interface ChangeProgressDetails {
|
|
|
1510
1138
|
*/
|
|
1511
1139
|
InitiatedBy?: InitiatedBy | undefined;
|
|
1512
1140
|
}
|
|
1513
|
-
/**
|
|
1514
|
-
* @public
|
|
1515
|
-
* @enum
|
|
1516
|
-
*/
|
|
1517
|
-
export declare const DomainProcessingStatusType: {
|
|
1518
|
-
readonly ACTIVE: "Active";
|
|
1519
|
-
readonly CREATING: "Creating";
|
|
1520
|
-
readonly DELETING: "Deleting";
|
|
1521
|
-
readonly ISOLATED: "Isolated";
|
|
1522
|
-
readonly MODIFYING: "Modifying";
|
|
1523
|
-
readonly UPDATING: "UpdatingServiceSoftware";
|
|
1524
|
-
readonly UPGRADING: "UpgradingEngineVersion";
|
|
1525
|
-
};
|
|
1526
|
-
/**
|
|
1527
|
-
* @public
|
|
1528
|
-
*/
|
|
1529
|
-
export type DomainProcessingStatusType = (typeof DomainProcessingStatusType)[keyof typeof DomainProcessingStatusType];
|
|
1530
|
-
/**
|
|
1531
|
-
* @public
|
|
1532
|
-
* @enum
|
|
1533
|
-
*/
|
|
1534
|
-
export declare const PropertyValueType: {
|
|
1535
|
-
readonly PLAIN_TEXT: "PLAIN_TEXT";
|
|
1536
|
-
readonly STRINGIFIED_JSON: "STRINGIFIED_JSON";
|
|
1537
|
-
};
|
|
1538
|
-
/**
|
|
1539
|
-
* @public
|
|
1540
|
-
*/
|
|
1541
|
-
export type PropertyValueType = (typeof PropertyValueType)[keyof typeof PropertyValueType];
|
|
1542
1141
|
/**
|
|
1543
1142
|
* <p>Information about the domain properties that are currently being modified.</p>
|
|
1544
1143
|
* @public
|
|
@@ -1743,30 +1342,6 @@ export interface CreateElasticsearchDomainResponse {
|
|
|
1743
1342
|
*/
|
|
1744
1343
|
DomainStatus?: ElasticsearchDomainStatus | undefined;
|
|
1745
1344
|
}
|
|
1746
|
-
/**
|
|
1747
|
-
* <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>
|
|
1748
|
-
* @public
|
|
1749
|
-
*/
|
|
1750
|
-
export declare class InvalidTypeException extends __BaseException {
|
|
1751
|
-
readonly name: "InvalidTypeException";
|
|
1752
|
-
readonly $fault: "client";
|
|
1753
|
-
/**
|
|
1754
|
-
* @internal
|
|
1755
|
-
*/
|
|
1756
|
-
constructor(opts: __ExceptionOptionType<InvalidTypeException, __BaseException>);
|
|
1757
|
-
}
|
|
1758
|
-
/**
|
|
1759
|
-
* <p>An exception for creating a resource that already exists. Gives http status code of 400.</p>
|
|
1760
|
-
* @public
|
|
1761
|
-
*/
|
|
1762
|
-
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
1763
|
-
readonly name: "ResourceAlreadyExistsException";
|
|
1764
|
-
readonly $fault: "client";
|
|
1765
|
-
/**
|
|
1766
|
-
* @internal
|
|
1767
|
-
*/
|
|
1768
|
-
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
1769
|
-
}
|
|
1770
1345
|
/**
|
|
1771
1346
|
* <p>Container for the parameters to the <code><a>CreateOutboundCrossClusterSearchConnection</a></code> operation.</p>
|
|
1772
1347
|
* @public
|
|
@@ -1788,24 +1363,6 @@ export interface CreateOutboundCrossClusterSearchConnectionRequest {
|
|
|
1788
1363
|
*/
|
|
1789
1364
|
ConnectionAlias: string | undefined;
|
|
1790
1365
|
}
|
|
1791
|
-
/**
|
|
1792
|
-
* @public
|
|
1793
|
-
* @enum
|
|
1794
|
-
*/
|
|
1795
|
-
export declare const OutboundCrossClusterSearchConnectionStatusCode: {
|
|
1796
|
-
readonly ACTIVE: "ACTIVE";
|
|
1797
|
-
readonly DELETED: "DELETED";
|
|
1798
|
-
readonly DELETING: "DELETING";
|
|
1799
|
-
readonly PENDING_ACCEPTANCE: "PENDING_ACCEPTANCE";
|
|
1800
|
-
readonly PROVISIONING: "PROVISIONING";
|
|
1801
|
-
readonly REJECTED: "REJECTED";
|
|
1802
|
-
readonly VALIDATING: "VALIDATING";
|
|
1803
|
-
readonly VALIDATION_FAILED: "VALIDATION_FAILED";
|
|
1804
|
-
};
|
|
1805
|
-
/**
|
|
1806
|
-
* @public
|
|
1807
|
-
*/
|
|
1808
|
-
export type OutboundCrossClusterSearchConnectionStatusCode = (typeof OutboundCrossClusterSearchConnectionStatusCode)[keyof typeof OutboundCrossClusterSearchConnectionStatusCode];
|
|
1809
1366
|
/**
|
|
1810
1367
|
* <p>Specifies the connection status of an outbound cross-cluster search connection.</p>
|
|
1811
1368
|
* @public
|
|
@@ -1911,24 +1468,6 @@ export interface CreatePackageRequest {
|
|
|
1911
1468
|
*/
|
|
1912
1469
|
PackageSource: PackageSource | undefined;
|
|
1913
1470
|
}
|
|
1914
|
-
/**
|
|
1915
|
-
* @public
|
|
1916
|
-
* @enum
|
|
1917
|
-
*/
|
|
1918
|
-
export declare const PackageStatus: {
|
|
1919
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
1920
|
-
readonly COPYING: "COPYING";
|
|
1921
|
-
readonly COPY_FAILED: "COPY_FAILED";
|
|
1922
|
-
readonly DELETED: "DELETED";
|
|
1923
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1924
|
-
readonly DELETING: "DELETING";
|
|
1925
|
-
readonly VALIDATING: "VALIDATING";
|
|
1926
|
-
readonly VALIDATION_FAILED: "VALIDATION_FAILED";
|
|
1927
|
-
};
|
|
1928
|
-
/**
|
|
1929
|
-
* @public
|
|
1930
|
-
*/
|
|
1931
|
-
export type PackageStatus = (typeof PackageStatus)[keyof typeof PackageStatus];
|
|
1932
1471
|
/**
|
|
1933
1472
|
* <p>Basic information about a package.</p>
|
|
1934
1473
|
* @public
|
|
@@ -2010,23 +1549,6 @@ export interface CreateVpcEndpointRequest {
|
|
|
2010
1549
|
*/
|
|
2011
1550
|
ClientToken?: string | undefined;
|
|
2012
1551
|
}
|
|
2013
|
-
/**
|
|
2014
|
-
* @public
|
|
2015
|
-
* @enum
|
|
2016
|
-
*/
|
|
2017
|
-
export declare const VpcEndpointStatus: {
|
|
2018
|
-
readonly ACTIVE: "ACTIVE";
|
|
2019
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
2020
|
-
readonly CREATING: "CREATING";
|
|
2021
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
2022
|
-
readonly DELETING: "DELETING";
|
|
2023
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
2024
|
-
readonly UPDATING: "UPDATING";
|
|
2025
|
-
};
|
|
2026
|
-
/**
|
|
2027
|
-
* @public
|
|
2028
|
-
*/
|
|
2029
|
-
export type VpcEndpointStatus = (typeof VpcEndpointStatus)[keyof typeof VpcEndpointStatus];
|
|
2030
1552
|
/**
|
|
2031
1553
|
* <p>The connection endpoint for connecting to an Amazon OpenSearch Service domain through a
|
|
2032
1554
|
* proxy.</p>
|
|
@@ -2277,31 +1799,6 @@ export interface DescribeDomainAutoTunesRequest {
|
|
|
2277
1799
|
*/
|
|
2278
1800
|
NextToken?: string | undefined;
|
|
2279
1801
|
}
|
|
2280
|
-
/**
|
|
2281
|
-
* @public
|
|
2282
|
-
* @enum
|
|
2283
|
-
*/
|
|
2284
|
-
export declare const ScheduledAutoTuneActionType: {
|
|
2285
|
-
readonly JVM_HEAP_SIZE_TUNING: "JVM_HEAP_SIZE_TUNING";
|
|
2286
|
-
readonly JVM_YOUNG_GEN_TUNING: "JVM_YOUNG_GEN_TUNING";
|
|
2287
|
-
};
|
|
2288
|
-
/**
|
|
2289
|
-
* @public
|
|
2290
|
-
*/
|
|
2291
|
-
export type ScheduledAutoTuneActionType = (typeof ScheduledAutoTuneActionType)[keyof typeof ScheduledAutoTuneActionType];
|
|
2292
|
-
/**
|
|
2293
|
-
* @public
|
|
2294
|
-
* @enum
|
|
2295
|
-
*/
|
|
2296
|
-
export declare const ScheduledAutoTuneSeverityType: {
|
|
2297
|
-
readonly HIGH: "HIGH";
|
|
2298
|
-
readonly LOW: "LOW";
|
|
2299
|
-
readonly MEDIUM: "MEDIUM";
|
|
2300
|
-
};
|
|
2301
|
-
/**
|
|
2302
|
-
* @public
|
|
2303
|
-
*/
|
|
2304
|
-
export type ScheduledAutoTuneSeverityType = (typeof ScheduledAutoTuneSeverityType)[keyof typeof ScheduledAutoTuneSeverityType];
|
|
2305
1802
|
/**
|
|
2306
1803
|
* <p>Specifies details of the scheduled Auto-Tune action. See the <a href="https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html" target="_blank">Developer Guide</a> for more information. </p>
|
|
2307
1804
|
* @public
|
|
@@ -2339,17 +1836,6 @@ export interface AutoTuneDetails {
|
|
|
2339
1836
|
*/
|
|
2340
1837
|
ScheduledAutoTuneDetails?: ScheduledAutoTuneDetails | undefined;
|
|
2341
1838
|
}
|
|
2342
|
-
/**
|
|
2343
|
-
* @public
|
|
2344
|
-
* @enum
|
|
2345
|
-
*/
|
|
2346
|
-
export declare const AutoTuneType: {
|
|
2347
|
-
readonly SCHEDULED_ACTION: "SCHEDULED_ACTION";
|
|
2348
|
-
};
|
|
2349
|
-
/**
|
|
2350
|
-
* @public
|
|
2351
|
-
*/
|
|
2352
|
-
export type AutoTuneType = (typeof AutoTuneType)[keyof typeof AutoTuneType];
|
|
2353
1839
|
/**
|
|
2354
1840
|
* <p>Specifies Auto-Tune type and Auto-Tune action details. </p>
|
|
2355
1841
|
* @public
|
|
@@ -2428,20 +1914,6 @@ export interface ChangeProgressStage {
|
|
|
2428
1914
|
*/
|
|
2429
1915
|
LastUpdated?: Date | undefined;
|
|
2430
1916
|
}
|
|
2431
|
-
/**
|
|
2432
|
-
* @public
|
|
2433
|
-
* @enum
|
|
2434
|
-
*/
|
|
2435
|
-
export declare const OverallChangeStatus: {
|
|
2436
|
-
readonly COMPLETED: "COMPLETED";
|
|
2437
|
-
readonly FAILED: "FAILED";
|
|
2438
|
-
readonly PENDING: "PENDING";
|
|
2439
|
-
readonly PROCESSING: "PROCESSING";
|
|
2440
|
-
};
|
|
2441
|
-
/**
|
|
2442
|
-
* @public
|
|
2443
|
-
*/
|
|
2444
|
-
export type OverallChangeStatus = (typeof OverallChangeStatus)[keyof typeof OverallChangeStatus];
|
|
2445
1917
|
/**
|
|
2446
1918
|
* <p>The progress details of a specific domain configuration change.</p>
|
|
2447
1919
|
* @public
|
|
@@ -2545,18 +2017,6 @@ export interface DescribeElasticsearchDomainConfigRequest {
|
|
|
2545
2017
|
*/
|
|
2546
2018
|
DomainName: string | undefined;
|
|
2547
2019
|
}
|
|
2548
|
-
/**
|
|
2549
|
-
* @public
|
|
2550
|
-
* @enum
|
|
2551
|
-
*/
|
|
2552
|
-
export declare const RollbackOnDisable: {
|
|
2553
|
-
readonly DEFAULT_ROLLBACK: "DEFAULT_ROLLBACK";
|
|
2554
|
-
readonly NO_ROLLBACK: "NO_ROLLBACK";
|
|
2555
|
-
};
|
|
2556
|
-
/**
|
|
2557
|
-
* @public
|
|
2558
|
-
*/
|
|
2559
|
-
export type RollbackOnDisable = (typeof RollbackOnDisable)[keyof typeof RollbackOnDisable];
|
|
2560
2020
|
/**
|
|
2561
2021
|
* <p>Specifies the Auto-Tune options: the Auto-Tune desired state for the domain, rollback state when disabling Auto-Tune options and list of maintenance schedules.</p>
|
|
2562
2022
|
* @public
|
|
@@ -3224,18 +2684,6 @@ export interface DescribeInboundCrossClusterSearchConnectionsResponse {
|
|
|
3224
2684
|
*/
|
|
3225
2685
|
NextToken?: string | undefined;
|
|
3226
2686
|
}
|
|
3227
|
-
/**
|
|
3228
|
-
* <p>The request processing has failed because of invalid pagination token provided by customer. Returns an HTTP status code of 400. </p>
|
|
3229
|
-
* @public
|
|
3230
|
-
*/
|
|
3231
|
-
export declare class InvalidPaginationTokenException extends __BaseException {
|
|
3232
|
-
readonly name: "InvalidPaginationTokenException";
|
|
3233
|
-
readonly $fault: "client";
|
|
3234
|
-
/**
|
|
3235
|
-
* @internal
|
|
3236
|
-
*/
|
|
3237
|
-
constructor(opts: __ExceptionOptionType<InvalidPaginationTokenException, __BaseException>);
|
|
3238
|
-
}
|
|
3239
2687
|
/**
|
|
3240
2688
|
* <p>Container for the parameters to the <code><a>DescribeOutboundCrossClusterSearchConnections</a></code> operation.</p>
|
|
3241
2689
|
* @public
|
|
@@ -3284,19 +2732,6 @@ export interface DescribeOutboundCrossClusterSearchConnectionsResponse {
|
|
|
3284
2732
|
*/
|
|
3285
2733
|
NextToken?: string | undefined;
|
|
3286
2734
|
}
|
|
3287
|
-
/**
|
|
3288
|
-
* @public
|
|
3289
|
-
* @enum
|
|
3290
|
-
*/
|
|
3291
|
-
export declare const DescribePackagesFilterName: {
|
|
3292
|
-
readonly PackageID: "PackageID";
|
|
3293
|
-
readonly PackageName: "PackageName";
|
|
3294
|
-
readonly PackageStatus: "PackageStatus";
|
|
3295
|
-
};
|
|
3296
|
-
/**
|
|
3297
|
-
* @public
|
|
3298
|
-
*/
|
|
3299
|
-
export type DescribePackagesFilterName = (typeof DescribePackagesFilterName)[keyof typeof DescribePackagesFilterName];
|
|
3300
2735
|
/**
|
|
3301
2736
|
* <p>Filter to apply in <code>DescribePackage</code> response.</p>
|
|
3302
2737
|
* @public
|
|
@@ -3380,19 +2815,6 @@ export interface DescribeReservedElasticsearchInstanceOfferingsRequest {
|
|
|
3380
2815
|
*/
|
|
3381
2816
|
NextToken?: string | undefined;
|
|
3382
2817
|
}
|
|
3383
|
-
/**
|
|
3384
|
-
* @public
|
|
3385
|
-
* @enum
|
|
3386
|
-
*/
|
|
3387
|
-
export declare const ReservedElasticsearchInstancePaymentOption: {
|
|
3388
|
-
readonly ALL_UPFRONT: "ALL_UPFRONT";
|
|
3389
|
-
readonly NO_UPFRONT: "NO_UPFRONT";
|
|
3390
|
-
readonly PARTIAL_UPFRONT: "PARTIAL_UPFRONT";
|
|
3391
|
-
};
|
|
3392
|
-
/**
|
|
3393
|
-
* @public
|
|
3394
|
-
*/
|
|
3395
|
-
export type ReservedElasticsearchInstancePaymentOption = (typeof ReservedElasticsearchInstancePaymentOption)[keyof typeof ReservedElasticsearchInstancePaymentOption];
|
|
3396
2818
|
/**
|
|
3397
2819
|
* <p>Contains the specific price and frequency of a recurring charges for a reserved Elasticsearch instance, or for a reserved Elasticsearch instance offering.</p>
|
|
3398
2820
|
* @public
|
|
@@ -3591,18 +3013,6 @@ export interface DescribeVpcEndpointsRequest {
|
|
|
3591
3013
|
*/
|
|
3592
3014
|
VpcEndpointIds: string[] | undefined;
|
|
3593
3015
|
}
|
|
3594
|
-
/**
|
|
3595
|
-
* @public
|
|
3596
|
-
* @enum
|
|
3597
|
-
*/
|
|
3598
|
-
export declare const VpcEndpointErrorCode: {
|
|
3599
|
-
readonly ENDPOINT_NOT_FOUND: "ENDPOINT_NOT_FOUND";
|
|
3600
|
-
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
3601
|
-
};
|
|
3602
|
-
/**
|
|
3603
|
-
* @public
|
|
3604
|
-
*/
|
|
3605
|
-
export type VpcEndpointErrorCode = (typeof VpcEndpointErrorCode)[keyof typeof VpcEndpointErrorCode];
|
|
3606
3016
|
/**
|
|
3607
3017
|
* <p>Error information when attempting to describe an Amazon OpenSearch Service-managed VPC
|
|
3608
3018
|
* endpoint.</p>
|
|
@@ -3847,33 +3257,6 @@ export interface GetUpgradeHistoryRequest {
|
|
|
3847
3257
|
*/
|
|
3848
3258
|
NextToken?: string | undefined;
|
|
3849
3259
|
}
|
|
3850
|
-
/**
|
|
3851
|
-
* @public
|
|
3852
|
-
* @enum
|
|
3853
|
-
*/
|
|
3854
|
-
export declare const UpgradeStep: {
|
|
3855
|
-
readonly PRE_UPGRADE_CHECK: "PRE_UPGRADE_CHECK";
|
|
3856
|
-
readonly SNAPSHOT: "SNAPSHOT";
|
|
3857
|
-
readonly UPGRADE: "UPGRADE";
|
|
3858
|
-
};
|
|
3859
|
-
/**
|
|
3860
|
-
* @public
|
|
3861
|
-
*/
|
|
3862
|
-
export type UpgradeStep = (typeof UpgradeStep)[keyof typeof UpgradeStep];
|
|
3863
|
-
/**
|
|
3864
|
-
* @public
|
|
3865
|
-
* @enum
|
|
3866
|
-
*/
|
|
3867
|
-
export declare const UpgradeStatus: {
|
|
3868
|
-
readonly FAILED: "FAILED";
|
|
3869
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
3870
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
3871
|
-
readonly SUCCEEDED_WITH_ISSUES: "SUCCEEDED_WITH_ISSUES";
|
|
3872
|
-
};
|
|
3873
|
-
/**
|
|
3874
|
-
* @public
|
|
3875
|
-
*/
|
|
3876
|
-
export type UpgradeStatus = (typeof UpgradeStatus)[keyof typeof UpgradeStatus];
|
|
3877
3260
|
/**
|
|
3878
3261
|
* <p>Represents a single step of the Upgrade or Upgrade Eligibility Check workflow.</p>
|
|
3879
3262
|
* @public
|
|
@@ -4050,18 +3433,6 @@ export interface GetUpgradeStatusResponse {
|
|
|
4050
3433
|
*/
|
|
4051
3434
|
UpgradeName?: string | undefined;
|
|
4052
3435
|
}
|
|
4053
|
-
/**
|
|
4054
|
-
* @public
|
|
4055
|
-
* @enum
|
|
4056
|
-
*/
|
|
4057
|
-
export declare const EngineType: {
|
|
4058
|
-
readonly Elasticsearch: "Elasticsearch";
|
|
4059
|
-
readonly OpenSearch: "OpenSearch";
|
|
4060
|
-
};
|
|
4061
|
-
/**
|
|
4062
|
-
* @public
|
|
4063
|
-
*/
|
|
4064
|
-
export type EngineType = (typeof EngineType)[keyof typeof EngineType];
|
|
4065
3436
|
/**
|
|
4066
3437
|
* <p> Container for the parameters to the <code><a>ListDomainNames</a></code> operation.</p>
|
|
4067
3438
|
* @public
|