@aws-sdk/client-elasticache 3.301.0 → 3.303.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/models/models_0.js +132 -158
- package/dist-es/models/models_0.js +132 -158
- package/dist-types/models/models_0.d.ts +262 -132
- package/dist-types/ts3.4/models/models_0.d.ts +174 -132
- package/package.json +35 -35
|
@@ -203,84 +203,71 @@ export class ServiceUpdateNotFoundFault extends __BaseException {
|
|
|
203
203
|
Object.setPrototypeOf(this, ServiceUpdateNotFoundFault.prototype);
|
|
204
204
|
}
|
|
205
205
|
}
|
|
206
|
-
export
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
}
|
|
235
|
-
export
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
}
|
|
250
|
-
export
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
}
|
|
263
|
-
export
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
AuthTokenUpdateStatus["ROTATING"] = "ROTATING";
|
|
272
|
-
AuthTokenUpdateStatus["SETTING"] = "SETTING";
|
|
273
|
-
})(AuthTokenUpdateStatus || (AuthTokenUpdateStatus = {}));
|
|
274
|
-
export var PendingAutomaticFailoverStatus;
|
|
275
|
-
(function (PendingAutomaticFailoverStatus) {
|
|
276
|
-
PendingAutomaticFailoverStatus["DISABLED"] = "disabled";
|
|
277
|
-
PendingAutomaticFailoverStatus["ENABLED"] = "enabled";
|
|
278
|
-
})(PendingAutomaticFailoverStatus || (PendingAutomaticFailoverStatus = {}));
|
|
279
|
-
export var TransitEncryptionMode;
|
|
280
|
-
(function (TransitEncryptionMode) {
|
|
281
|
-
TransitEncryptionMode["PREFERRED"] = "preferred";
|
|
282
|
-
TransitEncryptionMode["REQUIRED"] = "required";
|
|
283
|
-
})(TransitEncryptionMode || (TransitEncryptionMode = {}));
|
|
206
|
+
export const UpdateActionStatus = {
|
|
207
|
+
COMPLETE: "complete",
|
|
208
|
+
IN_PROGRESS: "in-progress",
|
|
209
|
+
NOT_APPLICABLE: "not-applicable",
|
|
210
|
+
NOT_APPLIED: "not-applied",
|
|
211
|
+
SCHEDULED: "scheduled",
|
|
212
|
+
SCHEDULING: "scheduling",
|
|
213
|
+
STOPPED: "stopped",
|
|
214
|
+
STOPPING: "stopping",
|
|
215
|
+
WAITING_TO_START: "waiting-to-start",
|
|
216
|
+
};
|
|
217
|
+
export const AutomaticFailoverStatus = {
|
|
218
|
+
DISABLED: "disabled",
|
|
219
|
+
DISABLING: "disabling",
|
|
220
|
+
ENABLED: "enabled",
|
|
221
|
+
ENABLING: "enabling",
|
|
222
|
+
};
|
|
223
|
+
export const DataTieringStatus = {
|
|
224
|
+
DISABLED: "disabled",
|
|
225
|
+
ENABLED: "enabled",
|
|
226
|
+
};
|
|
227
|
+
export const IpDiscovery = {
|
|
228
|
+
IPV4: "ipv4",
|
|
229
|
+
IPV6: "ipv6",
|
|
230
|
+
};
|
|
231
|
+
export const DestinationType = {
|
|
232
|
+
CloudWatchLogs: "cloudwatch-logs",
|
|
233
|
+
KinesisFirehose: "kinesis-firehose",
|
|
234
|
+
};
|
|
235
|
+
export const LogFormat = {
|
|
236
|
+
JSON: "json",
|
|
237
|
+
TEXT: "text",
|
|
238
|
+
};
|
|
239
|
+
export const LogType = {
|
|
240
|
+
ENGINE_LOG: "engine-log",
|
|
241
|
+
SLOW_LOG: "slow-log",
|
|
242
|
+
};
|
|
243
|
+
export const LogDeliveryConfigurationStatus = {
|
|
244
|
+
ACTIVE: "active",
|
|
245
|
+
DISABLING: "disabling",
|
|
246
|
+
ENABLING: "enabling",
|
|
247
|
+
ERROR: "error",
|
|
248
|
+
MODIFYING: "modifying",
|
|
249
|
+
};
|
|
250
|
+
export const MultiAZStatus = {
|
|
251
|
+
DISABLED: "disabled",
|
|
252
|
+
ENABLED: "enabled",
|
|
253
|
+
};
|
|
254
|
+
export const NetworkType = {
|
|
255
|
+
DUAL_STACK: "dual_stack",
|
|
256
|
+
IPV4: "ipv4",
|
|
257
|
+
IPV6: "ipv6",
|
|
258
|
+
};
|
|
259
|
+
export const AuthTokenUpdateStatus = {
|
|
260
|
+
ROTATING: "ROTATING",
|
|
261
|
+
SETTING: "SETTING",
|
|
262
|
+
};
|
|
263
|
+
export const PendingAutomaticFailoverStatus = {
|
|
264
|
+
DISABLED: "disabled",
|
|
265
|
+
ENABLED: "enabled",
|
|
266
|
+
};
|
|
267
|
+
export const TransitEncryptionMode = {
|
|
268
|
+
PREFERRED: "preferred",
|
|
269
|
+
REQUIRED: "required",
|
|
270
|
+
};
|
|
284
271
|
export class ReplicationGroupNotUnderMigrationFault extends __BaseException {
|
|
285
272
|
constructor(opts) {
|
|
286
273
|
super({
|
|
@@ -353,16 +340,14 @@ export class ClusterQuotaForCustomerExceededFault extends __BaseException {
|
|
|
353
340
|
Object.setPrototypeOf(this, ClusterQuotaForCustomerExceededFault.prototype);
|
|
354
341
|
}
|
|
355
342
|
}
|
|
356
|
-
export
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
OutpostMode["SINGLE_OUTPOST"] = "single-outpost";
|
|
365
|
-
})(OutpostMode || (OutpostMode = {}));
|
|
343
|
+
export const AZMode = {
|
|
344
|
+
CROSS_AZ: "cross-az",
|
|
345
|
+
SINGLE_AZ: "single-az",
|
|
346
|
+
};
|
|
347
|
+
export const OutpostMode = {
|
|
348
|
+
CROSS_OUTPOST: "cross-outpost",
|
|
349
|
+
SINGLE_OUTPOST: "single-outpost",
|
|
350
|
+
};
|
|
366
351
|
export class InsufficientCacheClusterCapacityFault extends __BaseException {
|
|
367
352
|
constructor(opts) {
|
|
368
353
|
super({
|
|
@@ -639,12 +624,11 @@ export class SnapshotFeatureNotSupportedFault extends __BaseException {
|
|
|
639
624
|
Object.setPrototypeOf(this, SnapshotFeatureNotSupportedFault.prototype);
|
|
640
625
|
}
|
|
641
626
|
}
|
|
642
|
-
export
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
})(InputAuthenticationType || (InputAuthenticationType = {}));
|
|
627
|
+
export const InputAuthenticationType = {
|
|
628
|
+
IAM: "iam",
|
|
629
|
+
NO_PASSWORD: "no-password-required",
|
|
630
|
+
PASSWORD: "password",
|
|
631
|
+
};
|
|
648
632
|
export class DuplicateUserNameFault extends __BaseException {
|
|
649
633
|
constructor(opts) {
|
|
650
634
|
super({
|
|
@@ -657,12 +641,11 @@ export class DuplicateUserNameFault extends __BaseException {
|
|
|
657
641
|
Object.setPrototypeOf(this, DuplicateUserNameFault.prototype);
|
|
658
642
|
}
|
|
659
643
|
}
|
|
660
|
-
export
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
})(AuthenticationType || (AuthenticationType = {}));
|
|
644
|
+
export const AuthenticationType = {
|
|
645
|
+
IAM: "iam",
|
|
646
|
+
NO_PASSWORD: "no-password",
|
|
647
|
+
PASSWORD: "password",
|
|
648
|
+
};
|
|
666
649
|
export class UserAlreadyExistsFault extends __BaseException {
|
|
667
650
|
constructor(opts) {
|
|
668
651
|
super({
|
|
@@ -771,21 +754,19 @@ export class InvalidUserStateFault extends __BaseException {
|
|
|
771
754
|
Object.setPrototypeOf(this, InvalidUserStateFault.prototype);
|
|
772
755
|
}
|
|
773
756
|
}
|
|
774
|
-
export
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
SourceType["user_group"] = "user-group";
|
|
788
|
-
})(SourceType || (SourceType = {}));
|
|
757
|
+
export const ChangeType = {
|
|
758
|
+
immediate: "immediate",
|
|
759
|
+
requires_reboot: "requires-reboot",
|
|
760
|
+
};
|
|
761
|
+
export const SourceType = {
|
|
762
|
+
cache_cluster: "cache-cluster",
|
|
763
|
+
cache_parameter_group: "cache-parameter-group",
|
|
764
|
+
cache_security_group: "cache-security-group",
|
|
765
|
+
cache_subnet_group: "cache-subnet-group",
|
|
766
|
+
replication_group: "replication-group",
|
|
767
|
+
user: "user",
|
|
768
|
+
user_group: "user-group",
|
|
769
|
+
};
|
|
789
770
|
export class ReservedCacheNodesOfferingNotFoundFault extends __BaseException {
|
|
790
771
|
constructor(opts) {
|
|
791
772
|
super({
|
|
@@ -798,43 +779,37 @@ export class ReservedCacheNodesOfferingNotFoundFault extends __BaseException {
|
|
|
798
779
|
Object.setPrototypeOf(this, ReservedCacheNodesOfferingNotFoundFault.prototype);
|
|
799
780
|
}
|
|
800
781
|
}
|
|
801
|
-
export
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
}
|
|
832
|
-
export var SlaMet;
|
|
833
|
-
(function (SlaMet) {
|
|
834
|
-
SlaMet["NA"] = "n/a";
|
|
835
|
-
SlaMet["NO"] = "no";
|
|
836
|
-
SlaMet["YES"] = "yes";
|
|
837
|
-
})(SlaMet || (SlaMet = {}));
|
|
782
|
+
export const ServiceUpdateStatus = {
|
|
783
|
+
AVAILABLE: "available",
|
|
784
|
+
CANCELLED: "cancelled",
|
|
785
|
+
EXPIRED: "expired",
|
|
786
|
+
};
|
|
787
|
+
export const ServiceUpdateSeverity = {
|
|
788
|
+
CRITICAL: "critical",
|
|
789
|
+
IMPORTANT: "important",
|
|
790
|
+
LOW: "low",
|
|
791
|
+
MEDIUM: "medium",
|
|
792
|
+
};
|
|
793
|
+
export const ServiceUpdateType = {
|
|
794
|
+
SECURITY_UPDATE: "security-update",
|
|
795
|
+
};
|
|
796
|
+
export const NodeUpdateInitiatedBy = {
|
|
797
|
+
CUSTOMER: "customer",
|
|
798
|
+
SYSTEM: "system",
|
|
799
|
+
};
|
|
800
|
+
export const NodeUpdateStatus = {
|
|
801
|
+
COMPLETE: "complete",
|
|
802
|
+
IN_PROGRESS: "in-progress",
|
|
803
|
+
NOT_APPLIED: "not-applied",
|
|
804
|
+
STOPPED: "stopped",
|
|
805
|
+
STOPPING: "stopping",
|
|
806
|
+
WAITING_TO_START: "waiting-to-start",
|
|
807
|
+
};
|
|
808
|
+
export const SlaMet = {
|
|
809
|
+
NA: "n/a",
|
|
810
|
+
NO: "no",
|
|
811
|
+
YES: "yes",
|
|
812
|
+
};
|
|
838
813
|
export class InvalidKMSKeyFault extends __BaseException {
|
|
839
814
|
constructor(opts) {
|
|
840
815
|
super({
|
|
@@ -847,12 +822,11 @@ export class InvalidKMSKeyFault extends __BaseException {
|
|
|
847
822
|
Object.setPrototypeOf(this, InvalidKMSKeyFault.prototype);
|
|
848
823
|
}
|
|
849
824
|
}
|
|
850
|
-
export
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
})(AuthTokenUpdateStrategyType || (AuthTokenUpdateStrategyType = {}));
|
|
825
|
+
export const AuthTokenUpdateStrategyType = {
|
|
826
|
+
DELETE: "DELETE",
|
|
827
|
+
ROTATE: "ROTATE",
|
|
828
|
+
SET: "SET",
|
|
829
|
+
};
|
|
856
830
|
export class SubnetInUse extends __BaseException {
|
|
857
831
|
constructor(opts) {
|
|
858
832
|
super({
|