@aws-sdk/client-ssm 3.721.0 → 3.726.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 +1529 -1117
- package/dist-es/SSMClient.js +1 -0
- package/dist-es/models/models_0.js +211 -146
- package/dist-es/models/models_1.js +108 -80
- package/dist-es/models/models_2.js +64 -44
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
|
@@ -12,63 +12,65 @@ export const ResourceTypeForTagging = {
|
|
|
12
12
|
PATCH_BASELINE: "PatchBaseline",
|
|
13
13
|
};
|
|
14
14
|
export class InternalServerError extends __BaseException {
|
|
15
|
+
name = "InternalServerError";
|
|
16
|
+
$fault = "server";
|
|
17
|
+
Message;
|
|
15
18
|
constructor(opts) {
|
|
16
19
|
super({
|
|
17
20
|
name: "InternalServerError",
|
|
18
21
|
$fault: "server",
|
|
19
22
|
...opts,
|
|
20
23
|
});
|
|
21
|
-
this.name = "InternalServerError";
|
|
22
|
-
this.$fault = "server";
|
|
23
24
|
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
24
25
|
this.Message = opts.Message;
|
|
25
26
|
}
|
|
26
27
|
}
|
|
27
28
|
export class InvalidResourceId extends __BaseException {
|
|
29
|
+
name = "InvalidResourceId";
|
|
30
|
+
$fault = "client";
|
|
28
31
|
constructor(opts) {
|
|
29
32
|
super({
|
|
30
33
|
name: "InvalidResourceId",
|
|
31
34
|
$fault: "client",
|
|
32
35
|
...opts,
|
|
33
36
|
});
|
|
34
|
-
this.name = "InvalidResourceId";
|
|
35
|
-
this.$fault = "client";
|
|
36
37
|
Object.setPrototypeOf(this, InvalidResourceId.prototype);
|
|
37
38
|
}
|
|
38
39
|
}
|
|
39
40
|
export class InvalidResourceType extends __BaseException {
|
|
41
|
+
name = "InvalidResourceType";
|
|
42
|
+
$fault = "client";
|
|
40
43
|
constructor(opts) {
|
|
41
44
|
super({
|
|
42
45
|
name: "InvalidResourceType",
|
|
43
46
|
$fault: "client",
|
|
44
47
|
...opts,
|
|
45
48
|
});
|
|
46
|
-
this.name = "InvalidResourceType";
|
|
47
|
-
this.$fault = "client";
|
|
48
49
|
Object.setPrototypeOf(this, InvalidResourceType.prototype);
|
|
49
50
|
}
|
|
50
51
|
}
|
|
51
52
|
export class TooManyTagsError extends __BaseException {
|
|
53
|
+
name = "TooManyTagsError";
|
|
54
|
+
$fault = "client";
|
|
52
55
|
constructor(opts) {
|
|
53
56
|
super({
|
|
54
57
|
name: "TooManyTagsError",
|
|
55
58
|
$fault: "client",
|
|
56
59
|
...opts,
|
|
57
60
|
});
|
|
58
|
-
this.name = "TooManyTagsError";
|
|
59
|
-
this.$fault = "client";
|
|
60
61
|
Object.setPrototypeOf(this, TooManyTagsError.prototype);
|
|
61
62
|
}
|
|
62
63
|
}
|
|
63
64
|
export class TooManyUpdates extends __BaseException {
|
|
65
|
+
name = "TooManyUpdates";
|
|
66
|
+
$fault = "client";
|
|
67
|
+
Message;
|
|
64
68
|
constructor(opts) {
|
|
65
69
|
super({
|
|
66
70
|
name: "TooManyUpdates",
|
|
67
71
|
$fault: "client",
|
|
68
72
|
...opts,
|
|
69
73
|
});
|
|
70
|
-
this.name = "TooManyUpdates";
|
|
71
|
-
this.$fault = "client";
|
|
72
74
|
Object.setPrototypeOf(this, TooManyUpdates.prototype);
|
|
73
75
|
this.Message = opts.Message;
|
|
74
76
|
}
|
|
@@ -78,54 +80,62 @@ export const ExternalAlarmState = {
|
|
|
78
80
|
UNKNOWN: "UNKNOWN",
|
|
79
81
|
};
|
|
80
82
|
export class AlreadyExistsException extends __BaseException {
|
|
83
|
+
name = "AlreadyExistsException";
|
|
84
|
+
$fault = "client";
|
|
85
|
+
Message;
|
|
81
86
|
constructor(opts) {
|
|
82
87
|
super({
|
|
83
88
|
name: "AlreadyExistsException",
|
|
84
89
|
$fault: "client",
|
|
85
90
|
...opts,
|
|
86
91
|
});
|
|
87
|
-
this.name = "AlreadyExistsException";
|
|
88
|
-
this.$fault = "client";
|
|
89
92
|
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
90
93
|
this.Message = opts.Message;
|
|
91
94
|
}
|
|
92
95
|
}
|
|
93
96
|
export class OpsItemConflictException extends __BaseException {
|
|
97
|
+
name = "OpsItemConflictException";
|
|
98
|
+
$fault = "client";
|
|
99
|
+
Message;
|
|
94
100
|
constructor(opts) {
|
|
95
101
|
super({
|
|
96
102
|
name: "OpsItemConflictException",
|
|
97
103
|
$fault: "client",
|
|
98
104
|
...opts,
|
|
99
105
|
});
|
|
100
|
-
this.name = "OpsItemConflictException";
|
|
101
|
-
this.$fault = "client";
|
|
102
106
|
Object.setPrototypeOf(this, OpsItemConflictException.prototype);
|
|
103
107
|
this.Message = opts.Message;
|
|
104
108
|
}
|
|
105
109
|
}
|
|
106
110
|
export class OpsItemInvalidParameterException extends __BaseException {
|
|
111
|
+
name = "OpsItemInvalidParameterException";
|
|
112
|
+
$fault = "client";
|
|
113
|
+
ParameterNames;
|
|
114
|
+
Message;
|
|
107
115
|
constructor(opts) {
|
|
108
116
|
super({
|
|
109
117
|
name: "OpsItemInvalidParameterException",
|
|
110
118
|
$fault: "client",
|
|
111
119
|
...opts,
|
|
112
120
|
});
|
|
113
|
-
this.name = "OpsItemInvalidParameterException";
|
|
114
|
-
this.$fault = "client";
|
|
115
121
|
Object.setPrototypeOf(this, OpsItemInvalidParameterException.prototype);
|
|
116
122
|
this.ParameterNames = opts.ParameterNames;
|
|
117
123
|
this.Message = opts.Message;
|
|
118
124
|
}
|
|
119
125
|
}
|
|
120
126
|
export class OpsItemLimitExceededException extends __BaseException {
|
|
127
|
+
name = "OpsItemLimitExceededException";
|
|
128
|
+
$fault = "client";
|
|
129
|
+
ResourceTypes;
|
|
130
|
+
Limit;
|
|
131
|
+
LimitType;
|
|
132
|
+
Message;
|
|
121
133
|
constructor(opts) {
|
|
122
134
|
super({
|
|
123
135
|
name: "OpsItemLimitExceededException",
|
|
124
136
|
$fault: "client",
|
|
125
137
|
...opts,
|
|
126
138
|
});
|
|
127
|
-
this.name = "OpsItemLimitExceededException";
|
|
128
|
-
this.$fault = "client";
|
|
129
139
|
Object.setPrototypeOf(this, OpsItemLimitExceededException.prototype);
|
|
130
140
|
this.ResourceTypes = opts.ResourceTypes;
|
|
131
141
|
this.Limit = opts.Limit;
|
|
@@ -134,27 +144,31 @@ export class OpsItemLimitExceededException extends __BaseException {
|
|
|
134
144
|
}
|
|
135
145
|
}
|
|
136
146
|
export class OpsItemNotFoundException extends __BaseException {
|
|
147
|
+
name = "OpsItemNotFoundException";
|
|
148
|
+
$fault = "client";
|
|
149
|
+
Message;
|
|
137
150
|
constructor(opts) {
|
|
138
151
|
super({
|
|
139
152
|
name: "OpsItemNotFoundException",
|
|
140
153
|
$fault: "client",
|
|
141
154
|
...opts,
|
|
142
155
|
});
|
|
143
|
-
this.name = "OpsItemNotFoundException";
|
|
144
|
-
this.$fault = "client";
|
|
145
156
|
Object.setPrototypeOf(this, OpsItemNotFoundException.prototype);
|
|
146
157
|
this.Message = opts.Message;
|
|
147
158
|
}
|
|
148
159
|
}
|
|
149
160
|
export class OpsItemRelatedItemAlreadyExistsException extends __BaseException {
|
|
161
|
+
name = "OpsItemRelatedItemAlreadyExistsException";
|
|
162
|
+
$fault = "client";
|
|
163
|
+
Message;
|
|
164
|
+
ResourceUri;
|
|
165
|
+
OpsItemId;
|
|
150
166
|
constructor(opts) {
|
|
151
167
|
super({
|
|
152
168
|
name: "OpsItemRelatedItemAlreadyExistsException",
|
|
153
169
|
$fault: "client",
|
|
154
170
|
...opts,
|
|
155
171
|
});
|
|
156
|
-
this.name = "OpsItemRelatedItemAlreadyExistsException";
|
|
157
|
-
this.$fault = "client";
|
|
158
172
|
Object.setPrototypeOf(this, OpsItemRelatedItemAlreadyExistsException.prototype);
|
|
159
173
|
this.Message = opts.Message;
|
|
160
174
|
this.ResourceUri = opts.ResourceUri;
|
|
@@ -162,89 +176,92 @@ export class OpsItemRelatedItemAlreadyExistsException extends __BaseException {
|
|
|
162
176
|
}
|
|
163
177
|
}
|
|
164
178
|
export class DuplicateInstanceId extends __BaseException {
|
|
179
|
+
name = "DuplicateInstanceId";
|
|
180
|
+
$fault = "client";
|
|
165
181
|
constructor(opts) {
|
|
166
182
|
super({
|
|
167
183
|
name: "DuplicateInstanceId",
|
|
168
184
|
$fault: "client",
|
|
169
185
|
...opts,
|
|
170
186
|
});
|
|
171
|
-
this.name = "DuplicateInstanceId";
|
|
172
|
-
this.$fault = "client";
|
|
173
187
|
Object.setPrototypeOf(this, DuplicateInstanceId.prototype);
|
|
174
188
|
}
|
|
175
189
|
}
|
|
176
190
|
export class InvalidCommandId extends __BaseException {
|
|
191
|
+
name = "InvalidCommandId";
|
|
192
|
+
$fault = "client";
|
|
177
193
|
constructor(opts) {
|
|
178
194
|
super({
|
|
179
195
|
name: "InvalidCommandId",
|
|
180
196
|
$fault: "client",
|
|
181
197
|
...opts,
|
|
182
198
|
});
|
|
183
|
-
this.name = "InvalidCommandId";
|
|
184
|
-
this.$fault = "client";
|
|
185
199
|
Object.setPrototypeOf(this, InvalidCommandId.prototype);
|
|
186
200
|
}
|
|
187
201
|
}
|
|
188
202
|
export class InvalidInstanceId extends __BaseException {
|
|
203
|
+
name = "InvalidInstanceId";
|
|
204
|
+
$fault = "client";
|
|
205
|
+
Message;
|
|
189
206
|
constructor(opts) {
|
|
190
207
|
super({
|
|
191
208
|
name: "InvalidInstanceId",
|
|
192
209
|
$fault: "client",
|
|
193
210
|
...opts,
|
|
194
211
|
});
|
|
195
|
-
this.name = "InvalidInstanceId";
|
|
196
|
-
this.$fault = "client";
|
|
197
212
|
Object.setPrototypeOf(this, InvalidInstanceId.prototype);
|
|
198
213
|
this.Message = opts.Message;
|
|
199
214
|
}
|
|
200
215
|
}
|
|
201
216
|
export class DoesNotExistException extends __BaseException {
|
|
217
|
+
name = "DoesNotExistException";
|
|
218
|
+
$fault = "client";
|
|
219
|
+
Message;
|
|
202
220
|
constructor(opts) {
|
|
203
221
|
super({
|
|
204
222
|
name: "DoesNotExistException",
|
|
205
223
|
$fault: "client",
|
|
206
224
|
...opts,
|
|
207
225
|
});
|
|
208
|
-
this.name = "DoesNotExistException";
|
|
209
|
-
this.$fault = "client";
|
|
210
226
|
Object.setPrototypeOf(this, DoesNotExistException.prototype);
|
|
211
227
|
this.Message = opts.Message;
|
|
212
228
|
}
|
|
213
229
|
}
|
|
214
230
|
export class InvalidParameters extends __BaseException {
|
|
231
|
+
name = "InvalidParameters";
|
|
232
|
+
$fault = "client";
|
|
233
|
+
Message;
|
|
215
234
|
constructor(opts) {
|
|
216
235
|
super({
|
|
217
236
|
name: "InvalidParameters",
|
|
218
237
|
$fault: "client",
|
|
219
238
|
...opts,
|
|
220
239
|
});
|
|
221
|
-
this.name = "InvalidParameters";
|
|
222
|
-
this.$fault = "client";
|
|
223
240
|
Object.setPrototypeOf(this, InvalidParameters.prototype);
|
|
224
241
|
this.Message = opts.Message;
|
|
225
242
|
}
|
|
226
243
|
}
|
|
227
244
|
export class AssociationAlreadyExists extends __BaseException {
|
|
245
|
+
name = "AssociationAlreadyExists";
|
|
246
|
+
$fault = "client";
|
|
228
247
|
constructor(opts) {
|
|
229
248
|
super({
|
|
230
249
|
name: "AssociationAlreadyExists",
|
|
231
250
|
$fault: "client",
|
|
232
251
|
...opts,
|
|
233
252
|
});
|
|
234
|
-
this.name = "AssociationAlreadyExists";
|
|
235
|
-
this.$fault = "client";
|
|
236
253
|
Object.setPrototypeOf(this, AssociationAlreadyExists.prototype);
|
|
237
254
|
}
|
|
238
255
|
}
|
|
239
256
|
export class AssociationLimitExceeded extends __BaseException {
|
|
257
|
+
name = "AssociationLimitExceeded";
|
|
258
|
+
$fault = "client";
|
|
240
259
|
constructor(opts) {
|
|
241
260
|
super({
|
|
242
261
|
name: "AssociationLimitExceeded",
|
|
243
262
|
$fault: "client",
|
|
244
263
|
...opts,
|
|
245
264
|
});
|
|
246
|
-
this.name = "AssociationLimitExceeded";
|
|
247
|
-
this.$fault = "client";
|
|
248
265
|
Object.setPrototypeOf(this, AssociationLimitExceeded.prototype);
|
|
249
266
|
}
|
|
250
267
|
}
|
|
@@ -265,104 +282,111 @@ export const AssociationStatusName = {
|
|
|
265
282
|
Success: "Success",
|
|
266
283
|
};
|
|
267
284
|
export class InvalidDocument extends __BaseException {
|
|
285
|
+
name = "InvalidDocument";
|
|
286
|
+
$fault = "client";
|
|
287
|
+
Message;
|
|
268
288
|
constructor(opts) {
|
|
269
289
|
super({
|
|
270
290
|
name: "InvalidDocument",
|
|
271
291
|
$fault: "client",
|
|
272
292
|
...opts,
|
|
273
293
|
});
|
|
274
|
-
this.name = "InvalidDocument";
|
|
275
|
-
this.$fault = "client";
|
|
276
294
|
Object.setPrototypeOf(this, InvalidDocument.prototype);
|
|
277
295
|
this.Message = opts.Message;
|
|
278
296
|
}
|
|
279
297
|
}
|
|
280
298
|
export class InvalidDocumentVersion extends __BaseException {
|
|
299
|
+
name = "InvalidDocumentVersion";
|
|
300
|
+
$fault = "client";
|
|
301
|
+
Message;
|
|
281
302
|
constructor(opts) {
|
|
282
303
|
super({
|
|
283
304
|
name: "InvalidDocumentVersion",
|
|
284
305
|
$fault: "client",
|
|
285
306
|
...opts,
|
|
286
307
|
});
|
|
287
|
-
this.name = "InvalidDocumentVersion";
|
|
288
|
-
this.$fault = "client";
|
|
289
308
|
Object.setPrototypeOf(this, InvalidDocumentVersion.prototype);
|
|
290
309
|
this.Message = opts.Message;
|
|
291
310
|
}
|
|
292
311
|
}
|
|
293
312
|
export class InvalidOutputLocation extends __BaseException {
|
|
313
|
+
name = "InvalidOutputLocation";
|
|
314
|
+
$fault = "client";
|
|
294
315
|
constructor(opts) {
|
|
295
316
|
super({
|
|
296
317
|
name: "InvalidOutputLocation",
|
|
297
318
|
$fault: "client",
|
|
298
319
|
...opts,
|
|
299
320
|
});
|
|
300
|
-
this.name = "InvalidOutputLocation";
|
|
301
|
-
this.$fault = "client";
|
|
302
321
|
Object.setPrototypeOf(this, InvalidOutputLocation.prototype);
|
|
303
322
|
}
|
|
304
323
|
}
|
|
305
324
|
export class InvalidSchedule extends __BaseException {
|
|
325
|
+
name = "InvalidSchedule";
|
|
326
|
+
$fault = "client";
|
|
327
|
+
Message;
|
|
306
328
|
constructor(opts) {
|
|
307
329
|
super({
|
|
308
330
|
name: "InvalidSchedule",
|
|
309
331
|
$fault: "client",
|
|
310
332
|
...opts,
|
|
311
333
|
});
|
|
312
|
-
this.name = "InvalidSchedule";
|
|
313
|
-
this.$fault = "client";
|
|
314
334
|
Object.setPrototypeOf(this, InvalidSchedule.prototype);
|
|
315
335
|
this.Message = opts.Message;
|
|
316
336
|
}
|
|
317
337
|
}
|
|
318
338
|
export class InvalidTag extends __BaseException {
|
|
339
|
+
name = "InvalidTag";
|
|
340
|
+
$fault = "client";
|
|
341
|
+
Message;
|
|
319
342
|
constructor(opts) {
|
|
320
343
|
super({
|
|
321
344
|
name: "InvalidTag",
|
|
322
345
|
$fault: "client",
|
|
323
346
|
...opts,
|
|
324
347
|
});
|
|
325
|
-
this.name = "InvalidTag";
|
|
326
|
-
this.$fault = "client";
|
|
327
348
|
Object.setPrototypeOf(this, InvalidTag.prototype);
|
|
328
349
|
this.Message = opts.Message;
|
|
329
350
|
}
|
|
330
351
|
}
|
|
331
352
|
export class InvalidTarget extends __BaseException {
|
|
353
|
+
name = "InvalidTarget";
|
|
354
|
+
$fault = "client";
|
|
355
|
+
Message;
|
|
332
356
|
constructor(opts) {
|
|
333
357
|
super({
|
|
334
358
|
name: "InvalidTarget",
|
|
335
359
|
$fault: "client",
|
|
336
360
|
...opts,
|
|
337
361
|
});
|
|
338
|
-
this.name = "InvalidTarget";
|
|
339
|
-
this.$fault = "client";
|
|
340
362
|
Object.setPrototypeOf(this, InvalidTarget.prototype);
|
|
341
363
|
this.Message = opts.Message;
|
|
342
364
|
}
|
|
343
365
|
}
|
|
344
366
|
export class InvalidTargetMaps extends __BaseException {
|
|
367
|
+
name = "InvalidTargetMaps";
|
|
368
|
+
$fault = "client";
|
|
369
|
+
Message;
|
|
345
370
|
constructor(opts) {
|
|
346
371
|
super({
|
|
347
372
|
name: "InvalidTargetMaps",
|
|
348
373
|
$fault: "client",
|
|
349
374
|
...opts,
|
|
350
375
|
});
|
|
351
|
-
this.name = "InvalidTargetMaps";
|
|
352
|
-
this.$fault = "client";
|
|
353
376
|
Object.setPrototypeOf(this, InvalidTargetMaps.prototype);
|
|
354
377
|
this.Message = opts.Message;
|
|
355
378
|
}
|
|
356
379
|
}
|
|
357
380
|
export class UnsupportedPlatformType extends __BaseException {
|
|
381
|
+
name = "UnsupportedPlatformType";
|
|
382
|
+
$fault = "client";
|
|
383
|
+
Message;
|
|
358
384
|
constructor(opts) {
|
|
359
385
|
super({
|
|
360
386
|
name: "UnsupportedPlatformType",
|
|
361
387
|
$fault: "client",
|
|
362
388
|
...opts,
|
|
363
389
|
});
|
|
364
|
-
this.name = "UnsupportedPlatformType";
|
|
365
|
-
this.$fault = "client";
|
|
366
390
|
Object.setPrototypeOf(this, UnsupportedPlatformType.prototype);
|
|
367
391
|
this.Message = opts.Message;
|
|
368
392
|
}
|
|
@@ -426,92 +450,99 @@ export const DocumentStatus = {
|
|
|
426
450
|
Updating: "Updating",
|
|
427
451
|
};
|
|
428
452
|
export class DocumentAlreadyExists extends __BaseException {
|
|
453
|
+
name = "DocumentAlreadyExists";
|
|
454
|
+
$fault = "client";
|
|
455
|
+
Message;
|
|
429
456
|
constructor(opts) {
|
|
430
457
|
super({
|
|
431
458
|
name: "DocumentAlreadyExists",
|
|
432
459
|
$fault: "client",
|
|
433
460
|
...opts,
|
|
434
461
|
});
|
|
435
|
-
this.name = "DocumentAlreadyExists";
|
|
436
|
-
this.$fault = "client";
|
|
437
462
|
Object.setPrototypeOf(this, DocumentAlreadyExists.prototype);
|
|
438
463
|
this.Message = opts.Message;
|
|
439
464
|
}
|
|
440
465
|
}
|
|
441
466
|
export class DocumentLimitExceeded extends __BaseException {
|
|
467
|
+
name = "DocumentLimitExceeded";
|
|
468
|
+
$fault = "client";
|
|
469
|
+
Message;
|
|
442
470
|
constructor(opts) {
|
|
443
471
|
super({
|
|
444
472
|
name: "DocumentLimitExceeded",
|
|
445
473
|
$fault: "client",
|
|
446
474
|
...opts,
|
|
447
475
|
});
|
|
448
|
-
this.name = "DocumentLimitExceeded";
|
|
449
|
-
this.$fault = "client";
|
|
450
476
|
Object.setPrototypeOf(this, DocumentLimitExceeded.prototype);
|
|
451
477
|
this.Message = opts.Message;
|
|
452
478
|
}
|
|
453
479
|
}
|
|
454
480
|
export class InvalidDocumentContent extends __BaseException {
|
|
481
|
+
name = "InvalidDocumentContent";
|
|
482
|
+
$fault = "client";
|
|
483
|
+
Message;
|
|
455
484
|
constructor(opts) {
|
|
456
485
|
super({
|
|
457
486
|
name: "InvalidDocumentContent",
|
|
458
487
|
$fault: "client",
|
|
459
488
|
...opts,
|
|
460
489
|
});
|
|
461
|
-
this.name = "InvalidDocumentContent";
|
|
462
|
-
this.$fault = "client";
|
|
463
490
|
Object.setPrototypeOf(this, InvalidDocumentContent.prototype);
|
|
464
491
|
this.Message = opts.Message;
|
|
465
492
|
}
|
|
466
493
|
}
|
|
467
494
|
export class InvalidDocumentSchemaVersion extends __BaseException {
|
|
495
|
+
name = "InvalidDocumentSchemaVersion";
|
|
496
|
+
$fault = "client";
|
|
497
|
+
Message;
|
|
468
498
|
constructor(opts) {
|
|
469
499
|
super({
|
|
470
500
|
name: "InvalidDocumentSchemaVersion",
|
|
471
501
|
$fault: "client",
|
|
472
502
|
...opts,
|
|
473
503
|
});
|
|
474
|
-
this.name = "InvalidDocumentSchemaVersion";
|
|
475
|
-
this.$fault = "client";
|
|
476
504
|
Object.setPrototypeOf(this, InvalidDocumentSchemaVersion.prototype);
|
|
477
505
|
this.Message = opts.Message;
|
|
478
506
|
}
|
|
479
507
|
}
|
|
480
508
|
export class MaxDocumentSizeExceeded extends __BaseException {
|
|
509
|
+
name = "MaxDocumentSizeExceeded";
|
|
510
|
+
$fault = "client";
|
|
511
|
+
Message;
|
|
481
512
|
constructor(opts) {
|
|
482
513
|
super({
|
|
483
514
|
name: "MaxDocumentSizeExceeded",
|
|
484
515
|
$fault: "client",
|
|
485
516
|
...opts,
|
|
486
517
|
});
|
|
487
|
-
this.name = "MaxDocumentSizeExceeded";
|
|
488
|
-
this.$fault = "client";
|
|
489
518
|
Object.setPrototypeOf(this, MaxDocumentSizeExceeded.prototype);
|
|
490
519
|
this.Message = opts.Message;
|
|
491
520
|
}
|
|
492
521
|
}
|
|
493
522
|
export class IdempotentParameterMismatch extends __BaseException {
|
|
523
|
+
name = "IdempotentParameterMismatch";
|
|
524
|
+
$fault = "client";
|
|
525
|
+
Message;
|
|
494
526
|
constructor(opts) {
|
|
495
527
|
super({
|
|
496
528
|
name: "IdempotentParameterMismatch",
|
|
497
529
|
$fault: "client",
|
|
498
530
|
...opts,
|
|
499
531
|
});
|
|
500
|
-
this.name = "IdempotentParameterMismatch";
|
|
501
|
-
this.$fault = "client";
|
|
502
532
|
Object.setPrototypeOf(this, IdempotentParameterMismatch.prototype);
|
|
503
533
|
this.Message = opts.Message;
|
|
504
534
|
}
|
|
505
535
|
}
|
|
506
536
|
export class ResourceLimitExceededException extends __BaseException {
|
|
537
|
+
name = "ResourceLimitExceededException";
|
|
538
|
+
$fault = "client";
|
|
539
|
+
Message;
|
|
507
540
|
constructor(opts) {
|
|
508
541
|
super({
|
|
509
542
|
name: "ResourceLimitExceededException",
|
|
510
543
|
$fault: "client",
|
|
511
544
|
...opts,
|
|
512
545
|
});
|
|
513
|
-
this.name = "ResourceLimitExceededException";
|
|
514
|
-
this.$fault = "client";
|
|
515
546
|
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
516
547
|
this.Message = opts.Message;
|
|
517
548
|
}
|
|
@@ -521,77 +552,80 @@ export const OpsItemDataType = {
|
|
|
521
552
|
STRING: "String",
|
|
522
553
|
};
|
|
523
554
|
export class OpsItemAccessDeniedException extends __BaseException {
|
|
555
|
+
name = "OpsItemAccessDeniedException";
|
|
556
|
+
$fault = "client";
|
|
557
|
+
Message;
|
|
524
558
|
constructor(opts) {
|
|
525
559
|
super({
|
|
526
560
|
name: "OpsItemAccessDeniedException",
|
|
527
561
|
$fault: "client",
|
|
528
562
|
...opts,
|
|
529
563
|
});
|
|
530
|
-
this.name = "OpsItemAccessDeniedException";
|
|
531
|
-
this.$fault = "client";
|
|
532
564
|
Object.setPrototypeOf(this, OpsItemAccessDeniedException.prototype);
|
|
533
565
|
this.Message = opts.Message;
|
|
534
566
|
}
|
|
535
567
|
}
|
|
536
568
|
export class OpsItemAlreadyExistsException extends __BaseException {
|
|
569
|
+
name = "OpsItemAlreadyExistsException";
|
|
570
|
+
$fault = "client";
|
|
571
|
+
Message;
|
|
572
|
+
OpsItemId;
|
|
537
573
|
constructor(opts) {
|
|
538
574
|
super({
|
|
539
575
|
name: "OpsItemAlreadyExistsException",
|
|
540
576
|
$fault: "client",
|
|
541
577
|
...opts,
|
|
542
578
|
});
|
|
543
|
-
this.name = "OpsItemAlreadyExistsException";
|
|
544
|
-
this.$fault = "client";
|
|
545
579
|
Object.setPrototypeOf(this, OpsItemAlreadyExistsException.prototype);
|
|
546
580
|
this.Message = opts.Message;
|
|
547
581
|
this.OpsItemId = opts.OpsItemId;
|
|
548
582
|
}
|
|
549
583
|
}
|
|
550
584
|
export class OpsMetadataAlreadyExistsException extends __BaseException {
|
|
585
|
+
name = "OpsMetadataAlreadyExistsException";
|
|
586
|
+
$fault = "client";
|
|
551
587
|
constructor(opts) {
|
|
552
588
|
super({
|
|
553
589
|
name: "OpsMetadataAlreadyExistsException",
|
|
554
590
|
$fault: "client",
|
|
555
591
|
...opts,
|
|
556
592
|
});
|
|
557
|
-
this.name = "OpsMetadataAlreadyExistsException";
|
|
558
|
-
this.$fault = "client";
|
|
559
593
|
Object.setPrototypeOf(this, OpsMetadataAlreadyExistsException.prototype);
|
|
560
594
|
}
|
|
561
595
|
}
|
|
562
596
|
export class OpsMetadataInvalidArgumentException extends __BaseException {
|
|
597
|
+
name = "OpsMetadataInvalidArgumentException";
|
|
598
|
+
$fault = "client";
|
|
563
599
|
constructor(opts) {
|
|
564
600
|
super({
|
|
565
601
|
name: "OpsMetadataInvalidArgumentException",
|
|
566
602
|
$fault: "client",
|
|
567
603
|
...opts,
|
|
568
604
|
});
|
|
569
|
-
this.name = "OpsMetadataInvalidArgumentException";
|
|
570
|
-
this.$fault = "client";
|
|
571
605
|
Object.setPrototypeOf(this, OpsMetadataInvalidArgumentException.prototype);
|
|
572
606
|
}
|
|
573
607
|
}
|
|
574
608
|
export class OpsMetadataLimitExceededException extends __BaseException {
|
|
609
|
+
name = "OpsMetadataLimitExceededException";
|
|
610
|
+
$fault = "client";
|
|
575
611
|
constructor(opts) {
|
|
576
612
|
super({
|
|
577
613
|
name: "OpsMetadataLimitExceededException",
|
|
578
614
|
$fault: "client",
|
|
579
615
|
...opts,
|
|
580
616
|
});
|
|
581
|
-
this.name = "OpsMetadataLimitExceededException";
|
|
582
|
-
this.$fault = "client";
|
|
583
617
|
Object.setPrototypeOf(this, OpsMetadataLimitExceededException.prototype);
|
|
584
618
|
}
|
|
585
619
|
}
|
|
586
620
|
export class OpsMetadataTooManyUpdatesException extends __BaseException {
|
|
621
|
+
name = "OpsMetadataTooManyUpdatesException";
|
|
622
|
+
$fault = "client";
|
|
587
623
|
constructor(opts) {
|
|
588
624
|
super({
|
|
589
625
|
name: "OpsMetadataTooManyUpdatesException",
|
|
590
626
|
$fault: "client",
|
|
591
627
|
...opts,
|
|
592
628
|
});
|
|
593
|
-
this.name = "OpsMetadataTooManyUpdatesException";
|
|
594
|
-
this.$fault = "client";
|
|
595
629
|
Object.setPrototypeOf(this, OpsMetadataTooManyUpdatesException.prototype);
|
|
596
630
|
}
|
|
597
631
|
}
|
|
@@ -649,104 +683,111 @@ export const ResourceDataSyncS3Format = {
|
|
|
649
683
|
JSON_SERDE: "JsonSerDe",
|
|
650
684
|
};
|
|
651
685
|
export class ResourceDataSyncAlreadyExistsException extends __BaseException {
|
|
686
|
+
name = "ResourceDataSyncAlreadyExistsException";
|
|
687
|
+
$fault = "client";
|
|
688
|
+
SyncName;
|
|
652
689
|
constructor(opts) {
|
|
653
690
|
super({
|
|
654
691
|
name: "ResourceDataSyncAlreadyExistsException",
|
|
655
692
|
$fault: "client",
|
|
656
693
|
...opts,
|
|
657
694
|
});
|
|
658
|
-
this.name = "ResourceDataSyncAlreadyExistsException";
|
|
659
|
-
this.$fault = "client";
|
|
660
695
|
Object.setPrototypeOf(this, ResourceDataSyncAlreadyExistsException.prototype);
|
|
661
696
|
this.SyncName = opts.SyncName;
|
|
662
697
|
}
|
|
663
698
|
}
|
|
664
699
|
export class ResourceDataSyncCountExceededException extends __BaseException {
|
|
700
|
+
name = "ResourceDataSyncCountExceededException";
|
|
701
|
+
$fault = "client";
|
|
702
|
+
Message;
|
|
665
703
|
constructor(opts) {
|
|
666
704
|
super({
|
|
667
705
|
name: "ResourceDataSyncCountExceededException",
|
|
668
706
|
$fault: "client",
|
|
669
707
|
...opts,
|
|
670
708
|
});
|
|
671
|
-
this.name = "ResourceDataSyncCountExceededException";
|
|
672
|
-
this.$fault = "client";
|
|
673
709
|
Object.setPrototypeOf(this, ResourceDataSyncCountExceededException.prototype);
|
|
674
710
|
this.Message = opts.Message;
|
|
675
711
|
}
|
|
676
712
|
}
|
|
677
713
|
export class ResourceDataSyncInvalidConfigurationException extends __BaseException {
|
|
714
|
+
name = "ResourceDataSyncInvalidConfigurationException";
|
|
715
|
+
$fault = "client";
|
|
716
|
+
Message;
|
|
678
717
|
constructor(opts) {
|
|
679
718
|
super({
|
|
680
719
|
name: "ResourceDataSyncInvalidConfigurationException",
|
|
681
720
|
$fault: "client",
|
|
682
721
|
...opts,
|
|
683
722
|
});
|
|
684
|
-
this.name = "ResourceDataSyncInvalidConfigurationException";
|
|
685
|
-
this.$fault = "client";
|
|
686
723
|
Object.setPrototypeOf(this, ResourceDataSyncInvalidConfigurationException.prototype);
|
|
687
724
|
this.Message = opts.Message;
|
|
688
725
|
}
|
|
689
726
|
}
|
|
690
727
|
export class InvalidActivation extends __BaseException {
|
|
728
|
+
name = "InvalidActivation";
|
|
729
|
+
$fault = "client";
|
|
730
|
+
Message;
|
|
691
731
|
constructor(opts) {
|
|
692
732
|
super({
|
|
693
733
|
name: "InvalidActivation",
|
|
694
734
|
$fault: "client",
|
|
695
735
|
...opts,
|
|
696
736
|
});
|
|
697
|
-
this.name = "InvalidActivation";
|
|
698
|
-
this.$fault = "client";
|
|
699
737
|
Object.setPrototypeOf(this, InvalidActivation.prototype);
|
|
700
738
|
this.Message = opts.Message;
|
|
701
739
|
}
|
|
702
740
|
}
|
|
703
741
|
export class InvalidActivationId extends __BaseException {
|
|
742
|
+
name = "InvalidActivationId";
|
|
743
|
+
$fault = "client";
|
|
744
|
+
Message;
|
|
704
745
|
constructor(opts) {
|
|
705
746
|
super({
|
|
706
747
|
name: "InvalidActivationId",
|
|
707
748
|
$fault: "client",
|
|
708
749
|
...opts,
|
|
709
750
|
});
|
|
710
|
-
this.name = "InvalidActivationId";
|
|
711
|
-
this.$fault = "client";
|
|
712
751
|
Object.setPrototypeOf(this, InvalidActivationId.prototype);
|
|
713
752
|
this.Message = opts.Message;
|
|
714
753
|
}
|
|
715
754
|
}
|
|
716
755
|
export class AssociationDoesNotExist extends __BaseException {
|
|
756
|
+
name = "AssociationDoesNotExist";
|
|
757
|
+
$fault = "client";
|
|
758
|
+
Message;
|
|
717
759
|
constructor(opts) {
|
|
718
760
|
super({
|
|
719
761
|
name: "AssociationDoesNotExist",
|
|
720
762
|
$fault: "client",
|
|
721
763
|
...opts,
|
|
722
764
|
});
|
|
723
|
-
this.name = "AssociationDoesNotExist";
|
|
724
|
-
this.$fault = "client";
|
|
725
765
|
Object.setPrototypeOf(this, AssociationDoesNotExist.prototype);
|
|
726
766
|
this.Message = opts.Message;
|
|
727
767
|
}
|
|
728
768
|
}
|
|
729
769
|
export class AssociatedInstances extends __BaseException {
|
|
770
|
+
name = "AssociatedInstances";
|
|
771
|
+
$fault = "client";
|
|
730
772
|
constructor(opts) {
|
|
731
773
|
super({
|
|
732
774
|
name: "AssociatedInstances",
|
|
733
775
|
$fault: "client",
|
|
734
776
|
...opts,
|
|
735
777
|
});
|
|
736
|
-
this.name = "AssociatedInstances";
|
|
737
|
-
this.$fault = "client";
|
|
738
778
|
Object.setPrototypeOf(this, AssociatedInstances.prototype);
|
|
739
779
|
}
|
|
740
780
|
}
|
|
741
781
|
export class InvalidDocumentOperation extends __BaseException {
|
|
782
|
+
name = "InvalidDocumentOperation";
|
|
783
|
+
$fault = "client";
|
|
784
|
+
Message;
|
|
742
785
|
constructor(opts) {
|
|
743
786
|
super({
|
|
744
787
|
name: "InvalidDocumentOperation",
|
|
745
788
|
$fault: "client",
|
|
746
789
|
...opts,
|
|
747
790
|
});
|
|
748
|
-
this.name = "InvalidDocumentOperation";
|
|
749
|
-
this.$fault = "client";
|
|
750
791
|
Object.setPrototypeOf(this, InvalidDocumentOperation.prototype);
|
|
751
792
|
this.Message = opts.Message;
|
|
752
793
|
}
|
|
@@ -756,103 +797,111 @@ export const InventorySchemaDeleteOption = {
|
|
|
756
797
|
DISABLE_SCHEMA: "DisableSchema",
|
|
757
798
|
};
|
|
758
799
|
export class InvalidDeleteInventoryParametersException extends __BaseException {
|
|
800
|
+
name = "InvalidDeleteInventoryParametersException";
|
|
801
|
+
$fault = "client";
|
|
802
|
+
Message;
|
|
759
803
|
constructor(opts) {
|
|
760
804
|
super({
|
|
761
805
|
name: "InvalidDeleteInventoryParametersException",
|
|
762
806
|
$fault: "client",
|
|
763
807
|
...opts,
|
|
764
808
|
});
|
|
765
|
-
this.name = "InvalidDeleteInventoryParametersException";
|
|
766
|
-
this.$fault = "client";
|
|
767
809
|
Object.setPrototypeOf(this, InvalidDeleteInventoryParametersException.prototype);
|
|
768
810
|
this.Message = opts.Message;
|
|
769
811
|
}
|
|
770
812
|
}
|
|
771
813
|
export class InvalidInventoryRequestException extends __BaseException {
|
|
814
|
+
name = "InvalidInventoryRequestException";
|
|
815
|
+
$fault = "client";
|
|
816
|
+
Message;
|
|
772
817
|
constructor(opts) {
|
|
773
818
|
super({
|
|
774
819
|
name: "InvalidInventoryRequestException",
|
|
775
820
|
$fault: "client",
|
|
776
821
|
...opts,
|
|
777
822
|
});
|
|
778
|
-
this.name = "InvalidInventoryRequestException";
|
|
779
|
-
this.$fault = "client";
|
|
780
823
|
Object.setPrototypeOf(this, InvalidInventoryRequestException.prototype);
|
|
781
824
|
this.Message = opts.Message;
|
|
782
825
|
}
|
|
783
826
|
}
|
|
784
827
|
export class InvalidOptionException extends __BaseException {
|
|
828
|
+
name = "InvalidOptionException";
|
|
829
|
+
$fault = "client";
|
|
830
|
+
Message;
|
|
785
831
|
constructor(opts) {
|
|
786
832
|
super({
|
|
787
833
|
name: "InvalidOptionException",
|
|
788
834
|
$fault: "client",
|
|
789
835
|
...opts,
|
|
790
836
|
});
|
|
791
|
-
this.name = "InvalidOptionException";
|
|
792
|
-
this.$fault = "client";
|
|
793
837
|
Object.setPrototypeOf(this, InvalidOptionException.prototype);
|
|
794
838
|
this.Message = opts.Message;
|
|
795
839
|
}
|
|
796
840
|
}
|
|
797
841
|
export class InvalidTypeNameException extends __BaseException {
|
|
842
|
+
name = "InvalidTypeNameException";
|
|
843
|
+
$fault = "client";
|
|
844
|
+
Message;
|
|
798
845
|
constructor(opts) {
|
|
799
846
|
super({
|
|
800
847
|
name: "InvalidTypeNameException",
|
|
801
848
|
$fault: "client",
|
|
802
849
|
...opts,
|
|
803
850
|
});
|
|
804
|
-
this.name = "InvalidTypeNameException";
|
|
805
|
-
this.$fault = "client";
|
|
806
851
|
Object.setPrototypeOf(this, InvalidTypeNameException.prototype);
|
|
807
852
|
this.Message = opts.Message;
|
|
808
853
|
}
|
|
809
854
|
}
|
|
810
855
|
export class OpsMetadataNotFoundException extends __BaseException {
|
|
856
|
+
name = "OpsMetadataNotFoundException";
|
|
857
|
+
$fault = "client";
|
|
811
858
|
constructor(opts) {
|
|
812
859
|
super({
|
|
813
860
|
name: "OpsMetadataNotFoundException",
|
|
814
861
|
$fault: "client",
|
|
815
862
|
...opts,
|
|
816
863
|
});
|
|
817
|
-
this.name = "OpsMetadataNotFoundException";
|
|
818
|
-
this.$fault = "client";
|
|
819
864
|
Object.setPrototypeOf(this, OpsMetadataNotFoundException.prototype);
|
|
820
865
|
}
|
|
821
866
|
}
|
|
822
867
|
export class ParameterNotFound extends __BaseException {
|
|
868
|
+
name = "ParameterNotFound";
|
|
869
|
+
$fault = "client";
|
|
823
870
|
constructor(opts) {
|
|
824
871
|
super({
|
|
825
872
|
name: "ParameterNotFound",
|
|
826
873
|
$fault: "client",
|
|
827
874
|
...opts,
|
|
828
875
|
});
|
|
829
|
-
this.name = "ParameterNotFound";
|
|
830
|
-
this.$fault = "client";
|
|
831
876
|
Object.setPrototypeOf(this, ParameterNotFound.prototype);
|
|
832
877
|
}
|
|
833
878
|
}
|
|
834
879
|
export class ResourceInUseException extends __BaseException {
|
|
880
|
+
name = "ResourceInUseException";
|
|
881
|
+
$fault = "client";
|
|
882
|
+
Message;
|
|
835
883
|
constructor(opts) {
|
|
836
884
|
super({
|
|
837
885
|
name: "ResourceInUseException",
|
|
838
886
|
$fault: "client",
|
|
839
887
|
...opts,
|
|
840
888
|
});
|
|
841
|
-
this.name = "ResourceInUseException";
|
|
842
|
-
this.$fault = "client";
|
|
843
889
|
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
844
890
|
this.Message = opts.Message;
|
|
845
891
|
}
|
|
846
892
|
}
|
|
847
893
|
export class ResourceDataSyncNotFoundException extends __BaseException {
|
|
894
|
+
name = "ResourceDataSyncNotFoundException";
|
|
895
|
+
$fault = "client";
|
|
896
|
+
SyncName;
|
|
897
|
+
SyncType;
|
|
898
|
+
Message;
|
|
848
899
|
constructor(opts) {
|
|
849
900
|
super({
|
|
850
901
|
name: "ResourceDataSyncNotFoundException",
|
|
851
902
|
$fault: "client",
|
|
852
903
|
...opts,
|
|
853
904
|
});
|
|
854
|
-
this.name = "ResourceDataSyncNotFoundException";
|
|
855
|
-
this.$fault = "client";
|
|
856
905
|
Object.setPrototypeOf(this, ResourceDataSyncNotFoundException.prototype);
|
|
857
906
|
this.SyncName = opts.SyncName;
|
|
858
907
|
this.SyncType = opts.SyncType;
|
|
@@ -860,80 +909,87 @@ export class ResourceDataSyncNotFoundException extends __BaseException {
|
|
|
860
909
|
}
|
|
861
910
|
}
|
|
862
911
|
export class MalformedResourcePolicyDocumentException extends __BaseException {
|
|
912
|
+
name = "MalformedResourcePolicyDocumentException";
|
|
913
|
+
$fault = "client";
|
|
914
|
+
Message;
|
|
863
915
|
constructor(opts) {
|
|
864
916
|
super({
|
|
865
917
|
name: "MalformedResourcePolicyDocumentException",
|
|
866
918
|
$fault: "client",
|
|
867
919
|
...opts,
|
|
868
920
|
});
|
|
869
|
-
this.name = "MalformedResourcePolicyDocumentException";
|
|
870
|
-
this.$fault = "client";
|
|
871
921
|
Object.setPrototypeOf(this, MalformedResourcePolicyDocumentException.prototype);
|
|
872
922
|
this.Message = opts.Message;
|
|
873
923
|
}
|
|
874
924
|
}
|
|
875
925
|
export class ResourceNotFoundException extends __BaseException {
|
|
926
|
+
name = "ResourceNotFoundException";
|
|
927
|
+
$fault = "client";
|
|
928
|
+
Message;
|
|
876
929
|
constructor(opts) {
|
|
877
930
|
super({
|
|
878
931
|
name: "ResourceNotFoundException",
|
|
879
932
|
$fault: "client",
|
|
880
933
|
...opts,
|
|
881
934
|
});
|
|
882
|
-
this.name = "ResourceNotFoundException";
|
|
883
|
-
this.$fault = "client";
|
|
884
935
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
885
936
|
this.Message = opts.Message;
|
|
886
937
|
}
|
|
887
938
|
}
|
|
888
939
|
export class ResourcePolicyConflictException extends __BaseException {
|
|
940
|
+
name = "ResourcePolicyConflictException";
|
|
941
|
+
$fault = "client";
|
|
942
|
+
Message;
|
|
889
943
|
constructor(opts) {
|
|
890
944
|
super({
|
|
891
945
|
name: "ResourcePolicyConflictException",
|
|
892
946
|
$fault: "client",
|
|
893
947
|
...opts,
|
|
894
948
|
});
|
|
895
|
-
this.name = "ResourcePolicyConflictException";
|
|
896
|
-
this.$fault = "client";
|
|
897
949
|
Object.setPrototypeOf(this, ResourcePolicyConflictException.prototype);
|
|
898
950
|
this.Message = opts.Message;
|
|
899
951
|
}
|
|
900
952
|
}
|
|
901
953
|
export class ResourcePolicyInvalidParameterException extends __BaseException {
|
|
954
|
+
name = "ResourcePolicyInvalidParameterException";
|
|
955
|
+
$fault = "client";
|
|
956
|
+
ParameterNames;
|
|
957
|
+
Message;
|
|
902
958
|
constructor(opts) {
|
|
903
959
|
super({
|
|
904
960
|
name: "ResourcePolicyInvalidParameterException",
|
|
905
961
|
$fault: "client",
|
|
906
962
|
...opts,
|
|
907
963
|
});
|
|
908
|
-
this.name = "ResourcePolicyInvalidParameterException";
|
|
909
|
-
this.$fault = "client";
|
|
910
964
|
Object.setPrototypeOf(this, ResourcePolicyInvalidParameterException.prototype);
|
|
911
965
|
this.ParameterNames = opts.ParameterNames;
|
|
912
966
|
this.Message = opts.Message;
|
|
913
967
|
}
|
|
914
968
|
}
|
|
915
969
|
export class ResourcePolicyNotFoundException extends __BaseException {
|
|
970
|
+
name = "ResourcePolicyNotFoundException";
|
|
971
|
+
$fault = "client";
|
|
972
|
+
Message;
|
|
916
973
|
constructor(opts) {
|
|
917
974
|
super({
|
|
918
975
|
name: "ResourcePolicyNotFoundException",
|
|
919
976
|
$fault: "client",
|
|
920
977
|
...opts,
|
|
921
978
|
});
|
|
922
|
-
this.name = "ResourcePolicyNotFoundException";
|
|
923
|
-
this.$fault = "client";
|
|
924
979
|
Object.setPrototypeOf(this, ResourcePolicyNotFoundException.prototype);
|
|
925
980
|
this.Message = opts.Message;
|
|
926
981
|
}
|
|
927
982
|
}
|
|
928
983
|
export class TargetInUseException extends __BaseException {
|
|
984
|
+
name = "TargetInUseException";
|
|
985
|
+
$fault = "client";
|
|
986
|
+
Message;
|
|
929
987
|
constructor(opts) {
|
|
930
988
|
super({
|
|
931
989
|
name: "TargetInUseException",
|
|
932
990
|
$fault: "client",
|
|
933
991
|
...opts,
|
|
934
992
|
});
|
|
935
|
-
this.name = "TargetInUseException";
|
|
936
|
-
this.$fault = "client";
|
|
937
993
|
Object.setPrototypeOf(this, TargetInUseException.prototype);
|
|
938
994
|
this.Message = opts.Message;
|
|
939
995
|
}
|
|
@@ -944,40 +1000,43 @@ export const DescribeActivationsFilterKeys = {
|
|
|
944
1000
|
IAM_ROLE: "IamRole",
|
|
945
1001
|
};
|
|
946
1002
|
export class InvalidFilter extends __BaseException {
|
|
1003
|
+
name = "InvalidFilter";
|
|
1004
|
+
$fault = "client";
|
|
1005
|
+
Message;
|
|
947
1006
|
constructor(opts) {
|
|
948
1007
|
super({
|
|
949
1008
|
name: "InvalidFilter",
|
|
950
1009
|
$fault: "client",
|
|
951
1010
|
...opts,
|
|
952
1011
|
});
|
|
953
|
-
this.name = "InvalidFilter";
|
|
954
|
-
this.$fault = "client";
|
|
955
1012
|
Object.setPrototypeOf(this, InvalidFilter.prototype);
|
|
956
1013
|
this.Message = opts.Message;
|
|
957
1014
|
}
|
|
958
1015
|
}
|
|
959
1016
|
export class InvalidNextToken extends __BaseException {
|
|
1017
|
+
name = "InvalidNextToken";
|
|
1018
|
+
$fault = "client";
|
|
1019
|
+
Message;
|
|
960
1020
|
constructor(opts) {
|
|
961
1021
|
super({
|
|
962
1022
|
name: "InvalidNextToken",
|
|
963
1023
|
$fault: "client",
|
|
964
1024
|
...opts,
|
|
965
1025
|
});
|
|
966
|
-
this.name = "InvalidNextToken";
|
|
967
|
-
this.$fault = "client";
|
|
968
1026
|
Object.setPrototypeOf(this, InvalidNextToken.prototype);
|
|
969
1027
|
this.Message = opts.Message;
|
|
970
1028
|
}
|
|
971
1029
|
}
|
|
972
1030
|
export class InvalidAssociationVersion extends __BaseException {
|
|
1031
|
+
name = "InvalidAssociationVersion";
|
|
1032
|
+
$fault = "client";
|
|
1033
|
+
Message;
|
|
973
1034
|
constructor(opts) {
|
|
974
1035
|
super({
|
|
975
1036
|
name: "InvalidAssociationVersion",
|
|
976
1037
|
$fault: "client",
|
|
977
1038
|
...opts,
|
|
978
1039
|
});
|
|
979
|
-
this.name = "InvalidAssociationVersion";
|
|
980
|
-
this.$fault = "client";
|
|
981
1040
|
Object.setPrototypeOf(this, InvalidAssociationVersion.prototype);
|
|
982
1041
|
this.Message = opts.Message;
|
|
983
1042
|
}
|
|
@@ -993,14 +1052,15 @@ export const AssociationFilterOperatorType = {
|
|
|
993
1052
|
LessThan: "LESS_THAN",
|
|
994
1053
|
};
|
|
995
1054
|
export class AssociationExecutionDoesNotExist extends __BaseException {
|
|
1055
|
+
name = "AssociationExecutionDoesNotExist";
|
|
1056
|
+
$fault = "client";
|
|
1057
|
+
Message;
|
|
996
1058
|
constructor(opts) {
|
|
997
1059
|
super({
|
|
998
1060
|
name: "AssociationExecutionDoesNotExist",
|
|
999
1061
|
$fault: "client",
|
|
1000
1062
|
...opts,
|
|
1001
1063
|
});
|
|
1002
|
-
this.name = "AssociationExecutionDoesNotExist";
|
|
1003
|
-
this.$fault = "client";
|
|
1004
1064
|
Object.setPrototypeOf(this, AssociationExecutionDoesNotExist.prototype);
|
|
1005
1065
|
this.Message = opts.Message;
|
|
1006
1066
|
}
|
|
@@ -1057,39 +1117,41 @@ export const ExecutionMode = {
|
|
|
1057
1117
|
Interactive: "Interactive",
|
|
1058
1118
|
};
|
|
1059
1119
|
export class InvalidFilterKey extends __BaseException {
|
|
1120
|
+
name = "InvalidFilterKey";
|
|
1121
|
+
$fault = "client";
|
|
1060
1122
|
constructor(opts) {
|
|
1061
1123
|
super({
|
|
1062
1124
|
name: "InvalidFilterKey",
|
|
1063
1125
|
$fault: "client",
|
|
1064
1126
|
...opts,
|
|
1065
1127
|
});
|
|
1066
|
-
this.name = "InvalidFilterKey";
|
|
1067
|
-
this.$fault = "client";
|
|
1068
1128
|
Object.setPrototypeOf(this, InvalidFilterKey.prototype);
|
|
1069
1129
|
}
|
|
1070
1130
|
}
|
|
1071
1131
|
export class InvalidFilterValue extends __BaseException {
|
|
1132
|
+
name = "InvalidFilterValue";
|
|
1133
|
+
$fault = "client";
|
|
1134
|
+
Message;
|
|
1072
1135
|
constructor(opts) {
|
|
1073
1136
|
super({
|
|
1074
1137
|
name: "InvalidFilterValue",
|
|
1075
1138
|
$fault: "client",
|
|
1076
1139
|
...opts,
|
|
1077
1140
|
});
|
|
1078
|
-
this.name = "InvalidFilterValue";
|
|
1079
|
-
this.$fault = "client";
|
|
1080
1141
|
Object.setPrototypeOf(this, InvalidFilterValue.prototype);
|
|
1081
1142
|
this.Message = opts.Message;
|
|
1082
1143
|
}
|
|
1083
1144
|
}
|
|
1084
1145
|
export class AutomationExecutionNotFoundException extends __BaseException {
|
|
1146
|
+
name = "AutomationExecutionNotFoundException";
|
|
1147
|
+
$fault = "client";
|
|
1148
|
+
Message;
|
|
1085
1149
|
constructor(opts) {
|
|
1086
1150
|
super({
|
|
1087
1151
|
name: "AutomationExecutionNotFoundException",
|
|
1088
1152
|
$fault: "client",
|
|
1089
1153
|
...opts,
|
|
1090
1154
|
});
|
|
1091
|
-
this.name = "AutomationExecutionNotFoundException";
|
|
1092
|
-
this.$fault = "client";
|
|
1093
1155
|
Object.setPrototypeOf(this, AutomationExecutionNotFoundException.prototype);
|
|
1094
1156
|
this.Message = opts.Message;
|
|
1095
1157
|
}
|
|
@@ -1109,14 +1171,15 @@ export const DocumentPermissionType = {
|
|
|
1109
1171
|
SHARE: "Share",
|
|
1110
1172
|
};
|
|
1111
1173
|
export class InvalidPermissionType extends __BaseException {
|
|
1174
|
+
name = "InvalidPermissionType";
|
|
1175
|
+
$fault = "client";
|
|
1176
|
+
Message;
|
|
1112
1177
|
constructor(opts) {
|
|
1113
1178
|
super({
|
|
1114
1179
|
name: "InvalidPermissionType",
|
|
1115
1180
|
$fault: "client",
|
|
1116
1181
|
...opts,
|
|
1117
1182
|
});
|
|
1118
|
-
this.name = "InvalidPermissionType";
|
|
1119
|
-
this.$fault = "client";
|
|
1120
1183
|
Object.setPrototypeOf(this, InvalidPermissionType.prototype);
|
|
1121
1184
|
this.Message = opts.Message;
|
|
1122
1185
|
}
|
|
@@ -1128,14 +1191,15 @@ export const PatchDeploymentStatus = {
|
|
|
1128
1191
|
PendingApproval: "PENDING_APPROVAL",
|
|
1129
1192
|
};
|
|
1130
1193
|
export class UnsupportedOperatingSystem extends __BaseException {
|
|
1194
|
+
name = "UnsupportedOperatingSystem";
|
|
1195
|
+
$fault = "client";
|
|
1196
|
+
Message;
|
|
1131
1197
|
constructor(opts) {
|
|
1132
1198
|
super({
|
|
1133
1199
|
name: "UnsupportedOperatingSystem",
|
|
1134
1200
|
$fault: "client",
|
|
1135
1201
|
...opts,
|
|
1136
1202
|
});
|
|
1137
|
-
this.name = "UnsupportedOperatingSystem";
|
|
1138
|
-
this.$fault = "client";
|
|
1139
1203
|
Object.setPrototypeOf(this, UnsupportedOperatingSystem.prototype);
|
|
1140
1204
|
this.Message = opts.Message;
|
|
1141
1205
|
}
|
|
@@ -1165,14 +1229,14 @@ export const SourceType = {
|
|
|
1165
1229
|
AWS_SSM_MANAGEDINSTANCE: "AWS::SSM::ManagedInstance",
|
|
1166
1230
|
};
|
|
1167
1231
|
export class InvalidInstanceInformationFilterValue extends __BaseException {
|
|
1232
|
+
name = "InvalidInstanceInformationFilterValue";
|
|
1233
|
+
$fault = "client";
|
|
1168
1234
|
constructor(opts) {
|
|
1169
1235
|
super({
|
|
1170
1236
|
name: "InvalidInstanceInformationFilterValue",
|
|
1171
1237
|
$fault: "client",
|
|
1172
1238
|
...opts,
|
|
1173
1239
|
});
|
|
1174
|
-
this.name = "InvalidInstanceInformationFilterValue";
|
|
1175
|
-
this.$fault = "client";
|
|
1176
1240
|
Object.setPrototypeOf(this, InvalidInstanceInformationFilterValue.prototype);
|
|
1177
1241
|
}
|
|
1178
1242
|
}
|
|
@@ -1218,14 +1282,14 @@ export const InstancePropertyFilterKey = {
|
|
|
1218
1282
|
RESOURCE_TYPE: "ResourceType",
|
|
1219
1283
|
};
|
|
1220
1284
|
export class InvalidInstancePropertyFilterValue extends __BaseException {
|
|
1285
|
+
name = "InvalidInstancePropertyFilterValue";
|
|
1286
|
+
$fault = "client";
|
|
1221
1287
|
constructor(opts) {
|
|
1222
1288
|
super({
|
|
1223
1289
|
name: "InvalidInstancePropertyFilterValue",
|
|
1224
1290
|
$fault: "client",
|
|
1225
1291
|
...opts,
|
|
1226
1292
|
});
|
|
1227
|
-
this.name = "InvalidInstancePropertyFilterValue";
|
|
1228
|
-
this.$fault = "client";
|
|
1229
1293
|
Object.setPrototypeOf(this, InvalidInstancePropertyFilterValue.prototype);
|
|
1230
1294
|
}
|
|
1231
1295
|
}
|
|
@@ -1234,14 +1298,15 @@ export const InventoryDeletionStatus = {
|
|
|
1234
1298
|
IN_PROGRESS: "InProgress",
|
|
1235
1299
|
};
|
|
1236
1300
|
export class InvalidDeletionIdException extends __BaseException {
|
|
1301
|
+
name = "InvalidDeletionIdException";
|
|
1302
|
+
$fault = "client";
|
|
1303
|
+
Message;
|
|
1237
1304
|
constructor(opts) {
|
|
1238
1305
|
super({
|
|
1239
1306
|
name: "InvalidDeletionIdException",
|
|
1240
1307
|
$fault: "client",
|
|
1241
1308
|
...opts,
|
|
1242
1309
|
});
|
|
1243
|
-
this.name = "InvalidDeletionIdException";
|
|
1244
|
-
this.$fault = "client";
|
|
1245
1310
|
Object.setPrototypeOf(this, InvalidDeletionIdException.prototype);
|
|
1246
1311
|
this.Message = opts.Message;
|
|
1247
1312
|
}
|