@aws-sdk/client-ssm 3.46.0 → 3.48.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/CHANGELOG.md +38 -0
- package/README.md +5 -6
- package/dist-cjs/endpoints.js +0 -28
- package/dist-cjs/models/models_0.js +5 -384
- package/dist-cjs/models/models_1.js +5 -348
- package/dist-cjs/models/models_2.js +1 -13
- package/dist-cjs/protocols/Aws_json1_1.js +26 -0
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +10 -2
- package/dist-es/endpoints.js +0 -28
- package/dist-es/models/models_0.js +0 -252
- package/dist-es/models/models_1.js +0 -228
- package/dist-es/models/models_2.js +0 -8
- package/dist-es/protocols/Aws_json1_1.js +26 -0
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -4
- package/dist-types/SSM.d.ts +48 -39
- package/dist-types/SSMClient.d.ts +10 -7
- package/dist-types/commands/CreateActivationCommand.d.ts +2 -2
- package/dist-types/commands/CreateAssociationBatchCommand.d.ts +3 -3
- package/dist-types/commands/DeleteAssociationCommand.d.ts +3 -3
- package/dist-types/commands/DescribeInstanceInformationCommand.d.ts +2 -2
- package/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +2 -1
- package/dist-types/commands/DescribeInstancePatchesCommand.d.ts +2 -2
- package/dist-types/commands/GetConnectionStatusCommand.d.ts +2 -2
- package/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +2 -2
- package/dist-types/commands/GetInventoryCommand.d.ts +2 -2
- package/dist-types/commands/ListAssociationsCommand.d.ts +2 -2
- package/dist-types/commands/ListCommandInvocationsCommand.d.ts +5 -5
- package/dist-types/commands/PutInventoryCommand.d.ts +3 -2
- package/dist-types/commands/StartSessionCommand.d.ts +3 -3
- package/dist-types/commands/UpdateAssociationCommand.d.ts +10 -2
- package/dist-types/models/models_0.d.ts +71 -439
- package/dist-types/models/models_1.d.ts +87 -422
- package/dist-types/models/models_2.d.ts +0 -12
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/SSMClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +4 -252
- package/dist-types/ts3.4/models/models_1.d.ts +0 -228
- package/dist-types/ts3.4/models/models_2.d.ts +0 -8
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +36 -36
|
@@ -60,8 +60,7 @@ export interface Activation {
|
|
|
60
60
|
*/
|
|
61
61
|
DefaultInstanceName?: string;
|
|
62
62
|
/**
|
|
63
|
-
* <p>The Identity and Access Management (IAM) role to assign to the managed
|
|
64
|
-
* node.</p>
|
|
63
|
+
* <p>The Identity and Access Management (IAM) role to assign to the managed node.</p>
|
|
65
64
|
*/
|
|
66
65
|
IamRole?: string;
|
|
67
66
|
/**
|
|
@@ -177,12 +176,6 @@ export interface InternalServerError extends __SmithyException, $MetadataBearer
|
|
|
177
176
|
$fault: "server";
|
|
178
177
|
Message?: string;
|
|
179
178
|
}
|
|
180
|
-
export declare namespace InternalServerError {
|
|
181
|
-
/**
|
|
182
|
-
* @internal
|
|
183
|
-
*/
|
|
184
|
-
const filterSensitiveLog: (obj: InternalServerError) => any;
|
|
185
|
-
}
|
|
186
179
|
/**
|
|
187
180
|
* <p>The resource ID isn't valid. Verify that you entered the correct ID and try again.</p>
|
|
188
181
|
*/
|
|
@@ -190,26 +183,14 @@ export interface InvalidResourceId extends __SmithyException, $MetadataBearer {
|
|
|
190
183
|
name: "InvalidResourceId";
|
|
191
184
|
$fault: "client";
|
|
192
185
|
}
|
|
193
|
-
export declare namespace InvalidResourceId {
|
|
194
|
-
/**
|
|
195
|
-
* @internal
|
|
196
|
-
*/
|
|
197
|
-
const filterSensitiveLog: (obj: InvalidResourceId) => any;
|
|
198
|
-
}
|
|
199
186
|
/**
|
|
200
|
-
* <p>The resource type isn't valid. For example, if you are attempting to tag an EC2 instance,
|
|
201
|
-
* instance must be a registered managed node.</p>
|
|
187
|
+
* <p>The resource type isn't valid. For example, if you are attempting to tag an EC2 instance,
|
|
188
|
+
* the instance must be a registered managed node.</p>
|
|
202
189
|
*/
|
|
203
190
|
export interface InvalidResourceType extends __SmithyException, $MetadataBearer {
|
|
204
191
|
name: "InvalidResourceType";
|
|
205
192
|
$fault: "client";
|
|
206
193
|
}
|
|
207
|
-
export declare namespace InvalidResourceType {
|
|
208
|
-
/**
|
|
209
|
-
* @internal
|
|
210
|
-
*/
|
|
211
|
-
const filterSensitiveLog: (obj: InvalidResourceType) => any;
|
|
212
|
-
}
|
|
213
194
|
/**
|
|
214
195
|
* <p>The <code>Targets</code> parameter includes too many tags. Remove one or more tags and try
|
|
215
196
|
* the command again.</p>
|
|
@@ -218,12 +199,6 @@ export interface TooManyTagsError extends __SmithyException, $MetadataBearer {
|
|
|
218
199
|
name: "TooManyTagsError";
|
|
219
200
|
$fault: "client";
|
|
220
201
|
}
|
|
221
|
-
export declare namespace TooManyTagsError {
|
|
222
|
-
/**
|
|
223
|
-
* @internal
|
|
224
|
-
*/
|
|
225
|
-
const filterSensitiveLog: (obj: TooManyTagsError) => any;
|
|
226
|
-
}
|
|
227
202
|
/**
|
|
228
203
|
* <p>There are concurrent updates for a resource that supports one update at a time.</p>
|
|
229
204
|
*/
|
|
@@ -232,12 +207,6 @@ export interface TooManyUpdates extends __SmithyException, $MetadataBearer {
|
|
|
232
207
|
$fault: "client";
|
|
233
208
|
Message?: string;
|
|
234
209
|
}
|
|
235
|
-
export declare namespace TooManyUpdates {
|
|
236
|
-
/**
|
|
237
|
-
* @internal
|
|
238
|
-
*/
|
|
239
|
-
const filterSensitiveLog: (obj: TooManyUpdates) => any;
|
|
240
|
-
}
|
|
241
210
|
/**
|
|
242
211
|
* <p>Error returned if an attempt is made to register a patch group with a patch baseline that is
|
|
243
212
|
* already registered with a different patch baseline.</p>
|
|
@@ -247,12 +216,6 @@ export interface AlreadyExistsException extends __SmithyException, $MetadataBear
|
|
|
247
216
|
$fault: "client";
|
|
248
217
|
Message?: string;
|
|
249
218
|
}
|
|
250
|
-
export declare namespace AlreadyExistsException {
|
|
251
|
-
/**
|
|
252
|
-
* @internal
|
|
253
|
-
*/
|
|
254
|
-
const filterSensitiveLog: (obj: AlreadyExistsException) => any;
|
|
255
|
-
}
|
|
256
219
|
export interface AssociateOpsItemRelatedItemRequest {
|
|
257
220
|
/**
|
|
258
221
|
* <p>The ID of the OpsItem to which you want to associate a resource as a related item.</p>
|
|
@@ -306,12 +269,6 @@ export interface OpsItemInvalidParameterException extends __SmithyException, $Me
|
|
|
306
269
|
ParameterNames?: string[];
|
|
307
270
|
Message?: string;
|
|
308
271
|
}
|
|
309
|
-
export declare namespace OpsItemInvalidParameterException {
|
|
310
|
-
/**
|
|
311
|
-
* @internal
|
|
312
|
-
*/
|
|
313
|
-
const filterSensitiveLog: (obj: OpsItemInvalidParameterException) => any;
|
|
314
|
-
}
|
|
315
272
|
/**
|
|
316
273
|
* <p>The request caused OpsItems to exceed one or more quotas. For information about OpsItem
|
|
317
274
|
* quotas, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-learn-more.html#OpsCenter-learn-more-limits">What are the resource limits for OpsCenter?</a>.</p>
|
|
@@ -324,12 +281,6 @@ export interface OpsItemLimitExceededException extends __SmithyException, $Metad
|
|
|
324
281
|
LimitType?: string;
|
|
325
282
|
Message?: string;
|
|
326
283
|
}
|
|
327
|
-
export declare namespace OpsItemLimitExceededException {
|
|
328
|
-
/**
|
|
329
|
-
* @internal
|
|
330
|
-
*/
|
|
331
|
-
const filterSensitiveLog: (obj: OpsItemLimitExceededException) => any;
|
|
332
|
-
}
|
|
333
284
|
/**
|
|
334
285
|
* <p>The specified OpsItem ID doesn't exist. Verify the ID and try again.</p>
|
|
335
286
|
*/
|
|
@@ -338,12 +289,6 @@ export interface OpsItemNotFoundException extends __SmithyException, $MetadataBe
|
|
|
338
289
|
$fault: "client";
|
|
339
290
|
Message?: string;
|
|
340
291
|
}
|
|
341
|
-
export declare namespace OpsItemNotFoundException {
|
|
342
|
-
/**
|
|
343
|
-
* @internal
|
|
344
|
-
*/
|
|
345
|
-
const filterSensitiveLog: (obj: OpsItemNotFoundException) => any;
|
|
346
|
-
}
|
|
347
292
|
/**
|
|
348
293
|
* <p>The Amazon Resource Name (ARN) is already associated with the OpsItem.</p>
|
|
349
294
|
*/
|
|
@@ -354,12 +299,6 @@ export interface OpsItemRelatedItemAlreadyExistsException extends __SmithyExcept
|
|
|
354
299
|
ResourceUri?: string;
|
|
355
300
|
OpsItemId?: string;
|
|
356
301
|
}
|
|
357
|
-
export declare namespace OpsItemRelatedItemAlreadyExistsException {
|
|
358
|
-
/**
|
|
359
|
-
* @internal
|
|
360
|
-
*/
|
|
361
|
-
const filterSensitiveLog: (obj: OpsItemRelatedItemAlreadyExistsException) => any;
|
|
362
|
-
}
|
|
363
302
|
/**
|
|
364
303
|
* <p></p>
|
|
365
304
|
*/
|
|
@@ -369,8 +308,8 @@ export interface CancelCommandRequest {
|
|
|
369
308
|
*/
|
|
370
309
|
CommandId: string | undefined;
|
|
371
310
|
/**
|
|
372
|
-
* <p>(Optional) A list of managed node IDs on which you want to cancel the command. If not
|
|
373
|
-
* the command is canceled on every node on which it was requested.</p>
|
|
311
|
+
* <p>(Optional) A list of managed node IDs on which you want to cancel the command. If not
|
|
312
|
+
* provided, the command is canceled on every node on which it was requested.</p>
|
|
374
313
|
*/
|
|
375
314
|
InstanceIds?: string[];
|
|
376
315
|
}
|
|
@@ -399,12 +338,6 @@ export interface DuplicateInstanceId extends __SmithyException, $MetadataBearer
|
|
|
399
338
|
name: "DuplicateInstanceId";
|
|
400
339
|
$fault: "client";
|
|
401
340
|
}
|
|
402
|
-
export declare namespace DuplicateInstanceId {
|
|
403
|
-
/**
|
|
404
|
-
* @internal
|
|
405
|
-
*/
|
|
406
|
-
const filterSensitiveLog: (obj: DuplicateInstanceId) => any;
|
|
407
|
-
}
|
|
408
341
|
/**
|
|
409
342
|
* <p>The specified command ID isn't valid. Verify the ID and try again.</p>
|
|
410
343
|
*/
|
|
@@ -412,12 +345,6 @@ export interface InvalidCommandId extends __SmithyException, $MetadataBearer {
|
|
|
412
345
|
name: "InvalidCommandId";
|
|
413
346
|
$fault: "client";
|
|
414
347
|
}
|
|
415
|
-
export declare namespace InvalidCommandId {
|
|
416
|
-
/**
|
|
417
|
-
* @internal
|
|
418
|
-
*/
|
|
419
|
-
const filterSensitiveLog: (obj: InvalidCommandId) => any;
|
|
420
|
-
}
|
|
421
348
|
/**
|
|
422
349
|
* <p>The following problems can cause this exception:</p>
|
|
423
350
|
* <ul>
|
|
@@ -443,12 +370,6 @@ export interface InvalidInstanceId extends __SmithyException, $MetadataBearer {
|
|
|
443
370
|
$fault: "client";
|
|
444
371
|
Message?: string;
|
|
445
372
|
}
|
|
446
|
-
export declare namespace InvalidInstanceId {
|
|
447
|
-
/**
|
|
448
|
-
* @internal
|
|
449
|
-
*/
|
|
450
|
-
const filterSensitiveLog: (obj: InvalidInstanceId) => any;
|
|
451
|
-
}
|
|
452
373
|
export interface CancelMaintenanceWindowExecutionRequest {
|
|
453
374
|
/**
|
|
454
375
|
* <p>The ID of the maintenance window execution to stop.</p>
|
|
@@ -484,12 +405,6 @@ export interface DoesNotExistException extends __SmithyException, $MetadataBeare
|
|
|
484
405
|
$fault: "client";
|
|
485
406
|
Message?: string;
|
|
486
407
|
}
|
|
487
|
-
export declare namespace DoesNotExistException {
|
|
488
|
-
/**
|
|
489
|
-
* @internal
|
|
490
|
-
*/
|
|
491
|
-
const filterSensitiveLog: (obj: DoesNotExistException) => any;
|
|
492
|
-
}
|
|
493
408
|
/**
|
|
494
409
|
* <p>Reserved for internal use.</p>
|
|
495
410
|
*/
|
|
@@ -567,9 +482,9 @@ export interface CreateActivationRequest {
|
|
|
567
482
|
* automatically applied to the on-premises servers or VMs.</p>
|
|
568
483
|
* </important>
|
|
569
484
|
* <p>You can't add tags to or delete tags from an existing activation. You can tag your
|
|
570
|
-
* on-premises servers, edge devices, and VMs after they connect to Systems Manager for the first time and are
|
|
571
|
-
* managed node ID. This means they are listed in the Amazon Web Services Systems Manager console with an ID that
|
|
572
|
-
* prefixed with "mi-". For information about how to add tags to your managed nodes, see <a>AddTagsToResource</a>. For information about how to remove tags from your managed nodes,
|
|
485
|
+
* on-premises servers, edge devices, and VMs after they connect to Systems Manager for the first time and are
|
|
486
|
+
* assigned a managed node ID. This means they are listed in the Amazon Web Services Systems Manager console with an ID that
|
|
487
|
+
* is prefixed with "mi-". For information about how to add tags to your managed nodes, see <a>AddTagsToResource</a>. For information about how to remove tags from your managed nodes,
|
|
573
488
|
* see <a>RemoveTagsFromResource</a>.</p>
|
|
574
489
|
*/
|
|
575
490
|
Tags?: Tag[];
|
|
@@ -611,12 +526,6 @@ export interface InvalidParameters extends __SmithyException, $MetadataBearer {
|
|
|
611
526
|
$fault: "client";
|
|
612
527
|
Message?: string;
|
|
613
528
|
}
|
|
614
|
-
export declare namespace InvalidParameters {
|
|
615
|
-
/**
|
|
616
|
-
* @internal
|
|
617
|
-
*/
|
|
618
|
-
const filterSensitiveLog: (obj: InvalidParameters) => any;
|
|
619
|
-
}
|
|
620
529
|
/**
|
|
621
530
|
* <p>The specified association already exists.</p>
|
|
622
531
|
*/
|
|
@@ -624,12 +533,6 @@ export interface AssociationAlreadyExists extends __SmithyException, $MetadataBe
|
|
|
624
533
|
name: "AssociationAlreadyExists";
|
|
625
534
|
$fault: "client";
|
|
626
535
|
}
|
|
627
|
-
export declare namespace AssociationAlreadyExists {
|
|
628
|
-
/**
|
|
629
|
-
* @internal
|
|
630
|
-
*/
|
|
631
|
-
const filterSensitiveLog: (obj: AssociationAlreadyExists) => any;
|
|
632
|
-
}
|
|
633
536
|
/**
|
|
634
537
|
* <p>You can have at most 2,000 active associations.</p>
|
|
635
538
|
*/
|
|
@@ -637,12 +540,6 @@ export interface AssociationLimitExceeded extends __SmithyException, $MetadataBe
|
|
|
637
540
|
name: "AssociationLimitExceeded";
|
|
638
541
|
$fault: "client";
|
|
639
542
|
}
|
|
640
|
-
export declare namespace AssociationLimitExceeded {
|
|
641
|
-
/**
|
|
642
|
-
* @internal
|
|
643
|
-
*/
|
|
644
|
-
const filterSensitiveLog: (obj: AssociationLimitExceeded) => any;
|
|
645
|
-
}
|
|
646
543
|
export declare enum AssociationComplianceSeverity {
|
|
647
544
|
Critical = "CRITICAL",
|
|
648
545
|
High = "HIGH",
|
|
@@ -871,17 +768,20 @@ export interface CreateAssociationRequest {
|
|
|
871
768
|
/**
|
|
872
769
|
* <p>The document version you want to associate with the target(s). Can be a specific version or
|
|
873
770
|
* the default version.</p>
|
|
771
|
+
* <important>
|
|
772
|
+
* <p>State Manager doesn't support running associations that use a new version of a document if that document is shared from another account. State Manager always runs the <code>default</code> version of a document if shared from another account, even though the Systems Manager console shows that a new version was processed. If you want to run an association using a new version of a document shared form another account, you must set the document version to <code>default</code>.</p>
|
|
773
|
+
* </important>
|
|
874
774
|
*/
|
|
875
775
|
DocumentVersion?: string;
|
|
876
776
|
/**
|
|
877
777
|
* <p>The managed node ID.</p>
|
|
878
778
|
* <note>
|
|
879
779
|
* <p>
|
|
880
|
-
* <code>InstanceId</code> has been deprecated. To specify a managed node ID for an
|
|
881
|
-
* use the <code>Targets</code> parameter. Requests that
|
|
882
|
-
* parameter <code>InstanceID</code> with Systems Manager documents (SSM documents) that use
|
|
883
|
-
* 2.0 or later will fail. In addition, if you use the
|
|
884
|
-
*
|
|
780
|
+
* <code>InstanceId</code> has been deprecated. To specify a managed node ID for an
|
|
781
|
+
* association, use the <code>Targets</code> parameter. Requests that
|
|
782
|
+
* include the parameter <code>InstanceID</code> with Systems Manager documents (SSM documents) that use
|
|
783
|
+
* schema version 2.0 or later will fail. In addition, if you use the
|
|
784
|
+
* parameter <code>InstanceId</code>, you can't use the parameters <code>AssociationName</code>,
|
|
885
785
|
* <code>DocumentVersion</code>, <code>MaxErrors</code>, <code>MaxConcurrency</code>,
|
|
886
786
|
* <code>OutputLocation</code>, or <code>ScheduleExpression</code>. To use these parameters, you
|
|
887
787
|
* must use the <code>Targets</code> parameter.</p>
|
|
@@ -941,8 +841,8 @@ export interface CreateAssociationRequest {
|
|
|
941
841
|
* value is 100%, which means all targets run the association at the same time.</p>
|
|
942
842
|
* <p>If a new managed node starts and attempts to run an association while Systems Manager is running
|
|
943
843
|
* <code>MaxConcurrency</code> associations, the association is allowed to run. During the next
|
|
944
|
-
* association interval, the new managed node will process its association within the limit
|
|
945
|
-
* for <code>MaxConcurrency</code>.</p>
|
|
844
|
+
* association interval, the new managed node will process its association within the limit
|
|
845
|
+
* specified for <code>MaxConcurrency</code>.</p>
|
|
946
846
|
*/
|
|
947
847
|
MaxConcurrency?: string;
|
|
948
848
|
/**
|
|
@@ -1143,8 +1043,8 @@ export interface AssociationDescription {
|
|
|
1143
1043
|
* value is 100%, which means all targets run the association at the same time.</p>
|
|
1144
1044
|
* <p>If a new managed node starts and attempts to run an association while Systems Manager is running
|
|
1145
1045
|
* <code>MaxConcurrency</code> associations, the association is allowed to run. During the next
|
|
1146
|
-
* association interval, the new managed node will process its association within the limit
|
|
1147
|
-
* for <code>MaxConcurrency</code>.</p>
|
|
1046
|
+
* association interval, the new managed node will process its association within the limit
|
|
1047
|
+
* specified for <code>MaxConcurrency</code>.</p>
|
|
1148
1048
|
*/
|
|
1149
1049
|
MaxConcurrency?: string;
|
|
1150
1050
|
/**
|
|
@@ -1214,12 +1114,6 @@ export interface InvalidDocument extends __SmithyException, $MetadataBearer {
|
|
|
1214
1114
|
*/
|
|
1215
1115
|
Message?: string;
|
|
1216
1116
|
}
|
|
1217
|
-
export declare namespace InvalidDocument {
|
|
1218
|
-
/**
|
|
1219
|
-
* @internal
|
|
1220
|
-
*/
|
|
1221
|
-
const filterSensitiveLog: (obj: InvalidDocument) => any;
|
|
1222
|
-
}
|
|
1223
1117
|
/**
|
|
1224
1118
|
* <p>The document version isn't valid or doesn't exist.</p>
|
|
1225
1119
|
*/
|
|
@@ -1228,12 +1122,6 @@ export interface InvalidDocumentVersion extends __SmithyException, $MetadataBear
|
|
|
1228
1122
|
$fault: "client";
|
|
1229
1123
|
Message?: string;
|
|
1230
1124
|
}
|
|
1231
|
-
export declare namespace InvalidDocumentVersion {
|
|
1232
|
-
/**
|
|
1233
|
-
* @internal
|
|
1234
|
-
*/
|
|
1235
|
-
const filterSensitiveLog: (obj: InvalidDocumentVersion) => any;
|
|
1236
|
-
}
|
|
1237
1125
|
/**
|
|
1238
1126
|
* <p>The output location isn't valid or doesn't exist.</p>
|
|
1239
1127
|
*/
|
|
@@ -1241,12 +1129,6 @@ export interface InvalidOutputLocation extends __SmithyException, $MetadataBeare
|
|
|
1241
1129
|
name: "InvalidOutputLocation";
|
|
1242
1130
|
$fault: "client";
|
|
1243
1131
|
}
|
|
1244
|
-
export declare namespace InvalidOutputLocation {
|
|
1245
|
-
/**
|
|
1246
|
-
* @internal
|
|
1247
|
-
*/
|
|
1248
|
-
const filterSensitiveLog: (obj: InvalidOutputLocation) => any;
|
|
1249
|
-
}
|
|
1250
1132
|
/**
|
|
1251
1133
|
* <p>The schedule is invalid. Verify your cron or rate expression and try again.</p>
|
|
1252
1134
|
*/
|
|
@@ -1255,12 +1137,6 @@ export interface InvalidSchedule extends __SmithyException, $MetadataBearer {
|
|
|
1255
1137
|
$fault: "client";
|
|
1256
1138
|
Message?: string;
|
|
1257
1139
|
}
|
|
1258
|
-
export declare namespace InvalidSchedule {
|
|
1259
|
-
/**
|
|
1260
|
-
* @internal
|
|
1261
|
-
*/
|
|
1262
|
-
const filterSensitiveLog: (obj: InvalidSchedule) => any;
|
|
1263
|
-
}
|
|
1264
1140
|
/**
|
|
1265
1141
|
* <p>The target isn't valid or doesn't exist. It might not be configured for Systems Manager or you might
|
|
1266
1142
|
* not have permission to perform the operation.</p>
|
|
@@ -1270,34 +1146,22 @@ export interface InvalidTarget extends __SmithyException, $MetadataBearer {
|
|
|
1270
1146
|
$fault: "client";
|
|
1271
1147
|
Message?: string;
|
|
1272
1148
|
}
|
|
1273
|
-
export declare namespace InvalidTarget {
|
|
1274
|
-
/**
|
|
1275
|
-
* @internal
|
|
1276
|
-
*/
|
|
1277
|
-
const filterSensitiveLog: (obj: InvalidTarget) => any;
|
|
1278
|
-
}
|
|
1279
1149
|
/**
|
|
1280
|
-
* <p>The document doesn't support the platform type of the given managed node ID(s). For example,
|
|
1281
|
-
* sent an document for a Windows managed node to a Linux node.</p>
|
|
1150
|
+
* <p>The document doesn't support the platform type of the given managed node ID(s). For example,
|
|
1151
|
+
* you sent an document for a Windows managed node to a Linux node.</p>
|
|
1282
1152
|
*/
|
|
1283
1153
|
export interface UnsupportedPlatformType extends __SmithyException, $MetadataBearer {
|
|
1284
1154
|
name: "UnsupportedPlatformType";
|
|
1285
1155
|
$fault: "client";
|
|
1286
1156
|
Message?: string;
|
|
1287
1157
|
}
|
|
1288
|
-
export declare namespace UnsupportedPlatformType {
|
|
1289
|
-
/**
|
|
1290
|
-
* @internal
|
|
1291
|
-
*/
|
|
1292
|
-
const filterSensitiveLog: (obj: UnsupportedPlatformType) => any;
|
|
1293
|
-
}
|
|
1294
1158
|
/**
|
|
1295
1159
|
* <p>Describes the association of a Amazon Web Services Systems Manager document (SSM document) and a managed node.</p>
|
|
1296
1160
|
*/
|
|
1297
1161
|
export interface CreateAssociationBatchRequestEntry {
|
|
1298
1162
|
/**
|
|
1299
|
-
* <p>The name of the SSM document that contains the configuration information for the managed
|
|
1300
|
-
* You can specify Command or Automation runbooks.</p>
|
|
1163
|
+
* <p>The name of the SSM document that contains the configuration information for the managed
|
|
1164
|
+
* node. You can specify Command or Automation runbooks.</p>
|
|
1301
1165
|
* <p>You can specify Amazon Web Services-predefined documents, documents you created, or a document that is
|
|
1302
1166
|
* shared with you from another account.</p>
|
|
1303
1167
|
* <p>For SSM documents that are shared with you from other Amazon Web Services accounts, you must specify the
|
|
@@ -1319,11 +1183,11 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
1319
1183
|
* <p>The managed node ID.</p>
|
|
1320
1184
|
* <note>
|
|
1321
1185
|
* <p>
|
|
1322
|
-
* <code>InstanceId</code> has been deprecated. To specify a managed node ID for an
|
|
1323
|
-
* use the <code>Targets</code> parameter. Requests that
|
|
1324
|
-
* parameter <code>InstanceID</code> with Systems Manager documents (SSM documents) that use
|
|
1325
|
-
* 2.0 or later will fail. In addition, if you use the
|
|
1326
|
-
*
|
|
1186
|
+
* <code>InstanceId</code> has been deprecated. To specify a managed node ID for an
|
|
1187
|
+
* association, use the <code>Targets</code> parameter. Requests that
|
|
1188
|
+
* include the parameter <code>InstanceID</code> with Systems Manager documents (SSM documents) that use
|
|
1189
|
+
* schema version 2.0 or later will fail. In addition, if you use the
|
|
1190
|
+
* parameter <code>InstanceId</code>, you can't use the parameters <code>AssociationName</code>,
|
|
1327
1191
|
* <code>DocumentVersion</code>, <code>MaxErrors</code>, <code>MaxConcurrency</code>,
|
|
1328
1192
|
* <code>OutputLocation</code>, or <code>ScheduleExpression</code>. To use these parameters, you
|
|
1329
1193
|
* must use the <code>Targets</code> parameter.</p>
|
|
@@ -1382,8 +1246,8 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
1382
1246
|
* value is 100%, which means all targets run the association at the same time.</p>
|
|
1383
1247
|
* <p>If a new managed node starts and attempts to run an association while Systems Manager is running
|
|
1384
1248
|
* <code>MaxConcurrency</code> associations, the association is allowed to run. During the next
|
|
1385
|
-
* association interval, the new managed node will process its association within the limit
|
|
1386
|
-
* for <code>MaxConcurrency</code>.</p>
|
|
1249
|
+
* association interval, the new managed node will process its association within the limit
|
|
1250
|
+
* specified for <code>MaxConcurrency</code>.</p>
|
|
1387
1251
|
*/
|
|
1388
1252
|
MaxConcurrency?: string;
|
|
1389
1253
|
/**
|
|
@@ -1797,7 +1661,7 @@ export declare enum DocumentStatus {
|
|
|
1797
1661
|
Updating = "Updating"
|
|
1798
1662
|
}
|
|
1799
1663
|
/**
|
|
1800
|
-
* <p>Describes
|
|
1664
|
+
* <p>Describes an Amazon Web Services Systems Manager document (SSM document). </p>
|
|
1801
1665
|
*/
|
|
1802
1666
|
export interface DocumentDescription {
|
|
1803
1667
|
/**
|
|
@@ -1863,7 +1727,7 @@ export interface DocumentDescription {
|
|
|
1863
1727
|
*/
|
|
1864
1728
|
Parameters?: DocumentParameter[];
|
|
1865
1729
|
/**
|
|
1866
|
-
* <p>The list of OS platforms compatible with this SSM document. </p>
|
|
1730
|
+
* <p>The list of operating system (OS) platforms compatible with this SSM document. </p>
|
|
1867
1731
|
*/
|
|
1868
1732
|
PlatformTypes?: (PlatformType | string)[];
|
|
1869
1733
|
/**
|
|
@@ -1926,6 +1790,14 @@ export interface DocumentDescription {
|
|
|
1926
1790
|
* <p>The current status of the review.</p>
|
|
1927
1791
|
*/
|
|
1928
1792
|
ReviewStatus?: ReviewStatus | string;
|
|
1793
|
+
/**
|
|
1794
|
+
* <p>The classification of a document to help you identify and categorize its use.</p>
|
|
1795
|
+
*/
|
|
1796
|
+
Category?: string[];
|
|
1797
|
+
/**
|
|
1798
|
+
* <p>The value that identifies a document's category.</p>
|
|
1799
|
+
*/
|
|
1800
|
+
CategoryEnum?: string[];
|
|
1929
1801
|
}
|
|
1930
1802
|
export declare namespace DocumentDescription {
|
|
1931
1803
|
/**
|
|
@@ -1953,12 +1825,6 @@ export interface DocumentAlreadyExists extends __SmithyException, $MetadataBeare
|
|
|
1953
1825
|
$fault: "client";
|
|
1954
1826
|
Message?: string;
|
|
1955
1827
|
}
|
|
1956
|
-
export declare namespace DocumentAlreadyExists {
|
|
1957
|
-
/**
|
|
1958
|
-
* @internal
|
|
1959
|
-
*/
|
|
1960
|
-
const filterSensitiveLog: (obj: DocumentAlreadyExists) => any;
|
|
1961
|
-
}
|
|
1962
1828
|
/**
|
|
1963
1829
|
* <p>You can have at most 500 active SSM documents.</p>
|
|
1964
1830
|
*/
|
|
@@ -1967,12 +1833,6 @@ export interface DocumentLimitExceeded extends __SmithyException, $MetadataBeare
|
|
|
1967
1833
|
$fault: "client";
|
|
1968
1834
|
Message?: string;
|
|
1969
1835
|
}
|
|
1970
|
-
export declare namespace DocumentLimitExceeded {
|
|
1971
|
-
/**
|
|
1972
|
-
* @internal
|
|
1973
|
-
*/
|
|
1974
|
-
const filterSensitiveLog: (obj: DocumentLimitExceeded) => any;
|
|
1975
|
-
}
|
|
1976
1836
|
/**
|
|
1977
1837
|
* <p>The content for the document isn't valid.</p>
|
|
1978
1838
|
*/
|
|
@@ -1984,12 +1844,6 @@ export interface InvalidDocumentContent extends __SmithyException, $MetadataBear
|
|
|
1984
1844
|
*/
|
|
1985
1845
|
Message?: string;
|
|
1986
1846
|
}
|
|
1987
|
-
export declare namespace InvalidDocumentContent {
|
|
1988
|
-
/**
|
|
1989
|
-
* @internal
|
|
1990
|
-
*/
|
|
1991
|
-
const filterSensitiveLog: (obj: InvalidDocumentContent) => any;
|
|
1992
|
-
}
|
|
1993
1847
|
/**
|
|
1994
1848
|
* <p>The version of the document schema isn't supported.</p>
|
|
1995
1849
|
*/
|
|
@@ -1998,12 +1852,6 @@ export interface InvalidDocumentSchemaVersion extends __SmithyException, $Metada
|
|
|
1998
1852
|
$fault: "client";
|
|
1999
1853
|
Message?: string;
|
|
2000
1854
|
}
|
|
2001
|
-
export declare namespace InvalidDocumentSchemaVersion {
|
|
2002
|
-
/**
|
|
2003
|
-
* @internal
|
|
2004
|
-
*/
|
|
2005
|
-
const filterSensitiveLog: (obj: InvalidDocumentSchemaVersion) => any;
|
|
2006
|
-
}
|
|
2007
1855
|
/**
|
|
2008
1856
|
* <p>The size limit of a document is 64 KB.</p>
|
|
2009
1857
|
*/
|
|
@@ -2012,12 +1860,6 @@ export interface MaxDocumentSizeExceeded extends __SmithyException, $MetadataBea
|
|
|
2012
1860
|
$fault: "client";
|
|
2013
1861
|
Message?: string;
|
|
2014
1862
|
}
|
|
2015
|
-
export declare namespace MaxDocumentSizeExceeded {
|
|
2016
|
-
/**
|
|
2017
|
-
* @internal
|
|
2018
|
-
*/
|
|
2019
|
-
const filterSensitiveLog: (obj: MaxDocumentSizeExceeded) => any;
|
|
2020
|
-
}
|
|
2021
1863
|
export interface CreateMaintenanceWindowRequest {
|
|
2022
1864
|
/**
|
|
2023
1865
|
* <p>The name of the maintenance window.</p>
|
|
@@ -2074,8 +1916,8 @@ export interface CreateMaintenanceWindowRequest {
|
|
|
2074
1916
|
Cutoff: number | undefined;
|
|
2075
1917
|
/**
|
|
2076
1918
|
* <p>Enables a maintenance window task to run on managed nodes, even if you haven't registered
|
|
2077
|
-
* those nodes as targets. If enabled, then you must specify the unregistered managed nodes (by
|
|
2078
|
-
*
|
|
1919
|
+
* those nodes as targets. If enabled, then you must specify the unregistered managed nodes (by node
|
|
1920
|
+
* ID) when you register a task with the maintenance window.</p>
|
|
2079
1921
|
* <p>If you don't enable this option, then you must specify previously-registered targets when
|
|
2080
1922
|
* you register a task with the maintenance window.</p>
|
|
2081
1923
|
*/
|
|
@@ -2140,12 +1982,6 @@ export interface IdempotentParameterMismatch extends __SmithyException, $Metadat
|
|
|
2140
1982
|
$fault: "client";
|
|
2141
1983
|
Message?: string;
|
|
2142
1984
|
}
|
|
2143
|
-
export declare namespace IdempotentParameterMismatch {
|
|
2144
|
-
/**
|
|
2145
|
-
* @internal
|
|
2146
|
-
*/
|
|
2147
|
-
const filterSensitiveLog: (obj: IdempotentParameterMismatch) => any;
|
|
2148
|
-
}
|
|
2149
1985
|
/**
|
|
2150
1986
|
* <p>Error returned when the caller has exceeded the default resource quotas. For example, too
|
|
2151
1987
|
* many maintenance windows or patch baselines have been created.</p>
|
|
@@ -2157,12 +1993,6 @@ export interface ResourceLimitExceededException extends __SmithyException, $Meta
|
|
|
2157
1993
|
$fault: "client";
|
|
2158
1994
|
Message?: string;
|
|
2159
1995
|
}
|
|
2160
|
-
export declare namespace ResourceLimitExceededException {
|
|
2161
|
-
/**
|
|
2162
|
-
* @internal
|
|
2163
|
-
*/
|
|
2164
|
-
const filterSensitiveLog: (obj: ResourceLimitExceededException) => any;
|
|
2165
|
-
}
|
|
2166
1996
|
/**
|
|
2167
1997
|
* <p>A notification about the OpsItem.</p>
|
|
2168
1998
|
*/
|
|
@@ -2351,12 +2181,6 @@ export interface OpsItemAlreadyExistsException extends __SmithyException, $Metad
|
|
|
2351
2181
|
Message?: string;
|
|
2352
2182
|
OpsItemId?: string;
|
|
2353
2183
|
}
|
|
2354
|
-
export declare namespace OpsItemAlreadyExistsException {
|
|
2355
|
-
/**
|
|
2356
|
-
* @internal
|
|
2357
|
-
*/
|
|
2358
|
-
const filterSensitiveLog: (obj: OpsItemAlreadyExistsException) => any;
|
|
2359
|
-
}
|
|
2360
2184
|
/**
|
|
2361
2185
|
* <p>Metadata to assign to an Application Manager application.</p>
|
|
2362
2186
|
*/
|
|
@@ -2430,12 +2254,6 @@ export interface OpsMetadataAlreadyExistsException extends __SmithyException, $M
|
|
|
2430
2254
|
$fault: "client";
|
|
2431
2255
|
message?: string;
|
|
2432
2256
|
}
|
|
2433
|
-
export declare namespace OpsMetadataAlreadyExistsException {
|
|
2434
|
-
/**
|
|
2435
|
-
* @internal
|
|
2436
|
-
*/
|
|
2437
|
-
const filterSensitiveLog: (obj: OpsMetadataAlreadyExistsException) => any;
|
|
2438
|
-
}
|
|
2439
2257
|
/**
|
|
2440
2258
|
* <p>One of the arguments passed is invalid. </p>
|
|
2441
2259
|
*/
|
|
@@ -2444,12 +2262,6 @@ export interface OpsMetadataInvalidArgumentException extends __SmithyException,
|
|
|
2444
2262
|
$fault: "client";
|
|
2445
2263
|
message?: string;
|
|
2446
2264
|
}
|
|
2447
|
-
export declare namespace OpsMetadataInvalidArgumentException {
|
|
2448
|
-
/**
|
|
2449
|
-
* @internal
|
|
2450
|
-
*/
|
|
2451
|
-
const filterSensitiveLog: (obj: OpsMetadataInvalidArgumentException) => any;
|
|
2452
|
-
}
|
|
2453
2265
|
/**
|
|
2454
2266
|
* <p>Your account reached the maximum number of OpsMetadata objects allowed by Application Manager. The
|
|
2455
2267
|
* maximum is 200 OpsMetadata objects. Delete one or more OpsMetadata object and try again.</p>
|
|
@@ -2459,12 +2271,6 @@ export interface OpsMetadataLimitExceededException extends __SmithyException, $M
|
|
|
2459
2271
|
$fault: "client";
|
|
2460
2272
|
message?: string;
|
|
2461
2273
|
}
|
|
2462
|
-
export declare namespace OpsMetadataLimitExceededException {
|
|
2463
|
-
/**
|
|
2464
|
-
* @internal
|
|
2465
|
-
*/
|
|
2466
|
-
const filterSensitiveLog: (obj: OpsMetadataLimitExceededException) => any;
|
|
2467
|
-
}
|
|
2468
2274
|
/**
|
|
2469
2275
|
* <p>The system is processing too many concurrent updates. Wait a few moments and try
|
|
2470
2276
|
* again.</p>
|
|
@@ -2474,12 +2280,6 @@ export interface OpsMetadataTooManyUpdatesException extends __SmithyException, $
|
|
|
2474
2280
|
$fault: "client";
|
|
2475
2281
|
message?: string;
|
|
2476
2282
|
}
|
|
2477
|
-
export declare namespace OpsMetadataTooManyUpdatesException {
|
|
2478
|
-
/**
|
|
2479
|
-
* @internal
|
|
2480
|
-
*/
|
|
2481
|
-
const filterSensitiveLog: (obj: OpsMetadataTooManyUpdatesException) => any;
|
|
2482
|
-
}
|
|
2483
2283
|
export declare enum PatchComplianceLevel {
|
|
2484
2284
|
Critical = "CRITICAL",
|
|
2485
2285
|
High = "HIGH",
|
|
@@ -2977,12 +2777,6 @@ export interface ResourceDataSyncAlreadyExistsException extends __SmithyExceptio
|
|
|
2977
2777
|
$fault: "client";
|
|
2978
2778
|
SyncName?: string;
|
|
2979
2779
|
}
|
|
2980
|
-
export declare namespace ResourceDataSyncAlreadyExistsException {
|
|
2981
|
-
/**
|
|
2982
|
-
* @internal
|
|
2983
|
-
*/
|
|
2984
|
-
const filterSensitiveLog: (obj: ResourceDataSyncAlreadyExistsException) => any;
|
|
2985
|
-
}
|
|
2986
2780
|
/**
|
|
2987
2781
|
* <p>You have exceeded the allowed maximum sync configurations.</p>
|
|
2988
2782
|
*/
|
|
@@ -2991,12 +2785,6 @@ export interface ResourceDataSyncCountExceededException extends __SmithyExceptio
|
|
|
2991
2785
|
$fault: "client";
|
|
2992
2786
|
Message?: string;
|
|
2993
2787
|
}
|
|
2994
|
-
export declare namespace ResourceDataSyncCountExceededException {
|
|
2995
|
-
/**
|
|
2996
|
-
* @internal
|
|
2997
|
-
*/
|
|
2998
|
-
const filterSensitiveLog: (obj: ResourceDataSyncCountExceededException) => any;
|
|
2999
|
-
}
|
|
3000
2788
|
/**
|
|
3001
2789
|
* <p>The specified sync configuration is invalid.</p>
|
|
3002
2790
|
*/
|
|
@@ -3005,12 +2793,6 @@ export interface ResourceDataSyncInvalidConfigurationException extends __SmithyE
|
|
|
3005
2793
|
$fault: "client";
|
|
3006
2794
|
Message?: string;
|
|
3007
2795
|
}
|
|
3008
|
-
export declare namespace ResourceDataSyncInvalidConfigurationException {
|
|
3009
|
-
/**
|
|
3010
|
-
* @internal
|
|
3011
|
-
*/
|
|
3012
|
-
const filterSensitiveLog: (obj: ResourceDataSyncInvalidConfigurationException) => any;
|
|
3013
|
-
}
|
|
3014
2796
|
export interface DeleteActivationRequest {
|
|
3015
2797
|
/**
|
|
3016
2798
|
* <p>The ID of the activation that you want to delete.</p>
|
|
@@ -3040,12 +2822,6 @@ export interface InvalidActivation extends __SmithyException, $MetadataBearer {
|
|
|
3040
2822
|
$fault: "client";
|
|
3041
2823
|
Message?: string;
|
|
3042
2824
|
}
|
|
3043
|
-
export declare namespace InvalidActivation {
|
|
3044
|
-
/**
|
|
3045
|
-
* @internal
|
|
3046
|
-
*/
|
|
3047
|
-
const filterSensitiveLog: (obj: InvalidActivation) => any;
|
|
3048
|
-
}
|
|
3049
2825
|
/**
|
|
3050
2826
|
* <p>The activation ID isn't valid. Verify the you entered the correct ActivationId or
|
|
3051
2827
|
* ActivationCode and try again.</p>
|
|
@@ -3055,12 +2831,6 @@ export interface InvalidActivationId extends __SmithyException, $MetadataBearer
|
|
|
3055
2831
|
$fault: "client";
|
|
3056
2832
|
Message?: string;
|
|
3057
2833
|
}
|
|
3058
|
-
export declare namespace InvalidActivationId {
|
|
3059
|
-
/**
|
|
3060
|
-
* @internal
|
|
3061
|
-
*/
|
|
3062
|
-
const filterSensitiveLog: (obj: InvalidActivationId) => any;
|
|
3063
|
-
}
|
|
3064
2834
|
/**
|
|
3065
2835
|
* <p>The specified association doesn't exist.</p>
|
|
3066
2836
|
*/
|
|
@@ -3069,12 +2839,6 @@ export interface AssociationDoesNotExist extends __SmithyException, $MetadataBea
|
|
|
3069
2839
|
$fault: "client";
|
|
3070
2840
|
Message?: string;
|
|
3071
2841
|
}
|
|
3072
|
-
export declare namespace AssociationDoesNotExist {
|
|
3073
|
-
/**
|
|
3074
|
-
* @internal
|
|
3075
|
-
*/
|
|
3076
|
-
const filterSensitiveLog: (obj: AssociationDoesNotExist) => any;
|
|
3077
|
-
}
|
|
3078
2842
|
export interface DeleteAssociationRequest {
|
|
3079
2843
|
/**
|
|
3080
2844
|
* <p>The name of the SSM document.</p>
|
|
@@ -3084,14 +2848,14 @@ export interface DeleteAssociationRequest {
|
|
|
3084
2848
|
* <p>The managed node ID.</p>
|
|
3085
2849
|
* <note>
|
|
3086
2850
|
* <p>
|
|
3087
|
-
* <code>InstanceId</code> has been deprecated. To specify a managed node ID for an
|
|
3088
|
-
* use the <code>Targets</code> parameter. Requests that include the
|
|
3089
|
-
*
|
|
3090
|
-
*
|
|
3091
|
-
*
|
|
3092
|
-
* <code>
|
|
3093
|
-
* <code>
|
|
3094
|
-
*
|
|
2851
|
+
* <code>InstanceId</code> has been deprecated. To specify a managed node ID for an
|
|
2852
|
+
* association, use the <code>Targets</code> parameter. Requests that include the parameter
|
|
2853
|
+
* <code>InstanceID</code> with Systems Manager documents (SSM documents) that use schema version 2.0 or
|
|
2854
|
+
* later will fail. In addition, if you use the parameter <code>InstanceId</code>, you can't use
|
|
2855
|
+
* the parameters <code>AssociationName</code>, <code>DocumentVersion</code>,
|
|
2856
|
+
* <code>MaxErrors</code>, <code>MaxConcurrency</code>, <code>OutputLocation</code>, or
|
|
2857
|
+
* <code>ScheduleExpression</code>. To use these parameters, you must use the <code>Targets</code>
|
|
2858
|
+
* parameter.</p>
|
|
3095
2859
|
* </note>
|
|
3096
2860
|
*/
|
|
3097
2861
|
InstanceId?: string;
|
|
@@ -3121,12 +2885,6 @@ export interface AssociatedInstances extends __SmithyException, $MetadataBearer
|
|
|
3121
2885
|
name: "AssociatedInstances";
|
|
3122
2886
|
$fault: "client";
|
|
3123
2887
|
}
|
|
3124
|
-
export declare namespace AssociatedInstances {
|
|
3125
|
-
/**
|
|
3126
|
-
* @internal
|
|
3127
|
-
*/
|
|
3128
|
-
const filterSensitiveLog: (obj: AssociatedInstances) => any;
|
|
3129
|
-
}
|
|
3130
2888
|
export interface DeleteDocumentRequest {
|
|
3131
2889
|
/**
|
|
3132
2890
|
* <p>The name of the document.</p>
|
|
@@ -3173,12 +2931,6 @@ export interface InvalidDocumentOperation extends __SmithyException, $MetadataBe
|
|
|
3173
2931
|
$fault: "client";
|
|
3174
2932
|
Message?: string;
|
|
3175
2933
|
}
|
|
3176
|
-
export declare namespace InvalidDocumentOperation {
|
|
3177
|
-
/**
|
|
3178
|
-
* @internal
|
|
3179
|
-
*/
|
|
3180
|
-
const filterSensitiveLog: (obj: InvalidDocumentOperation) => any;
|
|
3181
|
-
}
|
|
3182
2934
|
export declare enum InventorySchemaDeleteOption {
|
|
3183
2935
|
DELETE_SCHEMA = "DeleteSchema",
|
|
3184
2936
|
DISABLE_SCHEMA = "DisableSchema"
|
|
@@ -3296,12 +3048,6 @@ export interface InvalidDeleteInventoryParametersException extends __SmithyExcep
|
|
|
3296
3048
|
$fault: "client";
|
|
3297
3049
|
Message?: string;
|
|
3298
3050
|
}
|
|
3299
|
-
export declare namespace InvalidDeleteInventoryParametersException {
|
|
3300
|
-
/**
|
|
3301
|
-
* @internal
|
|
3302
|
-
*/
|
|
3303
|
-
const filterSensitiveLog: (obj: InvalidDeleteInventoryParametersException) => any;
|
|
3304
|
-
}
|
|
3305
3051
|
/**
|
|
3306
3052
|
* <p>The request isn't valid.</p>
|
|
3307
3053
|
*/
|
|
@@ -3310,12 +3056,6 @@ export interface InvalidInventoryRequestException extends __SmithyException, $Me
|
|
|
3310
3056
|
$fault: "client";
|
|
3311
3057
|
Message?: string;
|
|
3312
3058
|
}
|
|
3313
|
-
export declare namespace InvalidInventoryRequestException {
|
|
3314
|
-
/**
|
|
3315
|
-
* @internal
|
|
3316
|
-
*/
|
|
3317
|
-
const filterSensitiveLog: (obj: InvalidInventoryRequestException) => any;
|
|
3318
|
-
}
|
|
3319
3059
|
/**
|
|
3320
3060
|
* <p>The delete inventory option specified isn't valid. Verify the option and try again.</p>
|
|
3321
3061
|
*/
|
|
@@ -3324,12 +3064,6 @@ export interface InvalidOptionException extends __SmithyException, $MetadataBear
|
|
|
3324
3064
|
$fault: "client";
|
|
3325
3065
|
Message?: string;
|
|
3326
3066
|
}
|
|
3327
|
-
export declare namespace InvalidOptionException {
|
|
3328
|
-
/**
|
|
3329
|
-
* @internal
|
|
3330
|
-
*/
|
|
3331
|
-
const filterSensitiveLog: (obj: InvalidOptionException) => any;
|
|
3332
|
-
}
|
|
3333
3067
|
/**
|
|
3334
3068
|
* <p>The parameter type name isn't valid.</p>
|
|
3335
3069
|
*/
|
|
@@ -3338,12 +3072,6 @@ export interface InvalidTypeNameException extends __SmithyException, $MetadataBe
|
|
|
3338
3072
|
$fault: "client";
|
|
3339
3073
|
Message?: string;
|
|
3340
3074
|
}
|
|
3341
|
-
export declare namespace InvalidTypeNameException {
|
|
3342
|
-
/**
|
|
3343
|
-
* @internal
|
|
3344
|
-
*/
|
|
3345
|
-
const filterSensitiveLog: (obj: InvalidTypeNameException) => any;
|
|
3346
|
-
}
|
|
3347
3075
|
export interface DeleteMaintenanceWindowRequest {
|
|
3348
3076
|
/**
|
|
3349
3077
|
* <p>The ID of the maintenance window to delete.</p>
|
|
@@ -3396,12 +3124,6 @@ export interface OpsMetadataNotFoundException extends __SmithyException, $Metada
|
|
|
3396
3124
|
$fault: "client";
|
|
3397
3125
|
message?: string;
|
|
3398
3126
|
}
|
|
3399
|
-
export declare namespace OpsMetadataNotFoundException {
|
|
3400
|
-
/**
|
|
3401
|
-
* @internal
|
|
3402
|
-
*/
|
|
3403
|
-
const filterSensitiveLog: (obj: OpsMetadataNotFoundException) => any;
|
|
3404
|
-
}
|
|
3405
3127
|
export interface DeleteParameterRequest {
|
|
3406
3128
|
/**
|
|
3407
3129
|
* <p>The name of the parameter to delete.</p>
|
|
@@ -3430,12 +3152,6 @@ export interface ParameterNotFound extends __SmithyException, $MetadataBearer {
|
|
|
3430
3152
|
$fault: "client";
|
|
3431
3153
|
message?: string;
|
|
3432
3154
|
}
|
|
3433
|
-
export declare namespace ParameterNotFound {
|
|
3434
|
-
/**
|
|
3435
|
-
* @internal
|
|
3436
|
-
*/
|
|
3437
|
-
const filterSensitiveLog: (obj: ParameterNotFound) => any;
|
|
3438
|
-
}
|
|
3439
3155
|
export interface DeleteParametersRequest {
|
|
3440
3156
|
/**
|
|
3441
3157
|
* <p>The names of the parameters to delete. After deleting a parameter, wait for at least 30
|
|
@@ -3498,12 +3214,6 @@ export interface ResourceInUseException extends __SmithyException, $MetadataBear
|
|
|
3498
3214
|
$fault: "client";
|
|
3499
3215
|
Message?: string;
|
|
3500
3216
|
}
|
|
3501
|
-
export declare namespace ResourceInUseException {
|
|
3502
|
-
/**
|
|
3503
|
-
* @internal
|
|
3504
|
-
*/
|
|
3505
|
-
const filterSensitiveLog: (obj: ResourceInUseException) => any;
|
|
3506
|
-
}
|
|
3507
3217
|
export interface DeleteResourceDataSyncRequest {
|
|
3508
3218
|
/**
|
|
3509
3219
|
* <p>The name of the configuration to delete.</p>
|
|
@@ -3538,12 +3248,6 @@ export interface ResourceDataSyncNotFoundException extends __SmithyException, $M
|
|
|
3538
3248
|
SyncType?: string;
|
|
3539
3249
|
Message?: string;
|
|
3540
3250
|
}
|
|
3541
|
-
export declare namespace ResourceDataSyncNotFoundException {
|
|
3542
|
-
/**
|
|
3543
|
-
* @internal
|
|
3544
|
-
*/
|
|
3545
|
-
const filterSensitiveLog: (obj: ResourceDataSyncNotFoundException) => any;
|
|
3546
|
-
}
|
|
3547
3251
|
export interface DeregisterManagedInstanceRequest {
|
|
3548
3252
|
/**
|
|
3549
3253
|
* <p>The ID assigned to the managed node when you registered it using the activation process.
|
|
@@ -3644,12 +3348,6 @@ export interface TargetInUseException extends __SmithyException, $MetadataBearer
|
|
|
3644
3348
|
$fault: "client";
|
|
3645
3349
|
Message?: string;
|
|
3646
3350
|
}
|
|
3647
|
-
export declare namespace TargetInUseException {
|
|
3648
|
-
/**
|
|
3649
|
-
* @internal
|
|
3650
|
-
*/
|
|
3651
|
-
const filterSensitiveLog: (obj: TargetInUseException) => any;
|
|
3652
|
-
}
|
|
3653
3351
|
export interface DeregisterTaskFromMaintenanceWindowRequest {
|
|
3654
3352
|
/**
|
|
3655
3353
|
* <p>The ID of the maintenance window the task should be removed from.</p>
|
|
@@ -3752,12 +3450,6 @@ export interface InvalidFilter extends __SmithyException, $MetadataBearer {
|
|
|
3752
3450
|
$fault: "client";
|
|
3753
3451
|
Message?: string;
|
|
3754
3452
|
}
|
|
3755
|
-
export declare namespace InvalidFilter {
|
|
3756
|
-
/**
|
|
3757
|
-
* @internal
|
|
3758
|
-
*/
|
|
3759
|
-
const filterSensitiveLog: (obj: InvalidFilter) => any;
|
|
3760
|
-
}
|
|
3761
3453
|
/**
|
|
3762
3454
|
* <p>The specified token isn't valid.</p>
|
|
3763
3455
|
*/
|
|
@@ -3766,12 +3458,6 @@ export interface InvalidNextToken extends __SmithyException, $MetadataBearer {
|
|
|
3766
3458
|
$fault: "client";
|
|
3767
3459
|
Message?: string;
|
|
3768
3460
|
}
|
|
3769
|
-
export declare namespace InvalidNextToken {
|
|
3770
|
-
/**
|
|
3771
|
-
* @internal
|
|
3772
|
-
*/
|
|
3773
|
-
const filterSensitiveLog: (obj: InvalidNextToken) => any;
|
|
3774
|
-
}
|
|
3775
3461
|
export interface DescribeAssociationRequest {
|
|
3776
3462
|
/**
|
|
3777
3463
|
* <p>The name of the SSM document.</p>
|
|
@@ -3788,8 +3474,8 @@ export interface DescribeAssociationRequest {
|
|
|
3788
3474
|
/**
|
|
3789
3475
|
* <p>Specify the association version to retrieve. To view the latest version, either specify
|
|
3790
3476
|
* <code>$LATEST</code> for this parameter, or omit this parameter. To view a list of all
|
|
3791
|
-
* associations for a managed node, use <a>ListAssociations</a>. To get a list of
|
|
3792
|
-
* for a specific association, use <a>ListAssociationVersions</a>. </p>
|
|
3477
|
+
* associations for a managed node, use <a>ListAssociations</a>. To get a list of
|
|
3478
|
+
* versions for a specific association, use <a>ListAssociationVersions</a>. </p>
|
|
3793
3479
|
*/
|
|
3794
3480
|
AssociationVersion?: string;
|
|
3795
3481
|
}
|
|
@@ -3821,12 +3507,6 @@ export interface InvalidAssociationVersion extends __SmithyException, $MetadataB
|
|
|
3821
3507
|
$fault: "client";
|
|
3822
3508
|
Message?: string;
|
|
3823
3509
|
}
|
|
3824
|
-
export declare namespace InvalidAssociationVersion {
|
|
3825
|
-
/**
|
|
3826
|
-
* @internal
|
|
3827
|
-
*/
|
|
3828
|
-
const filterSensitiveLog: (obj: InvalidAssociationVersion) => any;
|
|
3829
|
-
}
|
|
3830
3510
|
export declare enum AssociationExecutionFilterKey {
|
|
3831
3511
|
CreatedTime = "CreatedTime",
|
|
3832
3512
|
ExecutionId = "ExecutionId",
|
|
@@ -3956,12 +3636,6 @@ export interface AssociationExecutionDoesNotExist extends __SmithyException, $Me
|
|
|
3956
3636
|
$fault: "client";
|
|
3957
3637
|
Message?: string;
|
|
3958
3638
|
}
|
|
3959
|
-
export declare namespace AssociationExecutionDoesNotExist {
|
|
3960
|
-
/**
|
|
3961
|
-
* @internal
|
|
3962
|
-
*/
|
|
3963
|
-
const filterSensitiveLog: (obj: AssociationExecutionDoesNotExist) => any;
|
|
3964
|
-
}
|
|
3965
3639
|
export declare enum AssociationExecutionTargetsFilterKey {
|
|
3966
3640
|
ResourceId = "ResourceId",
|
|
3967
3641
|
ResourceType = "ResourceType",
|
|
@@ -4428,12 +4102,6 @@ export interface InvalidFilterKey extends __SmithyException, $MetadataBearer {
|
|
|
4428
4102
|
name: "InvalidFilterKey";
|
|
4429
4103
|
$fault: "client";
|
|
4430
4104
|
}
|
|
4431
|
-
export declare namespace InvalidFilterKey {
|
|
4432
|
-
/**
|
|
4433
|
-
* @internal
|
|
4434
|
-
*/
|
|
4435
|
-
const filterSensitiveLog: (obj: InvalidFilterKey) => any;
|
|
4436
|
-
}
|
|
4437
4105
|
/**
|
|
4438
4106
|
* <p>The filter value isn't valid. Verify the value and try again.</p>
|
|
4439
4107
|
*/
|
|
@@ -4442,12 +4110,6 @@ export interface InvalidFilterValue extends __SmithyException, $MetadataBearer {
|
|
|
4442
4110
|
$fault: "client";
|
|
4443
4111
|
Message?: string;
|
|
4444
4112
|
}
|
|
4445
|
-
export declare namespace InvalidFilterValue {
|
|
4446
|
-
/**
|
|
4447
|
-
* @internal
|
|
4448
|
-
*/
|
|
4449
|
-
const filterSensitiveLog: (obj: InvalidFilterValue) => any;
|
|
4450
|
-
}
|
|
4451
4113
|
/**
|
|
4452
4114
|
* <p>There is no automation execution information for the requested automation execution
|
|
4453
4115
|
* ID.</p>
|
|
@@ -4457,12 +4119,6 @@ export interface AutomationExecutionNotFoundException extends __SmithyException,
|
|
|
4457
4119
|
$fault: "client";
|
|
4458
4120
|
Message?: string;
|
|
4459
4121
|
}
|
|
4460
|
-
export declare namespace AutomationExecutionNotFoundException {
|
|
4461
|
-
/**
|
|
4462
|
-
* @internal
|
|
4463
|
-
*/
|
|
4464
|
-
const filterSensitiveLog: (obj: AutomationExecutionNotFoundException) => any;
|
|
4465
|
-
}
|
|
4466
4122
|
export declare enum StepExecutionFilterKey {
|
|
4467
4123
|
ACTION = "Action",
|
|
4468
4124
|
START_TIME_AFTER = "StartTimeAfter",
|
|
@@ -5165,12 +4821,6 @@ export interface InvalidPermissionType extends __SmithyException, $MetadataBeare
|
|
|
5165
4821
|
$fault: "client";
|
|
5166
4822
|
Message?: string;
|
|
5167
4823
|
}
|
|
5168
|
-
export declare namespace InvalidPermissionType {
|
|
5169
|
-
/**
|
|
5170
|
-
* @internal
|
|
5171
|
-
*/
|
|
5172
|
-
const filterSensitiveLog: (obj: InvalidPermissionType) => any;
|
|
5173
|
-
}
|
|
5174
4824
|
export interface DescribeEffectiveInstanceAssociationsRequest {
|
|
5175
4825
|
/**
|
|
5176
4826
|
* <p>The managed node ID for which you want to view all associations.</p>
|
|
@@ -5340,12 +4990,6 @@ export interface UnsupportedOperatingSystem extends __SmithyException, $Metadata
|
|
|
5340
4990
|
$fault: "client";
|
|
5341
4991
|
Message?: string;
|
|
5342
4992
|
}
|
|
5343
|
-
export declare namespace UnsupportedOperatingSystem {
|
|
5344
|
-
/**
|
|
5345
|
-
* @internal
|
|
5346
|
-
*/
|
|
5347
|
-
const filterSensitiveLog: (obj: UnsupportedOperatingSystem) => any;
|
|
5348
|
-
}
|
|
5349
4993
|
export interface DescribeInstanceAssociationsStatusRequest {
|
|
5350
4994
|
/**
|
|
5351
4995
|
* <p>The managed node IDs for which you want association status information.</p>
|
|
@@ -5539,8 +5183,8 @@ export declare namespace InstanceInformationFilter {
|
|
|
5539
5183
|
export interface DescribeInstanceInformationRequest {
|
|
5540
5184
|
/**
|
|
5541
5185
|
* <p>This is a legacy method. We recommend that you don't use this method. Instead, use the
|
|
5542
|
-
* <code>Filters</code> data type. <code>Filters</code> enables you to return node information
|
|
5543
|
-
*
|
|
5186
|
+
* <code>Filters</code> data type. <code>Filters</code> enables you to return node information by
|
|
5187
|
+
* filtering based on tags applied to managed nodes.</p>
|
|
5544
5188
|
* <note>
|
|
5545
5189
|
* <p>Attempting to use <code>InstanceInformationFilterList</code> and <code>Filters</code> leads
|
|
5546
5190
|
* to an exception error. </p>
|
|
@@ -5747,12 +5391,6 @@ export interface InvalidInstanceInformationFilterValue extends __SmithyException
|
|
|
5747
5391
|
$fault: "client";
|
|
5748
5392
|
message?: string;
|
|
5749
5393
|
}
|
|
5750
|
-
export declare namespace InvalidInstanceInformationFilterValue {
|
|
5751
|
-
/**
|
|
5752
|
-
* @internal
|
|
5753
|
-
*/
|
|
5754
|
-
const filterSensitiveLog: (obj: InvalidInstanceInformationFilterValue) => any;
|
|
5755
|
-
}
|
|
5756
5394
|
export interface DescribeInstancePatchesRequest {
|
|
5757
5395
|
/**
|
|
5758
5396
|
* <p>The ID of the managed node whose patch state information should be retrieved.</p>
|
|
@@ -5828,8 +5466,8 @@ export declare enum PatchComplianceDataState {
|
|
|
5828
5466
|
NotApplicable = "NOT_APPLICABLE"
|
|
5829
5467
|
}
|
|
5830
5468
|
/**
|
|
5831
|
-
* <p>Information about the state of a patch on a particular managed node as it relates to the
|
|
5832
|
-
* baseline used to patch the node.</p>
|
|
5469
|
+
* <p>Information about the state of a patch on a particular managed node as it relates to the
|
|
5470
|
+
* patch baseline used to patch the node.</p>
|
|
5833
5471
|
*/
|
|
5834
5472
|
export interface PatchComplianceData {
|
|
5835
5473
|
/**
|
|
@@ -5986,8 +5624,8 @@ export interface InstancePatchState {
|
|
|
5986
5624
|
*/
|
|
5987
5625
|
InstalledCount?: number;
|
|
5988
5626
|
/**
|
|
5989
|
-
* <p>The number of patches not specified in the patch baseline that are installed on the
|
|
5990
|
-
*
|
|
5627
|
+
* <p>The number of patches not specified in the patch baseline that are installed on the managed
|
|
5628
|
+
* node.</p>
|
|
5991
5629
|
*/
|
|
5992
5630
|
InstalledOtherCount?: number;
|
|
5993
5631
|
/**
|
|
@@ -6022,8 +5660,8 @@ export interface InstancePatchState {
|
|
|
6022
5660
|
*/
|
|
6023
5661
|
UnreportedNotApplicableCount?: number;
|
|
6024
5662
|
/**
|
|
6025
|
-
* <p>The number of patches from the patch baseline that aren't applicable for the managed node
|
|
6026
|
-
* therefore aren't installed on the node. This number may be truncated if the list of patch
|
|
5663
|
+
* <p>The number of patches from the patch baseline that aren't applicable for the managed node
|
|
5664
|
+
* and therefore aren't installed on the node. This number may be truncated if the list of patch
|
|
6027
5665
|
* names is very large. The number of patches beyond this limit are reported in
|
|
6028
5666
|
* <code>UnreportedNotApplicableCount</code>.</p>
|
|
6029
5667
|
*/
|
|
@@ -6051,8 +5689,8 @@ export interface InstancePatchState {
|
|
|
6051
5689
|
*/
|
|
6052
5690
|
Operation: PatchOperationType | string | undefined;
|
|
6053
5691
|
/**
|
|
6054
|
-
* <p>The time of the last attempt to patch the managed node with <code>NoReboot</code> specified
|
|
6055
|
-
* the reboot option.</p>
|
|
5692
|
+
* <p>The time of the last attempt to patch the managed node with <code>NoReboot</code> specified
|
|
5693
|
+
* as the reboot option.</p>
|
|
6056
5694
|
*/
|
|
6057
5695
|
LastNoRebootInstallOperationTime?: Date;
|
|
6058
5696
|
/**
|
|
@@ -6064,8 +5702,8 @@ export interface InstancePatchState {
|
|
|
6064
5702
|
* <ul>
|
|
6065
5703
|
* <li>
|
|
6066
5704
|
* <p>
|
|
6067
|
-
* <code>RebootIfNeeded</code>: Patch Manager tries to reboot the managed node if it
|
|
6068
|
-
* any patches, or if any patches are detected with a status of
|
|
5705
|
+
* <code>RebootIfNeeded</code>: Patch Manager tries to reboot the managed node if it
|
|
5706
|
+
* installed any patches, or if any patches are detected with a status of
|
|
6069
5707
|
* <code>InstalledPendingReboot</code>.</p>
|
|
6070
5708
|
* </li>
|
|
6071
5709
|
* <li>
|
|
@@ -6081,15 +5719,15 @@ export interface InstancePatchState {
|
|
|
6081
5719
|
/**
|
|
6082
5720
|
* <p>The number of managed nodes where patches that are specified as <code>Critical</code> for
|
|
6083
5721
|
* compliance reporting in the patch baseline aren't installed. These patches might be missing, have
|
|
6084
|
-
* failed installation, were rejected, or were installed but awaiting a required managed node
|
|
6085
|
-
* The status of these managed nodes is <code>NON_COMPLIANT</code>.</p>
|
|
5722
|
+
* failed installation, were rejected, or were installed but awaiting a required managed node
|
|
5723
|
+
* reboot. The status of these managed nodes is <code>NON_COMPLIANT</code>.</p>
|
|
6086
5724
|
*/
|
|
6087
5725
|
CriticalNonCompliantCount?: number;
|
|
6088
5726
|
/**
|
|
6089
5727
|
* <p>The number of managed nodes where patches that are specified as <code>Security</code> in a
|
|
6090
5728
|
* patch advisory aren't installed. These patches might be missing, have failed installation, were
|
|
6091
|
-
* rejected, or were installed but awaiting a required managed node reboot. The status of these
|
|
6092
|
-
* nodes is <code>NON_COMPLIANT</code>.</p>
|
|
5729
|
+
* rejected, or were installed but awaiting a required managed node reboot. The status of these
|
|
5730
|
+
* managed nodes is <code>NON_COMPLIANT</code>.</p>
|
|
6093
5731
|
*/
|
|
6094
5732
|
SecurityNonCompliantCount?: number;
|
|
6095
5733
|
/**
|
|
@@ -6358,12 +5996,6 @@ export interface InvalidDeletionIdException extends __SmithyException, $Metadata
|
|
|
6358
5996
|
$fault: "client";
|
|
6359
5997
|
Message?: string;
|
|
6360
5998
|
}
|
|
6361
|
-
export declare namespace InvalidDeletionIdException {
|
|
6362
|
-
/**
|
|
6363
|
-
* @internal
|
|
6364
|
-
*/
|
|
6365
|
-
const filterSensitiveLog: (obj: InvalidDeletionIdException) => any;
|
|
6366
|
-
}
|
|
6367
5999
|
/**
|
|
6368
6000
|
* <p>Filter used in the request. Supported filter keys depend on the API operation that includes
|
|
6369
6001
|
* the filter. API operations that use <code>MaintenanceWindowFilter></code> include the
|
|
@@ -7103,8 +6735,8 @@ export declare enum MaintenanceWindowTaskCutoffBehavior {
|
|
|
7103
6735
|
ContinueTask = "CONTINUE_TASK"
|
|
7104
6736
|
}
|
|
7105
6737
|
/**
|
|
7106
|
-
* <p>Information about an Amazon Simple Storage Service (Amazon S3) bucket to write
|
|
7107
|
-
*
|
|
6738
|
+
* <p>Information about an Amazon Simple Storage Service (Amazon S3) bucket to write managed
|
|
6739
|
+
* node-level logs to.</p>
|
|
7108
6740
|
* <note>
|
|
7109
6741
|
* <p>
|
|
7110
6742
|
* <code>LoggingInfo</code> has been deprecated. To specify an Amazon Simple Storage Service (Amazon S3) bucket to contain logs, instead use the
|