@aws-sdk/client-ssm 3.52.0 → 3.53.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.
@@ -1,5 +1,6 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
2
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
3
+ import { SSMServiceException as __BaseException } from "./SSMServiceException";
3
4
  export var AccountSharingInfo;
4
5
  (function (AccountSharingInfo) {
5
6
  AccountSharingInfo.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -30,6 +31,81 @@ export var AddTagsToResourceResult;
30
31
  (function (AddTagsToResourceResult) {
31
32
  AddTagsToResourceResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
32
33
  })(AddTagsToResourceResult || (AddTagsToResourceResult = {}));
34
+ var InternalServerError = (function (_super) {
35
+ __extends(InternalServerError, _super);
36
+ function InternalServerError(opts) {
37
+ var _this = _super.call(this, __assign({ name: "InternalServerError", $fault: "server" }, opts)) || this;
38
+ _this.name = "InternalServerError";
39
+ _this.$fault = "server";
40
+ Object.setPrototypeOf(_this, InternalServerError.prototype);
41
+ _this.Message = opts.Message;
42
+ return _this;
43
+ }
44
+ return InternalServerError;
45
+ }(__BaseException));
46
+ export { InternalServerError };
47
+ var InvalidResourceId = (function (_super) {
48
+ __extends(InvalidResourceId, _super);
49
+ function InvalidResourceId(opts) {
50
+ var _this = _super.call(this, __assign({ name: "InvalidResourceId", $fault: "client" }, opts)) || this;
51
+ _this.name = "InvalidResourceId";
52
+ _this.$fault = "client";
53
+ Object.setPrototypeOf(_this, InvalidResourceId.prototype);
54
+ return _this;
55
+ }
56
+ return InvalidResourceId;
57
+ }(__BaseException));
58
+ export { InvalidResourceId };
59
+ var InvalidResourceType = (function (_super) {
60
+ __extends(InvalidResourceType, _super);
61
+ function InvalidResourceType(opts) {
62
+ var _this = _super.call(this, __assign({ name: "InvalidResourceType", $fault: "client" }, opts)) || this;
63
+ _this.name = "InvalidResourceType";
64
+ _this.$fault = "client";
65
+ Object.setPrototypeOf(_this, InvalidResourceType.prototype);
66
+ return _this;
67
+ }
68
+ return InvalidResourceType;
69
+ }(__BaseException));
70
+ export { InvalidResourceType };
71
+ var TooManyTagsError = (function (_super) {
72
+ __extends(TooManyTagsError, _super);
73
+ function TooManyTagsError(opts) {
74
+ var _this = _super.call(this, __assign({ name: "TooManyTagsError", $fault: "client" }, opts)) || this;
75
+ _this.name = "TooManyTagsError";
76
+ _this.$fault = "client";
77
+ Object.setPrototypeOf(_this, TooManyTagsError.prototype);
78
+ return _this;
79
+ }
80
+ return TooManyTagsError;
81
+ }(__BaseException));
82
+ export { TooManyTagsError };
83
+ var TooManyUpdates = (function (_super) {
84
+ __extends(TooManyUpdates, _super);
85
+ function TooManyUpdates(opts) {
86
+ var _this = _super.call(this, __assign({ name: "TooManyUpdates", $fault: "client" }, opts)) || this;
87
+ _this.name = "TooManyUpdates";
88
+ _this.$fault = "client";
89
+ Object.setPrototypeOf(_this, TooManyUpdates.prototype);
90
+ _this.Message = opts.Message;
91
+ return _this;
92
+ }
93
+ return TooManyUpdates;
94
+ }(__BaseException));
95
+ export { TooManyUpdates };
96
+ var AlreadyExistsException = (function (_super) {
97
+ __extends(AlreadyExistsException, _super);
98
+ function AlreadyExistsException(opts) {
99
+ var _this = _super.call(this, __assign({ name: "AlreadyExistsException", $fault: "client" }, opts)) || this;
100
+ _this.name = "AlreadyExistsException";
101
+ _this.$fault = "client";
102
+ Object.setPrototypeOf(_this, AlreadyExistsException.prototype);
103
+ _this.Message = opts.Message;
104
+ return _this;
105
+ }
106
+ return AlreadyExistsException;
107
+ }(__BaseException));
108
+ export { AlreadyExistsException };
33
109
  export var AssociateOpsItemRelatedItemRequest;
34
110
  (function (AssociateOpsItemRelatedItemRequest) {
35
111
  AssociateOpsItemRelatedItemRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -38,6 +114,64 @@ export var AssociateOpsItemRelatedItemResponse;
38
114
  (function (AssociateOpsItemRelatedItemResponse) {
39
115
  AssociateOpsItemRelatedItemResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
40
116
  })(AssociateOpsItemRelatedItemResponse || (AssociateOpsItemRelatedItemResponse = {}));
117
+ var OpsItemInvalidParameterException = (function (_super) {
118
+ __extends(OpsItemInvalidParameterException, _super);
119
+ function OpsItemInvalidParameterException(opts) {
120
+ var _this = _super.call(this, __assign({ name: "OpsItemInvalidParameterException", $fault: "client" }, opts)) || this;
121
+ _this.name = "OpsItemInvalidParameterException";
122
+ _this.$fault = "client";
123
+ Object.setPrototypeOf(_this, OpsItemInvalidParameterException.prototype);
124
+ _this.ParameterNames = opts.ParameterNames;
125
+ _this.Message = opts.Message;
126
+ return _this;
127
+ }
128
+ return OpsItemInvalidParameterException;
129
+ }(__BaseException));
130
+ export { OpsItemInvalidParameterException };
131
+ var OpsItemLimitExceededException = (function (_super) {
132
+ __extends(OpsItemLimitExceededException, _super);
133
+ function OpsItemLimitExceededException(opts) {
134
+ var _this = _super.call(this, __assign({ name: "OpsItemLimitExceededException", $fault: "client" }, opts)) || this;
135
+ _this.name = "OpsItemLimitExceededException";
136
+ _this.$fault = "client";
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
+ return _this;
143
+ }
144
+ return OpsItemLimitExceededException;
145
+ }(__BaseException));
146
+ export { OpsItemLimitExceededException };
147
+ var OpsItemNotFoundException = (function (_super) {
148
+ __extends(OpsItemNotFoundException, _super);
149
+ function OpsItemNotFoundException(opts) {
150
+ var _this = _super.call(this, __assign({ name: "OpsItemNotFoundException", $fault: "client" }, opts)) || this;
151
+ _this.name = "OpsItemNotFoundException";
152
+ _this.$fault = "client";
153
+ Object.setPrototypeOf(_this, OpsItemNotFoundException.prototype);
154
+ _this.Message = opts.Message;
155
+ return _this;
156
+ }
157
+ return OpsItemNotFoundException;
158
+ }(__BaseException));
159
+ export { OpsItemNotFoundException };
160
+ var OpsItemRelatedItemAlreadyExistsException = (function (_super) {
161
+ __extends(OpsItemRelatedItemAlreadyExistsException, _super);
162
+ function OpsItemRelatedItemAlreadyExistsException(opts) {
163
+ var _this = _super.call(this, __assign({ name: "OpsItemRelatedItemAlreadyExistsException", $fault: "client" }, opts)) || this;
164
+ _this.name = "OpsItemRelatedItemAlreadyExistsException";
165
+ _this.$fault = "client";
166
+ Object.setPrototypeOf(_this, OpsItemRelatedItemAlreadyExistsException.prototype);
167
+ _this.Message = opts.Message;
168
+ _this.ResourceUri = opts.ResourceUri;
169
+ _this.OpsItemId = opts.OpsItemId;
170
+ return _this;
171
+ }
172
+ return OpsItemRelatedItemAlreadyExistsException;
173
+ }(__BaseException));
174
+ export { OpsItemRelatedItemAlreadyExistsException };
41
175
  export var CancelCommandRequest;
42
176
  (function (CancelCommandRequest) {
43
177
  CancelCommandRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -46,6 +180,43 @@ export var CancelCommandResult;
46
180
  (function (CancelCommandResult) {
47
181
  CancelCommandResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
48
182
  })(CancelCommandResult || (CancelCommandResult = {}));
183
+ var DuplicateInstanceId = (function (_super) {
184
+ __extends(DuplicateInstanceId, _super);
185
+ function DuplicateInstanceId(opts) {
186
+ var _this = _super.call(this, __assign({ name: "DuplicateInstanceId", $fault: "client" }, opts)) || this;
187
+ _this.name = "DuplicateInstanceId";
188
+ _this.$fault = "client";
189
+ Object.setPrototypeOf(_this, DuplicateInstanceId.prototype);
190
+ return _this;
191
+ }
192
+ return DuplicateInstanceId;
193
+ }(__BaseException));
194
+ export { DuplicateInstanceId };
195
+ var InvalidCommandId = (function (_super) {
196
+ __extends(InvalidCommandId, _super);
197
+ function InvalidCommandId(opts) {
198
+ var _this = _super.call(this, __assign({ name: "InvalidCommandId", $fault: "client" }, opts)) || this;
199
+ _this.name = "InvalidCommandId";
200
+ _this.$fault = "client";
201
+ Object.setPrototypeOf(_this, InvalidCommandId.prototype);
202
+ return _this;
203
+ }
204
+ return InvalidCommandId;
205
+ }(__BaseException));
206
+ export { InvalidCommandId };
207
+ var InvalidInstanceId = (function (_super) {
208
+ __extends(InvalidInstanceId, _super);
209
+ function InvalidInstanceId(opts) {
210
+ var _this = _super.call(this, __assign({ name: "InvalidInstanceId", $fault: "client" }, opts)) || this;
211
+ _this.name = "InvalidInstanceId";
212
+ _this.$fault = "client";
213
+ Object.setPrototypeOf(_this, InvalidInstanceId.prototype);
214
+ _this.Message = opts.Message;
215
+ return _this;
216
+ }
217
+ return InvalidInstanceId;
218
+ }(__BaseException));
219
+ export { InvalidInstanceId };
49
220
  export var CancelMaintenanceWindowExecutionRequest;
50
221
  (function (CancelMaintenanceWindowExecutionRequest) {
51
222
  CancelMaintenanceWindowExecutionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -54,6 +225,19 @@ export var CancelMaintenanceWindowExecutionResult;
54
225
  (function (CancelMaintenanceWindowExecutionResult) {
55
226
  CancelMaintenanceWindowExecutionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
56
227
  })(CancelMaintenanceWindowExecutionResult || (CancelMaintenanceWindowExecutionResult = {}));
228
+ var DoesNotExistException = (function (_super) {
229
+ __extends(DoesNotExistException, _super);
230
+ function DoesNotExistException(opts) {
231
+ var _this = _super.call(this, __assign({ name: "DoesNotExistException", $fault: "client" }, opts)) || this;
232
+ _this.name = "DoesNotExistException";
233
+ _this.$fault = "client";
234
+ Object.setPrototypeOf(_this, DoesNotExistException.prototype);
235
+ _this.Message = opts.Message;
236
+ return _this;
237
+ }
238
+ return DoesNotExistException;
239
+ }(__BaseException));
240
+ export { DoesNotExistException };
57
241
  export var RegistrationMetadataItem;
58
242
  (function (RegistrationMetadataItem) {
59
243
  RegistrationMetadataItem.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -66,6 +250,43 @@ export var CreateActivationResult;
66
250
  (function (CreateActivationResult) {
67
251
  CreateActivationResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
68
252
  })(CreateActivationResult || (CreateActivationResult = {}));
253
+ var InvalidParameters = (function (_super) {
254
+ __extends(InvalidParameters, _super);
255
+ function InvalidParameters(opts) {
256
+ var _this = _super.call(this, __assign({ name: "InvalidParameters", $fault: "client" }, opts)) || this;
257
+ _this.name = "InvalidParameters";
258
+ _this.$fault = "client";
259
+ Object.setPrototypeOf(_this, InvalidParameters.prototype);
260
+ _this.Message = opts.Message;
261
+ return _this;
262
+ }
263
+ return InvalidParameters;
264
+ }(__BaseException));
265
+ export { InvalidParameters };
266
+ var AssociationAlreadyExists = (function (_super) {
267
+ __extends(AssociationAlreadyExists, _super);
268
+ function AssociationAlreadyExists(opts) {
269
+ var _this = _super.call(this, __assign({ name: "AssociationAlreadyExists", $fault: "client" }, opts)) || this;
270
+ _this.name = "AssociationAlreadyExists";
271
+ _this.$fault = "client";
272
+ Object.setPrototypeOf(_this, AssociationAlreadyExists.prototype);
273
+ return _this;
274
+ }
275
+ return AssociationAlreadyExists;
276
+ }(__BaseException));
277
+ export { AssociationAlreadyExists };
278
+ var AssociationLimitExceeded = (function (_super) {
279
+ __extends(AssociationLimitExceeded, _super);
280
+ function AssociationLimitExceeded(opts) {
281
+ var _this = _super.call(this, __assign({ name: "AssociationLimitExceeded", $fault: "client" }, opts)) || this;
282
+ _this.name = "AssociationLimitExceeded";
283
+ _this.$fault = "client";
284
+ Object.setPrototypeOf(_this, AssociationLimitExceeded.prototype);
285
+ return _this;
286
+ }
287
+ return AssociationLimitExceeded;
288
+ }(__BaseException));
289
+ export { AssociationLimitExceeded };
69
290
  export var AssociationComplianceSeverity;
70
291
  (function (AssociationComplianceSeverity) {
71
292
  AssociationComplianceSeverity["Critical"] = "CRITICAL";
@@ -123,6 +344,83 @@ export var CreateAssociationResult;
123
344
  AssociationDescription: AssociationDescription.filterSensitiveLog(obj.AssociationDescription),
124
345
  }))); };
125
346
  })(CreateAssociationResult || (CreateAssociationResult = {}));
347
+ var InvalidDocument = (function (_super) {
348
+ __extends(InvalidDocument, _super);
349
+ function InvalidDocument(opts) {
350
+ var _this = _super.call(this, __assign({ name: "InvalidDocument", $fault: "client" }, opts)) || this;
351
+ _this.name = "InvalidDocument";
352
+ _this.$fault = "client";
353
+ Object.setPrototypeOf(_this, InvalidDocument.prototype);
354
+ _this.Message = opts.Message;
355
+ return _this;
356
+ }
357
+ return InvalidDocument;
358
+ }(__BaseException));
359
+ export { InvalidDocument };
360
+ var InvalidDocumentVersion = (function (_super) {
361
+ __extends(InvalidDocumentVersion, _super);
362
+ function InvalidDocumentVersion(opts) {
363
+ var _this = _super.call(this, __assign({ name: "InvalidDocumentVersion", $fault: "client" }, opts)) || this;
364
+ _this.name = "InvalidDocumentVersion";
365
+ _this.$fault = "client";
366
+ Object.setPrototypeOf(_this, InvalidDocumentVersion.prototype);
367
+ _this.Message = opts.Message;
368
+ return _this;
369
+ }
370
+ return InvalidDocumentVersion;
371
+ }(__BaseException));
372
+ export { InvalidDocumentVersion };
373
+ var InvalidOutputLocation = (function (_super) {
374
+ __extends(InvalidOutputLocation, _super);
375
+ function InvalidOutputLocation(opts) {
376
+ var _this = _super.call(this, __assign({ name: "InvalidOutputLocation", $fault: "client" }, opts)) || this;
377
+ _this.name = "InvalidOutputLocation";
378
+ _this.$fault = "client";
379
+ Object.setPrototypeOf(_this, InvalidOutputLocation.prototype);
380
+ return _this;
381
+ }
382
+ return InvalidOutputLocation;
383
+ }(__BaseException));
384
+ export { InvalidOutputLocation };
385
+ var InvalidSchedule = (function (_super) {
386
+ __extends(InvalidSchedule, _super);
387
+ function InvalidSchedule(opts) {
388
+ var _this = _super.call(this, __assign({ name: "InvalidSchedule", $fault: "client" }, opts)) || this;
389
+ _this.name = "InvalidSchedule";
390
+ _this.$fault = "client";
391
+ Object.setPrototypeOf(_this, InvalidSchedule.prototype);
392
+ _this.Message = opts.Message;
393
+ return _this;
394
+ }
395
+ return InvalidSchedule;
396
+ }(__BaseException));
397
+ export { InvalidSchedule };
398
+ var InvalidTarget = (function (_super) {
399
+ __extends(InvalidTarget, _super);
400
+ function InvalidTarget(opts) {
401
+ var _this = _super.call(this, __assign({ name: "InvalidTarget", $fault: "client" }, opts)) || this;
402
+ _this.name = "InvalidTarget";
403
+ _this.$fault = "client";
404
+ Object.setPrototypeOf(_this, InvalidTarget.prototype);
405
+ _this.Message = opts.Message;
406
+ return _this;
407
+ }
408
+ return InvalidTarget;
409
+ }(__BaseException));
410
+ export { InvalidTarget };
411
+ var UnsupportedPlatformType = (function (_super) {
412
+ __extends(UnsupportedPlatformType, _super);
413
+ function UnsupportedPlatformType(opts) {
414
+ var _this = _super.call(this, __assign({ name: "UnsupportedPlatformType", $fault: "client" }, opts)) || this;
415
+ _this.name = "UnsupportedPlatformType";
416
+ _this.$fault = "client";
417
+ Object.setPrototypeOf(_this, UnsupportedPlatformType.prototype);
418
+ _this.Message = opts.Message;
419
+ return _this;
420
+ }
421
+ return UnsupportedPlatformType;
422
+ }(__BaseException));
423
+ export { UnsupportedPlatformType };
126
424
  export var CreateAssociationBatchRequestEntry;
127
425
  (function (CreateAssociationBatchRequestEntry) {
128
426
  CreateAssociationBatchRequestEntry.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Parameters && { Parameters: SENSITIVE_STRING }))); };
@@ -228,6 +526,71 @@ export var CreateDocumentResult;
228
526
  (function (CreateDocumentResult) {
229
527
  CreateDocumentResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
230
528
  })(CreateDocumentResult || (CreateDocumentResult = {}));
529
+ var DocumentAlreadyExists = (function (_super) {
530
+ __extends(DocumentAlreadyExists, _super);
531
+ function DocumentAlreadyExists(opts) {
532
+ var _this = _super.call(this, __assign({ name: "DocumentAlreadyExists", $fault: "client" }, opts)) || this;
533
+ _this.name = "DocumentAlreadyExists";
534
+ _this.$fault = "client";
535
+ Object.setPrototypeOf(_this, DocumentAlreadyExists.prototype);
536
+ _this.Message = opts.Message;
537
+ return _this;
538
+ }
539
+ return DocumentAlreadyExists;
540
+ }(__BaseException));
541
+ export { DocumentAlreadyExists };
542
+ var DocumentLimitExceeded = (function (_super) {
543
+ __extends(DocumentLimitExceeded, _super);
544
+ function DocumentLimitExceeded(opts) {
545
+ var _this = _super.call(this, __assign({ name: "DocumentLimitExceeded", $fault: "client" }, opts)) || this;
546
+ _this.name = "DocumentLimitExceeded";
547
+ _this.$fault = "client";
548
+ Object.setPrototypeOf(_this, DocumentLimitExceeded.prototype);
549
+ _this.Message = opts.Message;
550
+ return _this;
551
+ }
552
+ return DocumentLimitExceeded;
553
+ }(__BaseException));
554
+ export { DocumentLimitExceeded };
555
+ var InvalidDocumentContent = (function (_super) {
556
+ __extends(InvalidDocumentContent, _super);
557
+ function InvalidDocumentContent(opts) {
558
+ var _this = _super.call(this, __assign({ name: "InvalidDocumentContent", $fault: "client" }, opts)) || this;
559
+ _this.name = "InvalidDocumentContent";
560
+ _this.$fault = "client";
561
+ Object.setPrototypeOf(_this, InvalidDocumentContent.prototype);
562
+ _this.Message = opts.Message;
563
+ return _this;
564
+ }
565
+ return InvalidDocumentContent;
566
+ }(__BaseException));
567
+ export { InvalidDocumentContent };
568
+ var InvalidDocumentSchemaVersion = (function (_super) {
569
+ __extends(InvalidDocumentSchemaVersion, _super);
570
+ function InvalidDocumentSchemaVersion(opts) {
571
+ var _this = _super.call(this, __assign({ name: "InvalidDocumentSchemaVersion", $fault: "client" }, opts)) || this;
572
+ _this.name = "InvalidDocumentSchemaVersion";
573
+ _this.$fault = "client";
574
+ Object.setPrototypeOf(_this, InvalidDocumentSchemaVersion.prototype);
575
+ _this.Message = opts.Message;
576
+ return _this;
577
+ }
578
+ return InvalidDocumentSchemaVersion;
579
+ }(__BaseException));
580
+ export { InvalidDocumentSchemaVersion };
581
+ var MaxDocumentSizeExceeded = (function (_super) {
582
+ __extends(MaxDocumentSizeExceeded, _super);
583
+ function MaxDocumentSizeExceeded(opts) {
584
+ var _this = _super.call(this, __assign({ name: "MaxDocumentSizeExceeded", $fault: "client" }, opts)) || this;
585
+ _this.name = "MaxDocumentSizeExceeded";
586
+ _this.$fault = "client";
587
+ Object.setPrototypeOf(_this, MaxDocumentSizeExceeded.prototype);
588
+ _this.Message = opts.Message;
589
+ return _this;
590
+ }
591
+ return MaxDocumentSizeExceeded;
592
+ }(__BaseException));
593
+ export { MaxDocumentSizeExceeded };
231
594
  export var CreateMaintenanceWindowRequest;
232
595
  (function (CreateMaintenanceWindowRequest) {
233
596
  CreateMaintenanceWindowRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Description && { Description: SENSITIVE_STRING }))); };
@@ -236,6 +599,32 @@ export var CreateMaintenanceWindowResult;
236
599
  (function (CreateMaintenanceWindowResult) {
237
600
  CreateMaintenanceWindowResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
238
601
  })(CreateMaintenanceWindowResult || (CreateMaintenanceWindowResult = {}));
602
+ var IdempotentParameterMismatch = (function (_super) {
603
+ __extends(IdempotentParameterMismatch, _super);
604
+ function IdempotentParameterMismatch(opts) {
605
+ var _this = _super.call(this, __assign({ name: "IdempotentParameterMismatch", $fault: "client" }, opts)) || this;
606
+ _this.name = "IdempotentParameterMismatch";
607
+ _this.$fault = "client";
608
+ Object.setPrototypeOf(_this, IdempotentParameterMismatch.prototype);
609
+ _this.Message = opts.Message;
610
+ return _this;
611
+ }
612
+ return IdempotentParameterMismatch;
613
+ }(__BaseException));
614
+ export { IdempotentParameterMismatch };
615
+ var ResourceLimitExceededException = (function (_super) {
616
+ __extends(ResourceLimitExceededException, _super);
617
+ function ResourceLimitExceededException(opts) {
618
+ var _this = _super.call(this, __assign({ name: "ResourceLimitExceededException", $fault: "client" }, opts)) || this;
619
+ _this.name = "ResourceLimitExceededException";
620
+ _this.$fault = "client";
621
+ Object.setPrototypeOf(_this, ResourceLimitExceededException.prototype);
622
+ _this.Message = opts.Message;
623
+ return _this;
624
+ }
625
+ return ResourceLimitExceededException;
626
+ }(__BaseException));
627
+ export { ResourceLimitExceededException };
239
628
  export var OpsItemNotification;
240
629
  (function (OpsItemNotification) {
241
630
  OpsItemNotification.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -261,6 +650,20 @@ export var CreateOpsItemResponse;
261
650
  (function (CreateOpsItemResponse) {
262
651
  CreateOpsItemResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
263
652
  })(CreateOpsItemResponse || (CreateOpsItemResponse = {}));
653
+ var OpsItemAlreadyExistsException = (function (_super) {
654
+ __extends(OpsItemAlreadyExistsException, _super);
655
+ function OpsItemAlreadyExistsException(opts) {
656
+ var _this = _super.call(this, __assign({ name: "OpsItemAlreadyExistsException", $fault: "client" }, opts)) || this;
657
+ _this.name = "OpsItemAlreadyExistsException";
658
+ _this.$fault = "client";
659
+ Object.setPrototypeOf(_this, OpsItemAlreadyExistsException.prototype);
660
+ _this.Message = opts.Message;
661
+ _this.OpsItemId = opts.OpsItemId;
662
+ return _this;
663
+ }
664
+ return OpsItemAlreadyExistsException;
665
+ }(__BaseException));
666
+ export { OpsItemAlreadyExistsException };
264
667
  export var MetadataValue;
265
668
  (function (MetadataValue) {
266
669
  MetadataValue.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -273,6 +676,54 @@ export var CreateOpsMetadataResult;
273
676
  (function (CreateOpsMetadataResult) {
274
677
  CreateOpsMetadataResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
275
678
  })(CreateOpsMetadataResult || (CreateOpsMetadataResult = {}));
679
+ var OpsMetadataAlreadyExistsException = (function (_super) {
680
+ __extends(OpsMetadataAlreadyExistsException, _super);
681
+ function OpsMetadataAlreadyExistsException(opts) {
682
+ var _this = _super.call(this, __assign({ name: "OpsMetadataAlreadyExistsException", $fault: "client" }, opts)) || this;
683
+ _this.name = "OpsMetadataAlreadyExistsException";
684
+ _this.$fault = "client";
685
+ Object.setPrototypeOf(_this, OpsMetadataAlreadyExistsException.prototype);
686
+ return _this;
687
+ }
688
+ return OpsMetadataAlreadyExistsException;
689
+ }(__BaseException));
690
+ export { OpsMetadataAlreadyExistsException };
691
+ var OpsMetadataInvalidArgumentException = (function (_super) {
692
+ __extends(OpsMetadataInvalidArgumentException, _super);
693
+ function OpsMetadataInvalidArgumentException(opts) {
694
+ var _this = _super.call(this, __assign({ name: "OpsMetadataInvalidArgumentException", $fault: "client" }, opts)) || this;
695
+ _this.name = "OpsMetadataInvalidArgumentException";
696
+ _this.$fault = "client";
697
+ Object.setPrototypeOf(_this, OpsMetadataInvalidArgumentException.prototype);
698
+ return _this;
699
+ }
700
+ return OpsMetadataInvalidArgumentException;
701
+ }(__BaseException));
702
+ export { OpsMetadataInvalidArgumentException };
703
+ var OpsMetadataLimitExceededException = (function (_super) {
704
+ __extends(OpsMetadataLimitExceededException, _super);
705
+ function OpsMetadataLimitExceededException(opts) {
706
+ var _this = _super.call(this, __assign({ name: "OpsMetadataLimitExceededException", $fault: "client" }, opts)) || this;
707
+ _this.name = "OpsMetadataLimitExceededException";
708
+ _this.$fault = "client";
709
+ Object.setPrototypeOf(_this, OpsMetadataLimitExceededException.prototype);
710
+ return _this;
711
+ }
712
+ return OpsMetadataLimitExceededException;
713
+ }(__BaseException));
714
+ export { OpsMetadataLimitExceededException };
715
+ var OpsMetadataTooManyUpdatesException = (function (_super) {
716
+ __extends(OpsMetadataTooManyUpdatesException, _super);
717
+ function OpsMetadataTooManyUpdatesException(opts) {
718
+ var _this = _super.call(this, __assign({ name: "OpsMetadataTooManyUpdatesException", $fault: "client" }, opts)) || this;
719
+ _this.name = "OpsMetadataTooManyUpdatesException";
720
+ _this.$fault = "client";
721
+ Object.setPrototypeOf(_this, OpsMetadataTooManyUpdatesException.prototype);
722
+ return _this;
723
+ }
724
+ return OpsMetadataTooManyUpdatesException;
725
+ }(__BaseException));
726
+ export { OpsMetadataTooManyUpdatesException };
276
727
  export var PatchComplianceLevel;
277
728
  (function (PatchComplianceLevel) {
278
729
  PatchComplianceLevel["Critical"] = "CRITICAL";
@@ -383,6 +834,45 @@ export var CreateResourceDataSyncResult;
383
834
  (function (CreateResourceDataSyncResult) {
384
835
  CreateResourceDataSyncResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
385
836
  })(CreateResourceDataSyncResult || (CreateResourceDataSyncResult = {}));
837
+ var ResourceDataSyncAlreadyExistsException = (function (_super) {
838
+ __extends(ResourceDataSyncAlreadyExistsException, _super);
839
+ function ResourceDataSyncAlreadyExistsException(opts) {
840
+ var _this = _super.call(this, __assign({ name: "ResourceDataSyncAlreadyExistsException", $fault: "client" }, opts)) || this;
841
+ _this.name = "ResourceDataSyncAlreadyExistsException";
842
+ _this.$fault = "client";
843
+ Object.setPrototypeOf(_this, ResourceDataSyncAlreadyExistsException.prototype);
844
+ _this.SyncName = opts.SyncName;
845
+ return _this;
846
+ }
847
+ return ResourceDataSyncAlreadyExistsException;
848
+ }(__BaseException));
849
+ export { ResourceDataSyncAlreadyExistsException };
850
+ var ResourceDataSyncCountExceededException = (function (_super) {
851
+ __extends(ResourceDataSyncCountExceededException, _super);
852
+ function ResourceDataSyncCountExceededException(opts) {
853
+ var _this = _super.call(this, __assign({ name: "ResourceDataSyncCountExceededException", $fault: "client" }, opts)) || this;
854
+ _this.name = "ResourceDataSyncCountExceededException";
855
+ _this.$fault = "client";
856
+ Object.setPrototypeOf(_this, ResourceDataSyncCountExceededException.prototype);
857
+ _this.Message = opts.Message;
858
+ return _this;
859
+ }
860
+ return ResourceDataSyncCountExceededException;
861
+ }(__BaseException));
862
+ export { ResourceDataSyncCountExceededException };
863
+ var ResourceDataSyncInvalidConfigurationException = (function (_super) {
864
+ __extends(ResourceDataSyncInvalidConfigurationException, _super);
865
+ function ResourceDataSyncInvalidConfigurationException(opts) {
866
+ var _this = _super.call(this, __assign({ name: "ResourceDataSyncInvalidConfigurationException", $fault: "client" }, opts)) || this;
867
+ _this.name = "ResourceDataSyncInvalidConfigurationException";
868
+ _this.$fault = "client";
869
+ Object.setPrototypeOf(_this, ResourceDataSyncInvalidConfigurationException.prototype);
870
+ _this.Message = opts.Message;
871
+ return _this;
872
+ }
873
+ return ResourceDataSyncInvalidConfigurationException;
874
+ }(__BaseException));
875
+ export { ResourceDataSyncInvalidConfigurationException };
386
876
  export var DeleteActivationRequest;
387
877
  (function (DeleteActivationRequest) {
388
878
  DeleteActivationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -391,6 +881,45 @@ export var DeleteActivationResult;
391
881
  (function (DeleteActivationResult) {
392
882
  DeleteActivationResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
393
883
  })(DeleteActivationResult || (DeleteActivationResult = {}));
884
+ var InvalidActivation = (function (_super) {
885
+ __extends(InvalidActivation, _super);
886
+ function InvalidActivation(opts) {
887
+ var _this = _super.call(this, __assign({ name: "InvalidActivation", $fault: "client" }, opts)) || this;
888
+ _this.name = "InvalidActivation";
889
+ _this.$fault = "client";
890
+ Object.setPrototypeOf(_this, InvalidActivation.prototype);
891
+ _this.Message = opts.Message;
892
+ return _this;
893
+ }
894
+ return InvalidActivation;
895
+ }(__BaseException));
896
+ export { InvalidActivation };
897
+ var InvalidActivationId = (function (_super) {
898
+ __extends(InvalidActivationId, _super);
899
+ function InvalidActivationId(opts) {
900
+ var _this = _super.call(this, __assign({ name: "InvalidActivationId", $fault: "client" }, opts)) || this;
901
+ _this.name = "InvalidActivationId";
902
+ _this.$fault = "client";
903
+ Object.setPrototypeOf(_this, InvalidActivationId.prototype);
904
+ _this.Message = opts.Message;
905
+ return _this;
906
+ }
907
+ return InvalidActivationId;
908
+ }(__BaseException));
909
+ export { InvalidActivationId };
910
+ var AssociationDoesNotExist = (function (_super) {
911
+ __extends(AssociationDoesNotExist, _super);
912
+ function AssociationDoesNotExist(opts) {
913
+ var _this = _super.call(this, __assign({ name: "AssociationDoesNotExist", $fault: "client" }, opts)) || this;
914
+ _this.name = "AssociationDoesNotExist";
915
+ _this.$fault = "client";
916
+ Object.setPrototypeOf(_this, AssociationDoesNotExist.prototype);
917
+ _this.Message = opts.Message;
918
+ return _this;
919
+ }
920
+ return AssociationDoesNotExist;
921
+ }(__BaseException));
922
+ export { AssociationDoesNotExist };
394
923
  export var DeleteAssociationRequest;
395
924
  (function (DeleteAssociationRequest) {
396
925
  DeleteAssociationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -399,6 +928,18 @@ export var DeleteAssociationResult;
399
928
  (function (DeleteAssociationResult) {
400
929
  DeleteAssociationResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
401
930
  })(DeleteAssociationResult || (DeleteAssociationResult = {}));
931
+ var AssociatedInstances = (function (_super) {
932
+ __extends(AssociatedInstances, _super);
933
+ function AssociatedInstances(opts) {
934
+ var _this = _super.call(this, __assign({ name: "AssociatedInstances", $fault: "client" }, opts)) || this;
935
+ _this.name = "AssociatedInstances";
936
+ _this.$fault = "client";
937
+ Object.setPrototypeOf(_this, AssociatedInstances.prototype);
938
+ return _this;
939
+ }
940
+ return AssociatedInstances;
941
+ }(__BaseException));
942
+ export { AssociatedInstances };
402
943
  export var DeleteDocumentRequest;
403
944
  (function (DeleteDocumentRequest) {
404
945
  DeleteDocumentRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -407,6 +948,19 @@ export var DeleteDocumentResult;
407
948
  (function (DeleteDocumentResult) {
408
949
  DeleteDocumentResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
409
950
  })(DeleteDocumentResult || (DeleteDocumentResult = {}));
951
+ var InvalidDocumentOperation = (function (_super) {
952
+ __extends(InvalidDocumentOperation, _super);
953
+ function InvalidDocumentOperation(opts) {
954
+ var _this = _super.call(this, __assign({ name: "InvalidDocumentOperation", $fault: "client" }, opts)) || this;
955
+ _this.name = "InvalidDocumentOperation";
956
+ _this.$fault = "client";
957
+ Object.setPrototypeOf(_this, InvalidDocumentOperation.prototype);
958
+ _this.Message = opts.Message;
959
+ return _this;
960
+ }
961
+ return InvalidDocumentOperation;
962
+ }(__BaseException));
963
+ export { InvalidDocumentOperation };
410
964
  export var InventorySchemaDeleteOption;
411
965
  (function (InventorySchemaDeleteOption) {
412
966
  InventorySchemaDeleteOption["DELETE_SCHEMA"] = "DeleteSchema";
@@ -428,6 +982,58 @@ export var DeleteInventoryResult;
428
982
  (function (DeleteInventoryResult) {
429
983
  DeleteInventoryResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
430
984
  })(DeleteInventoryResult || (DeleteInventoryResult = {}));
985
+ var InvalidDeleteInventoryParametersException = (function (_super) {
986
+ __extends(InvalidDeleteInventoryParametersException, _super);
987
+ function InvalidDeleteInventoryParametersException(opts) {
988
+ var _this = _super.call(this, __assign({ name: "InvalidDeleteInventoryParametersException", $fault: "client" }, opts)) || this;
989
+ _this.name = "InvalidDeleteInventoryParametersException";
990
+ _this.$fault = "client";
991
+ Object.setPrototypeOf(_this, InvalidDeleteInventoryParametersException.prototype);
992
+ _this.Message = opts.Message;
993
+ return _this;
994
+ }
995
+ return InvalidDeleteInventoryParametersException;
996
+ }(__BaseException));
997
+ export { InvalidDeleteInventoryParametersException };
998
+ var InvalidInventoryRequestException = (function (_super) {
999
+ __extends(InvalidInventoryRequestException, _super);
1000
+ function InvalidInventoryRequestException(opts) {
1001
+ var _this = _super.call(this, __assign({ name: "InvalidInventoryRequestException", $fault: "client" }, opts)) || this;
1002
+ _this.name = "InvalidInventoryRequestException";
1003
+ _this.$fault = "client";
1004
+ Object.setPrototypeOf(_this, InvalidInventoryRequestException.prototype);
1005
+ _this.Message = opts.Message;
1006
+ return _this;
1007
+ }
1008
+ return InvalidInventoryRequestException;
1009
+ }(__BaseException));
1010
+ export { InvalidInventoryRequestException };
1011
+ var InvalidOptionException = (function (_super) {
1012
+ __extends(InvalidOptionException, _super);
1013
+ function InvalidOptionException(opts) {
1014
+ var _this = _super.call(this, __assign({ name: "InvalidOptionException", $fault: "client" }, opts)) || this;
1015
+ _this.name = "InvalidOptionException";
1016
+ _this.$fault = "client";
1017
+ Object.setPrototypeOf(_this, InvalidOptionException.prototype);
1018
+ _this.Message = opts.Message;
1019
+ return _this;
1020
+ }
1021
+ return InvalidOptionException;
1022
+ }(__BaseException));
1023
+ export { InvalidOptionException };
1024
+ var InvalidTypeNameException = (function (_super) {
1025
+ __extends(InvalidTypeNameException, _super);
1026
+ function InvalidTypeNameException(opts) {
1027
+ var _this = _super.call(this, __assign({ name: "InvalidTypeNameException", $fault: "client" }, opts)) || this;
1028
+ _this.name = "InvalidTypeNameException";
1029
+ _this.$fault = "client";
1030
+ Object.setPrototypeOf(_this, InvalidTypeNameException.prototype);
1031
+ _this.Message = opts.Message;
1032
+ return _this;
1033
+ }
1034
+ return InvalidTypeNameException;
1035
+ }(__BaseException));
1036
+ export { InvalidTypeNameException };
431
1037
  export var DeleteMaintenanceWindowRequest;
432
1038
  (function (DeleteMaintenanceWindowRequest) {
433
1039
  DeleteMaintenanceWindowRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -444,6 +1050,18 @@ export var DeleteOpsMetadataResult;
444
1050
  (function (DeleteOpsMetadataResult) {
445
1051
  DeleteOpsMetadataResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
446
1052
  })(DeleteOpsMetadataResult || (DeleteOpsMetadataResult = {}));
1053
+ var OpsMetadataNotFoundException = (function (_super) {
1054
+ __extends(OpsMetadataNotFoundException, _super);
1055
+ function OpsMetadataNotFoundException(opts) {
1056
+ var _this = _super.call(this, __assign({ name: "OpsMetadataNotFoundException", $fault: "client" }, opts)) || this;
1057
+ _this.name = "OpsMetadataNotFoundException";
1058
+ _this.$fault = "client";
1059
+ Object.setPrototypeOf(_this, OpsMetadataNotFoundException.prototype);
1060
+ return _this;
1061
+ }
1062
+ return OpsMetadataNotFoundException;
1063
+ }(__BaseException));
1064
+ export { OpsMetadataNotFoundException };
447
1065
  export var DeleteParameterRequest;
448
1066
  (function (DeleteParameterRequest) {
449
1067
  DeleteParameterRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -452,6 +1070,18 @@ export var DeleteParameterResult;
452
1070
  (function (DeleteParameterResult) {
453
1071
  DeleteParameterResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
454
1072
  })(DeleteParameterResult || (DeleteParameterResult = {}));
1073
+ var ParameterNotFound = (function (_super) {
1074
+ __extends(ParameterNotFound, _super);
1075
+ function ParameterNotFound(opts) {
1076
+ var _this = _super.call(this, __assign({ name: "ParameterNotFound", $fault: "client" }, opts)) || this;
1077
+ _this.name = "ParameterNotFound";
1078
+ _this.$fault = "client";
1079
+ Object.setPrototypeOf(_this, ParameterNotFound.prototype);
1080
+ return _this;
1081
+ }
1082
+ return ParameterNotFound;
1083
+ }(__BaseException));
1084
+ export { ParameterNotFound };
455
1085
  export var DeleteParametersRequest;
456
1086
  (function (DeleteParametersRequest) {
457
1087
  DeleteParametersRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -468,6 +1098,19 @@ export var DeletePatchBaselineResult;
468
1098
  (function (DeletePatchBaselineResult) {
469
1099
  DeletePatchBaselineResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
470
1100
  })(DeletePatchBaselineResult || (DeletePatchBaselineResult = {}));
1101
+ var ResourceInUseException = (function (_super) {
1102
+ __extends(ResourceInUseException, _super);
1103
+ function ResourceInUseException(opts) {
1104
+ var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
1105
+ _this.name = "ResourceInUseException";
1106
+ _this.$fault = "client";
1107
+ Object.setPrototypeOf(_this, ResourceInUseException.prototype);
1108
+ _this.Message = opts.Message;
1109
+ return _this;
1110
+ }
1111
+ return ResourceInUseException;
1112
+ }(__BaseException));
1113
+ export { ResourceInUseException };
471
1114
  export var DeleteResourceDataSyncRequest;
472
1115
  (function (DeleteResourceDataSyncRequest) {
473
1116
  DeleteResourceDataSyncRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -476,6 +1119,21 @@ export var DeleteResourceDataSyncResult;
476
1119
  (function (DeleteResourceDataSyncResult) {
477
1120
  DeleteResourceDataSyncResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
478
1121
  })(DeleteResourceDataSyncResult || (DeleteResourceDataSyncResult = {}));
1122
+ var ResourceDataSyncNotFoundException = (function (_super) {
1123
+ __extends(ResourceDataSyncNotFoundException, _super);
1124
+ function ResourceDataSyncNotFoundException(opts) {
1125
+ var _this = _super.call(this, __assign({ name: "ResourceDataSyncNotFoundException", $fault: "client" }, opts)) || this;
1126
+ _this.name = "ResourceDataSyncNotFoundException";
1127
+ _this.$fault = "client";
1128
+ Object.setPrototypeOf(_this, ResourceDataSyncNotFoundException.prototype);
1129
+ _this.SyncName = opts.SyncName;
1130
+ _this.SyncType = opts.SyncType;
1131
+ _this.Message = opts.Message;
1132
+ return _this;
1133
+ }
1134
+ return ResourceDataSyncNotFoundException;
1135
+ }(__BaseException));
1136
+ export { ResourceDataSyncNotFoundException };
479
1137
  export var DeregisterManagedInstanceRequest;
480
1138
  (function (DeregisterManagedInstanceRequest) {
481
1139
  DeregisterManagedInstanceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -500,6 +1158,19 @@ export var DeregisterTargetFromMaintenanceWindowResult;
500
1158
  (function (DeregisterTargetFromMaintenanceWindowResult) {
501
1159
  DeregisterTargetFromMaintenanceWindowResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
502
1160
  })(DeregisterTargetFromMaintenanceWindowResult || (DeregisterTargetFromMaintenanceWindowResult = {}));
1161
+ var TargetInUseException = (function (_super) {
1162
+ __extends(TargetInUseException, _super);
1163
+ function TargetInUseException(opts) {
1164
+ var _this = _super.call(this, __assign({ name: "TargetInUseException", $fault: "client" }, opts)) || this;
1165
+ _this.name = "TargetInUseException";
1166
+ _this.$fault = "client";
1167
+ Object.setPrototypeOf(_this, TargetInUseException.prototype);
1168
+ _this.Message = opts.Message;
1169
+ return _this;
1170
+ }
1171
+ return TargetInUseException;
1172
+ }(__BaseException));
1173
+ export { TargetInUseException };
503
1174
  export var DeregisterTaskFromMaintenanceWindowRequest;
504
1175
  (function (DeregisterTaskFromMaintenanceWindowRequest) {
505
1176
  DeregisterTaskFromMaintenanceWindowRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -526,6 +1197,32 @@ export var DescribeActivationsResult;
526
1197
  (function (DescribeActivationsResult) {
527
1198
  DescribeActivationsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
528
1199
  })(DescribeActivationsResult || (DescribeActivationsResult = {}));
1200
+ var InvalidFilter = (function (_super) {
1201
+ __extends(InvalidFilter, _super);
1202
+ function InvalidFilter(opts) {
1203
+ var _this = _super.call(this, __assign({ name: "InvalidFilter", $fault: "client" }, opts)) || this;
1204
+ _this.name = "InvalidFilter";
1205
+ _this.$fault = "client";
1206
+ Object.setPrototypeOf(_this, InvalidFilter.prototype);
1207
+ _this.Message = opts.Message;
1208
+ return _this;
1209
+ }
1210
+ return InvalidFilter;
1211
+ }(__BaseException));
1212
+ export { InvalidFilter };
1213
+ var InvalidNextToken = (function (_super) {
1214
+ __extends(InvalidNextToken, _super);
1215
+ function InvalidNextToken(opts) {
1216
+ var _this = _super.call(this, __assign({ name: "InvalidNextToken", $fault: "client" }, opts)) || this;
1217
+ _this.name = "InvalidNextToken";
1218
+ _this.$fault = "client";
1219
+ Object.setPrototypeOf(_this, InvalidNextToken.prototype);
1220
+ _this.Message = opts.Message;
1221
+ return _this;
1222
+ }
1223
+ return InvalidNextToken;
1224
+ }(__BaseException));
1225
+ export { InvalidNextToken };
529
1226
  export var DescribeAssociationRequest;
530
1227
  (function (DescribeAssociationRequest) {
531
1228
  DescribeAssociationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -536,6 +1233,19 @@ export var DescribeAssociationResult;
536
1233
  AssociationDescription: AssociationDescription.filterSensitiveLog(obj.AssociationDescription),
537
1234
  }))); };
538
1235
  })(DescribeAssociationResult || (DescribeAssociationResult = {}));
1236
+ var InvalidAssociationVersion = (function (_super) {
1237
+ __extends(InvalidAssociationVersion, _super);
1238
+ function InvalidAssociationVersion(opts) {
1239
+ var _this = _super.call(this, __assign({ name: "InvalidAssociationVersion", $fault: "client" }, opts)) || this;
1240
+ _this.name = "InvalidAssociationVersion";
1241
+ _this.$fault = "client";
1242
+ Object.setPrototypeOf(_this, InvalidAssociationVersion.prototype);
1243
+ _this.Message = opts.Message;
1244
+ return _this;
1245
+ }
1246
+ return InvalidAssociationVersion;
1247
+ }(__BaseException));
1248
+ export { InvalidAssociationVersion };
539
1249
  export var AssociationExecutionFilterKey;
540
1250
  (function (AssociationExecutionFilterKey) {
541
1251
  AssociationExecutionFilterKey["CreatedTime"] = "CreatedTime";
@@ -564,6 +1274,19 @@ export var DescribeAssociationExecutionsResult;
564
1274
  (function (DescribeAssociationExecutionsResult) {
565
1275
  DescribeAssociationExecutionsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
566
1276
  })(DescribeAssociationExecutionsResult || (DescribeAssociationExecutionsResult = {}));
1277
+ var AssociationExecutionDoesNotExist = (function (_super) {
1278
+ __extends(AssociationExecutionDoesNotExist, _super);
1279
+ function AssociationExecutionDoesNotExist(opts) {
1280
+ var _this = _super.call(this, __assign({ name: "AssociationExecutionDoesNotExist", $fault: "client" }, opts)) || this;
1281
+ _this.name = "AssociationExecutionDoesNotExist";
1282
+ _this.$fault = "client";
1283
+ Object.setPrototypeOf(_this, AssociationExecutionDoesNotExist.prototype);
1284
+ _this.Message = opts.Message;
1285
+ return _this;
1286
+ }
1287
+ return AssociationExecutionDoesNotExist;
1288
+ }(__BaseException));
1289
+ export { AssociationExecutionDoesNotExist };
567
1290
  export var AssociationExecutionTargetsFilterKey;
568
1291
  (function (AssociationExecutionTargetsFilterKey) {
569
1292
  AssociationExecutionTargetsFilterKey["ResourceId"] = "ResourceId";
@@ -664,6 +1387,44 @@ export var DescribeAutomationExecutionsResult;
664
1387
  (function (DescribeAutomationExecutionsResult) {
665
1388
  DescribeAutomationExecutionsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
666
1389
  })(DescribeAutomationExecutionsResult || (DescribeAutomationExecutionsResult = {}));
1390
+ var InvalidFilterKey = (function (_super) {
1391
+ __extends(InvalidFilterKey, _super);
1392
+ function InvalidFilterKey(opts) {
1393
+ var _this = _super.call(this, __assign({ name: "InvalidFilterKey", $fault: "client" }, opts)) || this;
1394
+ _this.name = "InvalidFilterKey";
1395
+ _this.$fault = "client";
1396
+ Object.setPrototypeOf(_this, InvalidFilterKey.prototype);
1397
+ return _this;
1398
+ }
1399
+ return InvalidFilterKey;
1400
+ }(__BaseException));
1401
+ export { InvalidFilterKey };
1402
+ var InvalidFilterValue = (function (_super) {
1403
+ __extends(InvalidFilterValue, _super);
1404
+ function InvalidFilterValue(opts) {
1405
+ var _this = _super.call(this, __assign({ name: "InvalidFilterValue", $fault: "client" }, opts)) || this;
1406
+ _this.name = "InvalidFilterValue";
1407
+ _this.$fault = "client";
1408
+ Object.setPrototypeOf(_this, InvalidFilterValue.prototype);
1409
+ _this.Message = opts.Message;
1410
+ return _this;
1411
+ }
1412
+ return InvalidFilterValue;
1413
+ }(__BaseException));
1414
+ export { InvalidFilterValue };
1415
+ var AutomationExecutionNotFoundException = (function (_super) {
1416
+ __extends(AutomationExecutionNotFoundException, _super);
1417
+ function AutomationExecutionNotFoundException(opts) {
1418
+ var _this = _super.call(this, __assign({ name: "AutomationExecutionNotFoundException", $fault: "client" }, opts)) || this;
1419
+ _this.name = "AutomationExecutionNotFoundException";
1420
+ _this.$fault = "client";
1421
+ Object.setPrototypeOf(_this, AutomationExecutionNotFoundException.prototype);
1422
+ _this.Message = opts.Message;
1423
+ return _this;
1424
+ }
1425
+ return AutomationExecutionNotFoundException;
1426
+ }(__BaseException));
1427
+ export { AutomationExecutionNotFoundException };
667
1428
  export var StepExecutionFilterKey;
668
1429
  (function (StepExecutionFilterKey) {
669
1430
  StepExecutionFilterKey["ACTION"] = "Action";
@@ -729,6 +1490,19 @@ export var DescribeDocumentPermissionResponse;
729
1490
  (function (DescribeDocumentPermissionResponse) {
730
1491
  DescribeDocumentPermissionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
731
1492
  })(DescribeDocumentPermissionResponse || (DescribeDocumentPermissionResponse = {}));
1493
+ var InvalidPermissionType = (function (_super) {
1494
+ __extends(InvalidPermissionType, _super);
1495
+ function InvalidPermissionType(opts) {
1496
+ var _this = _super.call(this, __assign({ name: "InvalidPermissionType", $fault: "client" }, opts)) || this;
1497
+ _this.name = "InvalidPermissionType";
1498
+ _this.$fault = "client";
1499
+ Object.setPrototypeOf(_this, InvalidPermissionType.prototype);
1500
+ _this.Message = opts.Message;
1501
+ return _this;
1502
+ }
1503
+ return InvalidPermissionType;
1504
+ }(__BaseException));
1505
+ export { InvalidPermissionType };
732
1506
  export var DescribeEffectiveInstanceAssociationsRequest;
733
1507
  (function (DescribeEffectiveInstanceAssociationsRequest) {
734
1508
  DescribeEffectiveInstanceAssociationsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -764,6 +1538,19 @@ export var DescribeEffectivePatchesForPatchBaselineResult;
764
1538
  (function (DescribeEffectivePatchesForPatchBaselineResult) {
765
1539
  DescribeEffectivePatchesForPatchBaselineResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
766
1540
  })(DescribeEffectivePatchesForPatchBaselineResult || (DescribeEffectivePatchesForPatchBaselineResult = {}));
1541
+ var UnsupportedOperatingSystem = (function (_super) {
1542
+ __extends(UnsupportedOperatingSystem, _super);
1543
+ function UnsupportedOperatingSystem(opts) {
1544
+ var _this = _super.call(this, __assign({ name: "UnsupportedOperatingSystem", $fault: "client" }, opts)) || this;
1545
+ _this.name = "UnsupportedOperatingSystem";
1546
+ _this.$fault = "client";
1547
+ Object.setPrototypeOf(_this, UnsupportedOperatingSystem.prototype);
1548
+ _this.Message = opts.Message;
1549
+ return _this;
1550
+ }
1551
+ return UnsupportedOperatingSystem;
1552
+ }(__BaseException));
1553
+ export { UnsupportedOperatingSystem };
767
1554
  export var DescribeInstanceAssociationsStatusRequest;
768
1555
  (function (DescribeInstanceAssociationsStatusRequest) {
769
1556
  DescribeInstanceAssociationsStatusRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -837,6 +1624,18 @@ export var DescribeInstanceInformationResult;
837
1624
  (function (DescribeInstanceInformationResult) {
838
1625
  DescribeInstanceInformationResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
839
1626
  })(DescribeInstanceInformationResult || (DescribeInstanceInformationResult = {}));
1627
+ var InvalidInstanceInformationFilterValue = (function (_super) {
1628
+ __extends(InvalidInstanceInformationFilterValue, _super);
1629
+ function InvalidInstanceInformationFilterValue(opts) {
1630
+ var _this = _super.call(this, __assign({ name: "InvalidInstanceInformationFilterValue", $fault: "client" }, opts)) || this;
1631
+ _this.name = "InvalidInstanceInformationFilterValue";
1632
+ _this.$fault = "client";
1633
+ Object.setPrototypeOf(_this, InvalidInstanceInformationFilterValue.prototype);
1634
+ return _this;
1635
+ }
1636
+ return InvalidInstanceInformationFilterValue;
1637
+ }(__BaseException));
1638
+ export { InvalidInstanceInformationFilterValue };
840
1639
  export var DescribeInstancePatchesRequest;
841
1640
  (function (DescribeInstancePatchesRequest) {
842
1641
  DescribeInstancePatchesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -921,6 +1720,19 @@ export var DescribeInventoryDeletionsResult;
921
1720
  (function (DescribeInventoryDeletionsResult) {
922
1721
  DescribeInventoryDeletionsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
923
1722
  })(DescribeInventoryDeletionsResult || (DescribeInventoryDeletionsResult = {}));
1723
+ var InvalidDeletionIdException = (function (_super) {
1724
+ __extends(InvalidDeletionIdException, _super);
1725
+ function InvalidDeletionIdException(opts) {
1726
+ var _this = _super.call(this, __assign({ name: "InvalidDeletionIdException", $fault: "client" }, opts)) || this;
1727
+ _this.name = "InvalidDeletionIdException";
1728
+ _this.$fault = "client";
1729
+ Object.setPrototypeOf(_this, InvalidDeletionIdException.prototype);
1730
+ _this.Message = opts.Message;
1731
+ return _this;
1732
+ }
1733
+ return InvalidDeletionIdException;
1734
+ }(__BaseException));
1735
+ export { InvalidDeletionIdException };
924
1736
  export var MaintenanceWindowFilter;
925
1737
  (function (MaintenanceWindowFilter) {
926
1738
  MaintenanceWindowFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };