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