@aws-sdk/client-docdb 3.1068.0 → 3.1069.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 +244 -264
- package/dist-cjs/models/DocDBServiceException.js +4 -8
- package/dist-cjs/models/errors.js +117 -179
- 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 +593 -399
- package/package.json +9 -9
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.InvalidEventSubscriptionStateFault = exports.InvalidDBSubnetStateFault = exports.DBSnapshotAlreadyExistsFault = exports.InvalidDBParameterGroupStateFault = exports.GlobalClusterQuotaExceededFault = exports.GlobalClusterAlreadyExistsFault = exports.SubscriptionCategoryNotFoundFault = exports.SubscriptionAlreadyExistFault = exports.SNSTopicArnNotFoundFault = exports.SNSNoAuthorizationFault = exports.SNSInvalidTopicFault = exports.EventSubscriptionQuotaExceededFault = exports.DBSubnetQuotaExceededFault = exports.DBSubnetGroupQuotaExceededFault = exports.DBSubnetGroupAlreadyExistsFault = exports.StorageTypeNotSupportedFault = exports.InsufficientDBInstanceCapacityFault = exports.InstanceQuotaExceededFault = exports.DBSecurityGroupNotFoundFault = exports.DBInstanceAlreadyExistsFault = exports.AuthorizationNotFoundFault = exports.StorageQuotaExceededFault = exports.NetworkTypeNotSupported = exports.InvalidVPCNetworkStateFault = exports.InvalidSubnet = exports.InvalidGlobalClusterStateFault = exports.InvalidDBSubnetGroupStateFault = exports.InsufficientStorageClusterCapacityFault = exports.GlobalClusterNotFoundFault = exports.DBSubnetGroupNotFoundFault = exports.DBSubnetGroupDoesNotCoverEnoughAZs = exports.DBClusterQuotaExceededFault = exports.DBClusterParameterGroupNotFoundFault = exports.DBClusterAlreadyExistsFault = exports.SnapshotQuotaExceededFault = exports.KMSKeyNotAccessibleFault = exports.InvalidDBClusterSnapshotStateFault = exports.DBClusterSnapshotNotFoundFault = exports.DBClusterSnapshotAlreadyExistsFault = exports.DBParameterGroupQuotaExceededFault = exports.DBParameterGroupNotFoundFault = exports.DBParameterGroupAlreadyExistsFault = exports.ResourceNotFoundFault = exports.InvalidDBInstanceStateFault = exports.InvalidDBClusterStateFault = exports.DBSnapshotNotFoundFault = exports.DBInstanceNotFoundFault = exports.DBClusterNotFoundFault = exports.SubscriptionNotFoundFault = exports.SourceNotFoundFault = void 0;
|
|
4
|
-
exports.InvalidRestoreFault = exports.InvalidDBSnapshotStateFault = exports.InsufficientDBClusterCapacityFault = exports.SubnetAlreadyInUse = exports.DBUpgradeDependencyFailureFault = exports.SharedSnapshotQuotaExceededFault = exports.InvalidDBSecurityGroupStateFault = exports.CertificateNotFoundFault = void 0;
|
|
5
|
-
const DocDBServiceException_1 = require("./DocDBServiceException");
|
|
6
|
-
class SourceNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
1
|
+
const { DocDBServiceException: __BaseException } = require("./DocDBServiceException");
|
|
2
|
+
exports.SourceNotFoundFault = class SourceNotFoundFault extends __BaseException {
|
|
7
3
|
name = "SourceNotFoundFault";
|
|
8
4
|
$fault = "client";
|
|
9
5
|
constructor(opts) {
|
|
@@ -14,9 +10,8 @@ class SourceNotFoundFault extends DocDBServiceException_1.DocDBServiceException
|
|
|
14
10
|
});
|
|
15
11
|
Object.setPrototypeOf(this, SourceNotFoundFault.prototype);
|
|
16
12
|
}
|
|
17
|
-
}
|
|
18
|
-
exports.
|
|
19
|
-
class SubscriptionNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
13
|
+
};
|
|
14
|
+
exports.SubscriptionNotFoundFault = class SubscriptionNotFoundFault extends __BaseException {
|
|
20
15
|
name = "SubscriptionNotFoundFault";
|
|
21
16
|
$fault = "client";
|
|
22
17
|
constructor(opts) {
|
|
@@ -27,9 +22,8 @@ class SubscriptionNotFoundFault extends DocDBServiceException_1.DocDBServiceExce
|
|
|
27
22
|
});
|
|
28
23
|
Object.setPrototypeOf(this, SubscriptionNotFoundFault.prototype);
|
|
29
24
|
}
|
|
30
|
-
}
|
|
31
|
-
exports.
|
|
32
|
-
class DBClusterNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
25
|
+
};
|
|
26
|
+
exports.DBClusterNotFoundFault = class DBClusterNotFoundFault extends __BaseException {
|
|
33
27
|
name = "DBClusterNotFoundFault";
|
|
34
28
|
$fault = "client";
|
|
35
29
|
constructor(opts) {
|
|
@@ -40,9 +34,8 @@ class DBClusterNotFoundFault extends DocDBServiceException_1.DocDBServiceExcepti
|
|
|
40
34
|
});
|
|
41
35
|
Object.setPrototypeOf(this, DBClusterNotFoundFault.prototype);
|
|
42
36
|
}
|
|
43
|
-
}
|
|
44
|
-
exports.
|
|
45
|
-
class DBInstanceNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
37
|
+
};
|
|
38
|
+
exports.DBInstanceNotFoundFault = class DBInstanceNotFoundFault extends __BaseException {
|
|
46
39
|
name = "DBInstanceNotFoundFault";
|
|
47
40
|
$fault = "client";
|
|
48
41
|
constructor(opts) {
|
|
@@ -53,9 +46,8 @@ class DBInstanceNotFoundFault extends DocDBServiceException_1.DocDBServiceExcept
|
|
|
53
46
|
});
|
|
54
47
|
Object.setPrototypeOf(this, DBInstanceNotFoundFault.prototype);
|
|
55
48
|
}
|
|
56
|
-
}
|
|
57
|
-
exports.
|
|
58
|
-
class DBSnapshotNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
49
|
+
};
|
|
50
|
+
exports.DBSnapshotNotFoundFault = class DBSnapshotNotFoundFault extends __BaseException {
|
|
59
51
|
name = "DBSnapshotNotFoundFault";
|
|
60
52
|
$fault = "client";
|
|
61
53
|
constructor(opts) {
|
|
@@ -66,9 +58,8 @@ class DBSnapshotNotFoundFault extends DocDBServiceException_1.DocDBServiceExcept
|
|
|
66
58
|
});
|
|
67
59
|
Object.setPrototypeOf(this, DBSnapshotNotFoundFault.prototype);
|
|
68
60
|
}
|
|
69
|
-
}
|
|
70
|
-
exports.
|
|
71
|
-
class InvalidDBClusterStateFault extends DocDBServiceException_1.DocDBServiceException {
|
|
61
|
+
};
|
|
62
|
+
exports.InvalidDBClusterStateFault = class InvalidDBClusterStateFault extends __BaseException {
|
|
72
63
|
name = "InvalidDBClusterStateFault";
|
|
73
64
|
$fault = "client";
|
|
74
65
|
constructor(opts) {
|
|
@@ -79,9 +70,8 @@ class InvalidDBClusterStateFault extends DocDBServiceException_1.DocDBServiceExc
|
|
|
79
70
|
});
|
|
80
71
|
Object.setPrototypeOf(this, InvalidDBClusterStateFault.prototype);
|
|
81
72
|
}
|
|
82
|
-
}
|
|
83
|
-
exports.
|
|
84
|
-
class InvalidDBInstanceStateFault extends DocDBServiceException_1.DocDBServiceException {
|
|
73
|
+
};
|
|
74
|
+
exports.InvalidDBInstanceStateFault = class InvalidDBInstanceStateFault extends __BaseException {
|
|
85
75
|
name = "InvalidDBInstanceStateFault";
|
|
86
76
|
$fault = "client";
|
|
87
77
|
constructor(opts) {
|
|
@@ -92,9 +82,8 @@ class InvalidDBInstanceStateFault extends DocDBServiceException_1.DocDBServiceEx
|
|
|
92
82
|
});
|
|
93
83
|
Object.setPrototypeOf(this, InvalidDBInstanceStateFault.prototype);
|
|
94
84
|
}
|
|
95
|
-
}
|
|
96
|
-
exports.
|
|
97
|
-
class ResourceNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
85
|
+
};
|
|
86
|
+
exports.ResourceNotFoundFault = class ResourceNotFoundFault extends __BaseException {
|
|
98
87
|
name = "ResourceNotFoundFault";
|
|
99
88
|
$fault = "client";
|
|
100
89
|
constructor(opts) {
|
|
@@ -105,9 +94,8 @@ class ResourceNotFoundFault extends DocDBServiceException_1.DocDBServiceExceptio
|
|
|
105
94
|
});
|
|
106
95
|
Object.setPrototypeOf(this, ResourceNotFoundFault.prototype);
|
|
107
96
|
}
|
|
108
|
-
}
|
|
109
|
-
exports.
|
|
110
|
-
class DBParameterGroupAlreadyExistsFault extends DocDBServiceException_1.DocDBServiceException {
|
|
97
|
+
};
|
|
98
|
+
exports.DBParameterGroupAlreadyExistsFault = class DBParameterGroupAlreadyExistsFault extends __BaseException {
|
|
111
99
|
name = "DBParameterGroupAlreadyExistsFault";
|
|
112
100
|
$fault = "client";
|
|
113
101
|
constructor(opts) {
|
|
@@ -118,9 +106,8 @@ class DBParameterGroupAlreadyExistsFault extends DocDBServiceException_1.DocDBSe
|
|
|
118
106
|
});
|
|
119
107
|
Object.setPrototypeOf(this, DBParameterGroupAlreadyExistsFault.prototype);
|
|
120
108
|
}
|
|
121
|
-
}
|
|
122
|
-
exports.
|
|
123
|
-
class DBParameterGroupNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
109
|
+
};
|
|
110
|
+
exports.DBParameterGroupNotFoundFault = class DBParameterGroupNotFoundFault extends __BaseException {
|
|
124
111
|
name = "DBParameterGroupNotFoundFault";
|
|
125
112
|
$fault = "client";
|
|
126
113
|
constructor(opts) {
|
|
@@ -131,9 +118,8 @@ class DBParameterGroupNotFoundFault extends DocDBServiceException_1.DocDBService
|
|
|
131
118
|
});
|
|
132
119
|
Object.setPrototypeOf(this, DBParameterGroupNotFoundFault.prototype);
|
|
133
120
|
}
|
|
134
|
-
}
|
|
135
|
-
exports.
|
|
136
|
-
class DBParameterGroupQuotaExceededFault extends DocDBServiceException_1.DocDBServiceException {
|
|
121
|
+
};
|
|
122
|
+
exports.DBParameterGroupQuotaExceededFault = class DBParameterGroupQuotaExceededFault extends __BaseException {
|
|
137
123
|
name = "DBParameterGroupQuotaExceededFault";
|
|
138
124
|
$fault = "client";
|
|
139
125
|
constructor(opts) {
|
|
@@ -144,9 +130,8 @@ class DBParameterGroupQuotaExceededFault extends DocDBServiceException_1.DocDBSe
|
|
|
144
130
|
});
|
|
145
131
|
Object.setPrototypeOf(this, DBParameterGroupQuotaExceededFault.prototype);
|
|
146
132
|
}
|
|
147
|
-
}
|
|
148
|
-
exports.
|
|
149
|
-
class DBClusterSnapshotAlreadyExistsFault extends DocDBServiceException_1.DocDBServiceException {
|
|
133
|
+
};
|
|
134
|
+
exports.DBClusterSnapshotAlreadyExistsFault = class DBClusterSnapshotAlreadyExistsFault extends __BaseException {
|
|
150
135
|
name = "DBClusterSnapshotAlreadyExistsFault";
|
|
151
136
|
$fault = "client";
|
|
152
137
|
constructor(opts) {
|
|
@@ -157,9 +142,8 @@ class DBClusterSnapshotAlreadyExistsFault extends DocDBServiceException_1.DocDBS
|
|
|
157
142
|
});
|
|
158
143
|
Object.setPrototypeOf(this, DBClusterSnapshotAlreadyExistsFault.prototype);
|
|
159
144
|
}
|
|
160
|
-
}
|
|
161
|
-
exports.
|
|
162
|
-
class DBClusterSnapshotNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
145
|
+
};
|
|
146
|
+
exports.DBClusterSnapshotNotFoundFault = class DBClusterSnapshotNotFoundFault extends __BaseException {
|
|
163
147
|
name = "DBClusterSnapshotNotFoundFault";
|
|
164
148
|
$fault = "client";
|
|
165
149
|
constructor(opts) {
|
|
@@ -170,9 +154,8 @@ class DBClusterSnapshotNotFoundFault extends DocDBServiceException_1.DocDBServic
|
|
|
170
154
|
});
|
|
171
155
|
Object.setPrototypeOf(this, DBClusterSnapshotNotFoundFault.prototype);
|
|
172
156
|
}
|
|
173
|
-
}
|
|
174
|
-
exports.
|
|
175
|
-
class InvalidDBClusterSnapshotStateFault extends DocDBServiceException_1.DocDBServiceException {
|
|
157
|
+
};
|
|
158
|
+
exports.InvalidDBClusterSnapshotStateFault = class InvalidDBClusterSnapshotStateFault extends __BaseException {
|
|
176
159
|
name = "InvalidDBClusterSnapshotStateFault";
|
|
177
160
|
$fault = "client";
|
|
178
161
|
constructor(opts) {
|
|
@@ -183,9 +166,8 @@ class InvalidDBClusterSnapshotStateFault extends DocDBServiceException_1.DocDBSe
|
|
|
183
166
|
});
|
|
184
167
|
Object.setPrototypeOf(this, InvalidDBClusterSnapshotStateFault.prototype);
|
|
185
168
|
}
|
|
186
|
-
}
|
|
187
|
-
exports.
|
|
188
|
-
class KMSKeyNotAccessibleFault extends DocDBServiceException_1.DocDBServiceException {
|
|
169
|
+
};
|
|
170
|
+
exports.KMSKeyNotAccessibleFault = class KMSKeyNotAccessibleFault extends __BaseException {
|
|
189
171
|
name = "KMSKeyNotAccessibleFault";
|
|
190
172
|
$fault = "client";
|
|
191
173
|
constructor(opts) {
|
|
@@ -196,9 +178,8 @@ class KMSKeyNotAccessibleFault extends DocDBServiceException_1.DocDBServiceExcep
|
|
|
196
178
|
});
|
|
197
179
|
Object.setPrototypeOf(this, KMSKeyNotAccessibleFault.prototype);
|
|
198
180
|
}
|
|
199
|
-
}
|
|
200
|
-
exports.
|
|
201
|
-
class SnapshotQuotaExceededFault extends DocDBServiceException_1.DocDBServiceException {
|
|
181
|
+
};
|
|
182
|
+
exports.SnapshotQuotaExceededFault = class SnapshotQuotaExceededFault extends __BaseException {
|
|
202
183
|
name = "SnapshotQuotaExceededFault";
|
|
203
184
|
$fault = "client";
|
|
204
185
|
constructor(opts) {
|
|
@@ -209,9 +190,8 @@ class SnapshotQuotaExceededFault extends DocDBServiceException_1.DocDBServiceExc
|
|
|
209
190
|
});
|
|
210
191
|
Object.setPrototypeOf(this, SnapshotQuotaExceededFault.prototype);
|
|
211
192
|
}
|
|
212
|
-
}
|
|
213
|
-
exports.
|
|
214
|
-
class DBClusterAlreadyExistsFault extends DocDBServiceException_1.DocDBServiceException {
|
|
193
|
+
};
|
|
194
|
+
exports.DBClusterAlreadyExistsFault = class DBClusterAlreadyExistsFault extends __BaseException {
|
|
215
195
|
name = "DBClusterAlreadyExistsFault";
|
|
216
196
|
$fault = "client";
|
|
217
197
|
constructor(opts) {
|
|
@@ -222,9 +202,8 @@ class DBClusterAlreadyExistsFault extends DocDBServiceException_1.DocDBServiceEx
|
|
|
222
202
|
});
|
|
223
203
|
Object.setPrototypeOf(this, DBClusterAlreadyExistsFault.prototype);
|
|
224
204
|
}
|
|
225
|
-
}
|
|
226
|
-
exports.
|
|
227
|
-
class DBClusterParameterGroupNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
205
|
+
};
|
|
206
|
+
exports.DBClusterParameterGroupNotFoundFault = class DBClusterParameterGroupNotFoundFault extends __BaseException {
|
|
228
207
|
name = "DBClusterParameterGroupNotFoundFault";
|
|
229
208
|
$fault = "client";
|
|
230
209
|
constructor(opts) {
|
|
@@ -235,9 +214,8 @@ class DBClusterParameterGroupNotFoundFault extends DocDBServiceException_1.DocDB
|
|
|
235
214
|
});
|
|
236
215
|
Object.setPrototypeOf(this, DBClusterParameterGroupNotFoundFault.prototype);
|
|
237
216
|
}
|
|
238
|
-
}
|
|
239
|
-
exports.
|
|
240
|
-
class DBClusterQuotaExceededFault extends DocDBServiceException_1.DocDBServiceException {
|
|
217
|
+
};
|
|
218
|
+
exports.DBClusterQuotaExceededFault = class DBClusterQuotaExceededFault extends __BaseException {
|
|
241
219
|
name = "DBClusterQuotaExceededFault";
|
|
242
220
|
$fault = "client";
|
|
243
221
|
constructor(opts) {
|
|
@@ -248,9 +226,8 @@ class DBClusterQuotaExceededFault extends DocDBServiceException_1.DocDBServiceEx
|
|
|
248
226
|
});
|
|
249
227
|
Object.setPrototypeOf(this, DBClusterQuotaExceededFault.prototype);
|
|
250
228
|
}
|
|
251
|
-
}
|
|
252
|
-
exports.
|
|
253
|
-
class DBSubnetGroupDoesNotCoverEnoughAZs extends DocDBServiceException_1.DocDBServiceException {
|
|
229
|
+
};
|
|
230
|
+
exports.DBSubnetGroupDoesNotCoverEnoughAZs = class DBSubnetGroupDoesNotCoverEnoughAZs extends __BaseException {
|
|
254
231
|
name = "DBSubnetGroupDoesNotCoverEnoughAZs";
|
|
255
232
|
$fault = "client";
|
|
256
233
|
constructor(opts) {
|
|
@@ -261,9 +238,8 @@ class DBSubnetGroupDoesNotCoverEnoughAZs extends DocDBServiceException_1.DocDBSe
|
|
|
261
238
|
});
|
|
262
239
|
Object.setPrototypeOf(this, DBSubnetGroupDoesNotCoverEnoughAZs.prototype);
|
|
263
240
|
}
|
|
264
|
-
}
|
|
265
|
-
exports.
|
|
266
|
-
class DBSubnetGroupNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
241
|
+
};
|
|
242
|
+
exports.DBSubnetGroupNotFoundFault = class DBSubnetGroupNotFoundFault extends __BaseException {
|
|
267
243
|
name = "DBSubnetGroupNotFoundFault";
|
|
268
244
|
$fault = "client";
|
|
269
245
|
constructor(opts) {
|
|
@@ -274,9 +250,8 @@ class DBSubnetGroupNotFoundFault extends DocDBServiceException_1.DocDBServiceExc
|
|
|
274
250
|
});
|
|
275
251
|
Object.setPrototypeOf(this, DBSubnetGroupNotFoundFault.prototype);
|
|
276
252
|
}
|
|
277
|
-
}
|
|
278
|
-
exports.
|
|
279
|
-
class GlobalClusterNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
253
|
+
};
|
|
254
|
+
exports.GlobalClusterNotFoundFault = class GlobalClusterNotFoundFault extends __BaseException {
|
|
280
255
|
name = "GlobalClusterNotFoundFault";
|
|
281
256
|
$fault = "client";
|
|
282
257
|
constructor(opts) {
|
|
@@ -287,9 +262,8 @@ class GlobalClusterNotFoundFault extends DocDBServiceException_1.DocDBServiceExc
|
|
|
287
262
|
});
|
|
288
263
|
Object.setPrototypeOf(this, GlobalClusterNotFoundFault.prototype);
|
|
289
264
|
}
|
|
290
|
-
}
|
|
291
|
-
exports.
|
|
292
|
-
class InsufficientStorageClusterCapacityFault extends DocDBServiceException_1.DocDBServiceException {
|
|
265
|
+
};
|
|
266
|
+
exports.InsufficientStorageClusterCapacityFault = class InsufficientStorageClusterCapacityFault extends __BaseException {
|
|
293
267
|
name = "InsufficientStorageClusterCapacityFault";
|
|
294
268
|
$fault = "client";
|
|
295
269
|
constructor(opts) {
|
|
@@ -300,9 +274,8 @@ class InsufficientStorageClusterCapacityFault extends DocDBServiceException_1.Do
|
|
|
300
274
|
});
|
|
301
275
|
Object.setPrototypeOf(this, InsufficientStorageClusterCapacityFault.prototype);
|
|
302
276
|
}
|
|
303
|
-
}
|
|
304
|
-
exports.
|
|
305
|
-
class InvalidDBSubnetGroupStateFault extends DocDBServiceException_1.DocDBServiceException {
|
|
277
|
+
};
|
|
278
|
+
exports.InvalidDBSubnetGroupStateFault = class InvalidDBSubnetGroupStateFault extends __BaseException {
|
|
306
279
|
name = "InvalidDBSubnetGroupStateFault";
|
|
307
280
|
$fault = "client";
|
|
308
281
|
constructor(opts) {
|
|
@@ -313,9 +286,8 @@ class InvalidDBSubnetGroupStateFault extends DocDBServiceException_1.DocDBServic
|
|
|
313
286
|
});
|
|
314
287
|
Object.setPrototypeOf(this, InvalidDBSubnetGroupStateFault.prototype);
|
|
315
288
|
}
|
|
316
|
-
}
|
|
317
|
-
exports.
|
|
318
|
-
class InvalidGlobalClusterStateFault extends DocDBServiceException_1.DocDBServiceException {
|
|
289
|
+
};
|
|
290
|
+
exports.InvalidGlobalClusterStateFault = class InvalidGlobalClusterStateFault extends __BaseException {
|
|
319
291
|
name = "InvalidGlobalClusterStateFault";
|
|
320
292
|
$fault = "client";
|
|
321
293
|
constructor(opts) {
|
|
@@ -326,9 +298,8 @@ class InvalidGlobalClusterStateFault extends DocDBServiceException_1.DocDBServic
|
|
|
326
298
|
});
|
|
327
299
|
Object.setPrototypeOf(this, InvalidGlobalClusterStateFault.prototype);
|
|
328
300
|
}
|
|
329
|
-
}
|
|
330
|
-
exports.
|
|
331
|
-
class InvalidSubnet extends DocDBServiceException_1.DocDBServiceException {
|
|
301
|
+
};
|
|
302
|
+
exports.InvalidSubnet = class InvalidSubnet extends __BaseException {
|
|
332
303
|
name = "InvalidSubnet";
|
|
333
304
|
$fault = "client";
|
|
334
305
|
constructor(opts) {
|
|
@@ -339,9 +310,8 @@ class InvalidSubnet extends DocDBServiceException_1.DocDBServiceException {
|
|
|
339
310
|
});
|
|
340
311
|
Object.setPrototypeOf(this, InvalidSubnet.prototype);
|
|
341
312
|
}
|
|
342
|
-
}
|
|
343
|
-
exports.
|
|
344
|
-
class InvalidVPCNetworkStateFault extends DocDBServiceException_1.DocDBServiceException {
|
|
313
|
+
};
|
|
314
|
+
exports.InvalidVPCNetworkStateFault = class InvalidVPCNetworkStateFault extends __BaseException {
|
|
345
315
|
name = "InvalidVPCNetworkStateFault";
|
|
346
316
|
$fault = "client";
|
|
347
317
|
constructor(opts) {
|
|
@@ -352,9 +322,8 @@ class InvalidVPCNetworkStateFault extends DocDBServiceException_1.DocDBServiceEx
|
|
|
352
322
|
});
|
|
353
323
|
Object.setPrototypeOf(this, InvalidVPCNetworkStateFault.prototype);
|
|
354
324
|
}
|
|
355
|
-
}
|
|
356
|
-
exports.
|
|
357
|
-
class NetworkTypeNotSupported extends DocDBServiceException_1.DocDBServiceException {
|
|
325
|
+
};
|
|
326
|
+
exports.NetworkTypeNotSupported = class NetworkTypeNotSupported extends __BaseException {
|
|
358
327
|
name = "NetworkTypeNotSupported";
|
|
359
328
|
$fault = "client";
|
|
360
329
|
constructor(opts) {
|
|
@@ -365,9 +334,8 @@ class NetworkTypeNotSupported extends DocDBServiceException_1.DocDBServiceExcept
|
|
|
365
334
|
});
|
|
366
335
|
Object.setPrototypeOf(this, NetworkTypeNotSupported.prototype);
|
|
367
336
|
}
|
|
368
|
-
}
|
|
369
|
-
exports.
|
|
370
|
-
class StorageQuotaExceededFault extends DocDBServiceException_1.DocDBServiceException {
|
|
337
|
+
};
|
|
338
|
+
exports.StorageQuotaExceededFault = class StorageQuotaExceededFault extends __BaseException {
|
|
371
339
|
name = "StorageQuotaExceededFault";
|
|
372
340
|
$fault = "client";
|
|
373
341
|
constructor(opts) {
|
|
@@ -378,9 +346,8 @@ class StorageQuotaExceededFault extends DocDBServiceException_1.DocDBServiceExce
|
|
|
378
346
|
});
|
|
379
347
|
Object.setPrototypeOf(this, StorageQuotaExceededFault.prototype);
|
|
380
348
|
}
|
|
381
|
-
}
|
|
382
|
-
exports.
|
|
383
|
-
class AuthorizationNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
349
|
+
};
|
|
350
|
+
exports.AuthorizationNotFoundFault = class AuthorizationNotFoundFault extends __BaseException {
|
|
384
351
|
name = "AuthorizationNotFoundFault";
|
|
385
352
|
$fault = "client";
|
|
386
353
|
constructor(opts) {
|
|
@@ -391,9 +358,8 @@ class AuthorizationNotFoundFault extends DocDBServiceException_1.DocDBServiceExc
|
|
|
391
358
|
});
|
|
392
359
|
Object.setPrototypeOf(this, AuthorizationNotFoundFault.prototype);
|
|
393
360
|
}
|
|
394
|
-
}
|
|
395
|
-
exports.
|
|
396
|
-
class DBInstanceAlreadyExistsFault extends DocDBServiceException_1.DocDBServiceException {
|
|
361
|
+
};
|
|
362
|
+
exports.DBInstanceAlreadyExistsFault = class DBInstanceAlreadyExistsFault extends __BaseException {
|
|
397
363
|
name = "DBInstanceAlreadyExistsFault";
|
|
398
364
|
$fault = "client";
|
|
399
365
|
constructor(opts) {
|
|
@@ -404,9 +370,8 @@ class DBInstanceAlreadyExistsFault extends DocDBServiceException_1.DocDBServiceE
|
|
|
404
370
|
});
|
|
405
371
|
Object.setPrototypeOf(this, DBInstanceAlreadyExistsFault.prototype);
|
|
406
372
|
}
|
|
407
|
-
}
|
|
408
|
-
exports.
|
|
409
|
-
class DBSecurityGroupNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
373
|
+
};
|
|
374
|
+
exports.DBSecurityGroupNotFoundFault = class DBSecurityGroupNotFoundFault extends __BaseException {
|
|
410
375
|
name = "DBSecurityGroupNotFoundFault";
|
|
411
376
|
$fault = "client";
|
|
412
377
|
constructor(opts) {
|
|
@@ -417,9 +382,8 @@ class DBSecurityGroupNotFoundFault extends DocDBServiceException_1.DocDBServiceE
|
|
|
417
382
|
});
|
|
418
383
|
Object.setPrototypeOf(this, DBSecurityGroupNotFoundFault.prototype);
|
|
419
384
|
}
|
|
420
|
-
}
|
|
421
|
-
exports.
|
|
422
|
-
class InstanceQuotaExceededFault extends DocDBServiceException_1.DocDBServiceException {
|
|
385
|
+
};
|
|
386
|
+
exports.InstanceQuotaExceededFault = class InstanceQuotaExceededFault extends __BaseException {
|
|
423
387
|
name = "InstanceQuotaExceededFault";
|
|
424
388
|
$fault = "client";
|
|
425
389
|
constructor(opts) {
|
|
@@ -430,9 +394,8 @@ class InstanceQuotaExceededFault extends DocDBServiceException_1.DocDBServiceExc
|
|
|
430
394
|
});
|
|
431
395
|
Object.setPrototypeOf(this, InstanceQuotaExceededFault.prototype);
|
|
432
396
|
}
|
|
433
|
-
}
|
|
434
|
-
exports.
|
|
435
|
-
class InsufficientDBInstanceCapacityFault extends DocDBServiceException_1.DocDBServiceException {
|
|
397
|
+
};
|
|
398
|
+
exports.InsufficientDBInstanceCapacityFault = class InsufficientDBInstanceCapacityFault extends __BaseException {
|
|
436
399
|
name = "InsufficientDBInstanceCapacityFault";
|
|
437
400
|
$fault = "client";
|
|
438
401
|
constructor(opts) {
|
|
@@ -443,9 +406,8 @@ class InsufficientDBInstanceCapacityFault extends DocDBServiceException_1.DocDBS
|
|
|
443
406
|
});
|
|
444
407
|
Object.setPrototypeOf(this, InsufficientDBInstanceCapacityFault.prototype);
|
|
445
408
|
}
|
|
446
|
-
}
|
|
447
|
-
exports.
|
|
448
|
-
class StorageTypeNotSupportedFault extends DocDBServiceException_1.DocDBServiceException {
|
|
409
|
+
};
|
|
410
|
+
exports.StorageTypeNotSupportedFault = class StorageTypeNotSupportedFault extends __BaseException {
|
|
449
411
|
name = "StorageTypeNotSupportedFault";
|
|
450
412
|
$fault = "client";
|
|
451
413
|
constructor(opts) {
|
|
@@ -456,9 +418,8 @@ class StorageTypeNotSupportedFault extends DocDBServiceException_1.DocDBServiceE
|
|
|
456
418
|
});
|
|
457
419
|
Object.setPrototypeOf(this, StorageTypeNotSupportedFault.prototype);
|
|
458
420
|
}
|
|
459
|
-
}
|
|
460
|
-
exports.
|
|
461
|
-
class DBSubnetGroupAlreadyExistsFault extends DocDBServiceException_1.DocDBServiceException {
|
|
421
|
+
};
|
|
422
|
+
exports.DBSubnetGroupAlreadyExistsFault = class DBSubnetGroupAlreadyExistsFault extends __BaseException {
|
|
462
423
|
name = "DBSubnetGroupAlreadyExistsFault";
|
|
463
424
|
$fault = "client";
|
|
464
425
|
constructor(opts) {
|
|
@@ -469,9 +430,8 @@ class DBSubnetGroupAlreadyExistsFault extends DocDBServiceException_1.DocDBServi
|
|
|
469
430
|
});
|
|
470
431
|
Object.setPrototypeOf(this, DBSubnetGroupAlreadyExistsFault.prototype);
|
|
471
432
|
}
|
|
472
|
-
}
|
|
473
|
-
exports.
|
|
474
|
-
class DBSubnetGroupQuotaExceededFault extends DocDBServiceException_1.DocDBServiceException {
|
|
433
|
+
};
|
|
434
|
+
exports.DBSubnetGroupQuotaExceededFault = class DBSubnetGroupQuotaExceededFault extends __BaseException {
|
|
475
435
|
name = "DBSubnetGroupQuotaExceededFault";
|
|
476
436
|
$fault = "client";
|
|
477
437
|
constructor(opts) {
|
|
@@ -482,9 +442,8 @@ class DBSubnetGroupQuotaExceededFault extends DocDBServiceException_1.DocDBServi
|
|
|
482
442
|
});
|
|
483
443
|
Object.setPrototypeOf(this, DBSubnetGroupQuotaExceededFault.prototype);
|
|
484
444
|
}
|
|
485
|
-
}
|
|
486
|
-
exports.
|
|
487
|
-
class DBSubnetQuotaExceededFault extends DocDBServiceException_1.DocDBServiceException {
|
|
445
|
+
};
|
|
446
|
+
exports.DBSubnetQuotaExceededFault = class DBSubnetQuotaExceededFault extends __BaseException {
|
|
488
447
|
name = "DBSubnetQuotaExceededFault";
|
|
489
448
|
$fault = "client";
|
|
490
449
|
constructor(opts) {
|
|
@@ -495,9 +454,8 @@ class DBSubnetQuotaExceededFault extends DocDBServiceException_1.DocDBServiceExc
|
|
|
495
454
|
});
|
|
496
455
|
Object.setPrototypeOf(this, DBSubnetQuotaExceededFault.prototype);
|
|
497
456
|
}
|
|
498
|
-
}
|
|
499
|
-
exports.
|
|
500
|
-
class EventSubscriptionQuotaExceededFault extends DocDBServiceException_1.DocDBServiceException {
|
|
457
|
+
};
|
|
458
|
+
exports.EventSubscriptionQuotaExceededFault = class EventSubscriptionQuotaExceededFault extends __BaseException {
|
|
501
459
|
name = "EventSubscriptionQuotaExceededFault";
|
|
502
460
|
$fault = "client";
|
|
503
461
|
constructor(opts) {
|
|
@@ -508,9 +466,8 @@ class EventSubscriptionQuotaExceededFault extends DocDBServiceException_1.DocDBS
|
|
|
508
466
|
});
|
|
509
467
|
Object.setPrototypeOf(this, EventSubscriptionQuotaExceededFault.prototype);
|
|
510
468
|
}
|
|
511
|
-
}
|
|
512
|
-
exports.
|
|
513
|
-
class SNSInvalidTopicFault extends DocDBServiceException_1.DocDBServiceException {
|
|
469
|
+
};
|
|
470
|
+
exports.SNSInvalidTopicFault = class SNSInvalidTopicFault extends __BaseException {
|
|
514
471
|
name = "SNSInvalidTopicFault";
|
|
515
472
|
$fault = "client";
|
|
516
473
|
constructor(opts) {
|
|
@@ -521,9 +478,8 @@ class SNSInvalidTopicFault extends DocDBServiceException_1.DocDBServiceException
|
|
|
521
478
|
});
|
|
522
479
|
Object.setPrototypeOf(this, SNSInvalidTopicFault.prototype);
|
|
523
480
|
}
|
|
524
|
-
}
|
|
525
|
-
exports.
|
|
526
|
-
class SNSNoAuthorizationFault extends DocDBServiceException_1.DocDBServiceException {
|
|
481
|
+
};
|
|
482
|
+
exports.SNSNoAuthorizationFault = class SNSNoAuthorizationFault extends __BaseException {
|
|
527
483
|
name = "SNSNoAuthorizationFault";
|
|
528
484
|
$fault = "client";
|
|
529
485
|
constructor(opts) {
|
|
@@ -534,9 +490,8 @@ class SNSNoAuthorizationFault extends DocDBServiceException_1.DocDBServiceExcept
|
|
|
534
490
|
});
|
|
535
491
|
Object.setPrototypeOf(this, SNSNoAuthorizationFault.prototype);
|
|
536
492
|
}
|
|
537
|
-
}
|
|
538
|
-
exports.
|
|
539
|
-
class SNSTopicArnNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
493
|
+
};
|
|
494
|
+
exports.SNSTopicArnNotFoundFault = class SNSTopicArnNotFoundFault extends __BaseException {
|
|
540
495
|
name = "SNSTopicArnNotFoundFault";
|
|
541
496
|
$fault = "client";
|
|
542
497
|
constructor(opts) {
|
|
@@ -547,9 +502,8 @@ class SNSTopicArnNotFoundFault extends DocDBServiceException_1.DocDBServiceExcep
|
|
|
547
502
|
});
|
|
548
503
|
Object.setPrototypeOf(this, SNSTopicArnNotFoundFault.prototype);
|
|
549
504
|
}
|
|
550
|
-
}
|
|
551
|
-
exports.
|
|
552
|
-
class SubscriptionAlreadyExistFault extends DocDBServiceException_1.DocDBServiceException {
|
|
505
|
+
};
|
|
506
|
+
exports.SubscriptionAlreadyExistFault = class SubscriptionAlreadyExistFault extends __BaseException {
|
|
553
507
|
name = "SubscriptionAlreadyExistFault";
|
|
554
508
|
$fault = "client";
|
|
555
509
|
constructor(opts) {
|
|
@@ -560,9 +514,8 @@ class SubscriptionAlreadyExistFault extends DocDBServiceException_1.DocDBService
|
|
|
560
514
|
});
|
|
561
515
|
Object.setPrototypeOf(this, SubscriptionAlreadyExistFault.prototype);
|
|
562
516
|
}
|
|
563
|
-
}
|
|
564
|
-
exports.
|
|
565
|
-
class SubscriptionCategoryNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
517
|
+
};
|
|
518
|
+
exports.SubscriptionCategoryNotFoundFault = class SubscriptionCategoryNotFoundFault extends __BaseException {
|
|
566
519
|
name = "SubscriptionCategoryNotFoundFault";
|
|
567
520
|
$fault = "client";
|
|
568
521
|
constructor(opts) {
|
|
@@ -573,9 +526,8 @@ class SubscriptionCategoryNotFoundFault extends DocDBServiceException_1.DocDBSer
|
|
|
573
526
|
});
|
|
574
527
|
Object.setPrototypeOf(this, SubscriptionCategoryNotFoundFault.prototype);
|
|
575
528
|
}
|
|
576
|
-
}
|
|
577
|
-
exports.
|
|
578
|
-
class GlobalClusterAlreadyExistsFault extends DocDBServiceException_1.DocDBServiceException {
|
|
529
|
+
};
|
|
530
|
+
exports.GlobalClusterAlreadyExistsFault = class GlobalClusterAlreadyExistsFault extends __BaseException {
|
|
579
531
|
name = "GlobalClusterAlreadyExistsFault";
|
|
580
532
|
$fault = "client";
|
|
581
533
|
constructor(opts) {
|
|
@@ -586,9 +538,8 @@ class GlobalClusterAlreadyExistsFault extends DocDBServiceException_1.DocDBServi
|
|
|
586
538
|
});
|
|
587
539
|
Object.setPrototypeOf(this, GlobalClusterAlreadyExistsFault.prototype);
|
|
588
540
|
}
|
|
589
|
-
}
|
|
590
|
-
exports.
|
|
591
|
-
class GlobalClusterQuotaExceededFault extends DocDBServiceException_1.DocDBServiceException {
|
|
541
|
+
};
|
|
542
|
+
exports.GlobalClusterQuotaExceededFault = class GlobalClusterQuotaExceededFault extends __BaseException {
|
|
592
543
|
name = "GlobalClusterQuotaExceededFault";
|
|
593
544
|
$fault = "client";
|
|
594
545
|
constructor(opts) {
|
|
@@ -599,9 +550,8 @@ class GlobalClusterQuotaExceededFault extends DocDBServiceException_1.DocDBServi
|
|
|
599
550
|
});
|
|
600
551
|
Object.setPrototypeOf(this, GlobalClusterQuotaExceededFault.prototype);
|
|
601
552
|
}
|
|
602
|
-
}
|
|
603
|
-
exports.
|
|
604
|
-
class InvalidDBParameterGroupStateFault extends DocDBServiceException_1.DocDBServiceException {
|
|
553
|
+
};
|
|
554
|
+
exports.InvalidDBParameterGroupStateFault = class InvalidDBParameterGroupStateFault extends __BaseException {
|
|
605
555
|
name = "InvalidDBParameterGroupStateFault";
|
|
606
556
|
$fault = "client";
|
|
607
557
|
constructor(opts) {
|
|
@@ -612,9 +562,8 @@ class InvalidDBParameterGroupStateFault extends DocDBServiceException_1.DocDBSer
|
|
|
612
562
|
});
|
|
613
563
|
Object.setPrototypeOf(this, InvalidDBParameterGroupStateFault.prototype);
|
|
614
564
|
}
|
|
615
|
-
}
|
|
616
|
-
exports.
|
|
617
|
-
class DBSnapshotAlreadyExistsFault extends DocDBServiceException_1.DocDBServiceException {
|
|
565
|
+
};
|
|
566
|
+
exports.DBSnapshotAlreadyExistsFault = class DBSnapshotAlreadyExistsFault extends __BaseException {
|
|
618
567
|
name = "DBSnapshotAlreadyExistsFault";
|
|
619
568
|
$fault = "client";
|
|
620
569
|
constructor(opts) {
|
|
@@ -625,9 +574,8 @@ class DBSnapshotAlreadyExistsFault extends DocDBServiceException_1.DocDBServiceE
|
|
|
625
574
|
});
|
|
626
575
|
Object.setPrototypeOf(this, DBSnapshotAlreadyExistsFault.prototype);
|
|
627
576
|
}
|
|
628
|
-
}
|
|
629
|
-
exports.
|
|
630
|
-
class InvalidDBSubnetStateFault extends DocDBServiceException_1.DocDBServiceException {
|
|
577
|
+
};
|
|
578
|
+
exports.InvalidDBSubnetStateFault = class InvalidDBSubnetStateFault extends __BaseException {
|
|
631
579
|
name = "InvalidDBSubnetStateFault";
|
|
632
580
|
$fault = "client";
|
|
633
581
|
constructor(opts) {
|
|
@@ -638,9 +586,8 @@ class InvalidDBSubnetStateFault extends DocDBServiceException_1.DocDBServiceExce
|
|
|
638
586
|
});
|
|
639
587
|
Object.setPrototypeOf(this, InvalidDBSubnetStateFault.prototype);
|
|
640
588
|
}
|
|
641
|
-
}
|
|
642
|
-
exports.
|
|
643
|
-
class InvalidEventSubscriptionStateFault extends DocDBServiceException_1.DocDBServiceException {
|
|
589
|
+
};
|
|
590
|
+
exports.InvalidEventSubscriptionStateFault = class InvalidEventSubscriptionStateFault extends __BaseException {
|
|
644
591
|
name = "InvalidEventSubscriptionStateFault";
|
|
645
592
|
$fault = "client";
|
|
646
593
|
constructor(opts) {
|
|
@@ -651,9 +598,8 @@ class InvalidEventSubscriptionStateFault extends DocDBServiceException_1.DocDBSe
|
|
|
651
598
|
});
|
|
652
599
|
Object.setPrototypeOf(this, InvalidEventSubscriptionStateFault.prototype);
|
|
653
600
|
}
|
|
654
|
-
}
|
|
655
|
-
exports.
|
|
656
|
-
class CertificateNotFoundFault extends DocDBServiceException_1.DocDBServiceException {
|
|
601
|
+
};
|
|
602
|
+
exports.CertificateNotFoundFault = class CertificateNotFoundFault extends __BaseException {
|
|
657
603
|
name = "CertificateNotFoundFault";
|
|
658
604
|
$fault = "client";
|
|
659
605
|
constructor(opts) {
|
|
@@ -664,9 +610,8 @@ class CertificateNotFoundFault extends DocDBServiceException_1.DocDBServiceExcep
|
|
|
664
610
|
});
|
|
665
611
|
Object.setPrototypeOf(this, CertificateNotFoundFault.prototype);
|
|
666
612
|
}
|
|
667
|
-
}
|
|
668
|
-
exports.
|
|
669
|
-
class InvalidDBSecurityGroupStateFault extends DocDBServiceException_1.DocDBServiceException {
|
|
613
|
+
};
|
|
614
|
+
exports.InvalidDBSecurityGroupStateFault = class InvalidDBSecurityGroupStateFault extends __BaseException {
|
|
670
615
|
name = "InvalidDBSecurityGroupStateFault";
|
|
671
616
|
$fault = "client";
|
|
672
617
|
constructor(opts) {
|
|
@@ -677,9 +622,8 @@ class InvalidDBSecurityGroupStateFault extends DocDBServiceException_1.DocDBServ
|
|
|
677
622
|
});
|
|
678
623
|
Object.setPrototypeOf(this, InvalidDBSecurityGroupStateFault.prototype);
|
|
679
624
|
}
|
|
680
|
-
}
|
|
681
|
-
exports.
|
|
682
|
-
class SharedSnapshotQuotaExceededFault extends DocDBServiceException_1.DocDBServiceException {
|
|
625
|
+
};
|
|
626
|
+
exports.SharedSnapshotQuotaExceededFault = class SharedSnapshotQuotaExceededFault extends __BaseException {
|
|
683
627
|
name = "SharedSnapshotQuotaExceededFault";
|
|
684
628
|
$fault = "client";
|
|
685
629
|
constructor(opts) {
|
|
@@ -690,9 +634,8 @@ class SharedSnapshotQuotaExceededFault extends DocDBServiceException_1.DocDBServ
|
|
|
690
634
|
});
|
|
691
635
|
Object.setPrototypeOf(this, SharedSnapshotQuotaExceededFault.prototype);
|
|
692
636
|
}
|
|
693
|
-
}
|
|
694
|
-
exports.
|
|
695
|
-
class DBUpgradeDependencyFailureFault extends DocDBServiceException_1.DocDBServiceException {
|
|
637
|
+
};
|
|
638
|
+
exports.DBUpgradeDependencyFailureFault = class DBUpgradeDependencyFailureFault extends __BaseException {
|
|
696
639
|
name = "DBUpgradeDependencyFailureFault";
|
|
697
640
|
$fault = "client";
|
|
698
641
|
constructor(opts) {
|
|
@@ -703,9 +646,8 @@ class DBUpgradeDependencyFailureFault extends DocDBServiceException_1.DocDBServi
|
|
|
703
646
|
});
|
|
704
647
|
Object.setPrototypeOf(this, DBUpgradeDependencyFailureFault.prototype);
|
|
705
648
|
}
|
|
706
|
-
}
|
|
707
|
-
exports.
|
|
708
|
-
class SubnetAlreadyInUse extends DocDBServiceException_1.DocDBServiceException {
|
|
649
|
+
};
|
|
650
|
+
exports.SubnetAlreadyInUse = class SubnetAlreadyInUse extends __BaseException {
|
|
709
651
|
name = "SubnetAlreadyInUse";
|
|
710
652
|
$fault = "client";
|
|
711
653
|
constructor(opts) {
|
|
@@ -716,9 +658,8 @@ class SubnetAlreadyInUse extends DocDBServiceException_1.DocDBServiceException {
|
|
|
716
658
|
});
|
|
717
659
|
Object.setPrototypeOf(this, SubnetAlreadyInUse.prototype);
|
|
718
660
|
}
|
|
719
|
-
}
|
|
720
|
-
exports.
|
|
721
|
-
class InsufficientDBClusterCapacityFault extends DocDBServiceException_1.DocDBServiceException {
|
|
661
|
+
};
|
|
662
|
+
exports.InsufficientDBClusterCapacityFault = class InsufficientDBClusterCapacityFault extends __BaseException {
|
|
722
663
|
name = "InsufficientDBClusterCapacityFault";
|
|
723
664
|
$fault = "client";
|
|
724
665
|
constructor(opts) {
|
|
@@ -729,9 +670,8 @@ class InsufficientDBClusterCapacityFault extends DocDBServiceException_1.DocDBSe
|
|
|
729
670
|
});
|
|
730
671
|
Object.setPrototypeOf(this, InsufficientDBClusterCapacityFault.prototype);
|
|
731
672
|
}
|
|
732
|
-
}
|
|
733
|
-
exports.
|
|
734
|
-
class InvalidDBSnapshotStateFault extends DocDBServiceException_1.DocDBServiceException {
|
|
673
|
+
};
|
|
674
|
+
exports.InvalidDBSnapshotStateFault = class InvalidDBSnapshotStateFault extends __BaseException {
|
|
735
675
|
name = "InvalidDBSnapshotStateFault";
|
|
736
676
|
$fault = "client";
|
|
737
677
|
constructor(opts) {
|
|
@@ -742,9 +682,8 @@ class InvalidDBSnapshotStateFault extends DocDBServiceException_1.DocDBServiceEx
|
|
|
742
682
|
});
|
|
743
683
|
Object.setPrototypeOf(this, InvalidDBSnapshotStateFault.prototype);
|
|
744
684
|
}
|
|
745
|
-
}
|
|
746
|
-
exports.
|
|
747
|
-
class InvalidRestoreFault extends DocDBServiceException_1.DocDBServiceException {
|
|
685
|
+
};
|
|
686
|
+
exports.InvalidRestoreFault = class InvalidRestoreFault extends __BaseException {
|
|
748
687
|
name = "InvalidRestoreFault";
|
|
749
688
|
$fault = "client";
|
|
750
689
|
constructor(opts) {
|
|
@@ -755,5 +694,4 @@ class InvalidRestoreFault extends DocDBServiceException_1.DocDBServiceException
|
|
|
755
694
|
});
|
|
756
695
|
Object.setPrototypeOf(this, InvalidRestoreFault.prototype);
|
|
757
696
|
}
|
|
758
|
-
}
|
|
759
|
-
exports.InvalidRestoreFault = InvalidRestoreFault;
|
|
697
|
+
};
|