@aws-sdk/client-elasticache 3.1068.0 → 3.1070.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/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +326 -346
- package/dist-cjs/models/ElastiCacheServiceException.js +4 -8
- package/dist-cjs/models/errors.js +153 -233
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +839 -564
- package/package.json +9 -9
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.NodeGroupsPerReplicationGroupQuotaExceededFault = exports.InvalidUserGroupStateFault = exports.InvalidGlobalReplicationGroupStateFault = exports.InvalidCacheClusterStateFault = exports.GlobalReplicationGroupNotFoundFault = exports.GlobalReplicationGroupAlreadyExistsFault = exports.SubnetNotAllowedFault = exports.InvalidSubnet = exports.CacheSubnetQuotaExceededFault = exports.CacheSubnetGroupQuotaExceededFault = exports.CacheSubnetGroupAlreadyExistsFault = exports.CacheSecurityGroupQuotaExceededFault = exports.CacheSecurityGroupAlreadyExistsFault = exports.InvalidCacheParameterGroupStateFault = exports.CacheParameterGroupQuotaExceededFault = exports.CacheParameterGroupAlreadyExistsFault = exports.NodeQuotaForCustomerExceededFault = exports.NodeQuotaForClusterExceededFault = exports.InvalidVPCNetworkStateFault = exports.InsufficientCacheClusterCapacityFault = exports.ClusterQuotaForCustomerExceededFault = exports.CacheClusterAlreadyExistsFault = exports.SnapshotQuotaExceededFault = exports.SnapshotAlreadyExistsFault = exports.InvalidSnapshotStateFault = exports.ServiceLinkedRoleNotFoundFault = exports.ServerlessCacheSnapshotQuotaExceededFault = exports.ServerlessCacheSnapshotAlreadyExistsFault = exports.ReplicationGroupNotUnderMigrationFault = exports.ServiceUpdateNotFoundFault = exports.InvalidParameterValueException = exports.InvalidParameterCombinationException = exports.InvalidCacheSecurityGroupStateFault = exports.AuthorizationAlreadyExistsFault = exports.UserNotFoundFault = exports.UserGroupNotFoundFault = exports.TagQuotaPerResourceExceeded = exports.SnapshotNotFoundFault = exports.ServerlessCacheSnapshotNotFoundFault = exports.ServerlessCacheNotFoundFault = exports.ReservedCacheNodeNotFoundFault = exports.ReplicationGroupNotFoundFault = exports.InvalidServerlessCacheStateFault = exports.InvalidServerlessCacheSnapshotStateFault = exports.InvalidReplicationGroupStateFault = exports.InvalidARNFault = exports.CacheSubnetGroupNotFoundFault = exports.CacheSecurityGroupNotFoundFault = exports.CacheParameterGroupNotFoundFault = exports.CacheClusterNotFoundFault = void 0;
|
|
4
|
-
exports.TestFailoverNotAvailableFault = exports.NodeGroupNotFoundFault = exports.APICallRateForCustomerExceededFault = exports.ReplicationGroupAlreadyUnderMigrationFault = exports.AuthorizationNotFoundFault = exports.TagNotFoundFault = exports.ReservedCacheNodeQuotaExceededFault = exports.ReservedCacheNodeAlreadyExistsFault = exports.SubnetInUse = exports.InvalidKMSKeyFault = exports.ReservedCacheNodesOfferingNotFoundFault = exports.InvalidUserStateFault = exports.DefaultUserAssociatedToUserGroupFault = exports.CacheSubnetGroupInUse = exports.NoOperationFault = exports.UserGroupQuotaExceededFault = exports.UserGroupAlreadyExistsFault = exports.DefaultUserRequired = exports.UserQuotaExceededFault = exports.UserAlreadyExistsFault = exports.DuplicateUserNameFault = exports.SnapshotFeatureNotSupportedFault = exports.ServerlessCacheQuotaForCustomerExceededFault = exports.ServerlessCacheAlreadyExistsFault = exports.InvalidCredentialsException = exports.ReplicationGroupAlreadyExistsFault = void 0;
|
|
5
|
-
const ElastiCacheServiceException_1 = require("./ElastiCacheServiceException");
|
|
6
|
-
class CacheClusterNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
1
|
+
const { ElastiCacheServiceException: __BaseException } = require("./ElastiCacheServiceException");
|
|
2
|
+
exports.CacheClusterNotFoundFault = class CacheClusterNotFoundFault extends __BaseException {
|
|
7
3
|
name = "CacheClusterNotFoundFault";
|
|
8
4
|
$fault = "client";
|
|
9
5
|
constructor(opts) {
|
|
@@ -14,9 +10,8 @@ class CacheClusterNotFoundFault extends ElastiCacheServiceException_1.ElastiCach
|
|
|
14
10
|
});
|
|
15
11
|
Object.setPrototypeOf(this, CacheClusterNotFoundFault.prototype);
|
|
16
12
|
}
|
|
17
|
-
}
|
|
18
|
-
exports.
|
|
19
|
-
class CacheParameterGroupNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
13
|
+
};
|
|
14
|
+
exports.CacheParameterGroupNotFoundFault = class CacheParameterGroupNotFoundFault extends __BaseException {
|
|
20
15
|
name = "CacheParameterGroupNotFoundFault";
|
|
21
16
|
$fault = "client";
|
|
22
17
|
constructor(opts) {
|
|
@@ -27,9 +22,8 @@ class CacheParameterGroupNotFoundFault extends ElastiCacheServiceException_1.Ela
|
|
|
27
22
|
});
|
|
28
23
|
Object.setPrototypeOf(this, CacheParameterGroupNotFoundFault.prototype);
|
|
29
24
|
}
|
|
30
|
-
}
|
|
31
|
-
exports.
|
|
32
|
-
class CacheSecurityGroupNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
25
|
+
};
|
|
26
|
+
exports.CacheSecurityGroupNotFoundFault = class CacheSecurityGroupNotFoundFault extends __BaseException {
|
|
33
27
|
name = "CacheSecurityGroupNotFoundFault";
|
|
34
28
|
$fault = "client";
|
|
35
29
|
constructor(opts) {
|
|
@@ -40,9 +34,8 @@ class CacheSecurityGroupNotFoundFault extends ElastiCacheServiceException_1.Elas
|
|
|
40
34
|
});
|
|
41
35
|
Object.setPrototypeOf(this, CacheSecurityGroupNotFoundFault.prototype);
|
|
42
36
|
}
|
|
43
|
-
}
|
|
44
|
-
exports.
|
|
45
|
-
class CacheSubnetGroupNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
37
|
+
};
|
|
38
|
+
exports.CacheSubnetGroupNotFoundFault = class CacheSubnetGroupNotFoundFault extends __BaseException {
|
|
46
39
|
name = "CacheSubnetGroupNotFoundFault";
|
|
47
40
|
$fault = "client";
|
|
48
41
|
constructor(opts) {
|
|
@@ -53,9 +46,8 @@ class CacheSubnetGroupNotFoundFault extends ElastiCacheServiceException_1.Elasti
|
|
|
53
46
|
});
|
|
54
47
|
Object.setPrototypeOf(this, CacheSubnetGroupNotFoundFault.prototype);
|
|
55
48
|
}
|
|
56
|
-
}
|
|
57
|
-
exports.
|
|
58
|
-
class InvalidARNFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
49
|
+
};
|
|
50
|
+
exports.InvalidARNFault = class InvalidARNFault extends __BaseException {
|
|
59
51
|
name = "InvalidARNFault";
|
|
60
52
|
$fault = "client";
|
|
61
53
|
constructor(opts) {
|
|
@@ -66,9 +58,8 @@ class InvalidARNFault extends ElastiCacheServiceException_1.ElastiCacheServiceEx
|
|
|
66
58
|
});
|
|
67
59
|
Object.setPrototypeOf(this, InvalidARNFault.prototype);
|
|
68
60
|
}
|
|
69
|
-
}
|
|
70
|
-
exports.
|
|
71
|
-
class InvalidReplicationGroupStateFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
61
|
+
};
|
|
62
|
+
exports.InvalidReplicationGroupStateFault = class InvalidReplicationGroupStateFault extends __BaseException {
|
|
72
63
|
name = "InvalidReplicationGroupStateFault";
|
|
73
64
|
$fault = "client";
|
|
74
65
|
constructor(opts) {
|
|
@@ -79,9 +70,8 @@ class InvalidReplicationGroupStateFault extends ElastiCacheServiceException_1.El
|
|
|
79
70
|
});
|
|
80
71
|
Object.setPrototypeOf(this, InvalidReplicationGroupStateFault.prototype);
|
|
81
72
|
}
|
|
82
|
-
}
|
|
83
|
-
exports.
|
|
84
|
-
class InvalidServerlessCacheSnapshotStateFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
73
|
+
};
|
|
74
|
+
exports.InvalidServerlessCacheSnapshotStateFault = class InvalidServerlessCacheSnapshotStateFault extends __BaseException {
|
|
85
75
|
name = "InvalidServerlessCacheSnapshotStateFault";
|
|
86
76
|
$fault = "client";
|
|
87
77
|
constructor(opts) {
|
|
@@ -92,9 +82,8 @@ class InvalidServerlessCacheSnapshotStateFault extends ElastiCacheServiceExcepti
|
|
|
92
82
|
});
|
|
93
83
|
Object.setPrototypeOf(this, InvalidServerlessCacheSnapshotStateFault.prototype);
|
|
94
84
|
}
|
|
95
|
-
}
|
|
96
|
-
exports.
|
|
97
|
-
class InvalidServerlessCacheStateFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
85
|
+
};
|
|
86
|
+
exports.InvalidServerlessCacheStateFault = class InvalidServerlessCacheStateFault extends __BaseException {
|
|
98
87
|
name = "InvalidServerlessCacheStateFault";
|
|
99
88
|
$fault = "client";
|
|
100
89
|
constructor(opts) {
|
|
@@ -105,9 +94,8 @@ class InvalidServerlessCacheStateFault extends ElastiCacheServiceException_1.Ela
|
|
|
105
94
|
});
|
|
106
95
|
Object.setPrototypeOf(this, InvalidServerlessCacheStateFault.prototype);
|
|
107
96
|
}
|
|
108
|
-
}
|
|
109
|
-
exports.
|
|
110
|
-
class ReplicationGroupNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
97
|
+
};
|
|
98
|
+
exports.ReplicationGroupNotFoundFault = class ReplicationGroupNotFoundFault extends __BaseException {
|
|
111
99
|
name = "ReplicationGroupNotFoundFault";
|
|
112
100
|
$fault = "client";
|
|
113
101
|
constructor(opts) {
|
|
@@ -118,9 +106,8 @@ class ReplicationGroupNotFoundFault extends ElastiCacheServiceException_1.Elasti
|
|
|
118
106
|
});
|
|
119
107
|
Object.setPrototypeOf(this, ReplicationGroupNotFoundFault.prototype);
|
|
120
108
|
}
|
|
121
|
-
}
|
|
122
|
-
exports.
|
|
123
|
-
class ReservedCacheNodeNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
109
|
+
};
|
|
110
|
+
exports.ReservedCacheNodeNotFoundFault = class ReservedCacheNodeNotFoundFault extends __BaseException {
|
|
124
111
|
name = "ReservedCacheNodeNotFoundFault";
|
|
125
112
|
$fault = "client";
|
|
126
113
|
constructor(opts) {
|
|
@@ -131,9 +118,8 @@ class ReservedCacheNodeNotFoundFault extends ElastiCacheServiceException_1.Elast
|
|
|
131
118
|
});
|
|
132
119
|
Object.setPrototypeOf(this, ReservedCacheNodeNotFoundFault.prototype);
|
|
133
120
|
}
|
|
134
|
-
}
|
|
135
|
-
exports.
|
|
136
|
-
class ServerlessCacheNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
121
|
+
};
|
|
122
|
+
exports.ServerlessCacheNotFoundFault = class ServerlessCacheNotFoundFault extends __BaseException {
|
|
137
123
|
name = "ServerlessCacheNotFoundFault";
|
|
138
124
|
$fault = "client";
|
|
139
125
|
constructor(opts) {
|
|
@@ -144,9 +130,8 @@ class ServerlessCacheNotFoundFault extends ElastiCacheServiceException_1.ElastiC
|
|
|
144
130
|
});
|
|
145
131
|
Object.setPrototypeOf(this, ServerlessCacheNotFoundFault.prototype);
|
|
146
132
|
}
|
|
147
|
-
}
|
|
148
|
-
exports.
|
|
149
|
-
class ServerlessCacheSnapshotNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
133
|
+
};
|
|
134
|
+
exports.ServerlessCacheSnapshotNotFoundFault = class ServerlessCacheSnapshotNotFoundFault extends __BaseException {
|
|
150
135
|
name = "ServerlessCacheSnapshotNotFoundFault";
|
|
151
136
|
$fault = "client";
|
|
152
137
|
constructor(opts) {
|
|
@@ -157,9 +142,8 @@ class ServerlessCacheSnapshotNotFoundFault extends ElastiCacheServiceException_1
|
|
|
157
142
|
});
|
|
158
143
|
Object.setPrototypeOf(this, ServerlessCacheSnapshotNotFoundFault.prototype);
|
|
159
144
|
}
|
|
160
|
-
}
|
|
161
|
-
exports.
|
|
162
|
-
class SnapshotNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
145
|
+
};
|
|
146
|
+
exports.SnapshotNotFoundFault = class SnapshotNotFoundFault extends __BaseException {
|
|
163
147
|
name = "SnapshotNotFoundFault";
|
|
164
148
|
$fault = "client";
|
|
165
149
|
constructor(opts) {
|
|
@@ -170,9 +154,8 @@ class SnapshotNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheSer
|
|
|
170
154
|
});
|
|
171
155
|
Object.setPrototypeOf(this, SnapshotNotFoundFault.prototype);
|
|
172
156
|
}
|
|
173
|
-
}
|
|
174
|
-
exports.
|
|
175
|
-
class TagQuotaPerResourceExceeded extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
157
|
+
};
|
|
158
|
+
exports.TagQuotaPerResourceExceeded = class TagQuotaPerResourceExceeded extends __BaseException {
|
|
176
159
|
name = "TagQuotaPerResourceExceeded";
|
|
177
160
|
$fault = "client";
|
|
178
161
|
constructor(opts) {
|
|
@@ -183,9 +166,8 @@ class TagQuotaPerResourceExceeded extends ElastiCacheServiceException_1.ElastiCa
|
|
|
183
166
|
});
|
|
184
167
|
Object.setPrototypeOf(this, TagQuotaPerResourceExceeded.prototype);
|
|
185
168
|
}
|
|
186
|
-
}
|
|
187
|
-
exports.
|
|
188
|
-
class UserGroupNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
169
|
+
};
|
|
170
|
+
exports.UserGroupNotFoundFault = class UserGroupNotFoundFault extends __BaseException {
|
|
189
171
|
name = "UserGroupNotFoundFault";
|
|
190
172
|
$fault = "client";
|
|
191
173
|
constructor(opts) {
|
|
@@ -196,9 +178,8 @@ class UserGroupNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheSe
|
|
|
196
178
|
});
|
|
197
179
|
Object.setPrototypeOf(this, UserGroupNotFoundFault.prototype);
|
|
198
180
|
}
|
|
199
|
-
}
|
|
200
|
-
exports.
|
|
201
|
-
class UserNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
181
|
+
};
|
|
182
|
+
exports.UserNotFoundFault = class UserNotFoundFault extends __BaseException {
|
|
202
183
|
name = "UserNotFoundFault";
|
|
203
184
|
$fault = "client";
|
|
204
185
|
constructor(opts) {
|
|
@@ -209,9 +190,8 @@ class UserNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheService
|
|
|
209
190
|
});
|
|
210
191
|
Object.setPrototypeOf(this, UserNotFoundFault.prototype);
|
|
211
192
|
}
|
|
212
|
-
}
|
|
213
|
-
exports.
|
|
214
|
-
class AuthorizationAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
193
|
+
};
|
|
194
|
+
exports.AuthorizationAlreadyExistsFault = class AuthorizationAlreadyExistsFault extends __BaseException {
|
|
215
195
|
name = "AuthorizationAlreadyExistsFault";
|
|
216
196
|
$fault = "client";
|
|
217
197
|
constructor(opts) {
|
|
@@ -222,9 +202,8 @@ class AuthorizationAlreadyExistsFault extends ElastiCacheServiceException_1.Elas
|
|
|
222
202
|
});
|
|
223
203
|
Object.setPrototypeOf(this, AuthorizationAlreadyExistsFault.prototype);
|
|
224
204
|
}
|
|
225
|
-
}
|
|
226
|
-
exports.
|
|
227
|
-
class InvalidCacheSecurityGroupStateFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
205
|
+
};
|
|
206
|
+
exports.InvalidCacheSecurityGroupStateFault = class InvalidCacheSecurityGroupStateFault extends __BaseException {
|
|
228
207
|
name = "InvalidCacheSecurityGroupStateFault";
|
|
229
208
|
$fault = "client";
|
|
230
209
|
constructor(opts) {
|
|
@@ -235,9 +214,8 @@ class InvalidCacheSecurityGroupStateFault extends ElastiCacheServiceException_1.
|
|
|
235
214
|
});
|
|
236
215
|
Object.setPrototypeOf(this, InvalidCacheSecurityGroupStateFault.prototype);
|
|
237
216
|
}
|
|
238
|
-
}
|
|
239
|
-
exports.
|
|
240
|
-
class InvalidParameterCombinationException extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
217
|
+
};
|
|
218
|
+
exports.InvalidParameterCombinationException = class InvalidParameterCombinationException extends __BaseException {
|
|
241
219
|
name = "InvalidParameterCombinationException";
|
|
242
220
|
$fault = "client";
|
|
243
221
|
constructor(opts) {
|
|
@@ -248,9 +226,8 @@ class InvalidParameterCombinationException extends ElastiCacheServiceException_1
|
|
|
248
226
|
});
|
|
249
227
|
Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
|
|
250
228
|
}
|
|
251
|
-
}
|
|
252
|
-
exports.
|
|
253
|
-
class InvalidParameterValueException extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
229
|
+
};
|
|
230
|
+
exports.InvalidParameterValueException = class InvalidParameterValueException extends __BaseException {
|
|
254
231
|
name = "InvalidParameterValueException";
|
|
255
232
|
$fault = "client";
|
|
256
233
|
constructor(opts) {
|
|
@@ -261,9 +238,8 @@ class InvalidParameterValueException extends ElastiCacheServiceException_1.Elast
|
|
|
261
238
|
});
|
|
262
239
|
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
263
240
|
}
|
|
264
|
-
}
|
|
265
|
-
exports.
|
|
266
|
-
class ServiceUpdateNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
241
|
+
};
|
|
242
|
+
exports.ServiceUpdateNotFoundFault = class ServiceUpdateNotFoundFault extends __BaseException {
|
|
267
243
|
name = "ServiceUpdateNotFoundFault";
|
|
268
244
|
$fault = "client";
|
|
269
245
|
constructor(opts) {
|
|
@@ -274,9 +250,8 @@ class ServiceUpdateNotFoundFault extends ElastiCacheServiceException_1.ElastiCac
|
|
|
274
250
|
});
|
|
275
251
|
Object.setPrototypeOf(this, ServiceUpdateNotFoundFault.prototype);
|
|
276
252
|
}
|
|
277
|
-
}
|
|
278
|
-
exports.
|
|
279
|
-
class ReplicationGroupNotUnderMigrationFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
253
|
+
};
|
|
254
|
+
exports.ReplicationGroupNotUnderMigrationFault = class ReplicationGroupNotUnderMigrationFault extends __BaseException {
|
|
280
255
|
name = "ReplicationGroupNotUnderMigrationFault";
|
|
281
256
|
$fault = "client";
|
|
282
257
|
constructor(opts) {
|
|
@@ -287,9 +262,8 @@ class ReplicationGroupNotUnderMigrationFault extends ElastiCacheServiceException
|
|
|
287
262
|
});
|
|
288
263
|
Object.setPrototypeOf(this, ReplicationGroupNotUnderMigrationFault.prototype);
|
|
289
264
|
}
|
|
290
|
-
}
|
|
291
|
-
exports.
|
|
292
|
-
class ServerlessCacheSnapshotAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
265
|
+
};
|
|
266
|
+
exports.ServerlessCacheSnapshotAlreadyExistsFault = class ServerlessCacheSnapshotAlreadyExistsFault extends __BaseException {
|
|
293
267
|
name = "ServerlessCacheSnapshotAlreadyExistsFault";
|
|
294
268
|
$fault = "client";
|
|
295
269
|
constructor(opts) {
|
|
@@ -300,9 +274,8 @@ class ServerlessCacheSnapshotAlreadyExistsFault extends ElastiCacheServiceExcept
|
|
|
300
274
|
});
|
|
301
275
|
Object.setPrototypeOf(this, ServerlessCacheSnapshotAlreadyExistsFault.prototype);
|
|
302
276
|
}
|
|
303
|
-
}
|
|
304
|
-
exports.
|
|
305
|
-
class ServerlessCacheSnapshotQuotaExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
277
|
+
};
|
|
278
|
+
exports.ServerlessCacheSnapshotQuotaExceededFault = class ServerlessCacheSnapshotQuotaExceededFault extends __BaseException {
|
|
306
279
|
name = "ServerlessCacheSnapshotQuotaExceededFault";
|
|
307
280
|
$fault = "client";
|
|
308
281
|
constructor(opts) {
|
|
@@ -313,9 +286,8 @@ class ServerlessCacheSnapshotQuotaExceededFault extends ElastiCacheServiceExcept
|
|
|
313
286
|
});
|
|
314
287
|
Object.setPrototypeOf(this, ServerlessCacheSnapshotQuotaExceededFault.prototype);
|
|
315
288
|
}
|
|
316
|
-
}
|
|
317
|
-
exports.
|
|
318
|
-
class ServiceLinkedRoleNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
289
|
+
};
|
|
290
|
+
exports.ServiceLinkedRoleNotFoundFault = class ServiceLinkedRoleNotFoundFault extends __BaseException {
|
|
319
291
|
name = "ServiceLinkedRoleNotFoundFault";
|
|
320
292
|
$fault = "client";
|
|
321
293
|
constructor(opts) {
|
|
@@ -326,9 +298,8 @@ class ServiceLinkedRoleNotFoundFault extends ElastiCacheServiceException_1.Elast
|
|
|
326
298
|
});
|
|
327
299
|
Object.setPrototypeOf(this, ServiceLinkedRoleNotFoundFault.prototype);
|
|
328
300
|
}
|
|
329
|
-
}
|
|
330
|
-
exports.
|
|
331
|
-
class InvalidSnapshotStateFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
301
|
+
};
|
|
302
|
+
exports.InvalidSnapshotStateFault = class InvalidSnapshotStateFault extends __BaseException {
|
|
332
303
|
name = "InvalidSnapshotStateFault";
|
|
333
304
|
$fault = "client";
|
|
334
305
|
constructor(opts) {
|
|
@@ -339,9 +310,8 @@ class InvalidSnapshotStateFault extends ElastiCacheServiceException_1.ElastiCach
|
|
|
339
310
|
});
|
|
340
311
|
Object.setPrototypeOf(this, InvalidSnapshotStateFault.prototype);
|
|
341
312
|
}
|
|
342
|
-
}
|
|
343
|
-
exports.
|
|
344
|
-
class SnapshotAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
313
|
+
};
|
|
314
|
+
exports.SnapshotAlreadyExistsFault = class SnapshotAlreadyExistsFault extends __BaseException {
|
|
345
315
|
name = "SnapshotAlreadyExistsFault";
|
|
346
316
|
$fault = "client";
|
|
347
317
|
constructor(opts) {
|
|
@@ -352,9 +322,8 @@ class SnapshotAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCac
|
|
|
352
322
|
});
|
|
353
323
|
Object.setPrototypeOf(this, SnapshotAlreadyExistsFault.prototype);
|
|
354
324
|
}
|
|
355
|
-
}
|
|
356
|
-
exports.
|
|
357
|
-
class SnapshotQuotaExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
325
|
+
};
|
|
326
|
+
exports.SnapshotQuotaExceededFault = class SnapshotQuotaExceededFault extends __BaseException {
|
|
358
327
|
name = "SnapshotQuotaExceededFault";
|
|
359
328
|
$fault = "client";
|
|
360
329
|
constructor(opts) {
|
|
@@ -365,9 +334,8 @@ class SnapshotQuotaExceededFault extends ElastiCacheServiceException_1.ElastiCac
|
|
|
365
334
|
});
|
|
366
335
|
Object.setPrototypeOf(this, SnapshotQuotaExceededFault.prototype);
|
|
367
336
|
}
|
|
368
|
-
}
|
|
369
|
-
exports.
|
|
370
|
-
class CacheClusterAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
337
|
+
};
|
|
338
|
+
exports.CacheClusterAlreadyExistsFault = class CacheClusterAlreadyExistsFault extends __BaseException {
|
|
371
339
|
name = "CacheClusterAlreadyExistsFault";
|
|
372
340
|
$fault = "client";
|
|
373
341
|
constructor(opts) {
|
|
@@ -378,9 +346,8 @@ class CacheClusterAlreadyExistsFault extends ElastiCacheServiceException_1.Elast
|
|
|
378
346
|
});
|
|
379
347
|
Object.setPrototypeOf(this, CacheClusterAlreadyExistsFault.prototype);
|
|
380
348
|
}
|
|
381
|
-
}
|
|
382
|
-
exports.
|
|
383
|
-
class ClusterQuotaForCustomerExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
349
|
+
};
|
|
350
|
+
exports.ClusterQuotaForCustomerExceededFault = class ClusterQuotaForCustomerExceededFault extends __BaseException {
|
|
384
351
|
name = "ClusterQuotaForCustomerExceededFault";
|
|
385
352
|
$fault = "client";
|
|
386
353
|
constructor(opts) {
|
|
@@ -391,9 +358,8 @@ class ClusterQuotaForCustomerExceededFault extends ElastiCacheServiceException_1
|
|
|
391
358
|
});
|
|
392
359
|
Object.setPrototypeOf(this, ClusterQuotaForCustomerExceededFault.prototype);
|
|
393
360
|
}
|
|
394
|
-
}
|
|
395
|
-
exports.
|
|
396
|
-
class InsufficientCacheClusterCapacityFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
361
|
+
};
|
|
362
|
+
exports.InsufficientCacheClusterCapacityFault = class InsufficientCacheClusterCapacityFault extends __BaseException {
|
|
397
363
|
name = "InsufficientCacheClusterCapacityFault";
|
|
398
364
|
$fault = "client";
|
|
399
365
|
constructor(opts) {
|
|
@@ -404,9 +370,8 @@ class InsufficientCacheClusterCapacityFault extends ElastiCacheServiceException_
|
|
|
404
370
|
});
|
|
405
371
|
Object.setPrototypeOf(this, InsufficientCacheClusterCapacityFault.prototype);
|
|
406
372
|
}
|
|
407
|
-
}
|
|
408
|
-
exports.
|
|
409
|
-
class InvalidVPCNetworkStateFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
373
|
+
};
|
|
374
|
+
exports.InvalidVPCNetworkStateFault = class InvalidVPCNetworkStateFault extends __BaseException {
|
|
410
375
|
name = "InvalidVPCNetworkStateFault";
|
|
411
376
|
$fault = "client";
|
|
412
377
|
constructor(opts) {
|
|
@@ -417,9 +382,8 @@ class InvalidVPCNetworkStateFault extends ElastiCacheServiceException_1.ElastiCa
|
|
|
417
382
|
});
|
|
418
383
|
Object.setPrototypeOf(this, InvalidVPCNetworkStateFault.prototype);
|
|
419
384
|
}
|
|
420
|
-
}
|
|
421
|
-
exports.
|
|
422
|
-
class NodeQuotaForClusterExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
385
|
+
};
|
|
386
|
+
exports.NodeQuotaForClusterExceededFault = class NodeQuotaForClusterExceededFault extends __BaseException {
|
|
423
387
|
name = "NodeQuotaForClusterExceededFault";
|
|
424
388
|
$fault = "client";
|
|
425
389
|
constructor(opts) {
|
|
@@ -430,9 +394,8 @@ class NodeQuotaForClusterExceededFault extends ElastiCacheServiceException_1.Ela
|
|
|
430
394
|
});
|
|
431
395
|
Object.setPrototypeOf(this, NodeQuotaForClusterExceededFault.prototype);
|
|
432
396
|
}
|
|
433
|
-
}
|
|
434
|
-
exports.
|
|
435
|
-
class NodeQuotaForCustomerExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
397
|
+
};
|
|
398
|
+
exports.NodeQuotaForCustomerExceededFault = class NodeQuotaForCustomerExceededFault extends __BaseException {
|
|
436
399
|
name = "NodeQuotaForCustomerExceededFault";
|
|
437
400
|
$fault = "client";
|
|
438
401
|
constructor(opts) {
|
|
@@ -443,9 +406,8 @@ class NodeQuotaForCustomerExceededFault extends ElastiCacheServiceException_1.El
|
|
|
443
406
|
});
|
|
444
407
|
Object.setPrototypeOf(this, NodeQuotaForCustomerExceededFault.prototype);
|
|
445
408
|
}
|
|
446
|
-
}
|
|
447
|
-
exports.
|
|
448
|
-
class CacheParameterGroupAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
409
|
+
};
|
|
410
|
+
exports.CacheParameterGroupAlreadyExistsFault = class CacheParameterGroupAlreadyExistsFault extends __BaseException {
|
|
449
411
|
name = "CacheParameterGroupAlreadyExistsFault";
|
|
450
412
|
$fault = "client";
|
|
451
413
|
constructor(opts) {
|
|
@@ -456,9 +418,8 @@ class CacheParameterGroupAlreadyExistsFault extends ElastiCacheServiceException_
|
|
|
456
418
|
});
|
|
457
419
|
Object.setPrototypeOf(this, CacheParameterGroupAlreadyExistsFault.prototype);
|
|
458
420
|
}
|
|
459
|
-
}
|
|
460
|
-
exports.
|
|
461
|
-
class CacheParameterGroupQuotaExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
421
|
+
};
|
|
422
|
+
exports.CacheParameterGroupQuotaExceededFault = class CacheParameterGroupQuotaExceededFault extends __BaseException {
|
|
462
423
|
name = "CacheParameterGroupQuotaExceededFault";
|
|
463
424
|
$fault = "client";
|
|
464
425
|
constructor(opts) {
|
|
@@ -469,9 +430,8 @@ class CacheParameterGroupQuotaExceededFault extends ElastiCacheServiceException_
|
|
|
469
430
|
});
|
|
470
431
|
Object.setPrototypeOf(this, CacheParameterGroupQuotaExceededFault.prototype);
|
|
471
432
|
}
|
|
472
|
-
}
|
|
473
|
-
exports.
|
|
474
|
-
class InvalidCacheParameterGroupStateFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
433
|
+
};
|
|
434
|
+
exports.InvalidCacheParameterGroupStateFault = class InvalidCacheParameterGroupStateFault extends __BaseException {
|
|
475
435
|
name = "InvalidCacheParameterGroupStateFault";
|
|
476
436
|
$fault = "client";
|
|
477
437
|
constructor(opts) {
|
|
@@ -482,9 +442,8 @@ class InvalidCacheParameterGroupStateFault extends ElastiCacheServiceException_1
|
|
|
482
442
|
});
|
|
483
443
|
Object.setPrototypeOf(this, InvalidCacheParameterGroupStateFault.prototype);
|
|
484
444
|
}
|
|
485
|
-
}
|
|
486
|
-
exports.
|
|
487
|
-
class CacheSecurityGroupAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
445
|
+
};
|
|
446
|
+
exports.CacheSecurityGroupAlreadyExistsFault = class CacheSecurityGroupAlreadyExistsFault extends __BaseException {
|
|
488
447
|
name = "CacheSecurityGroupAlreadyExistsFault";
|
|
489
448
|
$fault = "client";
|
|
490
449
|
constructor(opts) {
|
|
@@ -495,9 +454,8 @@ class CacheSecurityGroupAlreadyExistsFault extends ElastiCacheServiceException_1
|
|
|
495
454
|
});
|
|
496
455
|
Object.setPrototypeOf(this, CacheSecurityGroupAlreadyExistsFault.prototype);
|
|
497
456
|
}
|
|
498
|
-
}
|
|
499
|
-
exports.
|
|
500
|
-
class CacheSecurityGroupQuotaExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
457
|
+
};
|
|
458
|
+
exports.CacheSecurityGroupQuotaExceededFault = class CacheSecurityGroupQuotaExceededFault extends __BaseException {
|
|
501
459
|
name = "CacheSecurityGroupQuotaExceededFault";
|
|
502
460
|
$fault = "client";
|
|
503
461
|
constructor(opts) {
|
|
@@ -508,9 +466,8 @@ class CacheSecurityGroupQuotaExceededFault extends ElastiCacheServiceException_1
|
|
|
508
466
|
});
|
|
509
467
|
Object.setPrototypeOf(this, CacheSecurityGroupQuotaExceededFault.prototype);
|
|
510
468
|
}
|
|
511
|
-
}
|
|
512
|
-
exports.
|
|
513
|
-
class CacheSubnetGroupAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
469
|
+
};
|
|
470
|
+
exports.CacheSubnetGroupAlreadyExistsFault = class CacheSubnetGroupAlreadyExistsFault extends __BaseException {
|
|
514
471
|
name = "CacheSubnetGroupAlreadyExistsFault";
|
|
515
472
|
$fault = "client";
|
|
516
473
|
constructor(opts) {
|
|
@@ -521,9 +478,8 @@ class CacheSubnetGroupAlreadyExistsFault extends ElastiCacheServiceException_1.E
|
|
|
521
478
|
});
|
|
522
479
|
Object.setPrototypeOf(this, CacheSubnetGroupAlreadyExistsFault.prototype);
|
|
523
480
|
}
|
|
524
|
-
}
|
|
525
|
-
exports.
|
|
526
|
-
class CacheSubnetGroupQuotaExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
481
|
+
};
|
|
482
|
+
exports.CacheSubnetGroupQuotaExceededFault = class CacheSubnetGroupQuotaExceededFault extends __BaseException {
|
|
527
483
|
name = "CacheSubnetGroupQuotaExceededFault";
|
|
528
484
|
$fault = "client";
|
|
529
485
|
constructor(opts) {
|
|
@@ -534,9 +490,8 @@ class CacheSubnetGroupQuotaExceededFault extends ElastiCacheServiceException_1.E
|
|
|
534
490
|
});
|
|
535
491
|
Object.setPrototypeOf(this, CacheSubnetGroupQuotaExceededFault.prototype);
|
|
536
492
|
}
|
|
537
|
-
}
|
|
538
|
-
exports.
|
|
539
|
-
class CacheSubnetQuotaExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
493
|
+
};
|
|
494
|
+
exports.CacheSubnetQuotaExceededFault = class CacheSubnetQuotaExceededFault extends __BaseException {
|
|
540
495
|
name = "CacheSubnetQuotaExceededFault";
|
|
541
496
|
$fault = "client";
|
|
542
497
|
constructor(opts) {
|
|
@@ -547,9 +502,8 @@ class CacheSubnetQuotaExceededFault extends ElastiCacheServiceException_1.Elasti
|
|
|
547
502
|
});
|
|
548
503
|
Object.setPrototypeOf(this, CacheSubnetQuotaExceededFault.prototype);
|
|
549
504
|
}
|
|
550
|
-
}
|
|
551
|
-
exports.
|
|
552
|
-
class InvalidSubnet extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
505
|
+
};
|
|
506
|
+
exports.InvalidSubnet = class InvalidSubnet extends __BaseException {
|
|
553
507
|
name = "InvalidSubnet";
|
|
554
508
|
$fault = "client";
|
|
555
509
|
constructor(opts) {
|
|
@@ -560,9 +514,8 @@ class InvalidSubnet extends ElastiCacheServiceException_1.ElastiCacheServiceExce
|
|
|
560
514
|
});
|
|
561
515
|
Object.setPrototypeOf(this, InvalidSubnet.prototype);
|
|
562
516
|
}
|
|
563
|
-
}
|
|
564
|
-
exports.
|
|
565
|
-
class SubnetNotAllowedFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
517
|
+
};
|
|
518
|
+
exports.SubnetNotAllowedFault = class SubnetNotAllowedFault extends __BaseException {
|
|
566
519
|
name = "SubnetNotAllowedFault";
|
|
567
520
|
$fault = "client";
|
|
568
521
|
constructor(opts) {
|
|
@@ -573,9 +526,8 @@ class SubnetNotAllowedFault extends ElastiCacheServiceException_1.ElastiCacheSer
|
|
|
573
526
|
});
|
|
574
527
|
Object.setPrototypeOf(this, SubnetNotAllowedFault.prototype);
|
|
575
528
|
}
|
|
576
|
-
}
|
|
577
|
-
exports.
|
|
578
|
-
class GlobalReplicationGroupAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
529
|
+
};
|
|
530
|
+
exports.GlobalReplicationGroupAlreadyExistsFault = class GlobalReplicationGroupAlreadyExistsFault extends __BaseException {
|
|
579
531
|
name = "GlobalReplicationGroupAlreadyExistsFault";
|
|
580
532
|
$fault = "client";
|
|
581
533
|
constructor(opts) {
|
|
@@ -586,9 +538,8 @@ class GlobalReplicationGroupAlreadyExistsFault extends ElastiCacheServiceExcepti
|
|
|
586
538
|
});
|
|
587
539
|
Object.setPrototypeOf(this, GlobalReplicationGroupAlreadyExistsFault.prototype);
|
|
588
540
|
}
|
|
589
|
-
}
|
|
590
|
-
exports.
|
|
591
|
-
class GlobalReplicationGroupNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
541
|
+
};
|
|
542
|
+
exports.GlobalReplicationGroupNotFoundFault = class GlobalReplicationGroupNotFoundFault extends __BaseException {
|
|
592
543
|
name = "GlobalReplicationGroupNotFoundFault";
|
|
593
544
|
$fault = "client";
|
|
594
545
|
constructor(opts) {
|
|
@@ -599,9 +550,8 @@ class GlobalReplicationGroupNotFoundFault extends ElastiCacheServiceException_1.
|
|
|
599
550
|
});
|
|
600
551
|
Object.setPrototypeOf(this, GlobalReplicationGroupNotFoundFault.prototype);
|
|
601
552
|
}
|
|
602
|
-
}
|
|
603
|
-
exports.
|
|
604
|
-
class InvalidCacheClusterStateFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
553
|
+
};
|
|
554
|
+
exports.InvalidCacheClusterStateFault = class InvalidCacheClusterStateFault extends __BaseException {
|
|
605
555
|
name = "InvalidCacheClusterStateFault";
|
|
606
556
|
$fault = "client";
|
|
607
557
|
constructor(opts) {
|
|
@@ -612,9 +562,8 @@ class InvalidCacheClusterStateFault extends ElastiCacheServiceException_1.Elasti
|
|
|
612
562
|
});
|
|
613
563
|
Object.setPrototypeOf(this, InvalidCacheClusterStateFault.prototype);
|
|
614
564
|
}
|
|
615
|
-
}
|
|
616
|
-
exports.
|
|
617
|
-
class InvalidGlobalReplicationGroupStateFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
565
|
+
};
|
|
566
|
+
exports.InvalidGlobalReplicationGroupStateFault = class InvalidGlobalReplicationGroupStateFault extends __BaseException {
|
|
618
567
|
name = "InvalidGlobalReplicationGroupStateFault";
|
|
619
568
|
$fault = "client";
|
|
620
569
|
constructor(opts) {
|
|
@@ -625,9 +574,8 @@ class InvalidGlobalReplicationGroupStateFault extends ElastiCacheServiceExceptio
|
|
|
625
574
|
});
|
|
626
575
|
Object.setPrototypeOf(this, InvalidGlobalReplicationGroupStateFault.prototype);
|
|
627
576
|
}
|
|
628
|
-
}
|
|
629
|
-
exports.
|
|
630
|
-
class InvalidUserGroupStateFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
577
|
+
};
|
|
578
|
+
exports.InvalidUserGroupStateFault = class InvalidUserGroupStateFault extends __BaseException {
|
|
631
579
|
name = "InvalidUserGroupStateFault";
|
|
632
580
|
$fault = "client";
|
|
633
581
|
constructor(opts) {
|
|
@@ -638,9 +586,8 @@ class InvalidUserGroupStateFault extends ElastiCacheServiceException_1.ElastiCac
|
|
|
638
586
|
});
|
|
639
587
|
Object.setPrototypeOf(this, InvalidUserGroupStateFault.prototype);
|
|
640
588
|
}
|
|
641
|
-
}
|
|
642
|
-
exports.
|
|
643
|
-
class NodeGroupsPerReplicationGroupQuotaExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
589
|
+
};
|
|
590
|
+
exports.NodeGroupsPerReplicationGroupQuotaExceededFault = class NodeGroupsPerReplicationGroupQuotaExceededFault extends __BaseException {
|
|
644
591
|
name = "NodeGroupsPerReplicationGroupQuotaExceededFault";
|
|
645
592
|
$fault = "client";
|
|
646
593
|
constructor(opts) {
|
|
@@ -651,9 +598,8 @@ class NodeGroupsPerReplicationGroupQuotaExceededFault extends ElastiCacheService
|
|
|
651
598
|
});
|
|
652
599
|
Object.setPrototypeOf(this, NodeGroupsPerReplicationGroupQuotaExceededFault.prototype);
|
|
653
600
|
}
|
|
654
|
-
}
|
|
655
|
-
exports.
|
|
656
|
-
class ReplicationGroupAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
601
|
+
};
|
|
602
|
+
exports.ReplicationGroupAlreadyExistsFault = class ReplicationGroupAlreadyExistsFault extends __BaseException {
|
|
657
603
|
name = "ReplicationGroupAlreadyExistsFault";
|
|
658
604
|
$fault = "client";
|
|
659
605
|
constructor(opts) {
|
|
@@ -664,9 +610,8 @@ class ReplicationGroupAlreadyExistsFault extends ElastiCacheServiceException_1.E
|
|
|
664
610
|
});
|
|
665
611
|
Object.setPrototypeOf(this, ReplicationGroupAlreadyExistsFault.prototype);
|
|
666
612
|
}
|
|
667
|
-
}
|
|
668
|
-
exports.
|
|
669
|
-
class InvalidCredentialsException extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
613
|
+
};
|
|
614
|
+
exports.InvalidCredentialsException = class InvalidCredentialsException extends __BaseException {
|
|
670
615
|
name = "InvalidCredentialsException";
|
|
671
616
|
$fault = "client";
|
|
672
617
|
constructor(opts) {
|
|
@@ -677,9 +622,8 @@ class InvalidCredentialsException extends ElastiCacheServiceException_1.ElastiCa
|
|
|
677
622
|
});
|
|
678
623
|
Object.setPrototypeOf(this, InvalidCredentialsException.prototype);
|
|
679
624
|
}
|
|
680
|
-
}
|
|
681
|
-
exports.
|
|
682
|
-
class ServerlessCacheAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
625
|
+
};
|
|
626
|
+
exports.ServerlessCacheAlreadyExistsFault = class ServerlessCacheAlreadyExistsFault extends __BaseException {
|
|
683
627
|
name = "ServerlessCacheAlreadyExistsFault";
|
|
684
628
|
$fault = "client";
|
|
685
629
|
constructor(opts) {
|
|
@@ -690,9 +634,8 @@ class ServerlessCacheAlreadyExistsFault extends ElastiCacheServiceException_1.El
|
|
|
690
634
|
});
|
|
691
635
|
Object.setPrototypeOf(this, ServerlessCacheAlreadyExistsFault.prototype);
|
|
692
636
|
}
|
|
693
|
-
}
|
|
694
|
-
exports.
|
|
695
|
-
class ServerlessCacheQuotaForCustomerExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
637
|
+
};
|
|
638
|
+
exports.ServerlessCacheQuotaForCustomerExceededFault = class ServerlessCacheQuotaForCustomerExceededFault extends __BaseException {
|
|
696
639
|
name = "ServerlessCacheQuotaForCustomerExceededFault";
|
|
697
640
|
$fault = "client";
|
|
698
641
|
constructor(opts) {
|
|
@@ -703,9 +646,8 @@ class ServerlessCacheQuotaForCustomerExceededFault extends ElastiCacheServiceExc
|
|
|
703
646
|
});
|
|
704
647
|
Object.setPrototypeOf(this, ServerlessCacheQuotaForCustomerExceededFault.prototype);
|
|
705
648
|
}
|
|
706
|
-
}
|
|
707
|
-
exports.
|
|
708
|
-
class SnapshotFeatureNotSupportedFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
649
|
+
};
|
|
650
|
+
exports.SnapshotFeatureNotSupportedFault = class SnapshotFeatureNotSupportedFault extends __BaseException {
|
|
709
651
|
name = "SnapshotFeatureNotSupportedFault";
|
|
710
652
|
$fault = "client";
|
|
711
653
|
constructor(opts) {
|
|
@@ -716,9 +658,8 @@ class SnapshotFeatureNotSupportedFault extends ElastiCacheServiceException_1.Ela
|
|
|
716
658
|
});
|
|
717
659
|
Object.setPrototypeOf(this, SnapshotFeatureNotSupportedFault.prototype);
|
|
718
660
|
}
|
|
719
|
-
}
|
|
720
|
-
exports.
|
|
721
|
-
class DuplicateUserNameFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
661
|
+
};
|
|
662
|
+
exports.DuplicateUserNameFault = class DuplicateUserNameFault extends __BaseException {
|
|
722
663
|
name = "DuplicateUserNameFault";
|
|
723
664
|
$fault = "client";
|
|
724
665
|
constructor(opts) {
|
|
@@ -729,9 +670,8 @@ class DuplicateUserNameFault extends ElastiCacheServiceException_1.ElastiCacheSe
|
|
|
729
670
|
});
|
|
730
671
|
Object.setPrototypeOf(this, DuplicateUserNameFault.prototype);
|
|
731
672
|
}
|
|
732
|
-
}
|
|
733
|
-
exports.
|
|
734
|
-
class UserAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
673
|
+
};
|
|
674
|
+
exports.UserAlreadyExistsFault = class UserAlreadyExistsFault extends __BaseException {
|
|
735
675
|
name = "UserAlreadyExistsFault";
|
|
736
676
|
$fault = "client";
|
|
737
677
|
constructor(opts) {
|
|
@@ -742,9 +682,8 @@ class UserAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCacheSe
|
|
|
742
682
|
});
|
|
743
683
|
Object.setPrototypeOf(this, UserAlreadyExistsFault.prototype);
|
|
744
684
|
}
|
|
745
|
-
}
|
|
746
|
-
exports.
|
|
747
|
-
class UserQuotaExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
685
|
+
};
|
|
686
|
+
exports.UserQuotaExceededFault = class UserQuotaExceededFault extends __BaseException {
|
|
748
687
|
name = "UserQuotaExceededFault";
|
|
749
688
|
$fault = "client";
|
|
750
689
|
constructor(opts) {
|
|
@@ -755,9 +694,8 @@ class UserQuotaExceededFault extends ElastiCacheServiceException_1.ElastiCacheSe
|
|
|
755
694
|
});
|
|
756
695
|
Object.setPrototypeOf(this, UserQuotaExceededFault.prototype);
|
|
757
696
|
}
|
|
758
|
-
}
|
|
759
|
-
exports.
|
|
760
|
-
class DefaultUserRequired extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
697
|
+
};
|
|
698
|
+
exports.DefaultUserRequired = class DefaultUserRequired extends __BaseException {
|
|
761
699
|
name = "DefaultUserRequired";
|
|
762
700
|
$fault = "client";
|
|
763
701
|
constructor(opts) {
|
|
@@ -768,9 +706,8 @@ class DefaultUserRequired extends ElastiCacheServiceException_1.ElastiCacheServi
|
|
|
768
706
|
});
|
|
769
707
|
Object.setPrototypeOf(this, DefaultUserRequired.prototype);
|
|
770
708
|
}
|
|
771
|
-
}
|
|
772
|
-
exports.
|
|
773
|
-
class UserGroupAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
709
|
+
};
|
|
710
|
+
exports.UserGroupAlreadyExistsFault = class UserGroupAlreadyExistsFault extends __BaseException {
|
|
774
711
|
name = "UserGroupAlreadyExistsFault";
|
|
775
712
|
$fault = "client";
|
|
776
713
|
constructor(opts) {
|
|
@@ -781,9 +718,8 @@ class UserGroupAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCa
|
|
|
781
718
|
});
|
|
782
719
|
Object.setPrototypeOf(this, UserGroupAlreadyExistsFault.prototype);
|
|
783
720
|
}
|
|
784
|
-
}
|
|
785
|
-
exports.
|
|
786
|
-
class UserGroupQuotaExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
721
|
+
};
|
|
722
|
+
exports.UserGroupQuotaExceededFault = class UserGroupQuotaExceededFault extends __BaseException {
|
|
787
723
|
name = "UserGroupQuotaExceededFault";
|
|
788
724
|
$fault = "client";
|
|
789
725
|
constructor(opts) {
|
|
@@ -794,9 +730,8 @@ class UserGroupQuotaExceededFault extends ElastiCacheServiceException_1.ElastiCa
|
|
|
794
730
|
});
|
|
795
731
|
Object.setPrototypeOf(this, UserGroupQuotaExceededFault.prototype);
|
|
796
732
|
}
|
|
797
|
-
}
|
|
798
|
-
exports.
|
|
799
|
-
class NoOperationFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
733
|
+
};
|
|
734
|
+
exports.NoOperationFault = class NoOperationFault extends __BaseException {
|
|
800
735
|
name = "NoOperationFault";
|
|
801
736
|
$fault = "client";
|
|
802
737
|
constructor(opts) {
|
|
@@ -807,9 +742,8 @@ class NoOperationFault extends ElastiCacheServiceException_1.ElastiCacheServiceE
|
|
|
807
742
|
});
|
|
808
743
|
Object.setPrototypeOf(this, NoOperationFault.prototype);
|
|
809
744
|
}
|
|
810
|
-
}
|
|
811
|
-
exports.
|
|
812
|
-
class CacheSubnetGroupInUse extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
745
|
+
};
|
|
746
|
+
exports.CacheSubnetGroupInUse = class CacheSubnetGroupInUse extends __BaseException {
|
|
813
747
|
name = "CacheSubnetGroupInUse";
|
|
814
748
|
$fault = "client";
|
|
815
749
|
constructor(opts) {
|
|
@@ -820,9 +754,8 @@ class CacheSubnetGroupInUse extends ElastiCacheServiceException_1.ElastiCacheSer
|
|
|
820
754
|
});
|
|
821
755
|
Object.setPrototypeOf(this, CacheSubnetGroupInUse.prototype);
|
|
822
756
|
}
|
|
823
|
-
}
|
|
824
|
-
exports.
|
|
825
|
-
class DefaultUserAssociatedToUserGroupFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
757
|
+
};
|
|
758
|
+
exports.DefaultUserAssociatedToUserGroupFault = class DefaultUserAssociatedToUserGroupFault extends __BaseException {
|
|
826
759
|
name = "DefaultUserAssociatedToUserGroupFault";
|
|
827
760
|
$fault = "client";
|
|
828
761
|
constructor(opts) {
|
|
@@ -833,9 +766,8 @@ class DefaultUserAssociatedToUserGroupFault extends ElastiCacheServiceException_
|
|
|
833
766
|
});
|
|
834
767
|
Object.setPrototypeOf(this, DefaultUserAssociatedToUserGroupFault.prototype);
|
|
835
768
|
}
|
|
836
|
-
}
|
|
837
|
-
exports.
|
|
838
|
-
class InvalidUserStateFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
769
|
+
};
|
|
770
|
+
exports.InvalidUserStateFault = class InvalidUserStateFault extends __BaseException {
|
|
839
771
|
name = "InvalidUserStateFault";
|
|
840
772
|
$fault = "client";
|
|
841
773
|
constructor(opts) {
|
|
@@ -846,9 +778,8 @@ class InvalidUserStateFault extends ElastiCacheServiceException_1.ElastiCacheSer
|
|
|
846
778
|
});
|
|
847
779
|
Object.setPrototypeOf(this, InvalidUserStateFault.prototype);
|
|
848
780
|
}
|
|
849
|
-
}
|
|
850
|
-
exports.
|
|
851
|
-
class ReservedCacheNodesOfferingNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
781
|
+
};
|
|
782
|
+
exports.ReservedCacheNodesOfferingNotFoundFault = class ReservedCacheNodesOfferingNotFoundFault extends __BaseException {
|
|
852
783
|
name = "ReservedCacheNodesOfferingNotFoundFault";
|
|
853
784
|
$fault = "client";
|
|
854
785
|
constructor(opts) {
|
|
@@ -859,9 +790,8 @@ class ReservedCacheNodesOfferingNotFoundFault extends ElastiCacheServiceExceptio
|
|
|
859
790
|
});
|
|
860
791
|
Object.setPrototypeOf(this, ReservedCacheNodesOfferingNotFoundFault.prototype);
|
|
861
792
|
}
|
|
862
|
-
}
|
|
863
|
-
exports.
|
|
864
|
-
class InvalidKMSKeyFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
793
|
+
};
|
|
794
|
+
exports.InvalidKMSKeyFault = class InvalidKMSKeyFault extends __BaseException {
|
|
865
795
|
name = "InvalidKMSKeyFault";
|
|
866
796
|
$fault = "client";
|
|
867
797
|
constructor(opts) {
|
|
@@ -872,9 +802,8 @@ class InvalidKMSKeyFault extends ElastiCacheServiceException_1.ElastiCacheServic
|
|
|
872
802
|
});
|
|
873
803
|
Object.setPrototypeOf(this, InvalidKMSKeyFault.prototype);
|
|
874
804
|
}
|
|
875
|
-
}
|
|
876
|
-
exports.
|
|
877
|
-
class SubnetInUse extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
805
|
+
};
|
|
806
|
+
exports.SubnetInUse = class SubnetInUse extends __BaseException {
|
|
878
807
|
name = "SubnetInUse";
|
|
879
808
|
$fault = "client";
|
|
880
809
|
constructor(opts) {
|
|
@@ -885,9 +814,8 @@ class SubnetInUse extends ElastiCacheServiceException_1.ElastiCacheServiceExcept
|
|
|
885
814
|
});
|
|
886
815
|
Object.setPrototypeOf(this, SubnetInUse.prototype);
|
|
887
816
|
}
|
|
888
|
-
}
|
|
889
|
-
exports.
|
|
890
|
-
class ReservedCacheNodeAlreadyExistsFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
817
|
+
};
|
|
818
|
+
exports.ReservedCacheNodeAlreadyExistsFault = class ReservedCacheNodeAlreadyExistsFault extends __BaseException {
|
|
891
819
|
name = "ReservedCacheNodeAlreadyExistsFault";
|
|
892
820
|
$fault = "client";
|
|
893
821
|
constructor(opts) {
|
|
@@ -898,9 +826,8 @@ class ReservedCacheNodeAlreadyExistsFault extends ElastiCacheServiceException_1.
|
|
|
898
826
|
});
|
|
899
827
|
Object.setPrototypeOf(this, ReservedCacheNodeAlreadyExistsFault.prototype);
|
|
900
828
|
}
|
|
901
|
-
}
|
|
902
|
-
exports.
|
|
903
|
-
class ReservedCacheNodeQuotaExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
829
|
+
};
|
|
830
|
+
exports.ReservedCacheNodeQuotaExceededFault = class ReservedCacheNodeQuotaExceededFault extends __BaseException {
|
|
904
831
|
name = "ReservedCacheNodeQuotaExceededFault";
|
|
905
832
|
$fault = "client";
|
|
906
833
|
constructor(opts) {
|
|
@@ -911,9 +838,8 @@ class ReservedCacheNodeQuotaExceededFault extends ElastiCacheServiceException_1.
|
|
|
911
838
|
});
|
|
912
839
|
Object.setPrototypeOf(this, ReservedCacheNodeQuotaExceededFault.prototype);
|
|
913
840
|
}
|
|
914
|
-
}
|
|
915
|
-
exports.
|
|
916
|
-
class TagNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
841
|
+
};
|
|
842
|
+
exports.TagNotFoundFault = class TagNotFoundFault extends __BaseException {
|
|
917
843
|
name = "TagNotFoundFault";
|
|
918
844
|
$fault = "client";
|
|
919
845
|
constructor(opts) {
|
|
@@ -924,9 +850,8 @@ class TagNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceE
|
|
|
924
850
|
});
|
|
925
851
|
Object.setPrototypeOf(this, TagNotFoundFault.prototype);
|
|
926
852
|
}
|
|
927
|
-
}
|
|
928
|
-
exports.
|
|
929
|
-
class AuthorizationNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
853
|
+
};
|
|
854
|
+
exports.AuthorizationNotFoundFault = class AuthorizationNotFoundFault extends __BaseException {
|
|
930
855
|
name = "AuthorizationNotFoundFault";
|
|
931
856
|
$fault = "client";
|
|
932
857
|
constructor(opts) {
|
|
@@ -937,9 +862,8 @@ class AuthorizationNotFoundFault extends ElastiCacheServiceException_1.ElastiCac
|
|
|
937
862
|
});
|
|
938
863
|
Object.setPrototypeOf(this, AuthorizationNotFoundFault.prototype);
|
|
939
864
|
}
|
|
940
|
-
}
|
|
941
|
-
exports.
|
|
942
|
-
class ReplicationGroupAlreadyUnderMigrationFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
865
|
+
};
|
|
866
|
+
exports.ReplicationGroupAlreadyUnderMigrationFault = class ReplicationGroupAlreadyUnderMigrationFault extends __BaseException {
|
|
943
867
|
name = "ReplicationGroupAlreadyUnderMigrationFault";
|
|
944
868
|
$fault = "client";
|
|
945
869
|
constructor(opts) {
|
|
@@ -950,9 +874,8 @@ class ReplicationGroupAlreadyUnderMigrationFault extends ElastiCacheServiceExcep
|
|
|
950
874
|
});
|
|
951
875
|
Object.setPrototypeOf(this, ReplicationGroupAlreadyUnderMigrationFault.prototype);
|
|
952
876
|
}
|
|
953
|
-
}
|
|
954
|
-
exports.
|
|
955
|
-
class APICallRateForCustomerExceededFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
877
|
+
};
|
|
878
|
+
exports.APICallRateForCustomerExceededFault = class APICallRateForCustomerExceededFault extends __BaseException {
|
|
956
879
|
name = "APICallRateForCustomerExceededFault";
|
|
957
880
|
$fault = "client";
|
|
958
881
|
constructor(opts) {
|
|
@@ -963,9 +886,8 @@ class APICallRateForCustomerExceededFault extends ElastiCacheServiceException_1.
|
|
|
963
886
|
});
|
|
964
887
|
Object.setPrototypeOf(this, APICallRateForCustomerExceededFault.prototype);
|
|
965
888
|
}
|
|
966
|
-
}
|
|
967
|
-
exports.
|
|
968
|
-
class NodeGroupNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
889
|
+
};
|
|
890
|
+
exports.NodeGroupNotFoundFault = class NodeGroupNotFoundFault extends __BaseException {
|
|
969
891
|
name = "NodeGroupNotFoundFault";
|
|
970
892
|
$fault = "client";
|
|
971
893
|
constructor(opts) {
|
|
@@ -976,9 +898,8 @@ class NodeGroupNotFoundFault extends ElastiCacheServiceException_1.ElastiCacheSe
|
|
|
976
898
|
});
|
|
977
899
|
Object.setPrototypeOf(this, NodeGroupNotFoundFault.prototype);
|
|
978
900
|
}
|
|
979
|
-
}
|
|
980
|
-
exports.
|
|
981
|
-
class TestFailoverNotAvailableFault extends ElastiCacheServiceException_1.ElastiCacheServiceException {
|
|
901
|
+
};
|
|
902
|
+
exports.TestFailoverNotAvailableFault = class TestFailoverNotAvailableFault extends __BaseException {
|
|
982
903
|
name = "TestFailoverNotAvailableFault";
|
|
983
904
|
$fault = "client";
|
|
984
905
|
constructor(opts) {
|
|
@@ -989,5 +910,4 @@ class TestFailoverNotAvailableFault extends ElastiCacheServiceException_1.Elasti
|
|
|
989
910
|
});
|
|
990
911
|
Object.setPrototypeOf(this, TestFailoverNotAvailableFault.prototype);
|
|
991
912
|
}
|
|
992
|
-
}
|
|
993
|
-
exports.TestFailoverNotAvailableFault = TestFailoverNotAvailableFault;
|
|
913
|
+
};
|