@aws-sdk/client-ssm 3.1075.0 → 3.1077.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +8507 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/SSMServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -1915
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -6200
|
@@ -1,1915 +0,0 @@
|
|
|
1
|
-
const { SSMServiceException: __BaseException } = require("./SSMServiceException");
|
|
2
|
-
exports.AccessDeniedException = class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
Message;
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "AccessDeniedException",
|
|
9
|
-
$fault: "client",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
14
|
-
}
|
|
15
|
-
};
|
|
16
|
-
exports.InternalServerError = class InternalServerError extends __BaseException {
|
|
17
|
-
name = "InternalServerError";
|
|
18
|
-
$fault = "server";
|
|
19
|
-
Message;
|
|
20
|
-
constructor(opts) {
|
|
21
|
-
super({
|
|
22
|
-
name: "InternalServerError",
|
|
23
|
-
$fault: "server",
|
|
24
|
-
...opts,
|
|
25
|
-
});
|
|
26
|
-
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
27
|
-
this.Message = opts.Message;
|
|
28
|
-
}
|
|
29
|
-
};
|
|
30
|
-
exports.InvalidResourceId = class InvalidResourceId extends __BaseException {
|
|
31
|
-
name = "InvalidResourceId";
|
|
32
|
-
$fault = "client";
|
|
33
|
-
constructor(opts) {
|
|
34
|
-
super({
|
|
35
|
-
name: "InvalidResourceId",
|
|
36
|
-
$fault: "client",
|
|
37
|
-
...opts,
|
|
38
|
-
});
|
|
39
|
-
Object.setPrototypeOf(this, InvalidResourceId.prototype);
|
|
40
|
-
}
|
|
41
|
-
};
|
|
42
|
-
exports.InvalidResourceType = class InvalidResourceType extends __BaseException {
|
|
43
|
-
name = "InvalidResourceType";
|
|
44
|
-
$fault = "client";
|
|
45
|
-
constructor(opts) {
|
|
46
|
-
super({
|
|
47
|
-
name: "InvalidResourceType",
|
|
48
|
-
$fault: "client",
|
|
49
|
-
...opts,
|
|
50
|
-
});
|
|
51
|
-
Object.setPrototypeOf(this, InvalidResourceType.prototype);
|
|
52
|
-
}
|
|
53
|
-
};
|
|
54
|
-
exports.TooManyTagsError = class TooManyTagsError extends __BaseException {
|
|
55
|
-
name = "TooManyTagsError";
|
|
56
|
-
$fault = "client";
|
|
57
|
-
constructor(opts) {
|
|
58
|
-
super({
|
|
59
|
-
name: "TooManyTagsError",
|
|
60
|
-
$fault: "client",
|
|
61
|
-
...opts,
|
|
62
|
-
});
|
|
63
|
-
Object.setPrototypeOf(this, TooManyTagsError.prototype);
|
|
64
|
-
}
|
|
65
|
-
};
|
|
66
|
-
exports.TooManyUpdates = class TooManyUpdates extends __BaseException {
|
|
67
|
-
name = "TooManyUpdates";
|
|
68
|
-
$fault = "client";
|
|
69
|
-
Message;
|
|
70
|
-
constructor(opts) {
|
|
71
|
-
super({
|
|
72
|
-
name: "TooManyUpdates",
|
|
73
|
-
$fault: "client",
|
|
74
|
-
...opts,
|
|
75
|
-
});
|
|
76
|
-
Object.setPrototypeOf(this, TooManyUpdates.prototype);
|
|
77
|
-
this.Message = opts.Message;
|
|
78
|
-
}
|
|
79
|
-
};
|
|
80
|
-
exports.AlreadyExistsException = class AlreadyExistsException extends __BaseException {
|
|
81
|
-
name = "AlreadyExistsException";
|
|
82
|
-
$fault = "client";
|
|
83
|
-
Message;
|
|
84
|
-
constructor(opts) {
|
|
85
|
-
super({
|
|
86
|
-
name: "AlreadyExistsException",
|
|
87
|
-
$fault: "client",
|
|
88
|
-
...opts,
|
|
89
|
-
});
|
|
90
|
-
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
91
|
-
this.Message = opts.Message;
|
|
92
|
-
}
|
|
93
|
-
};
|
|
94
|
-
exports.OpsItemConflictException = class OpsItemConflictException extends __BaseException {
|
|
95
|
-
name = "OpsItemConflictException";
|
|
96
|
-
$fault = "client";
|
|
97
|
-
Message;
|
|
98
|
-
constructor(opts) {
|
|
99
|
-
super({
|
|
100
|
-
name: "OpsItemConflictException",
|
|
101
|
-
$fault: "client",
|
|
102
|
-
...opts,
|
|
103
|
-
});
|
|
104
|
-
Object.setPrototypeOf(this, OpsItemConflictException.prototype);
|
|
105
|
-
this.Message = opts.Message;
|
|
106
|
-
}
|
|
107
|
-
};
|
|
108
|
-
exports.OpsItemInvalidParameterException = class OpsItemInvalidParameterException extends __BaseException {
|
|
109
|
-
name = "OpsItemInvalidParameterException";
|
|
110
|
-
$fault = "client";
|
|
111
|
-
ParameterNames;
|
|
112
|
-
Message;
|
|
113
|
-
constructor(opts) {
|
|
114
|
-
super({
|
|
115
|
-
name: "OpsItemInvalidParameterException",
|
|
116
|
-
$fault: "client",
|
|
117
|
-
...opts,
|
|
118
|
-
});
|
|
119
|
-
Object.setPrototypeOf(this, OpsItemInvalidParameterException.prototype);
|
|
120
|
-
this.ParameterNames = opts.ParameterNames;
|
|
121
|
-
this.Message = opts.Message;
|
|
122
|
-
}
|
|
123
|
-
};
|
|
124
|
-
exports.OpsItemLimitExceededException = class OpsItemLimitExceededException extends __BaseException {
|
|
125
|
-
name = "OpsItemLimitExceededException";
|
|
126
|
-
$fault = "client";
|
|
127
|
-
ResourceTypes;
|
|
128
|
-
Limit;
|
|
129
|
-
LimitType;
|
|
130
|
-
Message;
|
|
131
|
-
constructor(opts) {
|
|
132
|
-
super({
|
|
133
|
-
name: "OpsItemLimitExceededException",
|
|
134
|
-
$fault: "client",
|
|
135
|
-
...opts,
|
|
136
|
-
});
|
|
137
|
-
Object.setPrototypeOf(this, OpsItemLimitExceededException.prototype);
|
|
138
|
-
this.ResourceTypes = opts.ResourceTypes;
|
|
139
|
-
this.Limit = opts.Limit;
|
|
140
|
-
this.LimitType = opts.LimitType;
|
|
141
|
-
this.Message = opts.Message;
|
|
142
|
-
}
|
|
143
|
-
};
|
|
144
|
-
exports.OpsItemNotFoundException = class OpsItemNotFoundException extends __BaseException {
|
|
145
|
-
name = "OpsItemNotFoundException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
Message;
|
|
148
|
-
constructor(opts) {
|
|
149
|
-
super({
|
|
150
|
-
name: "OpsItemNotFoundException",
|
|
151
|
-
$fault: "client",
|
|
152
|
-
...opts,
|
|
153
|
-
});
|
|
154
|
-
Object.setPrototypeOf(this, OpsItemNotFoundException.prototype);
|
|
155
|
-
this.Message = opts.Message;
|
|
156
|
-
}
|
|
157
|
-
};
|
|
158
|
-
exports.OpsItemRelatedItemAlreadyExistsException = class OpsItemRelatedItemAlreadyExistsException extends __BaseException {
|
|
159
|
-
name = "OpsItemRelatedItemAlreadyExistsException";
|
|
160
|
-
$fault = "client";
|
|
161
|
-
Message;
|
|
162
|
-
ResourceUri;
|
|
163
|
-
OpsItemId;
|
|
164
|
-
constructor(opts) {
|
|
165
|
-
super({
|
|
166
|
-
name: "OpsItemRelatedItemAlreadyExistsException",
|
|
167
|
-
$fault: "client",
|
|
168
|
-
...opts,
|
|
169
|
-
});
|
|
170
|
-
Object.setPrototypeOf(this, OpsItemRelatedItemAlreadyExistsException.prototype);
|
|
171
|
-
this.Message = opts.Message;
|
|
172
|
-
this.ResourceUri = opts.ResourceUri;
|
|
173
|
-
this.OpsItemId = opts.OpsItemId;
|
|
174
|
-
}
|
|
175
|
-
};
|
|
176
|
-
exports.DuplicateInstanceId = class DuplicateInstanceId extends __BaseException {
|
|
177
|
-
name = "DuplicateInstanceId";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
constructor(opts) {
|
|
180
|
-
super({
|
|
181
|
-
name: "DuplicateInstanceId",
|
|
182
|
-
$fault: "client",
|
|
183
|
-
...opts,
|
|
184
|
-
});
|
|
185
|
-
Object.setPrototypeOf(this, DuplicateInstanceId.prototype);
|
|
186
|
-
}
|
|
187
|
-
};
|
|
188
|
-
exports.InvalidCommandId = class InvalidCommandId extends __BaseException {
|
|
189
|
-
name = "InvalidCommandId";
|
|
190
|
-
$fault = "client";
|
|
191
|
-
constructor(opts) {
|
|
192
|
-
super({
|
|
193
|
-
name: "InvalidCommandId",
|
|
194
|
-
$fault: "client",
|
|
195
|
-
...opts,
|
|
196
|
-
});
|
|
197
|
-
Object.setPrototypeOf(this, InvalidCommandId.prototype);
|
|
198
|
-
}
|
|
199
|
-
};
|
|
200
|
-
exports.InvalidInstanceId = class InvalidInstanceId extends __BaseException {
|
|
201
|
-
name = "InvalidInstanceId";
|
|
202
|
-
$fault = "client";
|
|
203
|
-
Message;
|
|
204
|
-
constructor(opts) {
|
|
205
|
-
super({
|
|
206
|
-
name: "InvalidInstanceId",
|
|
207
|
-
$fault: "client",
|
|
208
|
-
...opts,
|
|
209
|
-
});
|
|
210
|
-
Object.setPrototypeOf(this, InvalidInstanceId.prototype);
|
|
211
|
-
this.Message = opts.Message;
|
|
212
|
-
}
|
|
213
|
-
};
|
|
214
|
-
exports.DoesNotExistException = class DoesNotExistException extends __BaseException {
|
|
215
|
-
name = "DoesNotExistException";
|
|
216
|
-
$fault = "client";
|
|
217
|
-
Message;
|
|
218
|
-
constructor(opts) {
|
|
219
|
-
super({
|
|
220
|
-
name: "DoesNotExistException",
|
|
221
|
-
$fault: "client",
|
|
222
|
-
...opts,
|
|
223
|
-
});
|
|
224
|
-
Object.setPrototypeOf(this, DoesNotExistException.prototype);
|
|
225
|
-
this.Message = opts.Message;
|
|
226
|
-
}
|
|
227
|
-
};
|
|
228
|
-
exports.InvalidParameters = class InvalidParameters extends __BaseException {
|
|
229
|
-
name = "InvalidParameters";
|
|
230
|
-
$fault = "client";
|
|
231
|
-
Message;
|
|
232
|
-
constructor(opts) {
|
|
233
|
-
super({
|
|
234
|
-
name: "InvalidParameters",
|
|
235
|
-
$fault: "client",
|
|
236
|
-
...opts,
|
|
237
|
-
});
|
|
238
|
-
Object.setPrototypeOf(this, InvalidParameters.prototype);
|
|
239
|
-
this.Message = opts.Message;
|
|
240
|
-
}
|
|
241
|
-
};
|
|
242
|
-
exports.AssociationAlreadyExists = class AssociationAlreadyExists extends __BaseException {
|
|
243
|
-
name = "AssociationAlreadyExists";
|
|
244
|
-
$fault = "client";
|
|
245
|
-
constructor(opts) {
|
|
246
|
-
super({
|
|
247
|
-
name: "AssociationAlreadyExists",
|
|
248
|
-
$fault: "client",
|
|
249
|
-
...opts,
|
|
250
|
-
});
|
|
251
|
-
Object.setPrototypeOf(this, AssociationAlreadyExists.prototype);
|
|
252
|
-
}
|
|
253
|
-
};
|
|
254
|
-
exports.AssociationLimitExceeded = class AssociationLimitExceeded extends __BaseException {
|
|
255
|
-
name = "AssociationLimitExceeded";
|
|
256
|
-
$fault = "client";
|
|
257
|
-
constructor(opts) {
|
|
258
|
-
super({
|
|
259
|
-
name: "AssociationLimitExceeded",
|
|
260
|
-
$fault: "client",
|
|
261
|
-
...opts,
|
|
262
|
-
});
|
|
263
|
-
Object.setPrototypeOf(this, AssociationLimitExceeded.prototype);
|
|
264
|
-
}
|
|
265
|
-
};
|
|
266
|
-
exports.InvalidDocument = class InvalidDocument extends __BaseException {
|
|
267
|
-
name = "InvalidDocument";
|
|
268
|
-
$fault = "client";
|
|
269
|
-
Message;
|
|
270
|
-
constructor(opts) {
|
|
271
|
-
super({
|
|
272
|
-
name: "InvalidDocument",
|
|
273
|
-
$fault: "client",
|
|
274
|
-
...opts,
|
|
275
|
-
});
|
|
276
|
-
Object.setPrototypeOf(this, InvalidDocument.prototype);
|
|
277
|
-
this.Message = opts.Message;
|
|
278
|
-
}
|
|
279
|
-
};
|
|
280
|
-
exports.InvalidDocumentVersion = class InvalidDocumentVersion extends __BaseException {
|
|
281
|
-
name = "InvalidDocumentVersion";
|
|
282
|
-
$fault = "client";
|
|
283
|
-
Message;
|
|
284
|
-
constructor(opts) {
|
|
285
|
-
super({
|
|
286
|
-
name: "InvalidDocumentVersion",
|
|
287
|
-
$fault: "client",
|
|
288
|
-
...opts,
|
|
289
|
-
});
|
|
290
|
-
Object.setPrototypeOf(this, InvalidDocumentVersion.prototype);
|
|
291
|
-
this.Message = opts.Message;
|
|
292
|
-
}
|
|
293
|
-
};
|
|
294
|
-
exports.InvalidOutputLocation = class InvalidOutputLocation extends __BaseException {
|
|
295
|
-
name = "InvalidOutputLocation";
|
|
296
|
-
$fault = "client";
|
|
297
|
-
constructor(opts) {
|
|
298
|
-
super({
|
|
299
|
-
name: "InvalidOutputLocation",
|
|
300
|
-
$fault: "client",
|
|
301
|
-
...opts,
|
|
302
|
-
});
|
|
303
|
-
Object.setPrototypeOf(this, InvalidOutputLocation.prototype);
|
|
304
|
-
}
|
|
305
|
-
};
|
|
306
|
-
exports.InvalidSchedule = class InvalidSchedule extends __BaseException {
|
|
307
|
-
name = "InvalidSchedule";
|
|
308
|
-
$fault = "client";
|
|
309
|
-
Message;
|
|
310
|
-
constructor(opts) {
|
|
311
|
-
super({
|
|
312
|
-
name: "InvalidSchedule",
|
|
313
|
-
$fault: "client",
|
|
314
|
-
...opts,
|
|
315
|
-
});
|
|
316
|
-
Object.setPrototypeOf(this, InvalidSchedule.prototype);
|
|
317
|
-
this.Message = opts.Message;
|
|
318
|
-
}
|
|
319
|
-
};
|
|
320
|
-
exports.InvalidTag = class InvalidTag extends __BaseException {
|
|
321
|
-
name = "InvalidTag";
|
|
322
|
-
$fault = "client";
|
|
323
|
-
Message;
|
|
324
|
-
constructor(opts) {
|
|
325
|
-
super({
|
|
326
|
-
name: "InvalidTag",
|
|
327
|
-
$fault: "client",
|
|
328
|
-
...opts,
|
|
329
|
-
});
|
|
330
|
-
Object.setPrototypeOf(this, InvalidTag.prototype);
|
|
331
|
-
this.Message = opts.Message;
|
|
332
|
-
}
|
|
333
|
-
};
|
|
334
|
-
exports.InvalidTarget = class InvalidTarget extends __BaseException {
|
|
335
|
-
name = "InvalidTarget";
|
|
336
|
-
$fault = "client";
|
|
337
|
-
Message;
|
|
338
|
-
constructor(opts) {
|
|
339
|
-
super({
|
|
340
|
-
name: "InvalidTarget",
|
|
341
|
-
$fault: "client",
|
|
342
|
-
...opts,
|
|
343
|
-
});
|
|
344
|
-
Object.setPrototypeOf(this, InvalidTarget.prototype);
|
|
345
|
-
this.Message = opts.Message;
|
|
346
|
-
}
|
|
347
|
-
};
|
|
348
|
-
exports.InvalidTargetMaps = class InvalidTargetMaps extends __BaseException {
|
|
349
|
-
name = "InvalidTargetMaps";
|
|
350
|
-
$fault = "client";
|
|
351
|
-
Message;
|
|
352
|
-
constructor(opts) {
|
|
353
|
-
super({
|
|
354
|
-
name: "InvalidTargetMaps",
|
|
355
|
-
$fault: "client",
|
|
356
|
-
...opts,
|
|
357
|
-
});
|
|
358
|
-
Object.setPrototypeOf(this, InvalidTargetMaps.prototype);
|
|
359
|
-
this.Message = opts.Message;
|
|
360
|
-
}
|
|
361
|
-
};
|
|
362
|
-
exports.UnsupportedPlatformType = class UnsupportedPlatformType extends __BaseException {
|
|
363
|
-
name = "UnsupportedPlatformType";
|
|
364
|
-
$fault = "client";
|
|
365
|
-
Message;
|
|
366
|
-
constructor(opts) {
|
|
367
|
-
super({
|
|
368
|
-
name: "UnsupportedPlatformType",
|
|
369
|
-
$fault: "client",
|
|
370
|
-
...opts,
|
|
371
|
-
});
|
|
372
|
-
Object.setPrototypeOf(this, UnsupportedPlatformType.prototype);
|
|
373
|
-
this.Message = opts.Message;
|
|
374
|
-
}
|
|
375
|
-
};
|
|
376
|
-
exports.DocumentAlreadyExists = class DocumentAlreadyExists extends __BaseException {
|
|
377
|
-
name = "DocumentAlreadyExists";
|
|
378
|
-
$fault = "client";
|
|
379
|
-
Message;
|
|
380
|
-
constructor(opts) {
|
|
381
|
-
super({
|
|
382
|
-
name: "DocumentAlreadyExists",
|
|
383
|
-
$fault: "client",
|
|
384
|
-
...opts,
|
|
385
|
-
});
|
|
386
|
-
Object.setPrototypeOf(this, DocumentAlreadyExists.prototype);
|
|
387
|
-
this.Message = opts.Message;
|
|
388
|
-
}
|
|
389
|
-
};
|
|
390
|
-
exports.DocumentLimitExceeded = class DocumentLimitExceeded extends __BaseException {
|
|
391
|
-
name = "DocumentLimitExceeded";
|
|
392
|
-
$fault = "client";
|
|
393
|
-
Message;
|
|
394
|
-
constructor(opts) {
|
|
395
|
-
super({
|
|
396
|
-
name: "DocumentLimitExceeded",
|
|
397
|
-
$fault: "client",
|
|
398
|
-
...opts,
|
|
399
|
-
});
|
|
400
|
-
Object.setPrototypeOf(this, DocumentLimitExceeded.prototype);
|
|
401
|
-
this.Message = opts.Message;
|
|
402
|
-
}
|
|
403
|
-
};
|
|
404
|
-
exports.InvalidDocumentContent = class InvalidDocumentContent extends __BaseException {
|
|
405
|
-
name = "InvalidDocumentContent";
|
|
406
|
-
$fault = "client";
|
|
407
|
-
Message;
|
|
408
|
-
constructor(opts) {
|
|
409
|
-
super({
|
|
410
|
-
name: "InvalidDocumentContent",
|
|
411
|
-
$fault: "client",
|
|
412
|
-
...opts,
|
|
413
|
-
});
|
|
414
|
-
Object.setPrototypeOf(this, InvalidDocumentContent.prototype);
|
|
415
|
-
this.Message = opts.Message;
|
|
416
|
-
}
|
|
417
|
-
};
|
|
418
|
-
exports.InvalidDocumentSchemaVersion = class InvalidDocumentSchemaVersion extends __BaseException {
|
|
419
|
-
name = "InvalidDocumentSchemaVersion";
|
|
420
|
-
$fault = "client";
|
|
421
|
-
Message;
|
|
422
|
-
constructor(opts) {
|
|
423
|
-
super({
|
|
424
|
-
name: "InvalidDocumentSchemaVersion",
|
|
425
|
-
$fault: "client",
|
|
426
|
-
...opts,
|
|
427
|
-
});
|
|
428
|
-
Object.setPrototypeOf(this, InvalidDocumentSchemaVersion.prototype);
|
|
429
|
-
this.Message = opts.Message;
|
|
430
|
-
}
|
|
431
|
-
};
|
|
432
|
-
exports.MaxDocumentSizeExceeded = class MaxDocumentSizeExceeded extends __BaseException {
|
|
433
|
-
name = "MaxDocumentSizeExceeded";
|
|
434
|
-
$fault = "client";
|
|
435
|
-
Message;
|
|
436
|
-
constructor(opts) {
|
|
437
|
-
super({
|
|
438
|
-
name: "MaxDocumentSizeExceeded",
|
|
439
|
-
$fault: "client",
|
|
440
|
-
...opts,
|
|
441
|
-
});
|
|
442
|
-
Object.setPrototypeOf(this, MaxDocumentSizeExceeded.prototype);
|
|
443
|
-
this.Message = opts.Message;
|
|
444
|
-
}
|
|
445
|
-
};
|
|
446
|
-
exports.NoLongerSupportedException = class NoLongerSupportedException extends __BaseException {
|
|
447
|
-
name = "NoLongerSupportedException";
|
|
448
|
-
$fault = "client";
|
|
449
|
-
Message;
|
|
450
|
-
constructor(opts) {
|
|
451
|
-
super({
|
|
452
|
-
name: "NoLongerSupportedException",
|
|
453
|
-
$fault: "client",
|
|
454
|
-
...opts,
|
|
455
|
-
});
|
|
456
|
-
Object.setPrototypeOf(this, NoLongerSupportedException.prototype);
|
|
457
|
-
this.Message = opts.Message;
|
|
458
|
-
}
|
|
459
|
-
};
|
|
460
|
-
exports.IdempotentParameterMismatch = class IdempotentParameterMismatch extends __BaseException {
|
|
461
|
-
name = "IdempotentParameterMismatch";
|
|
462
|
-
$fault = "client";
|
|
463
|
-
Message;
|
|
464
|
-
constructor(opts) {
|
|
465
|
-
super({
|
|
466
|
-
name: "IdempotentParameterMismatch",
|
|
467
|
-
$fault: "client",
|
|
468
|
-
...opts,
|
|
469
|
-
});
|
|
470
|
-
Object.setPrototypeOf(this, IdempotentParameterMismatch.prototype);
|
|
471
|
-
this.Message = opts.Message;
|
|
472
|
-
}
|
|
473
|
-
};
|
|
474
|
-
exports.ResourceLimitExceededException = class ResourceLimitExceededException extends __BaseException {
|
|
475
|
-
name = "ResourceLimitExceededException";
|
|
476
|
-
$fault = "client";
|
|
477
|
-
Message;
|
|
478
|
-
constructor(opts) {
|
|
479
|
-
super({
|
|
480
|
-
name: "ResourceLimitExceededException",
|
|
481
|
-
$fault: "client",
|
|
482
|
-
...opts,
|
|
483
|
-
});
|
|
484
|
-
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
485
|
-
this.Message = opts.Message;
|
|
486
|
-
}
|
|
487
|
-
};
|
|
488
|
-
exports.OpsItemAccessDeniedException = class OpsItemAccessDeniedException extends __BaseException {
|
|
489
|
-
name = "OpsItemAccessDeniedException";
|
|
490
|
-
$fault = "client";
|
|
491
|
-
Message;
|
|
492
|
-
constructor(opts) {
|
|
493
|
-
super({
|
|
494
|
-
name: "OpsItemAccessDeniedException",
|
|
495
|
-
$fault: "client",
|
|
496
|
-
...opts,
|
|
497
|
-
});
|
|
498
|
-
Object.setPrototypeOf(this, OpsItemAccessDeniedException.prototype);
|
|
499
|
-
this.Message = opts.Message;
|
|
500
|
-
}
|
|
501
|
-
};
|
|
502
|
-
exports.OpsItemAlreadyExistsException = class OpsItemAlreadyExistsException extends __BaseException {
|
|
503
|
-
name = "OpsItemAlreadyExistsException";
|
|
504
|
-
$fault = "client";
|
|
505
|
-
Message;
|
|
506
|
-
OpsItemId;
|
|
507
|
-
constructor(opts) {
|
|
508
|
-
super({
|
|
509
|
-
name: "OpsItemAlreadyExistsException",
|
|
510
|
-
$fault: "client",
|
|
511
|
-
...opts,
|
|
512
|
-
});
|
|
513
|
-
Object.setPrototypeOf(this, OpsItemAlreadyExistsException.prototype);
|
|
514
|
-
this.Message = opts.Message;
|
|
515
|
-
this.OpsItemId = opts.OpsItemId;
|
|
516
|
-
}
|
|
517
|
-
};
|
|
518
|
-
exports.OpsMetadataAlreadyExistsException = class OpsMetadataAlreadyExistsException extends __BaseException {
|
|
519
|
-
name = "OpsMetadataAlreadyExistsException";
|
|
520
|
-
$fault = "client";
|
|
521
|
-
constructor(opts) {
|
|
522
|
-
super({
|
|
523
|
-
name: "OpsMetadataAlreadyExistsException",
|
|
524
|
-
$fault: "client",
|
|
525
|
-
...opts,
|
|
526
|
-
});
|
|
527
|
-
Object.setPrototypeOf(this, OpsMetadataAlreadyExistsException.prototype);
|
|
528
|
-
}
|
|
529
|
-
};
|
|
530
|
-
exports.OpsMetadataInvalidArgumentException = class OpsMetadataInvalidArgumentException extends __BaseException {
|
|
531
|
-
name = "OpsMetadataInvalidArgumentException";
|
|
532
|
-
$fault = "client";
|
|
533
|
-
constructor(opts) {
|
|
534
|
-
super({
|
|
535
|
-
name: "OpsMetadataInvalidArgumentException",
|
|
536
|
-
$fault: "client",
|
|
537
|
-
...opts,
|
|
538
|
-
});
|
|
539
|
-
Object.setPrototypeOf(this, OpsMetadataInvalidArgumentException.prototype);
|
|
540
|
-
}
|
|
541
|
-
};
|
|
542
|
-
exports.OpsMetadataLimitExceededException = class OpsMetadataLimitExceededException extends __BaseException {
|
|
543
|
-
name = "OpsMetadataLimitExceededException";
|
|
544
|
-
$fault = "client";
|
|
545
|
-
constructor(opts) {
|
|
546
|
-
super({
|
|
547
|
-
name: "OpsMetadataLimitExceededException",
|
|
548
|
-
$fault: "client",
|
|
549
|
-
...opts,
|
|
550
|
-
});
|
|
551
|
-
Object.setPrototypeOf(this, OpsMetadataLimitExceededException.prototype);
|
|
552
|
-
}
|
|
553
|
-
};
|
|
554
|
-
exports.OpsMetadataTooManyUpdatesException = class OpsMetadataTooManyUpdatesException extends __BaseException {
|
|
555
|
-
name = "OpsMetadataTooManyUpdatesException";
|
|
556
|
-
$fault = "client";
|
|
557
|
-
constructor(opts) {
|
|
558
|
-
super({
|
|
559
|
-
name: "OpsMetadataTooManyUpdatesException",
|
|
560
|
-
$fault: "client",
|
|
561
|
-
...opts,
|
|
562
|
-
});
|
|
563
|
-
Object.setPrototypeOf(this, OpsMetadataTooManyUpdatesException.prototype);
|
|
564
|
-
}
|
|
565
|
-
};
|
|
566
|
-
exports.ResourceDataSyncAlreadyExistsException = class ResourceDataSyncAlreadyExistsException extends __BaseException {
|
|
567
|
-
name = "ResourceDataSyncAlreadyExistsException";
|
|
568
|
-
$fault = "client";
|
|
569
|
-
SyncName;
|
|
570
|
-
constructor(opts) {
|
|
571
|
-
super({
|
|
572
|
-
name: "ResourceDataSyncAlreadyExistsException",
|
|
573
|
-
$fault: "client",
|
|
574
|
-
...opts,
|
|
575
|
-
});
|
|
576
|
-
Object.setPrototypeOf(this, ResourceDataSyncAlreadyExistsException.prototype);
|
|
577
|
-
this.SyncName = opts.SyncName;
|
|
578
|
-
}
|
|
579
|
-
};
|
|
580
|
-
exports.ResourceDataSyncCountExceededException = class ResourceDataSyncCountExceededException extends __BaseException {
|
|
581
|
-
name = "ResourceDataSyncCountExceededException";
|
|
582
|
-
$fault = "client";
|
|
583
|
-
Message;
|
|
584
|
-
constructor(opts) {
|
|
585
|
-
super({
|
|
586
|
-
name: "ResourceDataSyncCountExceededException",
|
|
587
|
-
$fault: "client",
|
|
588
|
-
...opts,
|
|
589
|
-
});
|
|
590
|
-
Object.setPrototypeOf(this, ResourceDataSyncCountExceededException.prototype);
|
|
591
|
-
this.Message = opts.Message;
|
|
592
|
-
}
|
|
593
|
-
};
|
|
594
|
-
exports.ResourceDataSyncInvalidConfigurationException = class ResourceDataSyncInvalidConfigurationException extends __BaseException {
|
|
595
|
-
name = "ResourceDataSyncInvalidConfigurationException";
|
|
596
|
-
$fault = "client";
|
|
597
|
-
Message;
|
|
598
|
-
constructor(opts) {
|
|
599
|
-
super({
|
|
600
|
-
name: "ResourceDataSyncInvalidConfigurationException",
|
|
601
|
-
$fault: "client",
|
|
602
|
-
...opts,
|
|
603
|
-
});
|
|
604
|
-
Object.setPrototypeOf(this, ResourceDataSyncInvalidConfigurationException.prototype);
|
|
605
|
-
this.Message = opts.Message;
|
|
606
|
-
}
|
|
607
|
-
};
|
|
608
|
-
exports.InvalidActivation = class InvalidActivation extends __BaseException {
|
|
609
|
-
name = "InvalidActivation";
|
|
610
|
-
$fault = "client";
|
|
611
|
-
Message;
|
|
612
|
-
constructor(opts) {
|
|
613
|
-
super({
|
|
614
|
-
name: "InvalidActivation",
|
|
615
|
-
$fault: "client",
|
|
616
|
-
...opts,
|
|
617
|
-
});
|
|
618
|
-
Object.setPrototypeOf(this, InvalidActivation.prototype);
|
|
619
|
-
this.Message = opts.Message;
|
|
620
|
-
}
|
|
621
|
-
};
|
|
622
|
-
exports.InvalidActivationId = class InvalidActivationId extends __BaseException {
|
|
623
|
-
name = "InvalidActivationId";
|
|
624
|
-
$fault = "client";
|
|
625
|
-
Message;
|
|
626
|
-
constructor(opts) {
|
|
627
|
-
super({
|
|
628
|
-
name: "InvalidActivationId",
|
|
629
|
-
$fault: "client",
|
|
630
|
-
...opts,
|
|
631
|
-
});
|
|
632
|
-
Object.setPrototypeOf(this, InvalidActivationId.prototype);
|
|
633
|
-
this.Message = opts.Message;
|
|
634
|
-
}
|
|
635
|
-
};
|
|
636
|
-
exports.AssociationDoesNotExist = class AssociationDoesNotExist extends __BaseException {
|
|
637
|
-
name = "AssociationDoesNotExist";
|
|
638
|
-
$fault = "client";
|
|
639
|
-
Message;
|
|
640
|
-
constructor(opts) {
|
|
641
|
-
super({
|
|
642
|
-
name: "AssociationDoesNotExist",
|
|
643
|
-
$fault: "client",
|
|
644
|
-
...opts,
|
|
645
|
-
});
|
|
646
|
-
Object.setPrototypeOf(this, AssociationDoesNotExist.prototype);
|
|
647
|
-
this.Message = opts.Message;
|
|
648
|
-
}
|
|
649
|
-
};
|
|
650
|
-
exports.AssociatedInstances = class AssociatedInstances extends __BaseException {
|
|
651
|
-
name = "AssociatedInstances";
|
|
652
|
-
$fault = "client";
|
|
653
|
-
constructor(opts) {
|
|
654
|
-
super({
|
|
655
|
-
name: "AssociatedInstances",
|
|
656
|
-
$fault: "client",
|
|
657
|
-
...opts,
|
|
658
|
-
});
|
|
659
|
-
Object.setPrototypeOf(this, AssociatedInstances.prototype);
|
|
660
|
-
}
|
|
661
|
-
};
|
|
662
|
-
exports.InvalidDocumentOperation = class InvalidDocumentOperation extends __BaseException {
|
|
663
|
-
name = "InvalidDocumentOperation";
|
|
664
|
-
$fault = "client";
|
|
665
|
-
Message;
|
|
666
|
-
constructor(opts) {
|
|
667
|
-
super({
|
|
668
|
-
name: "InvalidDocumentOperation",
|
|
669
|
-
$fault: "client",
|
|
670
|
-
...opts,
|
|
671
|
-
});
|
|
672
|
-
Object.setPrototypeOf(this, InvalidDocumentOperation.prototype);
|
|
673
|
-
this.Message = opts.Message;
|
|
674
|
-
}
|
|
675
|
-
};
|
|
676
|
-
exports.InvalidDeleteInventoryParametersException = class InvalidDeleteInventoryParametersException extends __BaseException {
|
|
677
|
-
name = "InvalidDeleteInventoryParametersException";
|
|
678
|
-
$fault = "client";
|
|
679
|
-
Message;
|
|
680
|
-
constructor(opts) {
|
|
681
|
-
super({
|
|
682
|
-
name: "InvalidDeleteInventoryParametersException",
|
|
683
|
-
$fault: "client",
|
|
684
|
-
...opts,
|
|
685
|
-
});
|
|
686
|
-
Object.setPrototypeOf(this, InvalidDeleteInventoryParametersException.prototype);
|
|
687
|
-
this.Message = opts.Message;
|
|
688
|
-
}
|
|
689
|
-
};
|
|
690
|
-
exports.InvalidInventoryRequestException = class InvalidInventoryRequestException extends __BaseException {
|
|
691
|
-
name = "InvalidInventoryRequestException";
|
|
692
|
-
$fault = "client";
|
|
693
|
-
Message;
|
|
694
|
-
constructor(opts) {
|
|
695
|
-
super({
|
|
696
|
-
name: "InvalidInventoryRequestException",
|
|
697
|
-
$fault: "client",
|
|
698
|
-
...opts,
|
|
699
|
-
});
|
|
700
|
-
Object.setPrototypeOf(this, InvalidInventoryRequestException.prototype);
|
|
701
|
-
this.Message = opts.Message;
|
|
702
|
-
}
|
|
703
|
-
};
|
|
704
|
-
exports.InvalidOptionException = class InvalidOptionException extends __BaseException {
|
|
705
|
-
name = "InvalidOptionException";
|
|
706
|
-
$fault = "client";
|
|
707
|
-
Message;
|
|
708
|
-
constructor(opts) {
|
|
709
|
-
super({
|
|
710
|
-
name: "InvalidOptionException",
|
|
711
|
-
$fault: "client",
|
|
712
|
-
...opts,
|
|
713
|
-
});
|
|
714
|
-
Object.setPrototypeOf(this, InvalidOptionException.prototype);
|
|
715
|
-
this.Message = opts.Message;
|
|
716
|
-
}
|
|
717
|
-
};
|
|
718
|
-
exports.InvalidTypeNameException = class InvalidTypeNameException extends __BaseException {
|
|
719
|
-
name = "InvalidTypeNameException";
|
|
720
|
-
$fault = "client";
|
|
721
|
-
Message;
|
|
722
|
-
constructor(opts) {
|
|
723
|
-
super({
|
|
724
|
-
name: "InvalidTypeNameException",
|
|
725
|
-
$fault: "client",
|
|
726
|
-
...opts,
|
|
727
|
-
});
|
|
728
|
-
Object.setPrototypeOf(this, InvalidTypeNameException.prototype);
|
|
729
|
-
this.Message = opts.Message;
|
|
730
|
-
}
|
|
731
|
-
};
|
|
732
|
-
exports.OpsMetadataNotFoundException = class OpsMetadataNotFoundException extends __BaseException {
|
|
733
|
-
name = "OpsMetadataNotFoundException";
|
|
734
|
-
$fault = "client";
|
|
735
|
-
constructor(opts) {
|
|
736
|
-
super({
|
|
737
|
-
name: "OpsMetadataNotFoundException",
|
|
738
|
-
$fault: "client",
|
|
739
|
-
...opts,
|
|
740
|
-
});
|
|
741
|
-
Object.setPrototypeOf(this, OpsMetadataNotFoundException.prototype);
|
|
742
|
-
}
|
|
743
|
-
};
|
|
744
|
-
exports.ParameterNotFound = class ParameterNotFound extends __BaseException {
|
|
745
|
-
name = "ParameterNotFound";
|
|
746
|
-
$fault = "client";
|
|
747
|
-
constructor(opts) {
|
|
748
|
-
super({
|
|
749
|
-
name: "ParameterNotFound",
|
|
750
|
-
$fault: "client",
|
|
751
|
-
...opts,
|
|
752
|
-
});
|
|
753
|
-
Object.setPrototypeOf(this, ParameterNotFound.prototype);
|
|
754
|
-
}
|
|
755
|
-
};
|
|
756
|
-
exports.ResourceInUseException = class ResourceInUseException extends __BaseException {
|
|
757
|
-
name = "ResourceInUseException";
|
|
758
|
-
$fault = "client";
|
|
759
|
-
Message;
|
|
760
|
-
constructor(opts) {
|
|
761
|
-
super({
|
|
762
|
-
name: "ResourceInUseException",
|
|
763
|
-
$fault: "client",
|
|
764
|
-
...opts,
|
|
765
|
-
});
|
|
766
|
-
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
767
|
-
this.Message = opts.Message;
|
|
768
|
-
}
|
|
769
|
-
};
|
|
770
|
-
exports.ResourceDataSyncNotFoundException = class ResourceDataSyncNotFoundException extends __BaseException {
|
|
771
|
-
name = "ResourceDataSyncNotFoundException";
|
|
772
|
-
$fault = "client";
|
|
773
|
-
SyncName;
|
|
774
|
-
SyncType;
|
|
775
|
-
Message;
|
|
776
|
-
constructor(opts) {
|
|
777
|
-
super({
|
|
778
|
-
name: "ResourceDataSyncNotFoundException",
|
|
779
|
-
$fault: "client",
|
|
780
|
-
...opts,
|
|
781
|
-
});
|
|
782
|
-
Object.setPrototypeOf(this, ResourceDataSyncNotFoundException.prototype);
|
|
783
|
-
this.SyncName = opts.SyncName;
|
|
784
|
-
this.SyncType = opts.SyncType;
|
|
785
|
-
this.Message = opts.Message;
|
|
786
|
-
}
|
|
787
|
-
};
|
|
788
|
-
exports.MalformedResourcePolicyDocumentException = class MalformedResourcePolicyDocumentException extends __BaseException {
|
|
789
|
-
name = "MalformedResourcePolicyDocumentException";
|
|
790
|
-
$fault = "client";
|
|
791
|
-
Message;
|
|
792
|
-
constructor(opts) {
|
|
793
|
-
super({
|
|
794
|
-
name: "MalformedResourcePolicyDocumentException",
|
|
795
|
-
$fault: "client",
|
|
796
|
-
...opts,
|
|
797
|
-
});
|
|
798
|
-
Object.setPrototypeOf(this, MalformedResourcePolicyDocumentException.prototype);
|
|
799
|
-
this.Message = opts.Message;
|
|
800
|
-
}
|
|
801
|
-
};
|
|
802
|
-
exports.ResourceNotFoundException = class ResourceNotFoundException extends __BaseException {
|
|
803
|
-
name = "ResourceNotFoundException";
|
|
804
|
-
$fault = "client";
|
|
805
|
-
Message;
|
|
806
|
-
constructor(opts) {
|
|
807
|
-
super({
|
|
808
|
-
name: "ResourceNotFoundException",
|
|
809
|
-
$fault: "client",
|
|
810
|
-
...opts,
|
|
811
|
-
});
|
|
812
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
813
|
-
this.Message = opts.Message;
|
|
814
|
-
}
|
|
815
|
-
};
|
|
816
|
-
exports.ResourcePolicyConflictException = class ResourcePolicyConflictException extends __BaseException {
|
|
817
|
-
name = "ResourcePolicyConflictException";
|
|
818
|
-
$fault = "client";
|
|
819
|
-
Message;
|
|
820
|
-
constructor(opts) {
|
|
821
|
-
super({
|
|
822
|
-
name: "ResourcePolicyConflictException",
|
|
823
|
-
$fault: "client",
|
|
824
|
-
...opts,
|
|
825
|
-
});
|
|
826
|
-
Object.setPrototypeOf(this, ResourcePolicyConflictException.prototype);
|
|
827
|
-
this.Message = opts.Message;
|
|
828
|
-
}
|
|
829
|
-
};
|
|
830
|
-
exports.ResourcePolicyInvalidParameterException = class ResourcePolicyInvalidParameterException extends __BaseException {
|
|
831
|
-
name = "ResourcePolicyInvalidParameterException";
|
|
832
|
-
$fault = "client";
|
|
833
|
-
ParameterNames;
|
|
834
|
-
Message;
|
|
835
|
-
constructor(opts) {
|
|
836
|
-
super({
|
|
837
|
-
name: "ResourcePolicyInvalidParameterException",
|
|
838
|
-
$fault: "client",
|
|
839
|
-
...opts,
|
|
840
|
-
});
|
|
841
|
-
Object.setPrototypeOf(this, ResourcePolicyInvalidParameterException.prototype);
|
|
842
|
-
this.ParameterNames = opts.ParameterNames;
|
|
843
|
-
this.Message = opts.Message;
|
|
844
|
-
}
|
|
845
|
-
};
|
|
846
|
-
exports.ResourcePolicyNotFoundException = class ResourcePolicyNotFoundException extends __BaseException {
|
|
847
|
-
name = "ResourcePolicyNotFoundException";
|
|
848
|
-
$fault = "client";
|
|
849
|
-
Message;
|
|
850
|
-
constructor(opts) {
|
|
851
|
-
super({
|
|
852
|
-
name: "ResourcePolicyNotFoundException",
|
|
853
|
-
$fault: "client",
|
|
854
|
-
...opts,
|
|
855
|
-
});
|
|
856
|
-
Object.setPrototypeOf(this, ResourcePolicyNotFoundException.prototype);
|
|
857
|
-
this.Message = opts.Message;
|
|
858
|
-
}
|
|
859
|
-
};
|
|
860
|
-
exports.TargetInUseException = class TargetInUseException extends __BaseException {
|
|
861
|
-
name = "TargetInUseException";
|
|
862
|
-
$fault = "client";
|
|
863
|
-
Message;
|
|
864
|
-
constructor(opts) {
|
|
865
|
-
super({
|
|
866
|
-
name: "TargetInUseException",
|
|
867
|
-
$fault: "client",
|
|
868
|
-
...opts,
|
|
869
|
-
});
|
|
870
|
-
Object.setPrototypeOf(this, TargetInUseException.prototype);
|
|
871
|
-
this.Message = opts.Message;
|
|
872
|
-
}
|
|
873
|
-
};
|
|
874
|
-
exports.InvalidFilter = class InvalidFilter extends __BaseException {
|
|
875
|
-
name = "InvalidFilter";
|
|
876
|
-
$fault = "client";
|
|
877
|
-
Message;
|
|
878
|
-
constructor(opts) {
|
|
879
|
-
super({
|
|
880
|
-
name: "InvalidFilter",
|
|
881
|
-
$fault: "client",
|
|
882
|
-
...opts,
|
|
883
|
-
});
|
|
884
|
-
Object.setPrototypeOf(this, InvalidFilter.prototype);
|
|
885
|
-
this.Message = opts.Message;
|
|
886
|
-
}
|
|
887
|
-
};
|
|
888
|
-
exports.InvalidNextToken = class InvalidNextToken extends __BaseException {
|
|
889
|
-
name = "InvalidNextToken";
|
|
890
|
-
$fault = "client";
|
|
891
|
-
Message;
|
|
892
|
-
constructor(opts) {
|
|
893
|
-
super({
|
|
894
|
-
name: "InvalidNextToken",
|
|
895
|
-
$fault: "client",
|
|
896
|
-
...opts,
|
|
897
|
-
});
|
|
898
|
-
Object.setPrototypeOf(this, InvalidNextToken.prototype);
|
|
899
|
-
this.Message = opts.Message;
|
|
900
|
-
}
|
|
901
|
-
};
|
|
902
|
-
exports.InvalidAssociationVersion = class InvalidAssociationVersion extends __BaseException {
|
|
903
|
-
name = "InvalidAssociationVersion";
|
|
904
|
-
$fault = "client";
|
|
905
|
-
Message;
|
|
906
|
-
constructor(opts) {
|
|
907
|
-
super({
|
|
908
|
-
name: "InvalidAssociationVersion",
|
|
909
|
-
$fault: "client",
|
|
910
|
-
...opts,
|
|
911
|
-
});
|
|
912
|
-
Object.setPrototypeOf(this, InvalidAssociationVersion.prototype);
|
|
913
|
-
this.Message = opts.Message;
|
|
914
|
-
}
|
|
915
|
-
};
|
|
916
|
-
exports.AssociationExecutionDoesNotExist = class AssociationExecutionDoesNotExist extends __BaseException {
|
|
917
|
-
name = "AssociationExecutionDoesNotExist";
|
|
918
|
-
$fault = "client";
|
|
919
|
-
Message;
|
|
920
|
-
constructor(opts) {
|
|
921
|
-
super({
|
|
922
|
-
name: "AssociationExecutionDoesNotExist",
|
|
923
|
-
$fault: "client",
|
|
924
|
-
...opts,
|
|
925
|
-
});
|
|
926
|
-
Object.setPrototypeOf(this, AssociationExecutionDoesNotExist.prototype);
|
|
927
|
-
this.Message = opts.Message;
|
|
928
|
-
}
|
|
929
|
-
};
|
|
930
|
-
exports.InvalidFilterKey = class InvalidFilterKey extends __BaseException {
|
|
931
|
-
name = "InvalidFilterKey";
|
|
932
|
-
$fault = "client";
|
|
933
|
-
constructor(opts) {
|
|
934
|
-
super({
|
|
935
|
-
name: "InvalidFilterKey",
|
|
936
|
-
$fault: "client",
|
|
937
|
-
...opts,
|
|
938
|
-
});
|
|
939
|
-
Object.setPrototypeOf(this, InvalidFilterKey.prototype);
|
|
940
|
-
}
|
|
941
|
-
};
|
|
942
|
-
exports.InvalidFilterValue = class InvalidFilterValue extends __BaseException {
|
|
943
|
-
name = "InvalidFilterValue";
|
|
944
|
-
$fault = "client";
|
|
945
|
-
Message;
|
|
946
|
-
constructor(opts) {
|
|
947
|
-
super({
|
|
948
|
-
name: "InvalidFilterValue",
|
|
949
|
-
$fault: "client",
|
|
950
|
-
...opts,
|
|
951
|
-
});
|
|
952
|
-
Object.setPrototypeOf(this, InvalidFilterValue.prototype);
|
|
953
|
-
this.Message = opts.Message;
|
|
954
|
-
}
|
|
955
|
-
};
|
|
956
|
-
exports.AutomationExecutionNotFoundException = class AutomationExecutionNotFoundException extends __BaseException {
|
|
957
|
-
name = "AutomationExecutionNotFoundException";
|
|
958
|
-
$fault = "client";
|
|
959
|
-
Message;
|
|
960
|
-
constructor(opts) {
|
|
961
|
-
super({
|
|
962
|
-
name: "AutomationExecutionNotFoundException",
|
|
963
|
-
$fault: "client",
|
|
964
|
-
...opts,
|
|
965
|
-
});
|
|
966
|
-
Object.setPrototypeOf(this, AutomationExecutionNotFoundException.prototype);
|
|
967
|
-
this.Message = opts.Message;
|
|
968
|
-
}
|
|
969
|
-
};
|
|
970
|
-
exports.InvalidPermissionType = class InvalidPermissionType extends __BaseException {
|
|
971
|
-
name = "InvalidPermissionType";
|
|
972
|
-
$fault = "client";
|
|
973
|
-
Message;
|
|
974
|
-
constructor(opts) {
|
|
975
|
-
super({
|
|
976
|
-
name: "InvalidPermissionType",
|
|
977
|
-
$fault: "client",
|
|
978
|
-
...opts,
|
|
979
|
-
});
|
|
980
|
-
Object.setPrototypeOf(this, InvalidPermissionType.prototype);
|
|
981
|
-
this.Message = opts.Message;
|
|
982
|
-
}
|
|
983
|
-
};
|
|
984
|
-
exports.UnsupportedOperatingSystem = class UnsupportedOperatingSystem extends __BaseException {
|
|
985
|
-
name = "UnsupportedOperatingSystem";
|
|
986
|
-
$fault = "client";
|
|
987
|
-
Message;
|
|
988
|
-
constructor(opts) {
|
|
989
|
-
super({
|
|
990
|
-
name: "UnsupportedOperatingSystem",
|
|
991
|
-
$fault: "client",
|
|
992
|
-
...opts,
|
|
993
|
-
});
|
|
994
|
-
Object.setPrototypeOf(this, UnsupportedOperatingSystem.prototype);
|
|
995
|
-
this.Message = opts.Message;
|
|
996
|
-
}
|
|
997
|
-
};
|
|
998
|
-
exports.InvalidInstanceInformationFilterValue = class InvalidInstanceInformationFilterValue extends __BaseException {
|
|
999
|
-
name = "InvalidInstanceInformationFilterValue";
|
|
1000
|
-
$fault = "client";
|
|
1001
|
-
constructor(opts) {
|
|
1002
|
-
super({
|
|
1003
|
-
name: "InvalidInstanceInformationFilterValue",
|
|
1004
|
-
$fault: "client",
|
|
1005
|
-
...opts,
|
|
1006
|
-
});
|
|
1007
|
-
Object.setPrototypeOf(this, InvalidInstanceInformationFilterValue.prototype);
|
|
1008
|
-
}
|
|
1009
|
-
};
|
|
1010
|
-
exports.InvalidInstancePropertyFilterValue = class InvalidInstancePropertyFilterValue extends __BaseException {
|
|
1011
|
-
name = "InvalidInstancePropertyFilterValue";
|
|
1012
|
-
$fault = "client";
|
|
1013
|
-
constructor(opts) {
|
|
1014
|
-
super({
|
|
1015
|
-
name: "InvalidInstancePropertyFilterValue",
|
|
1016
|
-
$fault: "client",
|
|
1017
|
-
...opts,
|
|
1018
|
-
});
|
|
1019
|
-
Object.setPrototypeOf(this, InvalidInstancePropertyFilterValue.prototype);
|
|
1020
|
-
}
|
|
1021
|
-
};
|
|
1022
|
-
exports.InvalidDeletionIdException = class InvalidDeletionIdException extends __BaseException {
|
|
1023
|
-
name = "InvalidDeletionIdException";
|
|
1024
|
-
$fault = "client";
|
|
1025
|
-
Message;
|
|
1026
|
-
constructor(opts) {
|
|
1027
|
-
super({
|
|
1028
|
-
name: "InvalidDeletionIdException",
|
|
1029
|
-
$fault: "client",
|
|
1030
|
-
...opts,
|
|
1031
|
-
});
|
|
1032
|
-
Object.setPrototypeOf(this, InvalidDeletionIdException.prototype);
|
|
1033
|
-
this.Message = opts.Message;
|
|
1034
|
-
}
|
|
1035
|
-
};
|
|
1036
|
-
exports.InvalidFilterOption = class InvalidFilterOption extends __BaseException {
|
|
1037
|
-
name = "InvalidFilterOption";
|
|
1038
|
-
$fault = "client";
|
|
1039
|
-
constructor(opts) {
|
|
1040
|
-
super({
|
|
1041
|
-
name: "InvalidFilterOption",
|
|
1042
|
-
$fault: "client",
|
|
1043
|
-
...opts,
|
|
1044
|
-
});
|
|
1045
|
-
Object.setPrototypeOf(this, InvalidFilterOption.prototype);
|
|
1046
|
-
}
|
|
1047
|
-
};
|
|
1048
|
-
exports.OpsItemRelatedItemAssociationNotFoundException = class OpsItemRelatedItemAssociationNotFoundException extends __BaseException {
|
|
1049
|
-
name = "OpsItemRelatedItemAssociationNotFoundException";
|
|
1050
|
-
$fault = "client";
|
|
1051
|
-
Message;
|
|
1052
|
-
constructor(opts) {
|
|
1053
|
-
super({
|
|
1054
|
-
name: "OpsItemRelatedItemAssociationNotFoundException",
|
|
1055
|
-
$fault: "client",
|
|
1056
|
-
...opts,
|
|
1057
|
-
});
|
|
1058
|
-
Object.setPrototypeOf(this, OpsItemRelatedItemAssociationNotFoundException.prototype);
|
|
1059
|
-
this.Message = opts.Message;
|
|
1060
|
-
}
|
|
1061
|
-
};
|
|
1062
|
-
exports.ThrottlingException = class ThrottlingException extends __BaseException {
|
|
1063
|
-
name = "ThrottlingException";
|
|
1064
|
-
$fault = "client";
|
|
1065
|
-
Message;
|
|
1066
|
-
QuotaCode;
|
|
1067
|
-
ServiceCode;
|
|
1068
|
-
constructor(opts) {
|
|
1069
|
-
super({
|
|
1070
|
-
name: "ThrottlingException",
|
|
1071
|
-
$fault: "client",
|
|
1072
|
-
...opts,
|
|
1073
|
-
});
|
|
1074
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
1075
|
-
this.Message = opts.Message;
|
|
1076
|
-
this.QuotaCode = opts.QuotaCode;
|
|
1077
|
-
this.ServiceCode = opts.ServiceCode;
|
|
1078
|
-
}
|
|
1079
|
-
};
|
|
1080
|
-
exports.ValidationException = class ValidationException extends __BaseException {
|
|
1081
|
-
name = "ValidationException";
|
|
1082
|
-
$fault = "client";
|
|
1083
|
-
Message;
|
|
1084
|
-
ReasonCode;
|
|
1085
|
-
constructor(opts) {
|
|
1086
|
-
super({
|
|
1087
|
-
name: "ValidationException",
|
|
1088
|
-
$fault: "client",
|
|
1089
|
-
...opts,
|
|
1090
|
-
});
|
|
1091
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
1092
|
-
this.Message = opts.Message;
|
|
1093
|
-
this.ReasonCode = opts.ReasonCode;
|
|
1094
|
-
}
|
|
1095
|
-
};
|
|
1096
|
-
exports.InvalidDocumentType = class InvalidDocumentType extends __BaseException {
|
|
1097
|
-
name = "InvalidDocumentType";
|
|
1098
|
-
$fault = "client";
|
|
1099
|
-
Message;
|
|
1100
|
-
constructor(opts) {
|
|
1101
|
-
super({
|
|
1102
|
-
name: "InvalidDocumentType",
|
|
1103
|
-
$fault: "client",
|
|
1104
|
-
...opts,
|
|
1105
|
-
});
|
|
1106
|
-
Object.setPrototypeOf(this, InvalidDocumentType.prototype);
|
|
1107
|
-
this.Message = opts.Message;
|
|
1108
|
-
}
|
|
1109
|
-
};
|
|
1110
|
-
exports.UnsupportedCalendarException = class UnsupportedCalendarException extends __BaseException {
|
|
1111
|
-
name = "UnsupportedCalendarException";
|
|
1112
|
-
$fault = "client";
|
|
1113
|
-
Message;
|
|
1114
|
-
constructor(opts) {
|
|
1115
|
-
super({
|
|
1116
|
-
name: "UnsupportedCalendarException",
|
|
1117
|
-
$fault: "client",
|
|
1118
|
-
...opts,
|
|
1119
|
-
});
|
|
1120
|
-
Object.setPrototypeOf(this, UnsupportedCalendarException.prototype);
|
|
1121
|
-
this.Message = opts.Message;
|
|
1122
|
-
}
|
|
1123
|
-
};
|
|
1124
|
-
exports.InvalidPluginName = class InvalidPluginName extends __BaseException {
|
|
1125
|
-
name = "InvalidPluginName";
|
|
1126
|
-
$fault = "client";
|
|
1127
|
-
constructor(opts) {
|
|
1128
|
-
super({
|
|
1129
|
-
name: "InvalidPluginName",
|
|
1130
|
-
$fault: "client",
|
|
1131
|
-
...opts,
|
|
1132
|
-
});
|
|
1133
|
-
Object.setPrototypeOf(this, InvalidPluginName.prototype);
|
|
1134
|
-
}
|
|
1135
|
-
};
|
|
1136
|
-
exports.InvocationDoesNotExist = class InvocationDoesNotExist extends __BaseException {
|
|
1137
|
-
name = "InvocationDoesNotExist";
|
|
1138
|
-
$fault = "client";
|
|
1139
|
-
constructor(opts) {
|
|
1140
|
-
super({
|
|
1141
|
-
name: "InvocationDoesNotExist",
|
|
1142
|
-
$fault: "client",
|
|
1143
|
-
...opts,
|
|
1144
|
-
});
|
|
1145
|
-
Object.setPrototypeOf(this, InvocationDoesNotExist.prototype);
|
|
1146
|
-
}
|
|
1147
|
-
};
|
|
1148
|
-
exports.UnsupportedFeatureRequiredException = class UnsupportedFeatureRequiredException extends __BaseException {
|
|
1149
|
-
name = "UnsupportedFeatureRequiredException";
|
|
1150
|
-
$fault = "client";
|
|
1151
|
-
Message;
|
|
1152
|
-
constructor(opts) {
|
|
1153
|
-
super({
|
|
1154
|
-
name: "UnsupportedFeatureRequiredException",
|
|
1155
|
-
$fault: "client",
|
|
1156
|
-
...opts,
|
|
1157
|
-
});
|
|
1158
|
-
Object.setPrototypeOf(this, UnsupportedFeatureRequiredException.prototype);
|
|
1159
|
-
this.Message = opts.Message;
|
|
1160
|
-
}
|
|
1161
|
-
};
|
|
1162
|
-
exports.InvalidAggregatorException = class InvalidAggregatorException extends __BaseException {
|
|
1163
|
-
name = "InvalidAggregatorException";
|
|
1164
|
-
$fault = "client";
|
|
1165
|
-
Message;
|
|
1166
|
-
constructor(opts) {
|
|
1167
|
-
super({
|
|
1168
|
-
name: "InvalidAggregatorException",
|
|
1169
|
-
$fault: "client",
|
|
1170
|
-
...opts,
|
|
1171
|
-
});
|
|
1172
|
-
Object.setPrototypeOf(this, InvalidAggregatorException.prototype);
|
|
1173
|
-
this.Message = opts.Message;
|
|
1174
|
-
}
|
|
1175
|
-
};
|
|
1176
|
-
exports.InvalidInventoryGroupException = class InvalidInventoryGroupException extends __BaseException {
|
|
1177
|
-
name = "InvalidInventoryGroupException";
|
|
1178
|
-
$fault = "client";
|
|
1179
|
-
Message;
|
|
1180
|
-
constructor(opts) {
|
|
1181
|
-
super({
|
|
1182
|
-
name: "InvalidInventoryGroupException",
|
|
1183
|
-
$fault: "client",
|
|
1184
|
-
...opts,
|
|
1185
|
-
});
|
|
1186
|
-
Object.setPrototypeOf(this, InvalidInventoryGroupException.prototype);
|
|
1187
|
-
this.Message = opts.Message;
|
|
1188
|
-
}
|
|
1189
|
-
};
|
|
1190
|
-
exports.InvalidResultAttributeException = class InvalidResultAttributeException extends __BaseException {
|
|
1191
|
-
name = "InvalidResultAttributeException";
|
|
1192
|
-
$fault = "client";
|
|
1193
|
-
Message;
|
|
1194
|
-
constructor(opts) {
|
|
1195
|
-
super({
|
|
1196
|
-
name: "InvalidResultAttributeException",
|
|
1197
|
-
$fault: "client",
|
|
1198
|
-
...opts,
|
|
1199
|
-
});
|
|
1200
|
-
Object.setPrototypeOf(this, InvalidResultAttributeException.prototype);
|
|
1201
|
-
this.Message = opts.Message;
|
|
1202
|
-
}
|
|
1203
|
-
};
|
|
1204
|
-
exports.InvalidKeyId = class InvalidKeyId extends __BaseException {
|
|
1205
|
-
name = "InvalidKeyId";
|
|
1206
|
-
$fault = "client";
|
|
1207
|
-
constructor(opts) {
|
|
1208
|
-
super({
|
|
1209
|
-
name: "InvalidKeyId",
|
|
1210
|
-
$fault: "client",
|
|
1211
|
-
...opts,
|
|
1212
|
-
});
|
|
1213
|
-
Object.setPrototypeOf(this, InvalidKeyId.prototype);
|
|
1214
|
-
}
|
|
1215
|
-
};
|
|
1216
|
-
exports.ParameterVersionNotFound = class ParameterVersionNotFound extends __BaseException {
|
|
1217
|
-
name = "ParameterVersionNotFound";
|
|
1218
|
-
$fault = "client";
|
|
1219
|
-
constructor(opts) {
|
|
1220
|
-
super({
|
|
1221
|
-
name: "ParameterVersionNotFound",
|
|
1222
|
-
$fault: "client",
|
|
1223
|
-
...opts,
|
|
1224
|
-
});
|
|
1225
|
-
Object.setPrototypeOf(this, ParameterVersionNotFound.prototype);
|
|
1226
|
-
}
|
|
1227
|
-
};
|
|
1228
|
-
exports.ServiceSettingNotFound = class ServiceSettingNotFound extends __BaseException {
|
|
1229
|
-
name = "ServiceSettingNotFound";
|
|
1230
|
-
$fault = "client";
|
|
1231
|
-
Message;
|
|
1232
|
-
constructor(opts) {
|
|
1233
|
-
super({
|
|
1234
|
-
name: "ServiceSettingNotFound",
|
|
1235
|
-
$fault: "client",
|
|
1236
|
-
...opts,
|
|
1237
|
-
});
|
|
1238
|
-
Object.setPrototypeOf(this, ServiceSettingNotFound.prototype);
|
|
1239
|
-
this.Message = opts.Message;
|
|
1240
|
-
}
|
|
1241
|
-
};
|
|
1242
|
-
exports.ParameterVersionLabelLimitExceeded = class ParameterVersionLabelLimitExceeded extends __BaseException {
|
|
1243
|
-
name = "ParameterVersionLabelLimitExceeded";
|
|
1244
|
-
$fault = "client";
|
|
1245
|
-
constructor(opts) {
|
|
1246
|
-
super({
|
|
1247
|
-
name: "ParameterVersionLabelLimitExceeded",
|
|
1248
|
-
$fault: "client",
|
|
1249
|
-
...opts,
|
|
1250
|
-
});
|
|
1251
|
-
Object.setPrototypeOf(this, ParameterVersionLabelLimitExceeded.prototype);
|
|
1252
|
-
}
|
|
1253
|
-
};
|
|
1254
|
-
exports.UnsupportedOperationException = class UnsupportedOperationException extends __BaseException {
|
|
1255
|
-
name = "UnsupportedOperationException";
|
|
1256
|
-
$fault = "client";
|
|
1257
|
-
Message;
|
|
1258
|
-
constructor(opts) {
|
|
1259
|
-
super({
|
|
1260
|
-
name: "UnsupportedOperationException",
|
|
1261
|
-
$fault: "client",
|
|
1262
|
-
...opts,
|
|
1263
|
-
});
|
|
1264
|
-
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
1265
|
-
this.Message = opts.Message;
|
|
1266
|
-
}
|
|
1267
|
-
};
|
|
1268
|
-
exports.DocumentPermissionLimit = class DocumentPermissionLimit extends __BaseException {
|
|
1269
|
-
name = "DocumentPermissionLimit";
|
|
1270
|
-
$fault = "client";
|
|
1271
|
-
Message;
|
|
1272
|
-
constructor(opts) {
|
|
1273
|
-
super({
|
|
1274
|
-
name: "DocumentPermissionLimit",
|
|
1275
|
-
$fault: "client",
|
|
1276
|
-
...opts,
|
|
1277
|
-
});
|
|
1278
|
-
Object.setPrototypeOf(this, DocumentPermissionLimit.prototype);
|
|
1279
|
-
this.Message = opts.Message;
|
|
1280
|
-
}
|
|
1281
|
-
};
|
|
1282
|
-
exports.ComplianceTypeCountLimitExceededException = class ComplianceTypeCountLimitExceededException extends __BaseException {
|
|
1283
|
-
name = "ComplianceTypeCountLimitExceededException";
|
|
1284
|
-
$fault = "client";
|
|
1285
|
-
Message;
|
|
1286
|
-
constructor(opts) {
|
|
1287
|
-
super({
|
|
1288
|
-
name: "ComplianceTypeCountLimitExceededException",
|
|
1289
|
-
$fault: "client",
|
|
1290
|
-
...opts,
|
|
1291
|
-
});
|
|
1292
|
-
Object.setPrototypeOf(this, ComplianceTypeCountLimitExceededException.prototype);
|
|
1293
|
-
this.Message = opts.Message;
|
|
1294
|
-
}
|
|
1295
|
-
};
|
|
1296
|
-
exports.InvalidItemContentException = class InvalidItemContentException extends __BaseException {
|
|
1297
|
-
name = "InvalidItemContentException";
|
|
1298
|
-
$fault = "client";
|
|
1299
|
-
TypeName;
|
|
1300
|
-
Message;
|
|
1301
|
-
constructor(opts) {
|
|
1302
|
-
super({
|
|
1303
|
-
name: "InvalidItemContentException",
|
|
1304
|
-
$fault: "client",
|
|
1305
|
-
...opts,
|
|
1306
|
-
});
|
|
1307
|
-
Object.setPrototypeOf(this, InvalidItemContentException.prototype);
|
|
1308
|
-
this.TypeName = opts.TypeName;
|
|
1309
|
-
this.Message = opts.Message;
|
|
1310
|
-
}
|
|
1311
|
-
};
|
|
1312
|
-
exports.ItemSizeLimitExceededException = class ItemSizeLimitExceededException extends __BaseException {
|
|
1313
|
-
name = "ItemSizeLimitExceededException";
|
|
1314
|
-
$fault = "client";
|
|
1315
|
-
TypeName;
|
|
1316
|
-
Message;
|
|
1317
|
-
constructor(opts) {
|
|
1318
|
-
super({
|
|
1319
|
-
name: "ItemSizeLimitExceededException",
|
|
1320
|
-
$fault: "client",
|
|
1321
|
-
...opts,
|
|
1322
|
-
});
|
|
1323
|
-
Object.setPrototypeOf(this, ItemSizeLimitExceededException.prototype);
|
|
1324
|
-
this.TypeName = opts.TypeName;
|
|
1325
|
-
this.Message = opts.Message;
|
|
1326
|
-
}
|
|
1327
|
-
};
|
|
1328
|
-
exports.TotalSizeLimitExceededException = class TotalSizeLimitExceededException extends __BaseException {
|
|
1329
|
-
name = "TotalSizeLimitExceededException";
|
|
1330
|
-
$fault = "client";
|
|
1331
|
-
Message;
|
|
1332
|
-
constructor(opts) {
|
|
1333
|
-
super({
|
|
1334
|
-
name: "TotalSizeLimitExceededException",
|
|
1335
|
-
$fault: "client",
|
|
1336
|
-
...opts,
|
|
1337
|
-
});
|
|
1338
|
-
Object.setPrototypeOf(this, TotalSizeLimitExceededException.prototype);
|
|
1339
|
-
this.Message = opts.Message;
|
|
1340
|
-
}
|
|
1341
|
-
};
|
|
1342
|
-
exports.CustomSchemaCountLimitExceededException = class CustomSchemaCountLimitExceededException extends __BaseException {
|
|
1343
|
-
name = "CustomSchemaCountLimitExceededException";
|
|
1344
|
-
$fault = "client";
|
|
1345
|
-
Message;
|
|
1346
|
-
constructor(opts) {
|
|
1347
|
-
super({
|
|
1348
|
-
name: "CustomSchemaCountLimitExceededException",
|
|
1349
|
-
$fault: "client",
|
|
1350
|
-
...opts,
|
|
1351
|
-
});
|
|
1352
|
-
Object.setPrototypeOf(this, CustomSchemaCountLimitExceededException.prototype);
|
|
1353
|
-
this.Message = opts.Message;
|
|
1354
|
-
}
|
|
1355
|
-
};
|
|
1356
|
-
exports.InvalidInventoryItemContextException = class InvalidInventoryItemContextException extends __BaseException {
|
|
1357
|
-
name = "InvalidInventoryItemContextException";
|
|
1358
|
-
$fault = "client";
|
|
1359
|
-
Message;
|
|
1360
|
-
constructor(opts) {
|
|
1361
|
-
super({
|
|
1362
|
-
name: "InvalidInventoryItemContextException",
|
|
1363
|
-
$fault: "client",
|
|
1364
|
-
...opts,
|
|
1365
|
-
});
|
|
1366
|
-
Object.setPrototypeOf(this, InvalidInventoryItemContextException.prototype);
|
|
1367
|
-
this.Message = opts.Message;
|
|
1368
|
-
}
|
|
1369
|
-
};
|
|
1370
|
-
exports.ItemContentMismatchException = class ItemContentMismatchException extends __BaseException {
|
|
1371
|
-
name = "ItemContentMismatchException";
|
|
1372
|
-
$fault = "client";
|
|
1373
|
-
TypeName;
|
|
1374
|
-
Message;
|
|
1375
|
-
constructor(opts) {
|
|
1376
|
-
super({
|
|
1377
|
-
name: "ItemContentMismatchException",
|
|
1378
|
-
$fault: "client",
|
|
1379
|
-
...opts,
|
|
1380
|
-
});
|
|
1381
|
-
Object.setPrototypeOf(this, ItemContentMismatchException.prototype);
|
|
1382
|
-
this.TypeName = opts.TypeName;
|
|
1383
|
-
this.Message = opts.Message;
|
|
1384
|
-
}
|
|
1385
|
-
};
|
|
1386
|
-
exports.SubTypeCountLimitExceededException = class SubTypeCountLimitExceededException extends __BaseException {
|
|
1387
|
-
name = "SubTypeCountLimitExceededException";
|
|
1388
|
-
$fault = "client";
|
|
1389
|
-
Message;
|
|
1390
|
-
constructor(opts) {
|
|
1391
|
-
super({
|
|
1392
|
-
name: "SubTypeCountLimitExceededException",
|
|
1393
|
-
$fault: "client",
|
|
1394
|
-
...opts,
|
|
1395
|
-
});
|
|
1396
|
-
Object.setPrototypeOf(this, SubTypeCountLimitExceededException.prototype);
|
|
1397
|
-
this.Message = opts.Message;
|
|
1398
|
-
}
|
|
1399
|
-
};
|
|
1400
|
-
exports.UnsupportedInventoryItemContextException = class UnsupportedInventoryItemContextException extends __BaseException {
|
|
1401
|
-
name = "UnsupportedInventoryItemContextException";
|
|
1402
|
-
$fault = "client";
|
|
1403
|
-
TypeName;
|
|
1404
|
-
Message;
|
|
1405
|
-
constructor(opts) {
|
|
1406
|
-
super({
|
|
1407
|
-
name: "UnsupportedInventoryItemContextException",
|
|
1408
|
-
$fault: "client",
|
|
1409
|
-
...opts,
|
|
1410
|
-
});
|
|
1411
|
-
Object.setPrototypeOf(this, UnsupportedInventoryItemContextException.prototype);
|
|
1412
|
-
this.TypeName = opts.TypeName;
|
|
1413
|
-
this.Message = opts.Message;
|
|
1414
|
-
}
|
|
1415
|
-
};
|
|
1416
|
-
exports.UnsupportedInventorySchemaVersionException = class UnsupportedInventorySchemaVersionException extends __BaseException {
|
|
1417
|
-
name = "UnsupportedInventorySchemaVersionException";
|
|
1418
|
-
$fault = "client";
|
|
1419
|
-
Message;
|
|
1420
|
-
constructor(opts) {
|
|
1421
|
-
super({
|
|
1422
|
-
name: "UnsupportedInventorySchemaVersionException",
|
|
1423
|
-
$fault: "client",
|
|
1424
|
-
...opts,
|
|
1425
|
-
});
|
|
1426
|
-
Object.setPrototypeOf(this, UnsupportedInventorySchemaVersionException.prototype);
|
|
1427
|
-
this.Message = opts.Message;
|
|
1428
|
-
}
|
|
1429
|
-
};
|
|
1430
|
-
exports.HierarchyLevelLimitExceededException = class HierarchyLevelLimitExceededException extends __BaseException {
|
|
1431
|
-
name = "HierarchyLevelLimitExceededException";
|
|
1432
|
-
$fault = "client";
|
|
1433
|
-
constructor(opts) {
|
|
1434
|
-
super({
|
|
1435
|
-
name: "HierarchyLevelLimitExceededException",
|
|
1436
|
-
$fault: "client",
|
|
1437
|
-
...opts,
|
|
1438
|
-
});
|
|
1439
|
-
Object.setPrototypeOf(this, HierarchyLevelLimitExceededException.prototype);
|
|
1440
|
-
}
|
|
1441
|
-
};
|
|
1442
|
-
exports.HierarchyTypeMismatchException = class HierarchyTypeMismatchException extends __BaseException {
|
|
1443
|
-
name = "HierarchyTypeMismatchException";
|
|
1444
|
-
$fault = "client";
|
|
1445
|
-
constructor(opts) {
|
|
1446
|
-
super({
|
|
1447
|
-
name: "HierarchyTypeMismatchException",
|
|
1448
|
-
$fault: "client",
|
|
1449
|
-
...opts,
|
|
1450
|
-
});
|
|
1451
|
-
Object.setPrototypeOf(this, HierarchyTypeMismatchException.prototype);
|
|
1452
|
-
}
|
|
1453
|
-
};
|
|
1454
|
-
exports.IncompatiblePolicyException = class IncompatiblePolicyException extends __BaseException {
|
|
1455
|
-
name = "IncompatiblePolicyException";
|
|
1456
|
-
$fault = "client";
|
|
1457
|
-
constructor(opts) {
|
|
1458
|
-
super({
|
|
1459
|
-
name: "IncompatiblePolicyException",
|
|
1460
|
-
$fault: "client",
|
|
1461
|
-
...opts,
|
|
1462
|
-
});
|
|
1463
|
-
Object.setPrototypeOf(this, IncompatiblePolicyException.prototype);
|
|
1464
|
-
}
|
|
1465
|
-
};
|
|
1466
|
-
exports.InvalidAllowedPatternException = class InvalidAllowedPatternException extends __BaseException {
|
|
1467
|
-
name = "InvalidAllowedPatternException";
|
|
1468
|
-
$fault = "client";
|
|
1469
|
-
constructor(opts) {
|
|
1470
|
-
super({
|
|
1471
|
-
name: "InvalidAllowedPatternException",
|
|
1472
|
-
$fault: "client",
|
|
1473
|
-
...opts,
|
|
1474
|
-
});
|
|
1475
|
-
Object.setPrototypeOf(this, InvalidAllowedPatternException.prototype);
|
|
1476
|
-
}
|
|
1477
|
-
};
|
|
1478
|
-
exports.InvalidPolicyAttributeException = class InvalidPolicyAttributeException extends __BaseException {
|
|
1479
|
-
name = "InvalidPolicyAttributeException";
|
|
1480
|
-
$fault = "client";
|
|
1481
|
-
constructor(opts) {
|
|
1482
|
-
super({
|
|
1483
|
-
name: "InvalidPolicyAttributeException",
|
|
1484
|
-
$fault: "client",
|
|
1485
|
-
...opts,
|
|
1486
|
-
});
|
|
1487
|
-
Object.setPrototypeOf(this, InvalidPolicyAttributeException.prototype);
|
|
1488
|
-
}
|
|
1489
|
-
};
|
|
1490
|
-
exports.InvalidPolicyTypeException = class InvalidPolicyTypeException extends __BaseException {
|
|
1491
|
-
name = "InvalidPolicyTypeException";
|
|
1492
|
-
$fault = "client";
|
|
1493
|
-
constructor(opts) {
|
|
1494
|
-
super({
|
|
1495
|
-
name: "InvalidPolicyTypeException",
|
|
1496
|
-
$fault: "client",
|
|
1497
|
-
...opts,
|
|
1498
|
-
});
|
|
1499
|
-
Object.setPrototypeOf(this, InvalidPolicyTypeException.prototype);
|
|
1500
|
-
}
|
|
1501
|
-
};
|
|
1502
|
-
exports.ParameterAlreadyExists = class ParameterAlreadyExists extends __BaseException {
|
|
1503
|
-
name = "ParameterAlreadyExists";
|
|
1504
|
-
$fault = "client";
|
|
1505
|
-
constructor(opts) {
|
|
1506
|
-
super({
|
|
1507
|
-
name: "ParameterAlreadyExists",
|
|
1508
|
-
$fault: "client",
|
|
1509
|
-
...opts,
|
|
1510
|
-
});
|
|
1511
|
-
Object.setPrototypeOf(this, ParameterAlreadyExists.prototype);
|
|
1512
|
-
}
|
|
1513
|
-
};
|
|
1514
|
-
exports.ParameterLimitExceeded = class ParameterLimitExceeded extends __BaseException {
|
|
1515
|
-
name = "ParameterLimitExceeded";
|
|
1516
|
-
$fault = "client";
|
|
1517
|
-
constructor(opts) {
|
|
1518
|
-
super({
|
|
1519
|
-
name: "ParameterLimitExceeded",
|
|
1520
|
-
$fault: "client",
|
|
1521
|
-
...opts,
|
|
1522
|
-
});
|
|
1523
|
-
Object.setPrototypeOf(this, ParameterLimitExceeded.prototype);
|
|
1524
|
-
}
|
|
1525
|
-
};
|
|
1526
|
-
exports.ParameterMaxVersionLimitExceeded = class ParameterMaxVersionLimitExceeded extends __BaseException {
|
|
1527
|
-
name = "ParameterMaxVersionLimitExceeded";
|
|
1528
|
-
$fault = "client";
|
|
1529
|
-
constructor(opts) {
|
|
1530
|
-
super({
|
|
1531
|
-
name: "ParameterMaxVersionLimitExceeded",
|
|
1532
|
-
$fault: "client",
|
|
1533
|
-
...opts,
|
|
1534
|
-
});
|
|
1535
|
-
Object.setPrototypeOf(this, ParameterMaxVersionLimitExceeded.prototype);
|
|
1536
|
-
}
|
|
1537
|
-
};
|
|
1538
|
-
exports.ParameterPatternMismatchException = class ParameterPatternMismatchException extends __BaseException {
|
|
1539
|
-
name = "ParameterPatternMismatchException";
|
|
1540
|
-
$fault = "client";
|
|
1541
|
-
constructor(opts) {
|
|
1542
|
-
super({
|
|
1543
|
-
name: "ParameterPatternMismatchException",
|
|
1544
|
-
$fault: "client",
|
|
1545
|
-
...opts,
|
|
1546
|
-
});
|
|
1547
|
-
Object.setPrototypeOf(this, ParameterPatternMismatchException.prototype);
|
|
1548
|
-
}
|
|
1549
|
-
};
|
|
1550
|
-
exports.PoliciesLimitExceededException = class PoliciesLimitExceededException extends __BaseException {
|
|
1551
|
-
name = "PoliciesLimitExceededException";
|
|
1552
|
-
$fault = "client";
|
|
1553
|
-
constructor(opts) {
|
|
1554
|
-
super({
|
|
1555
|
-
name: "PoliciesLimitExceededException",
|
|
1556
|
-
$fault: "client",
|
|
1557
|
-
...opts,
|
|
1558
|
-
});
|
|
1559
|
-
Object.setPrototypeOf(this, PoliciesLimitExceededException.prototype);
|
|
1560
|
-
}
|
|
1561
|
-
};
|
|
1562
|
-
exports.UnsupportedParameterType = class UnsupportedParameterType extends __BaseException {
|
|
1563
|
-
name = "UnsupportedParameterType";
|
|
1564
|
-
$fault = "client";
|
|
1565
|
-
constructor(opts) {
|
|
1566
|
-
super({
|
|
1567
|
-
name: "UnsupportedParameterType",
|
|
1568
|
-
$fault: "client",
|
|
1569
|
-
...opts,
|
|
1570
|
-
});
|
|
1571
|
-
Object.setPrototypeOf(this, UnsupportedParameterType.prototype);
|
|
1572
|
-
}
|
|
1573
|
-
};
|
|
1574
|
-
exports.ResourcePolicyLimitExceededException = class ResourcePolicyLimitExceededException extends __BaseException {
|
|
1575
|
-
name = "ResourcePolicyLimitExceededException";
|
|
1576
|
-
$fault = "client";
|
|
1577
|
-
Limit;
|
|
1578
|
-
LimitType;
|
|
1579
|
-
Message;
|
|
1580
|
-
constructor(opts) {
|
|
1581
|
-
super({
|
|
1582
|
-
name: "ResourcePolicyLimitExceededException",
|
|
1583
|
-
$fault: "client",
|
|
1584
|
-
...opts,
|
|
1585
|
-
});
|
|
1586
|
-
Object.setPrototypeOf(this, ResourcePolicyLimitExceededException.prototype);
|
|
1587
|
-
this.Limit = opts.Limit;
|
|
1588
|
-
this.LimitType = opts.LimitType;
|
|
1589
|
-
this.Message = opts.Message;
|
|
1590
|
-
}
|
|
1591
|
-
};
|
|
1592
|
-
exports.FeatureNotAvailableException = class FeatureNotAvailableException extends __BaseException {
|
|
1593
|
-
name = "FeatureNotAvailableException";
|
|
1594
|
-
$fault = "client";
|
|
1595
|
-
Message;
|
|
1596
|
-
constructor(opts) {
|
|
1597
|
-
super({
|
|
1598
|
-
name: "FeatureNotAvailableException",
|
|
1599
|
-
$fault: "client",
|
|
1600
|
-
...opts,
|
|
1601
|
-
});
|
|
1602
|
-
Object.setPrototypeOf(this, FeatureNotAvailableException.prototype);
|
|
1603
|
-
this.Message = opts.Message;
|
|
1604
|
-
}
|
|
1605
|
-
};
|
|
1606
|
-
exports.AutomationStepNotFoundException = class AutomationStepNotFoundException extends __BaseException {
|
|
1607
|
-
name = "AutomationStepNotFoundException";
|
|
1608
|
-
$fault = "client";
|
|
1609
|
-
Message;
|
|
1610
|
-
constructor(opts) {
|
|
1611
|
-
super({
|
|
1612
|
-
name: "AutomationStepNotFoundException",
|
|
1613
|
-
$fault: "client",
|
|
1614
|
-
...opts,
|
|
1615
|
-
});
|
|
1616
|
-
Object.setPrototypeOf(this, AutomationStepNotFoundException.prototype);
|
|
1617
|
-
this.Message = opts.Message;
|
|
1618
|
-
}
|
|
1619
|
-
};
|
|
1620
|
-
exports.InvalidAutomationSignalException = class InvalidAutomationSignalException extends __BaseException {
|
|
1621
|
-
name = "InvalidAutomationSignalException";
|
|
1622
|
-
$fault = "client";
|
|
1623
|
-
Message;
|
|
1624
|
-
constructor(opts) {
|
|
1625
|
-
super({
|
|
1626
|
-
name: "InvalidAutomationSignalException",
|
|
1627
|
-
$fault: "client",
|
|
1628
|
-
...opts,
|
|
1629
|
-
});
|
|
1630
|
-
Object.setPrototypeOf(this, InvalidAutomationSignalException.prototype);
|
|
1631
|
-
this.Message = opts.Message;
|
|
1632
|
-
}
|
|
1633
|
-
};
|
|
1634
|
-
exports.InvalidNotificationConfig = class InvalidNotificationConfig extends __BaseException {
|
|
1635
|
-
name = "InvalidNotificationConfig";
|
|
1636
|
-
$fault = "client";
|
|
1637
|
-
Message;
|
|
1638
|
-
constructor(opts) {
|
|
1639
|
-
super({
|
|
1640
|
-
name: "InvalidNotificationConfig",
|
|
1641
|
-
$fault: "client",
|
|
1642
|
-
...opts,
|
|
1643
|
-
});
|
|
1644
|
-
Object.setPrototypeOf(this, InvalidNotificationConfig.prototype);
|
|
1645
|
-
this.Message = opts.Message;
|
|
1646
|
-
}
|
|
1647
|
-
};
|
|
1648
|
-
exports.InvalidOutputFolder = class InvalidOutputFolder extends __BaseException {
|
|
1649
|
-
name = "InvalidOutputFolder";
|
|
1650
|
-
$fault = "client";
|
|
1651
|
-
constructor(opts) {
|
|
1652
|
-
super({
|
|
1653
|
-
name: "InvalidOutputFolder",
|
|
1654
|
-
$fault: "client",
|
|
1655
|
-
...opts,
|
|
1656
|
-
});
|
|
1657
|
-
Object.setPrototypeOf(this, InvalidOutputFolder.prototype);
|
|
1658
|
-
}
|
|
1659
|
-
};
|
|
1660
|
-
exports.InvalidRole = class InvalidRole extends __BaseException {
|
|
1661
|
-
name = "InvalidRole";
|
|
1662
|
-
$fault = "client";
|
|
1663
|
-
Message;
|
|
1664
|
-
constructor(opts) {
|
|
1665
|
-
super({
|
|
1666
|
-
name: "InvalidRole",
|
|
1667
|
-
$fault: "client",
|
|
1668
|
-
...opts,
|
|
1669
|
-
});
|
|
1670
|
-
Object.setPrototypeOf(this, InvalidRole.prototype);
|
|
1671
|
-
this.Message = opts.Message;
|
|
1672
|
-
}
|
|
1673
|
-
};
|
|
1674
|
-
exports.ServiceQuotaExceededException = class ServiceQuotaExceededException extends __BaseException {
|
|
1675
|
-
name = "ServiceQuotaExceededException";
|
|
1676
|
-
$fault = "client";
|
|
1677
|
-
Message;
|
|
1678
|
-
ResourceId;
|
|
1679
|
-
ResourceType;
|
|
1680
|
-
QuotaCode;
|
|
1681
|
-
ServiceCode;
|
|
1682
|
-
constructor(opts) {
|
|
1683
|
-
super({
|
|
1684
|
-
name: "ServiceQuotaExceededException",
|
|
1685
|
-
$fault: "client",
|
|
1686
|
-
...opts,
|
|
1687
|
-
});
|
|
1688
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
1689
|
-
this.Message = opts.Message;
|
|
1690
|
-
this.ResourceId = opts.ResourceId;
|
|
1691
|
-
this.ResourceType = opts.ResourceType;
|
|
1692
|
-
this.QuotaCode = opts.QuotaCode;
|
|
1693
|
-
this.ServiceCode = opts.ServiceCode;
|
|
1694
|
-
}
|
|
1695
|
-
};
|
|
1696
|
-
exports.InvalidAssociation = class InvalidAssociation extends __BaseException {
|
|
1697
|
-
name = "InvalidAssociation";
|
|
1698
|
-
$fault = "client";
|
|
1699
|
-
Message;
|
|
1700
|
-
constructor(opts) {
|
|
1701
|
-
super({
|
|
1702
|
-
name: "InvalidAssociation",
|
|
1703
|
-
$fault: "client",
|
|
1704
|
-
...opts,
|
|
1705
|
-
});
|
|
1706
|
-
Object.setPrototypeOf(this, InvalidAssociation.prototype);
|
|
1707
|
-
this.Message = opts.Message;
|
|
1708
|
-
}
|
|
1709
|
-
};
|
|
1710
|
-
exports.AutomationDefinitionNotFoundException = class AutomationDefinitionNotFoundException extends __BaseException {
|
|
1711
|
-
name = "AutomationDefinitionNotFoundException";
|
|
1712
|
-
$fault = "client";
|
|
1713
|
-
Message;
|
|
1714
|
-
constructor(opts) {
|
|
1715
|
-
super({
|
|
1716
|
-
name: "AutomationDefinitionNotFoundException",
|
|
1717
|
-
$fault: "client",
|
|
1718
|
-
...opts,
|
|
1719
|
-
});
|
|
1720
|
-
Object.setPrototypeOf(this, AutomationDefinitionNotFoundException.prototype);
|
|
1721
|
-
this.Message = opts.Message;
|
|
1722
|
-
}
|
|
1723
|
-
};
|
|
1724
|
-
exports.AutomationDefinitionVersionNotFoundException = class AutomationDefinitionVersionNotFoundException extends __BaseException {
|
|
1725
|
-
name = "AutomationDefinitionVersionNotFoundException";
|
|
1726
|
-
$fault = "client";
|
|
1727
|
-
Message;
|
|
1728
|
-
constructor(opts) {
|
|
1729
|
-
super({
|
|
1730
|
-
name: "AutomationDefinitionVersionNotFoundException",
|
|
1731
|
-
$fault: "client",
|
|
1732
|
-
...opts,
|
|
1733
|
-
});
|
|
1734
|
-
Object.setPrototypeOf(this, AutomationDefinitionVersionNotFoundException.prototype);
|
|
1735
|
-
this.Message = opts.Message;
|
|
1736
|
-
}
|
|
1737
|
-
};
|
|
1738
|
-
exports.AutomationExecutionLimitExceededException = class AutomationExecutionLimitExceededException extends __BaseException {
|
|
1739
|
-
name = "AutomationExecutionLimitExceededException";
|
|
1740
|
-
$fault = "client";
|
|
1741
|
-
Message;
|
|
1742
|
-
constructor(opts) {
|
|
1743
|
-
super({
|
|
1744
|
-
name: "AutomationExecutionLimitExceededException",
|
|
1745
|
-
$fault: "client",
|
|
1746
|
-
...opts,
|
|
1747
|
-
});
|
|
1748
|
-
Object.setPrototypeOf(this, AutomationExecutionLimitExceededException.prototype);
|
|
1749
|
-
this.Message = opts.Message;
|
|
1750
|
-
}
|
|
1751
|
-
};
|
|
1752
|
-
exports.InvalidAutomationExecutionParametersException = class InvalidAutomationExecutionParametersException extends __BaseException {
|
|
1753
|
-
name = "InvalidAutomationExecutionParametersException";
|
|
1754
|
-
$fault = "client";
|
|
1755
|
-
Message;
|
|
1756
|
-
constructor(opts) {
|
|
1757
|
-
super({
|
|
1758
|
-
name: "InvalidAutomationExecutionParametersException",
|
|
1759
|
-
$fault: "client",
|
|
1760
|
-
...opts,
|
|
1761
|
-
});
|
|
1762
|
-
Object.setPrototypeOf(this, InvalidAutomationExecutionParametersException.prototype);
|
|
1763
|
-
this.Message = opts.Message;
|
|
1764
|
-
}
|
|
1765
|
-
};
|
|
1766
|
-
exports.AutomationDefinitionNotApprovedException = class AutomationDefinitionNotApprovedException extends __BaseException {
|
|
1767
|
-
name = "AutomationDefinitionNotApprovedException";
|
|
1768
|
-
$fault = "client";
|
|
1769
|
-
Message;
|
|
1770
|
-
constructor(opts) {
|
|
1771
|
-
super({
|
|
1772
|
-
name: "AutomationDefinitionNotApprovedException",
|
|
1773
|
-
$fault: "client",
|
|
1774
|
-
...opts,
|
|
1775
|
-
});
|
|
1776
|
-
Object.setPrototypeOf(this, AutomationDefinitionNotApprovedException.prototype);
|
|
1777
|
-
this.Message = opts.Message;
|
|
1778
|
-
}
|
|
1779
|
-
};
|
|
1780
|
-
exports.TargetNotConnected = class TargetNotConnected extends __BaseException {
|
|
1781
|
-
name = "TargetNotConnected";
|
|
1782
|
-
$fault = "client";
|
|
1783
|
-
Message;
|
|
1784
|
-
constructor(opts) {
|
|
1785
|
-
super({
|
|
1786
|
-
name: "TargetNotConnected",
|
|
1787
|
-
$fault: "client",
|
|
1788
|
-
...opts,
|
|
1789
|
-
});
|
|
1790
|
-
Object.setPrototypeOf(this, TargetNotConnected.prototype);
|
|
1791
|
-
this.Message = opts.Message;
|
|
1792
|
-
}
|
|
1793
|
-
};
|
|
1794
|
-
exports.InvalidAutomationStatusUpdateException = class InvalidAutomationStatusUpdateException extends __BaseException {
|
|
1795
|
-
name = "InvalidAutomationStatusUpdateException";
|
|
1796
|
-
$fault = "client";
|
|
1797
|
-
Message;
|
|
1798
|
-
constructor(opts) {
|
|
1799
|
-
super({
|
|
1800
|
-
name: "InvalidAutomationStatusUpdateException",
|
|
1801
|
-
$fault: "client",
|
|
1802
|
-
...opts,
|
|
1803
|
-
});
|
|
1804
|
-
Object.setPrototypeOf(this, InvalidAutomationStatusUpdateException.prototype);
|
|
1805
|
-
this.Message = opts.Message;
|
|
1806
|
-
}
|
|
1807
|
-
};
|
|
1808
|
-
exports.AssociationVersionLimitExceeded = class AssociationVersionLimitExceeded extends __BaseException {
|
|
1809
|
-
name = "AssociationVersionLimitExceeded";
|
|
1810
|
-
$fault = "client";
|
|
1811
|
-
Message;
|
|
1812
|
-
constructor(opts) {
|
|
1813
|
-
super({
|
|
1814
|
-
name: "AssociationVersionLimitExceeded",
|
|
1815
|
-
$fault: "client",
|
|
1816
|
-
...opts,
|
|
1817
|
-
});
|
|
1818
|
-
Object.setPrototypeOf(this, AssociationVersionLimitExceeded.prototype);
|
|
1819
|
-
this.Message = opts.Message;
|
|
1820
|
-
}
|
|
1821
|
-
};
|
|
1822
|
-
exports.InvalidUpdate = class InvalidUpdate extends __BaseException {
|
|
1823
|
-
name = "InvalidUpdate";
|
|
1824
|
-
$fault = "client";
|
|
1825
|
-
Message;
|
|
1826
|
-
constructor(opts) {
|
|
1827
|
-
super({
|
|
1828
|
-
name: "InvalidUpdate",
|
|
1829
|
-
$fault: "client",
|
|
1830
|
-
...opts,
|
|
1831
|
-
});
|
|
1832
|
-
Object.setPrototypeOf(this, InvalidUpdate.prototype);
|
|
1833
|
-
this.Message = opts.Message;
|
|
1834
|
-
}
|
|
1835
|
-
};
|
|
1836
|
-
exports.StatusUnchanged = class StatusUnchanged extends __BaseException {
|
|
1837
|
-
name = "StatusUnchanged";
|
|
1838
|
-
$fault = "client";
|
|
1839
|
-
constructor(opts) {
|
|
1840
|
-
super({
|
|
1841
|
-
name: "StatusUnchanged",
|
|
1842
|
-
$fault: "client",
|
|
1843
|
-
...opts,
|
|
1844
|
-
});
|
|
1845
|
-
Object.setPrototypeOf(this, StatusUnchanged.prototype);
|
|
1846
|
-
}
|
|
1847
|
-
};
|
|
1848
|
-
exports.DocumentVersionLimitExceeded = class DocumentVersionLimitExceeded extends __BaseException {
|
|
1849
|
-
name = "DocumentVersionLimitExceeded";
|
|
1850
|
-
$fault = "client";
|
|
1851
|
-
Message;
|
|
1852
|
-
constructor(opts) {
|
|
1853
|
-
super({
|
|
1854
|
-
name: "DocumentVersionLimitExceeded",
|
|
1855
|
-
$fault: "client",
|
|
1856
|
-
...opts,
|
|
1857
|
-
});
|
|
1858
|
-
Object.setPrototypeOf(this, DocumentVersionLimitExceeded.prototype);
|
|
1859
|
-
this.Message = opts.Message;
|
|
1860
|
-
}
|
|
1861
|
-
};
|
|
1862
|
-
exports.DuplicateDocumentContent = class DuplicateDocumentContent extends __BaseException {
|
|
1863
|
-
name = "DuplicateDocumentContent";
|
|
1864
|
-
$fault = "client";
|
|
1865
|
-
Message;
|
|
1866
|
-
constructor(opts) {
|
|
1867
|
-
super({
|
|
1868
|
-
name: "DuplicateDocumentContent",
|
|
1869
|
-
$fault: "client",
|
|
1870
|
-
...opts,
|
|
1871
|
-
});
|
|
1872
|
-
Object.setPrototypeOf(this, DuplicateDocumentContent.prototype);
|
|
1873
|
-
this.Message = opts.Message;
|
|
1874
|
-
}
|
|
1875
|
-
};
|
|
1876
|
-
exports.DuplicateDocumentVersionName = class DuplicateDocumentVersionName extends __BaseException {
|
|
1877
|
-
name = "DuplicateDocumentVersionName";
|
|
1878
|
-
$fault = "client";
|
|
1879
|
-
Message;
|
|
1880
|
-
constructor(opts) {
|
|
1881
|
-
super({
|
|
1882
|
-
name: "DuplicateDocumentVersionName",
|
|
1883
|
-
$fault: "client",
|
|
1884
|
-
...opts,
|
|
1885
|
-
});
|
|
1886
|
-
Object.setPrototypeOf(this, DuplicateDocumentVersionName.prototype);
|
|
1887
|
-
this.Message = opts.Message;
|
|
1888
|
-
}
|
|
1889
|
-
};
|
|
1890
|
-
exports.OpsMetadataKeyLimitExceededException = class OpsMetadataKeyLimitExceededException extends __BaseException {
|
|
1891
|
-
name = "OpsMetadataKeyLimitExceededException";
|
|
1892
|
-
$fault = "client";
|
|
1893
|
-
constructor(opts) {
|
|
1894
|
-
super({
|
|
1895
|
-
name: "OpsMetadataKeyLimitExceededException",
|
|
1896
|
-
$fault: "client",
|
|
1897
|
-
...opts,
|
|
1898
|
-
});
|
|
1899
|
-
Object.setPrototypeOf(this, OpsMetadataKeyLimitExceededException.prototype);
|
|
1900
|
-
}
|
|
1901
|
-
};
|
|
1902
|
-
exports.ResourceDataSyncConflictException = class ResourceDataSyncConflictException extends __BaseException {
|
|
1903
|
-
name = "ResourceDataSyncConflictException";
|
|
1904
|
-
$fault = "client";
|
|
1905
|
-
Message;
|
|
1906
|
-
constructor(opts) {
|
|
1907
|
-
super({
|
|
1908
|
-
name: "ResourceDataSyncConflictException",
|
|
1909
|
-
$fault: "client",
|
|
1910
|
-
...opts,
|
|
1911
|
-
});
|
|
1912
|
-
Object.setPrototypeOf(this, ResourceDataSyncConflictException.prototype);
|
|
1913
|
-
this.Message = opts.Message;
|
|
1914
|
-
}
|
|
1915
|
-
};
|