@aws-sdk/client-elasticache 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.
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ElastiCacheClient";
8
- import { RevokeCacheSecurityGroupIngressMessage } from "../models/models_0";
9
- import { RevokeCacheSecurityGroupIngressResult } from "../models/models_1";
8
+ import {
9
+ RevokeCacheSecurityGroupIngressMessage,
10
+ RevokeCacheSecurityGroupIngressResult,
11
+ } from "../models/models_0";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface RevokeCacheSecurityGroupIngressCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  StartMigrationMessage,
10
10
  StartMigrationResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_0";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface StartMigrationCommandInput extends StartMigrationMessage {}
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../ElastiCacheClient";
8
- import { TestFailoverMessage, TestFailoverResult } from "../models/models_1";
8
+ import { TestFailoverMessage, TestFailoverResult } from "../models/models_0";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface TestFailoverCommandInput extends TestFailoverMessage {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  TestMigrationMessage,
10
10
  TestMigrationResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_0";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface TestMigrationCommandInput extends TestMigrationMessage {}
@@ -6,5 +6,7 @@ export { ElastiCacheExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./waiters";
9
- export * from "./models";
9
+ export * from "./models/enums";
10
+ export * from "./models/errors";
11
+ export * from "./models/models_0";
10
12
  export { ElastiCacheServiceException } from "./models/ElastiCacheServiceException";
@@ -0,0 +1,187 @@
1
+ export declare const UpdateActionStatus: {
2
+ readonly COMPLETE: "complete";
3
+ readonly IN_PROGRESS: "in-progress";
4
+ readonly NOT_APPLICABLE: "not-applicable";
5
+ readonly NOT_APPLIED: "not-applied";
6
+ readonly SCHEDULED: "scheduled";
7
+ readonly SCHEDULING: "scheduling";
8
+ readonly STOPPED: "stopped";
9
+ readonly STOPPING: "stopping";
10
+ readonly WAITING_TO_START: "waiting-to-start";
11
+ };
12
+ export type UpdateActionStatus =
13
+ (typeof UpdateActionStatus)[keyof typeof UpdateActionStatus];
14
+ export declare const AutomaticFailoverStatus: {
15
+ readonly DISABLED: "disabled";
16
+ readonly DISABLING: "disabling";
17
+ readonly ENABLED: "enabled";
18
+ readonly ENABLING: "enabling";
19
+ };
20
+ export type AutomaticFailoverStatus =
21
+ (typeof AutomaticFailoverStatus)[keyof typeof AutomaticFailoverStatus];
22
+ export declare const ClusterMode: {
23
+ readonly COMPATIBLE: "compatible";
24
+ readonly DISABLED: "disabled";
25
+ readonly ENABLED: "enabled";
26
+ };
27
+ export type ClusterMode = (typeof ClusterMode)[keyof typeof ClusterMode];
28
+ export declare const DataTieringStatus: {
29
+ readonly DISABLED: "disabled";
30
+ readonly ENABLED: "enabled";
31
+ };
32
+ export type DataTieringStatus =
33
+ (typeof DataTieringStatus)[keyof typeof DataTieringStatus];
34
+ export declare const IpDiscovery: {
35
+ readonly IPV4: "ipv4";
36
+ readonly IPV6: "ipv6";
37
+ };
38
+ export type IpDiscovery = (typeof IpDiscovery)[keyof typeof IpDiscovery];
39
+ export declare const DestinationType: {
40
+ readonly CloudWatchLogs: "cloudwatch-logs";
41
+ readonly KinesisFirehose: "kinesis-firehose";
42
+ };
43
+ export type DestinationType =
44
+ (typeof DestinationType)[keyof typeof DestinationType];
45
+ export declare const LogFormat: {
46
+ readonly JSON: "json";
47
+ readonly TEXT: "text";
48
+ };
49
+ export type LogFormat = (typeof LogFormat)[keyof typeof LogFormat];
50
+ export declare const LogType: {
51
+ readonly ENGINE_LOG: "engine-log";
52
+ readonly SLOW_LOG: "slow-log";
53
+ };
54
+ export type LogType = (typeof LogType)[keyof typeof LogType];
55
+ export declare const LogDeliveryConfigurationStatus: {
56
+ readonly ACTIVE: "active";
57
+ readonly DISABLING: "disabling";
58
+ readonly ENABLING: "enabling";
59
+ readonly ERROR: "error";
60
+ readonly MODIFYING: "modifying";
61
+ };
62
+ export type LogDeliveryConfigurationStatus =
63
+ (typeof LogDeliveryConfigurationStatus)[keyof typeof LogDeliveryConfigurationStatus];
64
+ export declare const MultiAZStatus: {
65
+ readonly DISABLED: "disabled";
66
+ readonly ENABLED: "enabled";
67
+ };
68
+ export type MultiAZStatus = (typeof MultiAZStatus)[keyof typeof MultiAZStatus];
69
+ export declare const NetworkType: {
70
+ readonly DUAL_STACK: "dual_stack";
71
+ readonly IPV4: "ipv4";
72
+ readonly IPV6: "ipv6";
73
+ };
74
+ export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
75
+ export declare const AuthTokenUpdateStatus: {
76
+ readonly ROTATING: "ROTATING";
77
+ readonly SETTING: "SETTING";
78
+ };
79
+ export type AuthTokenUpdateStatus =
80
+ (typeof AuthTokenUpdateStatus)[keyof typeof AuthTokenUpdateStatus];
81
+ export declare const PendingAutomaticFailoverStatus: {
82
+ readonly DISABLED: "disabled";
83
+ readonly ENABLED: "enabled";
84
+ };
85
+ export type PendingAutomaticFailoverStatus =
86
+ (typeof PendingAutomaticFailoverStatus)[keyof typeof PendingAutomaticFailoverStatus];
87
+ export declare const TransitEncryptionMode: {
88
+ readonly PREFERRED: "preferred";
89
+ readonly REQUIRED: "required";
90
+ };
91
+ export type TransitEncryptionMode =
92
+ (typeof TransitEncryptionMode)[keyof typeof TransitEncryptionMode];
93
+ export declare const AZMode: {
94
+ readonly CROSS_AZ: "cross-az";
95
+ readonly SINGLE_AZ: "single-az";
96
+ };
97
+ export type AZMode = (typeof AZMode)[keyof typeof AZMode];
98
+ export declare const OutpostMode: {
99
+ readonly CROSS_OUTPOST: "cross-outpost";
100
+ readonly SINGLE_OUTPOST: "single-outpost";
101
+ };
102
+ export type OutpostMode = (typeof OutpostMode)[keyof typeof OutpostMode];
103
+ export declare const DataStorageUnit: {
104
+ readonly GB: "GB";
105
+ };
106
+ export type DataStorageUnit =
107
+ (typeof DataStorageUnit)[keyof typeof DataStorageUnit];
108
+ export declare const InputAuthenticationType: {
109
+ readonly IAM: "iam";
110
+ readonly NO_PASSWORD: "no-password-required";
111
+ readonly PASSWORD: "password";
112
+ };
113
+ export type InputAuthenticationType =
114
+ (typeof InputAuthenticationType)[keyof typeof InputAuthenticationType];
115
+ export declare const AuthenticationType: {
116
+ readonly IAM: "iam";
117
+ readonly NO_PASSWORD: "no-password";
118
+ readonly PASSWORD: "password";
119
+ };
120
+ export type AuthenticationType =
121
+ (typeof AuthenticationType)[keyof typeof AuthenticationType];
122
+ export declare const ChangeType: {
123
+ readonly immediate: "immediate";
124
+ readonly requires_reboot: "requires-reboot";
125
+ };
126
+ export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
127
+ export declare const SourceType: {
128
+ readonly cache_cluster: "cache-cluster";
129
+ readonly cache_parameter_group: "cache-parameter-group";
130
+ readonly cache_security_group: "cache-security-group";
131
+ readonly cache_subnet_group: "cache-subnet-group";
132
+ readonly replication_group: "replication-group";
133
+ readonly serverless_cache: "serverless-cache";
134
+ readonly serverless_cache_snapshot: "serverless-cache-snapshot";
135
+ readonly user: "user";
136
+ readonly user_group: "user-group";
137
+ };
138
+ export type SourceType = (typeof SourceType)[keyof typeof SourceType];
139
+ export declare const ServiceUpdateStatus: {
140
+ readonly AVAILABLE: "available";
141
+ readonly CANCELLED: "cancelled";
142
+ readonly EXPIRED: "expired";
143
+ };
144
+ export type ServiceUpdateStatus =
145
+ (typeof ServiceUpdateStatus)[keyof typeof ServiceUpdateStatus];
146
+ export declare const ServiceUpdateSeverity: {
147
+ readonly CRITICAL: "critical";
148
+ readonly IMPORTANT: "important";
149
+ readonly LOW: "low";
150
+ readonly MEDIUM: "medium";
151
+ };
152
+ export type ServiceUpdateSeverity =
153
+ (typeof ServiceUpdateSeverity)[keyof typeof ServiceUpdateSeverity];
154
+ export declare const ServiceUpdateType: {
155
+ readonly SECURITY_UPDATE: "security-update";
156
+ };
157
+ export type ServiceUpdateType =
158
+ (typeof ServiceUpdateType)[keyof typeof ServiceUpdateType];
159
+ export declare const NodeUpdateInitiatedBy: {
160
+ readonly CUSTOMER: "customer";
161
+ readonly SYSTEM: "system";
162
+ };
163
+ export type NodeUpdateInitiatedBy =
164
+ (typeof NodeUpdateInitiatedBy)[keyof typeof NodeUpdateInitiatedBy];
165
+ export declare const NodeUpdateStatus: {
166
+ readonly COMPLETE: "complete";
167
+ readonly IN_PROGRESS: "in-progress";
168
+ readonly NOT_APPLIED: "not-applied";
169
+ readonly STOPPED: "stopped";
170
+ readonly STOPPING: "stopping";
171
+ readonly WAITING_TO_START: "waiting-to-start";
172
+ };
173
+ export type NodeUpdateStatus =
174
+ (typeof NodeUpdateStatus)[keyof typeof NodeUpdateStatus];
175
+ export declare const SlaMet: {
176
+ readonly NA: "n/a";
177
+ readonly NO: "no";
178
+ readonly YES: "yes";
179
+ };
180
+ export type SlaMet = (typeof SlaMet)[keyof typeof SlaMet];
181
+ export declare const AuthTokenUpdateStrategyType: {
182
+ readonly DELETE: "DELETE";
183
+ readonly ROTATE: "ROTATE";
184
+ readonly SET: "SET";
185
+ };
186
+ export type AuthTokenUpdateStrategyType =
187
+ (typeof AuthTokenUpdateStrategyType)[keyof typeof AuthTokenUpdateStrategyType];