@aws-sdk/client-ssm 3.301.0 → 3.306.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/models/models_0.js +344 -392
- package/dist-cjs/models/models_1.js +220 -256
- package/dist-cjs/models/models_2.js +6 -7
- package/dist-es/models/models_0.js +344 -392
- package/dist-es/models/models_1.js +220 -256
- package/dist-es/models/models_2.js +6 -7
- package/dist-types/models/models_0.d.ts +587 -347
- package/dist-types/models/models_1.d.ts +401 -221
- package/dist-types/models/models_2.d.ts +11 -6
- package/dist-types/ts3.4/models/models_0.d.ts +430 -344
- package/dist-types/ts3.4/models/models_1.d.ts +281 -220
- package/dist-types/ts3.4/models/models_2.d.ts +8 -6
- package/package.json +35 -35
|
@@ -6,46 +6,42 @@ exports.SendCommandResultFilterSensitiveLog = exports.SendCommandRequestFilterSe
|
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
7
|
const models_0_1 = require("./models_0");
|
|
8
8
|
const SSMServiceException_1 = require("./SSMServiceException");
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
ParameterType["SECURE_STRING"] = "SecureString";
|
|
46
|
-
ParameterType["STRING"] = "String";
|
|
47
|
-
ParameterType["STRING_LIST"] = "StringList";
|
|
48
|
-
})(ParameterType = exports.ParameterType || (exports.ParameterType = {}));
|
|
9
|
+
exports.OpsItemStatus = {
|
|
10
|
+
APPROVED: "Approved",
|
|
11
|
+
CANCELLED: "Cancelled",
|
|
12
|
+
CANCELLING: "Cancelling",
|
|
13
|
+
CHANGE_CALENDAR_OVERRIDE_APPROVED: "ChangeCalendarOverrideApproved",
|
|
14
|
+
CHANGE_CALENDAR_OVERRIDE_REJECTED: "ChangeCalendarOverrideRejected",
|
|
15
|
+
CLOSED: "Closed",
|
|
16
|
+
COMPLETED_WITH_FAILURE: "CompletedWithFailure",
|
|
17
|
+
COMPLETED_WITH_SUCCESS: "CompletedWithSuccess",
|
|
18
|
+
FAILED: "Failed",
|
|
19
|
+
IN_PROGRESS: "InProgress",
|
|
20
|
+
OPEN: "Open",
|
|
21
|
+
PENDING: "Pending",
|
|
22
|
+
PENDING_APPROVAL: "PendingApproval",
|
|
23
|
+
PENDING_CHANGE_CALENDAR_OVERRIDE: "PendingChangeCalendarOverride",
|
|
24
|
+
REJECTED: "Rejected",
|
|
25
|
+
RESOLVED: "Resolved",
|
|
26
|
+
RUNBOOK_IN_PROGRESS: "RunbookInProgress",
|
|
27
|
+
SCHEDULED: "Scheduled",
|
|
28
|
+
TIMED_OUT: "TimedOut",
|
|
29
|
+
};
|
|
30
|
+
exports.ParametersFilterKey = {
|
|
31
|
+
KEY_ID: "KeyId",
|
|
32
|
+
NAME: "Name",
|
|
33
|
+
TYPE: "Type",
|
|
34
|
+
};
|
|
35
|
+
exports.ParameterTier = {
|
|
36
|
+
ADVANCED: "Advanced",
|
|
37
|
+
INTELLIGENT_TIERING: "Intelligent-Tiering",
|
|
38
|
+
STANDARD: "Standard",
|
|
39
|
+
};
|
|
40
|
+
exports.ParameterType = {
|
|
41
|
+
SECURE_STRING: "SecureString",
|
|
42
|
+
STRING: "String",
|
|
43
|
+
STRING_LIST: "StringList",
|
|
44
|
+
};
|
|
49
45
|
class InvalidFilterOption extends SSMServiceException_1.SSMServiceException {
|
|
50
46
|
constructor(opts) {
|
|
51
47
|
super({
|
|
@@ -59,43 +55,38 @@ class InvalidFilterOption extends SSMServiceException_1.SSMServiceException {
|
|
|
59
55
|
}
|
|
60
56
|
}
|
|
61
57
|
exports.InvalidFilterOption = InvalidFilterOption;
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
SessionStatus["DISCONNECTED"] = "Disconnected";
|
|
95
|
-
SessionStatus["FAILED"] = "Failed";
|
|
96
|
-
SessionStatus["TERMINATED"] = "Terminated";
|
|
97
|
-
SessionStatus["TERMINATING"] = "Terminating";
|
|
98
|
-
})(SessionStatus = exports.SessionStatus || (exports.SessionStatus = {}));
|
|
58
|
+
exports.PatchSet = {
|
|
59
|
+
Application: "APPLICATION",
|
|
60
|
+
Os: "OS",
|
|
61
|
+
};
|
|
62
|
+
exports.PatchProperty = {
|
|
63
|
+
PatchClassification: "CLASSIFICATION",
|
|
64
|
+
PatchMsrcSeverity: "MSRC_SEVERITY",
|
|
65
|
+
PatchPriority: "PRIORITY",
|
|
66
|
+
PatchProductFamily: "PRODUCT_FAMILY",
|
|
67
|
+
PatchSeverity: "SEVERITY",
|
|
68
|
+
Product: "PRODUCT",
|
|
69
|
+
};
|
|
70
|
+
exports.SessionFilterKey = {
|
|
71
|
+
INVOKED_AFTER: "InvokedAfter",
|
|
72
|
+
INVOKED_BEFORE: "InvokedBefore",
|
|
73
|
+
OWNER: "Owner",
|
|
74
|
+
SESSION_ID: "SessionId",
|
|
75
|
+
STATUS: "Status",
|
|
76
|
+
TARGET_ID: "Target",
|
|
77
|
+
};
|
|
78
|
+
exports.SessionState = {
|
|
79
|
+
ACTIVE: "Active",
|
|
80
|
+
HISTORY: "History",
|
|
81
|
+
};
|
|
82
|
+
exports.SessionStatus = {
|
|
83
|
+
CONNECTED: "Connected",
|
|
84
|
+
CONNECTING: "Connecting",
|
|
85
|
+
DISCONNECTED: "Disconnected",
|
|
86
|
+
FAILED: "Failed",
|
|
87
|
+
TERMINATED: "Terminated",
|
|
88
|
+
TERMINATING: "Terminating",
|
|
89
|
+
};
|
|
99
90
|
class OpsItemRelatedItemAssociationNotFoundException extends SSMServiceException_1.SSMServiceException {
|
|
100
91
|
constructor(opts) {
|
|
101
92
|
super({
|
|
@@ -110,11 +101,10 @@ class OpsItemRelatedItemAssociationNotFoundException extends SSMServiceException
|
|
|
110
101
|
}
|
|
111
102
|
}
|
|
112
103
|
exports.OpsItemRelatedItemAssociationNotFoundException = OpsItemRelatedItemAssociationNotFoundException;
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
})(CalendarState = exports.CalendarState || (exports.CalendarState = {}));
|
|
104
|
+
exports.CalendarState = {
|
|
105
|
+
CLOSED: "CLOSED",
|
|
106
|
+
OPEN: "OPEN",
|
|
107
|
+
};
|
|
118
108
|
class InvalidDocumentType extends SSMServiceException_1.SSMServiceException {
|
|
119
109
|
constructor(opts) {
|
|
120
110
|
super({
|
|
@@ -143,17 +133,16 @@ class UnsupportedCalendarException extends SSMServiceException_1.SSMServiceExcep
|
|
|
143
133
|
}
|
|
144
134
|
}
|
|
145
135
|
exports.UnsupportedCalendarException = UnsupportedCalendarException;
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
})(CommandInvocationStatus = exports.CommandInvocationStatus || (exports.CommandInvocationStatus = {}));
|
|
136
|
+
exports.CommandInvocationStatus = {
|
|
137
|
+
CANCELLED: "Cancelled",
|
|
138
|
+
CANCELLING: "Cancelling",
|
|
139
|
+
DELAYED: "Delayed",
|
|
140
|
+
FAILED: "Failed",
|
|
141
|
+
IN_PROGRESS: "InProgress",
|
|
142
|
+
PENDING: "Pending",
|
|
143
|
+
SUCCESS: "Success",
|
|
144
|
+
TIMED_OUT: "TimedOut",
|
|
145
|
+
};
|
|
157
146
|
class InvalidPluginName extends SSMServiceException_1.SSMServiceException {
|
|
158
147
|
constructor(opts) {
|
|
159
148
|
super({
|
|
@@ -180,11 +169,10 @@ class InvocationDoesNotExist extends SSMServiceException_1.SSMServiceException {
|
|
|
180
169
|
}
|
|
181
170
|
}
|
|
182
171
|
exports.InvocationDoesNotExist = InvocationDoesNotExist;
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
})(ConnectionStatus = exports.ConnectionStatus || (exports.ConnectionStatus = {}));
|
|
172
|
+
exports.ConnectionStatus = {
|
|
173
|
+
CONNECTED: "Connected",
|
|
174
|
+
NOT_CONNECTED: "NotConnected",
|
|
175
|
+
};
|
|
188
176
|
class UnsupportedFeatureRequiredException extends SSMServiceException_1.SSMServiceException {
|
|
189
177
|
constructor(opts) {
|
|
190
178
|
super({
|
|
@@ -199,19 +187,17 @@ class UnsupportedFeatureRequiredException extends SSMServiceException_1.SSMServi
|
|
|
199
187
|
}
|
|
200
188
|
}
|
|
201
189
|
exports.UnsupportedFeatureRequiredException = UnsupportedFeatureRequiredException;
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
InventoryQueryOperatorType["NOT_EQUAL"] = "NotEqual";
|
|
214
|
-
})(InventoryQueryOperatorType = exports.InventoryQueryOperatorType || (exports.InventoryQueryOperatorType = {}));
|
|
190
|
+
exports.AttachmentHashType = {
|
|
191
|
+
SHA256: "Sha256",
|
|
192
|
+
};
|
|
193
|
+
exports.InventoryQueryOperatorType = {
|
|
194
|
+
BEGIN_WITH: "BeginWith",
|
|
195
|
+
EQUAL: "Equal",
|
|
196
|
+
EXISTS: "Exists",
|
|
197
|
+
GREATER_THAN: "GreaterThan",
|
|
198
|
+
LESS_THAN: "LessThan",
|
|
199
|
+
NOT_EQUAL: "NotEqual",
|
|
200
|
+
};
|
|
215
201
|
class InvalidAggregatorException extends SSMServiceException_1.SSMServiceException {
|
|
216
202
|
constructor(opts) {
|
|
217
203
|
super({
|
|
@@ -254,34 +240,30 @@ class InvalidResultAttributeException extends SSMServiceException_1.SSMServiceEx
|
|
|
254
240
|
}
|
|
255
241
|
}
|
|
256
242
|
exports.InvalidResultAttributeException = InvalidResultAttributeException;
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
OpsFilterOperatorType["GREATER_THAN"] = "GreaterThan";
|
|
282
|
-
OpsFilterOperatorType["LESS_THAN"] = "LessThan";
|
|
283
|
-
OpsFilterOperatorType["NOT_EQUAL"] = "NotEqual";
|
|
284
|
-
})(OpsFilterOperatorType = exports.OpsFilterOperatorType || (exports.OpsFilterOperatorType = {}));
|
|
243
|
+
exports.InventoryAttributeDataType = {
|
|
244
|
+
NUMBER: "number",
|
|
245
|
+
STRING: "string",
|
|
246
|
+
};
|
|
247
|
+
exports.NotificationEvent = {
|
|
248
|
+
ALL: "All",
|
|
249
|
+
CANCELLED: "Cancelled",
|
|
250
|
+
FAILED: "Failed",
|
|
251
|
+
IN_PROGRESS: "InProgress",
|
|
252
|
+
SUCCESS: "Success",
|
|
253
|
+
TIMED_OUT: "TimedOut",
|
|
254
|
+
};
|
|
255
|
+
exports.NotificationType = {
|
|
256
|
+
Command: "Command",
|
|
257
|
+
Invocation: "Invocation",
|
|
258
|
+
};
|
|
259
|
+
exports.OpsFilterOperatorType = {
|
|
260
|
+
BEGIN_WITH: "BeginWith",
|
|
261
|
+
EQUAL: "Equal",
|
|
262
|
+
EXISTS: "Exists",
|
|
263
|
+
GREATER_THAN: "GreaterThan",
|
|
264
|
+
LESS_THAN: "LessThan",
|
|
265
|
+
NOT_EQUAL: "NotEqual",
|
|
266
|
+
};
|
|
285
267
|
class InvalidKeyId extends SSMServiceException_1.SSMServiceException {
|
|
286
268
|
constructor(opts) {
|
|
287
269
|
super({
|
|
@@ -335,105 +317,90 @@ class ParameterVersionLabelLimitExceeded extends SSMServiceException_1.SSMServic
|
|
|
335
317
|
}
|
|
336
318
|
}
|
|
337
319
|
exports.ParameterVersionLabelLimitExceeded = ParameterVersionLabelLimitExceeded;
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
(function (OpsItemRelatedItemsFilterKey) {
|
|
423
|
-
OpsItemRelatedItemsFilterKey["ASSOCIATION_ID"] = "AssociationId";
|
|
424
|
-
OpsItemRelatedItemsFilterKey["RESOURCE_TYPE"] = "ResourceType";
|
|
425
|
-
OpsItemRelatedItemsFilterKey["RESOURCE_URI"] = "ResourceUri";
|
|
426
|
-
})(OpsItemRelatedItemsFilterKey = exports.OpsItemRelatedItemsFilterKey || (exports.OpsItemRelatedItemsFilterKey = {}));
|
|
427
|
-
var OpsItemRelatedItemsFilterOperator;
|
|
428
|
-
(function (OpsItemRelatedItemsFilterOperator) {
|
|
429
|
-
OpsItemRelatedItemsFilterOperator["EQUAL"] = "Equal";
|
|
430
|
-
})(OpsItemRelatedItemsFilterOperator = exports.OpsItemRelatedItemsFilterOperator || (exports.OpsItemRelatedItemsFilterOperator = {}));
|
|
431
|
-
var LastResourceDataSyncStatus;
|
|
432
|
-
(function (LastResourceDataSyncStatus) {
|
|
433
|
-
LastResourceDataSyncStatus["FAILED"] = "Failed";
|
|
434
|
-
LastResourceDataSyncStatus["INPROGRESS"] = "InProgress";
|
|
435
|
-
LastResourceDataSyncStatus["SUCCESSFUL"] = "Successful";
|
|
436
|
-
})(LastResourceDataSyncStatus = exports.LastResourceDataSyncStatus || (exports.LastResourceDataSyncStatus = {}));
|
|
320
|
+
exports.AssociationFilterKey = {
|
|
321
|
+
AssociationId: "AssociationId",
|
|
322
|
+
AssociationName: "AssociationName",
|
|
323
|
+
InstanceId: "InstanceId",
|
|
324
|
+
LastExecutedAfter: "LastExecutedAfter",
|
|
325
|
+
LastExecutedBefore: "LastExecutedBefore",
|
|
326
|
+
Name: "Name",
|
|
327
|
+
ResourceGroupName: "ResourceGroupName",
|
|
328
|
+
Status: "AssociationStatusName",
|
|
329
|
+
};
|
|
330
|
+
exports.CommandFilterKey = {
|
|
331
|
+
DOCUMENT_NAME: "DocumentName",
|
|
332
|
+
EXECUTION_STAGE: "ExecutionStage",
|
|
333
|
+
INVOKED_AFTER: "InvokedAfter",
|
|
334
|
+
INVOKED_BEFORE: "InvokedBefore",
|
|
335
|
+
STATUS: "Status",
|
|
336
|
+
};
|
|
337
|
+
exports.CommandPluginStatus = {
|
|
338
|
+
CANCELLED: "Cancelled",
|
|
339
|
+
FAILED: "Failed",
|
|
340
|
+
IN_PROGRESS: "InProgress",
|
|
341
|
+
PENDING: "Pending",
|
|
342
|
+
SUCCESS: "Success",
|
|
343
|
+
TIMED_OUT: "TimedOut",
|
|
344
|
+
};
|
|
345
|
+
exports.CommandStatus = {
|
|
346
|
+
CANCELLED: "Cancelled",
|
|
347
|
+
CANCELLING: "Cancelling",
|
|
348
|
+
FAILED: "Failed",
|
|
349
|
+
IN_PROGRESS: "InProgress",
|
|
350
|
+
PENDING: "Pending",
|
|
351
|
+
SUCCESS: "Success",
|
|
352
|
+
TIMED_OUT: "TimedOut",
|
|
353
|
+
};
|
|
354
|
+
exports.ComplianceQueryOperatorType = {
|
|
355
|
+
BeginWith: "BEGIN_WITH",
|
|
356
|
+
Equal: "EQUAL",
|
|
357
|
+
GreaterThan: "GREATER_THAN",
|
|
358
|
+
LessThan: "LESS_THAN",
|
|
359
|
+
NotEqual: "NOT_EQUAL",
|
|
360
|
+
};
|
|
361
|
+
exports.ComplianceSeverity = {
|
|
362
|
+
Critical: "CRITICAL",
|
|
363
|
+
High: "HIGH",
|
|
364
|
+
Informational: "INFORMATIONAL",
|
|
365
|
+
Low: "LOW",
|
|
366
|
+
Medium: "MEDIUM",
|
|
367
|
+
Unspecified: "UNSPECIFIED",
|
|
368
|
+
};
|
|
369
|
+
exports.ComplianceStatus = {
|
|
370
|
+
Compliant: "COMPLIANT",
|
|
371
|
+
NonCompliant: "NON_COMPLIANT",
|
|
372
|
+
};
|
|
373
|
+
exports.DocumentMetadataEnum = {
|
|
374
|
+
DocumentReviews: "DocumentReviews",
|
|
375
|
+
};
|
|
376
|
+
exports.DocumentReviewCommentType = {
|
|
377
|
+
Comment: "Comment",
|
|
378
|
+
};
|
|
379
|
+
exports.DocumentFilterKey = {
|
|
380
|
+
DocumentType: "DocumentType",
|
|
381
|
+
Name: "Name",
|
|
382
|
+
Owner: "Owner",
|
|
383
|
+
PlatformTypes: "PlatformTypes",
|
|
384
|
+
};
|
|
385
|
+
exports.OpsItemEventFilterKey = {
|
|
386
|
+
OPSITEM_ID: "OpsItemId",
|
|
387
|
+
};
|
|
388
|
+
exports.OpsItemEventFilterOperator = {
|
|
389
|
+
EQUAL: "Equal",
|
|
390
|
+
};
|
|
391
|
+
exports.OpsItemRelatedItemsFilterKey = {
|
|
392
|
+
ASSOCIATION_ID: "AssociationId",
|
|
393
|
+
RESOURCE_TYPE: "ResourceType",
|
|
394
|
+
RESOURCE_URI: "ResourceUri",
|
|
395
|
+
};
|
|
396
|
+
exports.OpsItemRelatedItemsFilterOperator = {
|
|
397
|
+
EQUAL: "Equal",
|
|
398
|
+
};
|
|
399
|
+
exports.LastResourceDataSyncStatus = {
|
|
400
|
+
FAILED: "Failed",
|
|
401
|
+
INPROGRESS: "InProgress",
|
|
402
|
+
SUCCESSFUL: "Successful",
|
|
403
|
+
};
|
|
437
404
|
class DocumentPermissionLimit extends SSMServiceException_1.SSMServiceException {
|
|
438
405
|
constructor(opts) {
|
|
439
406
|
super({
|
|
@@ -492,11 +459,10 @@ class ItemSizeLimitExceededException extends SSMServiceException_1.SSMServiceExc
|
|
|
492
459
|
}
|
|
493
460
|
}
|
|
494
461
|
exports.ItemSizeLimitExceededException = ItemSizeLimitExceededException;
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
})(ComplianceUploadType = exports.ComplianceUploadType || (exports.ComplianceUploadType = {}));
|
|
462
|
+
exports.ComplianceUploadType = {
|
|
463
|
+
Complete: "COMPLETE",
|
|
464
|
+
Partial: "PARTIAL",
|
|
465
|
+
};
|
|
500
466
|
class TotalSizeLimitExceededException extends SSMServiceException_1.SSMServiceException {
|
|
501
467
|
constructor(opts) {
|
|
502
468
|
super({
|
|
@@ -811,14 +777,13 @@ class InvalidAutomationSignalException extends SSMServiceException_1.SSMServiceE
|
|
|
811
777
|
}
|
|
812
778
|
}
|
|
813
779
|
exports.InvalidAutomationSignalException = InvalidAutomationSignalException;
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
})(SignalType = exports.SignalType || (exports.SignalType = {}));
|
|
780
|
+
exports.SignalType = {
|
|
781
|
+
APPROVE: "Approve",
|
|
782
|
+
REJECT: "Reject",
|
|
783
|
+
RESUME: "Resume",
|
|
784
|
+
START_STEP: "StartStep",
|
|
785
|
+
STOP_STEP: "StopStep",
|
|
786
|
+
};
|
|
822
787
|
class InvalidNotificationConfig extends SSMServiceException_1.SSMServiceException {
|
|
823
788
|
constructor(opts) {
|
|
824
789
|
super({
|
|
@@ -972,11 +937,10 @@ class InvalidAutomationStatusUpdateException extends SSMServiceException_1.SSMSe
|
|
|
972
937
|
}
|
|
973
938
|
}
|
|
974
939
|
exports.InvalidAutomationStatusUpdateException = InvalidAutomationStatusUpdateException;
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
})(StopType = exports.StopType || (exports.StopType = {}));
|
|
940
|
+
exports.StopType = {
|
|
941
|
+
CANCEL: "Cancel",
|
|
942
|
+
COMPLETE: "Complete",
|
|
943
|
+
};
|
|
980
944
|
class AssociationVersionLimitExceeded extends SSMServiceException_1.SSMServiceException {
|
|
981
945
|
constructor(opts) {
|
|
982
946
|
super({
|
|
@@ -74,13 +74,12 @@ class DuplicateDocumentVersionName extends SSMServiceException_1.SSMServiceExcep
|
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
exports.DuplicateDocumentVersionName = DuplicateDocumentVersionName;
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
})(DocumentReviewAction = exports.DocumentReviewAction || (exports.DocumentReviewAction = {}));
|
|
77
|
+
exports.DocumentReviewAction = {
|
|
78
|
+
Approve: "Approve",
|
|
79
|
+
Reject: "Reject",
|
|
80
|
+
SendForReview: "SendForReview",
|
|
81
|
+
UpdateReview: "UpdateReview",
|
|
82
|
+
};
|
|
84
83
|
class OpsMetadataKeyLimitExceededException extends SSMServiceException_1.SSMServiceException {
|
|
85
84
|
constructor(opts) {
|
|
86
85
|
super({
|