@aws-sdk/client-ssm 3.721.0 → 3.723.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
|
@@ -78,14 +78,14 @@ export const ParameterType = {
|
|
|
78
78
|
STRING_LIST: "StringList",
|
|
79
79
|
};
|
|
80
80
|
export class InvalidFilterOption extends __BaseException {
|
|
81
|
+
name = "InvalidFilterOption";
|
|
82
|
+
$fault = "client";
|
|
81
83
|
constructor(opts) {
|
|
82
84
|
super({
|
|
83
85
|
name: "InvalidFilterOption",
|
|
84
86
|
$fault: "client",
|
|
85
87
|
...opts,
|
|
86
88
|
});
|
|
87
|
-
this.name = "InvalidFilterOption";
|
|
88
|
-
this.$fault = "client";
|
|
89
89
|
Object.setPrototypeOf(this, InvalidFilterOption.prototype);
|
|
90
90
|
}
|
|
91
91
|
}
|
|
@@ -122,14 +122,15 @@ export const SessionStatus = {
|
|
|
122
122
|
TERMINATING: "Terminating",
|
|
123
123
|
};
|
|
124
124
|
export class OpsItemRelatedItemAssociationNotFoundException extends __BaseException {
|
|
125
|
+
name = "OpsItemRelatedItemAssociationNotFoundException";
|
|
126
|
+
$fault = "client";
|
|
127
|
+
Message;
|
|
125
128
|
constructor(opts) {
|
|
126
129
|
super({
|
|
127
130
|
name: "OpsItemRelatedItemAssociationNotFoundException",
|
|
128
131
|
$fault: "client",
|
|
129
132
|
...opts,
|
|
130
133
|
});
|
|
131
|
-
this.name = "OpsItemRelatedItemAssociationNotFoundException";
|
|
132
|
-
this.$fault = "client";
|
|
133
134
|
Object.setPrototypeOf(this, OpsItemRelatedItemAssociationNotFoundException.prototype);
|
|
134
135
|
this.Message = opts.Message;
|
|
135
136
|
}
|
|
@@ -139,27 +140,29 @@ export const CalendarState = {
|
|
|
139
140
|
OPEN: "OPEN",
|
|
140
141
|
};
|
|
141
142
|
export class InvalidDocumentType extends __BaseException {
|
|
143
|
+
name = "InvalidDocumentType";
|
|
144
|
+
$fault = "client";
|
|
145
|
+
Message;
|
|
142
146
|
constructor(opts) {
|
|
143
147
|
super({
|
|
144
148
|
name: "InvalidDocumentType",
|
|
145
149
|
$fault: "client",
|
|
146
150
|
...opts,
|
|
147
151
|
});
|
|
148
|
-
this.name = "InvalidDocumentType";
|
|
149
|
-
this.$fault = "client";
|
|
150
152
|
Object.setPrototypeOf(this, InvalidDocumentType.prototype);
|
|
151
153
|
this.Message = opts.Message;
|
|
152
154
|
}
|
|
153
155
|
}
|
|
154
156
|
export class UnsupportedCalendarException extends __BaseException {
|
|
157
|
+
name = "UnsupportedCalendarException";
|
|
158
|
+
$fault = "client";
|
|
159
|
+
Message;
|
|
155
160
|
constructor(opts) {
|
|
156
161
|
super({
|
|
157
162
|
name: "UnsupportedCalendarException",
|
|
158
163
|
$fault: "client",
|
|
159
164
|
...opts,
|
|
160
165
|
});
|
|
161
|
-
this.name = "UnsupportedCalendarException";
|
|
162
|
-
this.$fault = "client";
|
|
163
166
|
Object.setPrototypeOf(this, UnsupportedCalendarException.prototype);
|
|
164
167
|
this.Message = opts.Message;
|
|
165
168
|
}
|
|
@@ -175,26 +178,26 @@ export const CommandInvocationStatus = {
|
|
|
175
178
|
TIMED_OUT: "TimedOut",
|
|
176
179
|
};
|
|
177
180
|
export class InvalidPluginName extends __BaseException {
|
|
181
|
+
name = "InvalidPluginName";
|
|
182
|
+
$fault = "client";
|
|
178
183
|
constructor(opts) {
|
|
179
184
|
super({
|
|
180
185
|
name: "InvalidPluginName",
|
|
181
186
|
$fault: "client",
|
|
182
187
|
...opts,
|
|
183
188
|
});
|
|
184
|
-
this.name = "InvalidPluginName";
|
|
185
|
-
this.$fault = "client";
|
|
186
189
|
Object.setPrototypeOf(this, InvalidPluginName.prototype);
|
|
187
190
|
}
|
|
188
191
|
}
|
|
189
192
|
export class InvocationDoesNotExist extends __BaseException {
|
|
193
|
+
name = "InvocationDoesNotExist";
|
|
194
|
+
$fault = "client";
|
|
190
195
|
constructor(opts) {
|
|
191
196
|
super({
|
|
192
197
|
name: "InvocationDoesNotExist",
|
|
193
198
|
$fault: "client",
|
|
194
199
|
...opts,
|
|
195
200
|
});
|
|
196
|
-
this.name = "InvocationDoesNotExist";
|
|
197
|
-
this.$fault = "client";
|
|
198
201
|
Object.setPrototypeOf(this, InvocationDoesNotExist.prototype);
|
|
199
202
|
}
|
|
200
203
|
}
|
|
@@ -203,14 +206,15 @@ export const ConnectionStatus = {
|
|
|
203
206
|
NOT_CONNECTED: "notconnected",
|
|
204
207
|
};
|
|
205
208
|
export class UnsupportedFeatureRequiredException extends __BaseException {
|
|
209
|
+
name = "UnsupportedFeatureRequiredException";
|
|
210
|
+
$fault = "client";
|
|
211
|
+
Message;
|
|
206
212
|
constructor(opts) {
|
|
207
213
|
super({
|
|
208
214
|
name: "UnsupportedFeatureRequiredException",
|
|
209
215
|
$fault: "client",
|
|
210
216
|
...opts,
|
|
211
217
|
});
|
|
212
|
-
this.name = "UnsupportedFeatureRequiredException";
|
|
213
|
-
this.$fault = "client";
|
|
214
218
|
Object.setPrototypeOf(this, UnsupportedFeatureRequiredException.prototype);
|
|
215
219
|
this.Message = opts.Message;
|
|
216
220
|
}
|
|
@@ -246,40 +250,43 @@ export const InventoryQueryOperatorType = {
|
|
|
246
250
|
NOT_EQUAL: "NotEqual",
|
|
247
251
|
};
|
|
248
252
|
export class InvalidAggregatorException extends __BaseException {
|
|
253
|
+
name = "InvalidAggregatorException";
|
|
254
|
+
$fault = "client";
|
|
255
|
+
Message;
|
|
249
256
|
constructor(opts) {
|
|
250
257
|
super({
|
|
251
258
|
name: "InvalidAggregatorException",
|
|
252
259
|
$fault: "client",
|
|
253
260
|
...opts,
|
|
254
261
|
});
|
|
255
|
-
this.name = "InvalidAggregatorException";
|
|
256
|
-
this.$fault = "client";
|
|
257
262
|
Object.setPrototypeOf(this, InvalidAggregatorException.prototype);
|
|
258
263
|
this.Message = opts.Message;
|
|
259
264
|
}
|
|
260
265
|
}
|
|
261
266
|
export class InvalidInventoryGroupException extends __BaseException {
|
|
267
|
+
name = "InvalidInventoryGroupException";
|
|
268
|
+
$fault = "client";
|
|
269
|
+
Message;
|
|
262
270
|
constructor(opts) {
|
|
263
271
|
super({
|
|
264
272
|
name: "InvalidInventoryGroupException",
|
|
265
273
|
$fault: "client",
|
|
266
274
|
...opts,
|
|
267
275
|
});
|
|
268
|
-
this.name = "InvalidInventoryGroupException";
|
|
269
|
-
this.$fault = "client";
|
|
270
276
|
Object.setPrototypeOf(this, InvalidInventoryGroupException.prototype);
|
|
271
277
|
this.Message = opts.Message;
|
|
272
278
|
}
|
|
273
279
|
}
|
|
274
280
|
export class InvalidResultAttributeException extends __BaseException {
|
|
281
|
+
name = "InvalidResultAttributeException";
|
|
282
|
+
$fault = "client";
|
|
283
|
+
Message;
|
|
275
284
|
constructor(opts) {
|
|
276
285
|
super({
|
|
277
286
|
name: "InvalidResultAttributeException",
|
|
278
287
|
$fault: "client",
|
|
279
288
|
...opts,
|
|
280
289
|
});
|
|
281
|
-
this.name = "InvalidResultAttributeException";
|
|
282
|
-
this.$fault = "client";
|
|
283
290
|
Object.setPrototypeOf(this, InvalidResultAttributeException.prototype);
|
|
284
291
|
this.Message = opts.Message;
|
|
285
292
|
}
|
|
@@ -309,51 +316,52 @@ export const OpsFilterOperatorType = {
|
|
|
309
316
|
NOT_EQUAL: "NotEqual",
|
|
310
317
|
};
|
|
311
318
|
export class InvalidKeyId extends __BaseException {
|
|
319
|
+
name = "InvalidKeyId";
|
|
320
|
+
$fault = "client";
|
|
312
321
|
constructor(opts) {
|
|
313
322
|
super({
|
|
314
323
|
name: "InvalidKeyId",
|
|
315
324
|
$fault: "client",
|
|
316
325
|
...opts,
|
|
317
326
|
});
|
|
318
|
-
this.name = "InvalidKeyId";
|
|
319
|
-
this.$fault = "client";
|
|
320
327
|
Object.setPrototypeOf(this, InvalidKeyId.prototype);
|
|
321
328
|
}
|
|
322
329
|
}
|
|
323
330
|
export class ParameterVersionNotFound extends __BaseException {
|
|
331
|
+
name = "ParameterVersionNotFound";
|
|
332
|
+
$fault = "client";
|
|
324
333
|
constructor(opts) {
|
|
325
334
|
super({
|
|
326
335
|
name: "ParameterVersionNotFound",
|
|
327
336
|
$fault: "client",
|
|
328
337
|
...opts,
|
|
329
338
|
});
|
|
330
|
-
this.name = "ParameterVersionNotFound";
|
|
331
|
-
this.$fault = "client";
|
|
332
339
|
Object.setPrototypeOf(this, ParameterVersionNotFound.prototype);
|
|
333
340
|
}
|
|
334
341
|
}
|
|
335
342
|
export class ServiceSettingNotFound extends __BaseException {
|
|
343
|
+
name = "ServiceSettingNotFound";
|
|
344
|
+
$fault = "client";
|
|
345
|
+
Message;
|
|
336
346
|
constructor(opts) {
|
|
337
347
|
super({
|
|
338
348
|
name: "ServiceSettingNotFound",
|
|
339
349
|
$fault: "client",
|
|
340
350
|
...opts,
|
|
341
351
|
});
|
|
342
|
-
this.name = "ServiceSettingNotFound";
|
|
343
|
-
this.$fault = "client";
|
|
344
352
|
Object.setPrototypeOf(this, ServiceSettingNotFound.prototype);
|
|
345
353
|
this.Message = opts.Message;
|
|
346
354
|
}
|
|
347
355
|
}
|
|
348
356
|
export class ParameterVersionLabelLimitExceeded extends __BaseException {
|
|
357
|
+
name = "ParameterVersionLabelLimitExceeded";
|
|
358
|
+
$fault = "client";
|
|
349
359
|
constructor(opts) {
|
|
350
360
|
super({
|
|
351
361
|
name: "ParameterVersionLabelLimitExceeded",
|
|
352
362
|
$fault: "client",
|
|
353
363
|
...opts,
|
|
354
364
|
});
|
|
355
|
-
this.name = "ParameterVersionLabelLimitExceeded";
|
|
356
|
-
this.$fault = "client";
|
|
357
365
|
Object.setPrototypeOf(this, ParameterVersionLabelLimitExceeded.prototype);
|
|
358
366
|
}
|
|
359
367
|
}
|
|
@@ -458,14 +466,15 @@ export var NodeType;
|
|
|
458
466
|
};
|
|
459
467
|
})(NodeType || (NodeType = {}));
|
|
460
468
|
export class UnsupportedOperationException extends __BaseException {
|
|
469
|
+
name = "UnsupportedOperationException";
|
|
470
|
+
$fault = "client";
|
|
471
|
+
Message;
|
|
461
472
|
constructor(opts) {
|
|
462
473
|
super({
|
|
463
474
|
name: "UnsupportedOperationException",
|
|
464
475
|
$fault: "client",
|
|
465
476
|
...opts,
|
|
466
477
|
});
|
|
467
|
-
this.name = "UnsupportedOperationException";
|
|
468
|
-
this.$fault = "client";
|
|
469
478
|
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
470
479
|
this.Message = opts.Message;
|
|
471
480
|
}
|
|
@@ -504,54 +513,60 @@ export const LastResourceDataSyncStatus = {
|
|
|
504
513
|
SUCCESSFUL: "Successful",
|
|
505
514
|
};
|
|
506
515
|
export class DocumentPermissionLimit extends __BaseException {
|
|
516
|
+
name = "DocumentPermissionLimit";
|
|
517
|
+
$fault = "client";
|
|
518
|
+
Message;
|
|
507
519
|
constructor(opts) {
|
|
508
520
|
super({
|
|
509
521
|
name: "DocumentPermissionLimit",
|
|
510
522
|
$fault: "client",
|
|
511
523
|
...opts,
|
|
512
524
|
});
|
|
513
|
-
this.name = "DocumentPermissionLimit";
|
|
514
|
-
this.$fault = "client";
|
|
515
525
|
Object.setPrototypeOf(this, DocumentPermissionLimit.prototype);
|
|
516
526
|
this.Message = opts.Message;
|
|
517
527
|
}
|
|
518
528
|
}
|
|
519
529
|
export class ComplianceTypeCountLimitExceededException extends __BaseException {
|
|
530
|
+
name = "ComplianceTypeCountLimitExceededException";
|
|
531
|
+
$fault = "client";
|
|
532
|
+
Message;
|
|
520
533
|
constructor(opts) {
|
|
521
534
|
super({
|
|
522
535
|
name: "ComplianceTypeCountLimitExceededException",
|
|
523
536
|
$fault: "client",
|
|
524
537
|
...opts,
|
|
525
538
|
});
|
|
526
|
-
this.name = "ComplianceTypeCountLimitExceededException";
|
|
527
|
-
this.$fault = "client";
|
|
528
539
|
Object.setPrototypeOf(this, ComplianceTypeCountLimitExceededException.prototype);
|
|
529
540
|
this.Message = opts.Message;
|
|
530
541
|
}
|
|
531
542
|
}
|
|
532
543
|
export class InvalidItemContentException extends __BaseException {
|
|
544
|
+
name = "InvalidItemContentException";
|
|
545
|
+
$fault = "client";
|
|
546
|
+
TypeName;
|
|
547
|
+
Message;
|
|
533
548
|
constructor(opts) {
|
|
534
549
|
super({
|
|
535
550
|
name: "InvalidItemContentException",
|
|
536
551
|
$fault: "client",
|
|
537
552
|
...opts,
|
|
538
553
|
});
|
|
539
|
-
this.name = "InvalidItemContentException";
|
|
540
|
-
this.$fault = "client";
|
|
541
554
|
Object.setPrototypeOf(this, InvalidItemContentException.prototype);
|
|
542
555
|
this.TypeName = opts.TypeName;
|
|
543
556
|
this.Message = opts.Message;
|
|
544
557
|
}
|
|
545
558
|
}
|
|
546
559
|
export class ItemSizeLimitExceededException extends __BaseException {
|
|
560
|
+
name = "ItemSizeLimitExceededException";
|
|
561
|
+
$fault = "client";
|
|
562
|
+
TypeName;
|
|
563
|
+
Message;
|
|
547
564
|
constructor(opts) {
|
|
548
565
|
super({
|
|
549
566
|
name: "ItemSizeLimitExceededException",
|
|
550
567
|
$fault: "client",
|
|
551
568
|
...opts,
|
|
552
569
|
});
|
|
553
|
-
this.name = "ItemSizeLimitExceededException";
|
|
554
|
-
this.$fault = "client";
|
|
555
570
|
Object.setPrototypeOf(this, ItemSizeLimitExceededException.prototype);
|
|
556
571
|
this.TypeName = opts.TypeName;
|
|
557
572
|
this.Message = opts.Message;
|
|
@@ -562,251 +577,263 @@ export const ComplianceUploadType = {
|
|
|
562
577
|
Partial: "PARTIAL",
|
|
563
578
|
};
|
|
564
579
|
export class TotalSizeLimitExceededException extends __BaseException {
|
|
580
|
+
name = "TotalSizeLimitExceededException";
|
|
581
|
+
$fault = "client";
|
|
582
|
+
Message;
|
|
565
583
|
constructor(opts) {
|
|
566
584
|
super({
|
|
567
585
|
name: "TotalSizeLimitExceededException",
|
|
568
586
|
$fault: "client",
|
|
569
587
|
...opts,
|
|
570
588
|
});
|
|
571
|
-
this.name = "TotalSizeLimitExceededException";
|
|
572
|
-
this.$fault = "client";
|
|
573
589
|
Object.setPrototypeOf(this, TotalSizeLimitExceededException.prototype);
|
|
574
590
|
this.Message = opts.Message;
|
|
575
591
|
}
|
|
576
592
|
}
|
|
577
593
|
export class CustomSchemaCountLimitExceededException extends __BaseException {
|
|
594
|
+
name = "CustomSchemaCountLimitExceededException";
|
|
595
|
+
$fault = "client";
|
|
596
|
+
Message;
|
|
578
597
|
constructor(opts) {
|
|
579
598
|
super({
|
|
580
599
|
name: "CustomSchemaCountLimitExceededException",
|
|
581
600
|
$fault: "client",
|
|
582
601
|
...opts,
|
|
583
602
|
});
|
|
584
|
-
this.name = "CustomSchemaCountLimitExceededException";
|
|
585
|
-
this.$fault = "client";
|
|
586
603
|
Object.setPrototypeOf(this, CustomSchemaCountLimitExceededException.prototype);
|
|
587
604
|
this.Message = opts.Message;
|
|
588
605
|
}
|
|
589
606
|
}
|
|
590
607
|
export class InvalidInventoryItemContextException extends __BaseException {
|
|
608
|
+
name = "InvalidInventoryItemContextException";
|
|
609
|
+
$fault = "client";
|
|
610
|
+
Message;
|
|
591
611
|
constructor(opts) {
|
|
592
612
|
super({
|
|
593
613
|
name: "InvalidInventoryItemContextException",
|
|
594
614
|
$fault: "client",
|
|
595
615
|
...opts,
|
|
596
616
|
});
|
|
597
|
-
this.name = "InvalidInventoryItemContextException";
|
|
598
|
-
this.$fault = "client";
|
|
599
617
|
Object.setPrototypeOf(this, InvalidInventoryItemContextException.prototype);
|
|
600
618
|
this.Message = opts.Message;
|
|
601
619
|
}
|
|
602
620
|
}
|
|
603
621
|
export class ItemContentMismatchException extends __BaseException {
|
|
622
|
+
name = "ItemContentMismatchException";
|
|
623
|
+
$fault = "client";
|
|
624
|
+
TypeName;
|
|
625
|
+
Message;
|
|
604
626
|
constructor(opts) {
|
|
605
627
|
super({
|
|
606
628
|
name: "ItemContentMismatchException",
|
|
607
629
|
$fault: "client",
|
|
608
630
|
...opts,
|
|
609
631
|
});
|
|
610
|
-
this.name = "ItemContentMismatchException";
|
|
611
|
-
this.$fault = "client";
|
|
612
632
|
Object.setPrototypeOf(this, ItemContentMismatchException.prototype);
|
|
613
633
|
this.TypeName = opts.TypeName;
|
|
614
634
|
this.Message = opts.Message;
|
|
615
635
|
}
|
|
616
636
|
}
|
|
617
637
|
export class SubTypeCountLimitExceededException extends __BaseException {
|
|
638
|
+
name = "SubTypeCountLimitExceededException";
|
|
639
|
+
$fault = "client";
|
|
640
|
+
Message;
|
|
618
641
|
constructor(opts) {
|
|
619
642
|
super({
|
|
620
643
|
name: "SubTypeCountLimitExceededException",
|
|
621
644
|
$fault: "client",
|
|
622
645
|
...opts,
|
|
623
646
|
});
|
|
624
|
-
this.name = "SubTypeCountLimitExceededException";
|
|
625
|
-
this.$fault = "client";
|
|
626
647
|
Object.setPrototypeOf(this, SubTypeCountLimitExceededException.prototype);
|
|
627
648
|
this.Message = opts.Message;
|
|
628
649
|
}
|
|
629
650
|
}
|
|
630
651
|
export class UnsupportedInventoryItemContextException extends __BaseException {
|
|
652
|
+
name = "UnsupportedInventoryItemContextException";
|
|
653
|
+
$fault = "client";
|
|
654
|
+
TypeName;
|
|
655
|
+
Message;
|
|
631
656
|
constructor(opts) {
|
|
632
657
|
super({
|
|
633
658
|
name: "UnsupportedInventoryItemContextException",
|
|
634
659
|
$fault: "client",
|
|
635
660
|
...opts,
|
|
636
661
|
});
|
|
637
|
-
this.name = "UnsupportedInventoryItemContextException";
|
|
638
|
-
this.$fault = "client";
|
|
639
662
|
Object.setPrototypeOf(this, UnsupportedInventoryItemContextException.prototype);
|
|
640
663
|
this.TypeName = opts.TypeName;
|
|
641
664
|
this.Message = opts.Message;
|
|
642
665
|
}
|
|
643
666
|
}
|
|
644
667
|
export class UnsupportedInventorySchemaVersionException extends __BaseException {
|
|
668
|
+
name = "UnsupportedInventorySchemaVersionException";
|
|
669
|
+
$fault = "client";
|
|
670
|
+
Message;
|
|
645
671
|
constructor(opts) {
|
|
646
672
|
super({
|
|
647
673
|
name: "UnsupportedInventorySchemaVersionException",
|
|
648
674
|
$fault: "client",
|
|
649
675
|
...opts,
|
|
650
676
|
});
|
|
651
|
-
this.name = "UnsupportedInventorySchemaVersionException";
|
|
652
|
-
this.$fault = "client";
|
|
653
677
|
Object.setPrototypeOf(this, UnsupportedInventorySchemaVersionException.prototype);
|
|
654
678
|
this.Message = opts.Message;
|
|
655
679
|
}
|
|
656
680
|
}
|
|
657
681
|
export class HierarchyLevelLimitExceededException extends __BaseException {
|
|
682
|
+
name = "HierarchyLevelLimitExceededException";
|
|
683
|
+
$fault = "client";
|
|
658
684
|
constructor(opts) {
|
|
659
685
|
super({
|
|
660
686
|
name: "HierarchyLevelLimitExceededException",
|
|
661
687
|
$fault: "client",
|
|
662
688
|
...opts,
|
|
663
689
|
});
|
|
664
|
-
this.name = "HierarchyLevelLimitExceededException";
|
|
665
|
-
this.$fault = "client";
|
|
666
690
|
Object.setPrototypeOf(this, HierarchyLevelLimitExceededException.prototype);
|
|
667
691
|
}
|
|
668
692
|
}
|
|
669
693
|
export class HierarchyTypeMismatchException extends __BaseException {
|
|
694
|
+
name = "HierarchyTypeMismatchException";
|
|
695
|
+
$fault = "client";
|
|
670
696
|
constructor(opts) {
|
|
671
697
|
super({
|
|
672
698
|
name: "HierarchyTypeMismatchException",
|
|
673
699
|
$fault: "client",
|
|
674
700
|
...opts,
|
|
675
701
|
});
|
|
676
|
-
this.name = "HierarchyTypeMismatchException";
|
|
677
|
-
this.$fault = "client";
|
|
678
702
|
Object.setPrototypeOf(this, HierarchyTypeMismatchException.prototype);
|
|
679
703
|
}
|
|
680
704
|
}
|
|
681
705
|
export class IncompatiblePolicyException extends __BaseException {
|
|
706
|
+
name = "IncompatiblePolicyException";
|
|
707
|
+
$fault = "client";
|
|
682
708
|
constructor(opts) {
|
|
683
709
|
super({
|
|
684
710
|
name: "IncompatiblePolicyException",
|
|
685
711
|
$fault: "client",
|
|
686
712
|
...opts,
|
|
687
713
|
});
|
|
688
|
-
this.name = "IncompatiblePolicyException";
|
|
689
|
-
this.$fault = "client";
|
|
690
714
|
Object.setPrototypeOf(this, IncompatiblePolicyException.prototype);
|
|
691
715
|
}
|
|
692
716
|
}
|
|
693
717
|
export class InvalidAllowedPatternException extends __BaseException {
|
|
718
|
+
name = "InvalidAllowedPatternException";
|
|
719
|
+
$fault = "client";
|
|
694
720
|
constructor(opts) {
|
|
695
721
|
super({
|
|
696
722
|
name: "InvalidAllowedPatternException",
|
|
697
723
|
$fault: "client",
|
|
698
724
|
...opts,
|
|
699
725
|
});
|
|
700
|
-
this.name = "InvalidAllowedPatternException";
|
|
701
|
-
this.$fault = "client";
|
|
702
726
|
Object.setPrototypeOf(this, InvalidAllowedPatternException.prototype);
|
|
703
727
|
}
|
|
704
728
|
}
|
|
705
729
|
export class InvalidPolicyAttributeException extends __BaseException {
|
|
730
|
+
name = "InvalidPolicyAttributeException";
|
|
731
|
+
$fault = "client";
|
|
706
732
|
constructor(opts) {
|
|
707
733
|
super({
|
|
708
734
|
name: "InvalidPolicyAttributeException",
|
|
709
735
|
$fault: "client",
|
|
710
736
|
...opts,
|
|
711
737
|
});
|
|
712
|
-
this.name = "InvalidPolicyAttributeException";
|
|
713
|
-
this.$fault = "client";
|
|
714
738
|
Object.setPrototypeOf(this, InvalidPolicyAttributeException.prototype);
|
|
715
739
|
}
|
|
716
740
|
}
|
|
717
741
|
export class InvalidPolicyTypeException extends __BaseException {
|
|
742
|
+
name = "InvalidPolicyTypeException";
|
|
743
|
+
$fault = "client";
|
|
718
744
|
constructor(opts) {
|
|
719
745
|
super({
|
|
720
746
|
name: "InvalidPolicyTypeException",
|
|
721
747
|
$fault: "client",
|
|
722
748
|
...opts,
|
|
723
749
|
});
|
|
724
|
-
this.name = "InvalidPolicyTypeException";
|
|
725
|
-
this.$fault = "client";
|
|
726
750
|
Object.setPrototypeOf(this, InvalidPolicyTypeException.prototype);
|
|
727
751
|
}
|
|
728
752
|
}
|
|
729
753
|
export class ParameterAlreadyExists extends __BaseException {
|
|
754
|
+
name = "ParameterAlreadyExists";
|
|
755
|
+
$fault = "client";
|
|
730
756
|
constructor(opts) {
|
|
731
757
|
super({
|
|
732
758
|
name: "ParameterAlreadyExists",
|
|
733
759
|
$fault: "client",
|
|
734
760
|
...opts,
|
|
735
761
|
});
|
|
736
|
-
this.name = "ParameterAlreadyExists";
|
|
737
|
-
this.$fault = "client";
|
|
738
762
|
Object.setPrototypeOf(this, ParameterAlreadyExists.prototype);
|
|
739
763
|
}
|
|
740
764
|
}
|
|
741
765
|
export class ParameterLimitExceeded extends __BaseException {
|
|
766
|
+
name = "ParameterLimitExceeded";
|
|
767
|
+
$fault = "client";
|
|
742
768
|
constructor(opts) {
|
|
743
769
|
super({
|
|
744
770
|
name: "ParameterLimitExceeded",
|
|
745
771
|
$fault: "client",
|
|
746
772
|
...opts,
|
|
747
773
|
});
|
|
748
|
-
this.name = "ParameterLimitExceeded";
|
|
749
|
-
this.$fault = "client";
|
|
750
774
|
Object.setPrototypeOf(this, ParameterLimitExceeded.prototype);
|
|
751
775
|
}
|
|
752
776
|
}
|
|
753
777
|
export class ParameterMaxVersionLimitExceeded extends __BaseException {
|
|
778
|
+
name = "ParameterMaxVersionLimitExceeded";
|
|
779
|
+
$fault = "client";
|
|
754
780
|
constructor(opts) {
|
|
755
781
|
super({
|
|
756
782
|
name: "ParameterMaxVersionLimitExceeded",
|
|
757
783
|
$fault: "client",
|
|
758
784
|
...opts,
|
|
759
785
|
});
|
|
760
|
-
this.name = "ParameterMaxVersionLimitExceeded";
|
|
761
|
-
this.$fault = "client";
|
|
762
786
|
Object.setPrototypeOf(this, ParameterMaxVersionLimitExceeded.prototype);
|
|
763
787
|
}
|
|
764
788
|
}
|
|
765
789
|
export class ParameterPatternMismatchException extends __BaseException {
|
|
790
|
+
name = "ParameterPatternMismatchException";
|
|
791
|
+
$fault = "client";
|
|
766
792
|
constructor(opts) {
|
|
767
793
|
super({
|
|
768
794
|
name: "ParameterPatternMismatchException",
|
|
769
795
|
$fault: "client",
|
|
770
796
|
...opts,
|
|
771
797
|
});
|
|
772
|
-
this.name = "ParameterPatternMismatchException";
|
|
773
|
-
this.$fault = "client";
|
|
774
798
|
Object.setPrototypeOf(this, ParameterPatternMismatchException.prototype);
|
|
775
799
|
}
|
|
776
800
|
}
|
|
777
801
|
export class PoliciesLimitExceededException extends __BaseException {
|
|
802
|
+
name = "PoliciesLimitExceededException";
|
|
803
|
+
$fault = "client";
|
|
778
804
|
constructor(opts) {
|
|
779
805
|
super({
|
|
780
806
|
name: "PoliciesLimitExceededException",
|
|
781
807
|
$fault: "client",
|
|
782
808
|
...opts,
|
|
783
809
|
});
|
|
784
|
-
this.name = "PoliciesLimitExceededException";
|
|
785
|
-
this.$fault = "client";
|
|
786
810
|
Object.setPrototypeOf(this, PoliciesLimitExceededException.prototype);
|
|
787
811
|
}
|
|
788
812
|
}
|
|
789
813
|
export class UnsupportedParameterType extends __BaseException {
|
|
814
|
+
name = "UnsupportedParameterType";
|
|
815
|
+
$fault = "client";
|
|
790
816
|
constructor(opts) {
|
|
791
817
|
super({
|
|
792
818
|
name: "UnsupportedParameterType",
|
|
793
819
|
$fault: "client",
|
|
794
820
|
...opts,
|
|
795
821
|
});
|
|
796
|
-
this.name = "UnsupportedParameterType";
|
|
797
|
-
this.$fault = "client";
|
|
798
822
|
Object.setPrototypeOf(this, UnsupportedParameterType.prototype);
|
|
799
823
|
}
|
|
800
824
|
}
|
|
801
825
|
export class ResourcePolicyLimitExceededException extends __BaseException {
|
|
826
|
+
name = "ResourcePolicyLimitExceededException";
|
|
827
|
+
$fault = "client";
|
|
828
|
+
Limit;
|
|
829
|
+
LimitType;
|
|
830
|
+
Message;
|
|
802
831
|
constructor(opts) {
|
|
803
832
|
super({
|
|
804
833
|
name: "ResourcePolicyLimitExceededException",
|
|
805
834
|
$fault: "client",
|
|
806
835
|
...opts,
|
|
807
836
|
});
|
|
808
|
-
this.name = "ResourcePolicyLimitExceededException";
|
|
809
|
-
this.$fault = "client";
|
|
810
837
|
Object.setPrototypeOf(this, ResourcePolicyLimitExceededException.prototype);
|
|
811
838
|
this.Limit = opts.Limit;
|
|
812
839
|
this.LimitType = opts.LimitType;
|
|
@@ -814,14 +841,15 @@ export class ResourcePolicyLimitExceededException extends __BaseException {
|
|
|
814
841
|
}
|
|
815
842
|
}
|
|
816
843
|
export class FeatureNotAvailableException extends __BaseException {
|
|
844
|
+
name = "FeatureNotAvailableException";
|
|
845
|
+
$fault = "client";
|
|
846
|
+
Message;
|
|
817
847
|
constructor(opts) {
|
|
818
848
|
super({
|
|
819
849
|
name: "FeatureNotAvailableException",
|
|
820
850
|
$fault: "client",
|
|
821
851
|
...opts,
|
|
822
852
|
});
|
|
823
|
-
this.name = "FeatureNotAvailableException";
|
|
824
|
-
this.$fault = "client";
|
|
825
853
|
Object.setPrototypeOf(this, FeatureNotAvailableException.prototype);
|
|
826
854
|
this.Message = opts.Message;
|
|
827
855
|
}
|