@aws-sdk/client-ssm 3.42.0 → 3.46.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 +50 -0
- package/README.md +12 -6
- package/dist-cjs/commands/UpdateDocumentMetadataCommand.js +2 -1
- package/dist-cjs/commands/UpdateMaintenanceWindowCommand.js +1 -2
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +42 -24
- package/dist-cjs/models/models_1.js +35 -19
- package/dist-cjs/models/models_2.js +14 -1
- package/dist-cjs/protocols/Aws_json1_1.js +30 -0
- package/dist-cjs/runtimeConfig.js +0 -2
- package/dist-es/commands/UpdateDocumentMetadataCommand.js +2 -1
- package/dist-es/commands/UpdateMaintenanceWindowCommand.js +1 -2
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +31 -22
- package/dist-es/models/models_1.js +28 -20
- package/dist-es/models/models_2.js +8 -0
- package/dist-es/protocols/Aws_json1_1.js +39 -13
- package/dist-es/runtimeConfig.js +0 -2
- package/dist-types/SSM.d.ts +87 -81
- package/dist-types/SSMClient.d.ts +12 -6
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +5 -5
- package/dist-types/commands/CreateActivationCommand.d.ts +6 -6
- package/dist-types/commands/CreateAssociationBatchCommand.d.ts +6 -6
- package/dist-types/commands/CreateAssociationCommand.d.ts +10 -10
- package/dist-types/commands/CreateDocumentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteActivationCommand.d.ts +2 -3
- package/dist-types/commands/DeleteAssociationCommand.d.ts +4 -4
- package/dist-types/commands/DeleteDocumentCommand.d.ts +2 -2
- package/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +2 -2
- package/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeActivationsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstanceInformationCommand.d.ts +7 -6
- package/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstancePatchesCommand.d.ts +2 -2
- package/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +1 -1
- package/dist-types/commands/GetCommandInvocationCommand.d.ts +2 -2
- package/dist-types/commands/GetConnectionStatusCommand.d.ts +1 -1
- package/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +2 -2
- package/dist-types/commands/GetInventoryCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListCommandInvocationsCommand.d.ts +4 -4
- package/dist-types/commands/PutComplianceItemsCommand.d.ts +1 -1
- package/dist-types/commands/PutInventoryCommand.d.ts +1 -1
- package/dist-types/commands/ResumeSessionCommand.d.ts +1 -1
- package/dist-types/commands/SendCommandCommand.d.ts +1 -1
- package/dist-types/commands/StartSessionCommand.d.ts +1 -1
- package/dist-types/commands/TerminateSessionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAssociationStatusCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +2 -1
- package/dist-types/commands/UpdateMaintenanceWindowCommand.d.ts +1 -2
- package/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +232 -266
- package/dist-types/models/models_1.d.ts +257 -278
- package/dist-types/models/models_2.d.ts +100 -13
- package/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateMaintenanceWindowCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +33 -44
- package/dist-types/ts3.4/models/models_1.d.ts +35 -39
- package/dist-types/ts3.4/models/models_2.d.ts +38 -0
- package/package.json +37 -44
|
@@ -22,7 +22,7 @@ export declare namespace AccountSharingInfo {
|
|
|
22
22
|
/**
|
|
23
23
|
* <p>Metadata that you assign to your Amazon Web Services resources. Tags enable you to categorize your
|
|
24
24
|
* resources in different ways, for example, by purpose, owner, or environment. In Amazon Web Services Systems Manager, you
|
|
25
|
-
* can apply tags to Systems Manager documents (SSM documents), managed
|
|
25
|
+
* can apply tags to Systems Manager documents (SSM documents), managed nodes, maintenance windows,
|
|
26
26
|
* parameters, patch baselines, OpsItems, and OpsMetadata.</p>
|
|
27
27
|
*/
|
|
28
28
|
export interface Tag {
|
|
@@ -44,7 +44,7 @@ export declare namespace Tag {
|
|
|
44
44
|
/**
|
|
45
45
|
* <p>An activation registers one or more on-premises servers or virtual machines (VMs) with Amazon Web Services
|
|
46
46
|
* so that you can configure those servers or VMs using Run Command. A server or VM that has been
|
|
47
|
-
* registered with Amazon Web Services Systems Manager is called a managed
|
|
47
|
+
* registered with Amazon Web Services Systems Manager is called a managed node.</p>
|
|
48
48
|
*/
|
|
49
49
|
export interface Activation {
|
|
50
50
|
/**
|
|
@@ -56,24 +56,24 @@ export interface Activation {
|
|
|
56
56
|
*/
|
|
57
57
|
Description?: string;
|
|
58
58
|
/**
|
|
59
|
-
* <p>A name for the managed
|
|
59
|
+
* <p>A name for the managed node when it is created.</p>
|
|
60
60
|
*/
|
|
61
61
|
DefaultInstanceName?: string;
|
|
62
62
|
/**
|
|
63
63
|
* <p>The Identity and Access Management (IAM) role to assign to the managed
|
|
64
|
-
*
|
|
64
|
+
* node.</p>
|
|
65
65
|
*/
|
|
66
66
|
IamRole?: string;
|
|
67
67
|
/**
|
|
68
|
-
* <p>The maximum number of managed
|
|
68
|
+
* <p>The maximum number of managed nodes that can be registered using this activation.</p>
|
|
69
69
|
*/
|
|
70
70
|
RegistrationLimit?: number;
|
|
71
71
|
/**
|
|
72
|
-
* <p>The number of managed
|
|
72
|
+
* <p>The number of managed nodes already registered with this activation.</p>
|
|
73
73
|
*/
|
|
74
74
|
RegistrationsCount?: number;
|
|
75
75
|
/**
|
|
76
|
-
* <p>The date when this activation can no longer be used to register managed
|
|
76
|
+
* <p>The date when this activation can no longer be used to register managed nodes.</p>
|
|
77
77
|
*/
|
|
78
78
|
ExpirationDate?: Date;
|
|
79
79
|
/**
|
|
@@ -109,7 +109,7 @@ export interface AddTagsToResourceRequest {
|
|
|
109
109
|
* <p>Specifies the type of resource you are tagging.</p>
|
|
110
110
|
* <note>
|
|
111
111
|
* <p>The <code>ManagedInstance</code> type for this API operation is for on-premises managed
|
|
112
|
-
*
|
|
112
|
+
* nodes. You must specify the name of the managed node in the following format:
|
|
113
113
|
* <code>mi-<i>ID_number</i>
|
|
114
114
|
* </code>. For example,
|
|
115
115
|
* <code>mi-1a2b3c4d5e6f</code>.</p>
|
|
@@ -140,7 +140,7 @@ export interface AddTagsToResourceRequest {
|
|
|
140
140
|
* </p>
|
|
141
141
|
* <note>
|
|
142
142
|
* <p>The <code>ManagedInstance</code> type for this API operation is only for on-premises
|
|
143
|
-
* managed
|
|
143
|
+
* managed nodes. You must specify the name of the managed node in the following format:
|
|
144
144
|
* <code>mi-<i>ID_number</i>
|
|
145
145
|
* </code>. For example,
|
|
146
146
|
* <code>mi-1a2b3c4d5e6f</code>.</p>
|
|
@@ -197,8 +197,8 @@ export declare namespace InvalidResourceId {
|
|
|
197
197
|
const filterSensitiveLog: (obj: InvalidResourceId) => any;
|
|
198
198
|
}
|
|
199
199
|
/**
|
|
200
|
-
* <p>The resource type isn't valid. For example, if you are attempting to tag an instance, the
|
|
201
|
-
* instance must be a registered
|
|
200
|
+
* <p>The resource type isn't valid. For example, if you are attempting to tag an EC2 instance, the
|
|
201
|
+
* instance must be a registered managed node.</p>
|
|
202
202
|
*/
|
|
203
203
|
export interface InvalidResourceType extends __SmithyException, $MetadataBearer {
|
|
204
204
|
name: "InvalidResourceType";
|
|
@@ -369,8 +369,8 @@ export interface CancelCommandRequest {
|
|
|
369
369
|
*/
|
|
370
370
|
CommandId: string | undefined;
|
|
371
371
|
/**
|
|
372
|
-
* <p>(Optional) A list of
|
|
373
|
-
* the command is canceled on every
|
|
372
|
+
* <p>(Optional) A list of managed node IDs on which you want to cancel the command. If not provided,
|
|
373
|
+
* the command is canceled on every node on which it was requested.</p>
|
|
374
374
|
*/
|
|
375
375
|
InstanceIds?: string[];
|
|
376
376
|
}
|
|
@@ -393,7 +393,7 @@ export declare namespace CancelCommandResult {
|
|
|
393
393
|
const filterSensitiveLog: (obj: CancelCommandResult) => any;
|
|
394
394
|
}
|
|
395
395
|
/**
|
|
396
|
-
* <p>You can't specify
|
|
396
|
+
* <p>You can't specify a managed node ID in more than one association.</p>
|
|
397
397
|
*/
|
|
398
398
|
export interface DuplicateInstanceId extends __SmithyException, $MetadataBearer {
|
|
399
399
|
name: "DuplicateInstanceId";
|
|
@@ -422,7 +422,7 @@ export declare namespace InvalidCommandId {
|
|
|
422
422
|
* <p>The following problems can cause this exception:</p>
|
|
423
423
|
* <ul>
|
|
424
424
|
* <li>
|
|
425
|
-
* <p>You don't have permission to access the
|
|
425
|
+
* <p>You don't have permission to access the managed node.</p>
|
|
426
426
|
* </li>
|
|
427
427
|
* <li>
|
|
428
428
|
* <p>Amazon Web Services Systems Manager Agent(SSM Agent) isn't running. Verify that SSM Agent is
|
|
@@ -432,7 +432,7 @@ export declare namespace InvalidCommandId {
|
|
|
432
432
|
* <p>SSM Agent isn't registered with the SSM endpoint. Try reinstalling SSM Agent.</p>
|
|
433
433
|
* </li>
|
|
434
434
|
* <li>
|
|
435
|
-
* <p>The
|
|
435
|
+
* <p>The managed node isn't in valid state. Valid states are: <code>Running</code>,
|
|
436
436
|
* <code>Pending</code>, <code>Stopped</code>, and <code>Stopping</code>. Invalid states are:
|
|
437
437
|
* <code>Shutting-down</code> and <code>Terminated</code>.</p>
|
|
438
438
|
* </li>
|
|
@@ -490,6 +490,25 @@ export declare namespace DoesNotExistException {
|
|
|
490
490
|
*/
|
|
491
491
|
const filterSensitiveLog: (obj: DoesNotExistException) => any;
|
|
492
492
|
}
|
|
493
|
+
/**
|
|
494
|
+
* <p>Reserved for internal use.</p>
|
|
495
|
+
*/
|
|
496
|
+
export interface RegistrationMetadataItem {
|
|
497
|
+
/**
|
|
498
|
+
* <p>Reserved for internal use.</p>
|
|
499
|
+
*/
|
|
500
|
+
Key: string | undefined;
|
|
501
|
+
/**
|
|
502
|
+
* <p>Reserved for internal use.</p>
|
|
503
|
+
*/
|
|
504
|
+
Value: string | undefined;
|
|
505
|
+
}
|
|
506
|
+
export declare namespace RegistrationMetadataItem {
|
|
507
|
+
/**
|
|
508
|
+
* @internal
|
|
509
|
+
*/
|
|
510
|
+
const filterSensitiveLog: (obj: RegistrationMetadataItem) => any;
|
|
511
|
+
}
|
|
493
512
|
export interface CreateActivationRequest {
|
|
494
513
|
/**
|
|
495
514
|
* <p>A user-defined description of the resource that you want to register with Systems Manager. </p>
|
|
@@ -499,8 +518,8 @@ export interface CreateActivationRequest {
|
|
|
499
518
|
*/
|
|
500
519
|
Description?: string;
|
|
501
520
|
/**
|
|
502
|
-
* <p>The name of the registered, managed
|
|
503
|
-
*
|
|
521
|
+
* <p>The name of the registered, managed node as it will appear in the Amazon Web Services Systems Manager console or when
|
|
522
|
+
* you use the Amazon Web Services command line tools to list Systems Manager resources.</p>
|
|
504
523
|
* <important>
|
|
505
524
|
* <p>Don't enter personally identifiable information in this field.</p>
|
|
506
525
|
* </important>
|
|
@@ -508,14 +527,14 @@ export interface CreateActivationRequest {
|
|
|
508
527
|
DefaultInstanceName?: string;
|
|
509
528
|
/**
|
|
510
529
|
* <p>The name of the Identity and Access Management (IAM) role that you want to assign to
|
|
511
|
-
* the managed
|
|
530
|
+
* the managed node. This IAM role must provide AssumeRole permissions for the
|
|
512
531
|
* Amazon Web Services Systems Manager service principal <code>ssm.amazonaws.com</code>. For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-service-role.html">Create an
|
|
513
532
|
* IAM service role for a hybrid environment</a> in the
|
|
514
533
|
* <i>Amazon Web Services Systems Manager User Guide</i>.</p>
|
|
515
534
|
*/
|
|
516
535
|
IamRole: string | undefined;
|
|
517
536
|
/**
|
|
518
|
-
* <p>Specify the maximum number of managed
|
|
537
|
+
* <p>Specify the maximum number of managed nodes you want to register. The default value is
|
|
519
538
|
* <code>1</code>.</p>
|
|
520
539
|
*/
|
|
521
540
|
RegistrationLimit?: number;
|
|
@@ -548,12 +567,16 @@ export interface CreateActivationRequest {
|
|
|
548
567
|
* automatically applied to the on-premises servers or VMs.</p>
|
|
549
568
|
* </important>
|
|
550
569
|
* <p>You can't add tags to or delete tags from an existing activation. You can tag your
|
|
551
|
-
* on-premises servers and VMs after they connect to Systems Manager for the first time and are assigned a
|
|
552
|
-
* managed
|
|
553
|
-
* prefixed with "mi-". For information about how to add tags to your managed
|
|
554
|
-
*
|
|
570
|
+
* on-premises servers, edge devices, and VMs after they connect to Systems Manager for the first time and are assigned a
|
|
571
|
+
* managed node ID. This means they are listed in the Amazon Web Services Systems Manager console with an ID that is
|
|
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,
|
|
573
|
+
* see <a>RemoveTagsFromResource</a>.</p>
|
|
555
574
|
*/
|
|
556
575
|
Tags?: Tag[];
|
|
576
|
+
/**
|
|
577
|
+
* <p>Reserved for internal use.</p>
|
|
578
|
+
*/
|
|
579
|
+
RegistrationMetadata?: RegistrationMetadataItem[];
|
|
557
580
|
}
|
|
558
581
|
export declare namespace CreateActivationRequest {
|
|
559
582
|
/**
|
|
@@ -579,6 +602,21 @@ export declare namespace CreateActivationResult {
|
|
|
579
602
|
*/
|
|
580
603
|
const filterSensitiveLog: (obj: CreateActivationResult) => any;
|
|
581
604
|
}
|
|
605
|
+
/**
|
|
606
|
+
* <p>You must specify values for all required parameters in the Amazon Web Services Systems Manager document (SSM
|
|
607
|
+
* document). You can only supply values to parameters defined in the SSM document.</p>
|
|
608
|
+
*/
|
|
609
|
+
export interface InvalidParameters extends __SmithyException, $MetadataBearer {
|
|
610
|
+
name: "InvalidParameters";
|
|
611
|
+
$fault: "client";
|
|
612
|
+
Message?: string;
|
|
613
|
+
}
|
|
614
|
+
export declare namespace InvalidParameters {
|
|
615
|
+
/**
|
|
616
|
+
* @internal
|
|
617
|
+
*/
|
|
618
|
+
const filterSensitiveLog: (obj: InvalidParameters) => any;
|
|
619
|
+
}
|
|
582
620
|
/**
|
|
583
621
|
* <p>The specified association already exists.</p>
|
|
584
622
|
*/
|
|
@@ -692,7 +730,7 @@ export declare namespace TargetLocation {
|
|
|
692
730
|
const filterSensitiveLog: (obj: TargetLocation) => any;
|
|
693
731
|
}
|
|
694
732
|
/**
|
|
695
|
-
* <p>An array of search criteria that targets
|
|
733
|
+
* <p>An array of search criteria that targets managed nodes using a key-value pair that you
|
|
696
734
|
* specify.</p>
|
|
697
735
|
* <note>
|
|
698
736
|
* <p> One or more targets must be specified for maintenance window Run Command-type tasks.
|
|
@@ -706,41 +744,35 @@ export declare namespace TargetLocation {
|
|
|
706
744
|
* <ul>
|
|
707
745
|
* <li>
|
|
708
746
|
* <p>
|
|
709
|
-
* <code>Key=InstanceIds,Values=<
|
|
710
|
-
* </code>
|
|
747
|
+
* <code>Key=InstanceIds,Values=<instance-id-1>,<instance-id-2>,<instance-id-3></code>
|
|
711
748
|
* </p>
|
|
712
749
|
* </li>
|
|
713
750
|
* <li>
|
|
714
751
|
* <p>
|
|
715
|
-
* <code>Key=tag:<
|
|
716
|
-
* </code>
|
|
752
|
+
* <code>Key=tag:<my-tag-key>,Values=<my-tag-value-1>,<my-tag-value-2></code>
|
|
717
753
|
* </p>
|
|
718
754
|
* </li>
|
|
719
755
|
* <li>
|
|
720
756
|
* <p>
|
|
721
|
-
* <code>Key=tag-key,Values=<
|
|
722
|
-
* </code>
|
|
757
|
+
* <code>Key=tag-key,Values=<my-tag-key-1>,<my-tag-key-2></code>
|
|
723
758
|
* </p>
|
|
724
759
|
* </li>
|
|
725
760
|
* <li>
|
|
726
761
|
* <p>
|
|
727
762
|
* <b>Run Command and Maintenance window targets only</b>:
|
|
728
|
-
*
|
|
729
|
-
* </code>
|
|
763
|
+
* <code>Key=resource-groups:Name,Values=<resource-group-name></code>
|
|
730
764
|
* </p>
|
|
731
765
|
* </li>
|
|
732
766
|
* <li>
|
|
733
767
|
* <p>
|
|
734
768
|
* <b>Maintenance window targets only</b>:
|
|
735
|
-
*
|
|
736
|
-
* </code>
|
|
769
|
+
* <code>Key=resource-groups:ResourceTypeFilters,Values=<resource-type-1>,<resource-type-2></code>
|
|
737
770
|
* </p>
|
|
738
771
|
* </li>
|
|
739
772
|
* <li>
|
|
740
773
|
* <p>
|
|
741
774
|
* <b>Automation targets only</b>:
|
|
742
|
-
*
|
|
743
|
-
* </code>
|
|
775
|
+
* <code>Key=ResourceGroup;Values=<resource-group-name></code>
|
|
744
776
|
* </p>
|
|
745
777
|
* </li>
|
|
746
778
|
* </ul>
|
|
@@ -771,8 +803,7 @@ export declare namespace TargetLocation {
|
|
|
771
803
|
* <li>
|
|
772
804
|
* <p>
|
|
773
805
|
* <b>Maintenance window targets only</b>:
|
|
774
|
-
*
|
|
775
|
-
* </code>
|
|
806
|
+
* <code>Key=resource-groups:ResourceTypeFilters,Values=AWS::EC2::INSTANCE,AWS::EC2::VPC</code>
|
|
776
807
|
* </p>
|
|
777
808
|
* <p>This example demonstrates how to target only Amazon Elastic Compute Cloud (Amazon EC2)
|
|
778
809
|
* instances and VPCs in your maintenance window.</p>
|
|
@@ -786,19 +817,18 @@ export declare namespace TargetLocation {
|
|
|
786
817
|
* <li>
|
|
787
818
|
* <p>
|
|
788
819
|
* <b>State Manager association targets only</b>:
|
|
789
|
-
*
|
|
790
|
-
* </code>
|
|
820
|
+
* <code>Key=InstanceIds,Values=*</code>
|
|
791
821
|
* </p>
|
|
792
822
|
* <p>This example demonstrates how to target all managed instances in the Amazon Web Services Region where
|
|
793
823
|
* the association was created.</p>
|
|
794
824
|
* </li>
|
|
795
825
|
* </ul>
|
|
796
|
-
* <p>For more information about how to send commands that target
|
|
826
|
+
* <p>For more information about how to send commands that target managed nodes using
|
|
797
827
|
* <code>Key,Value</code> parameters, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/send-commands-multiple.html#send-commands-targeting">Targeting multiple instances</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
|
|
798
828
|
*/
|
|
799
829
|
export interface Target {
|
|
800
830
|
/**
|
|
801
|
-
* <p>User-defined criteria for sending commands that target
|
|
831
|
+
* <p>User-defined criteria for sending commands that target managed nodes that meet the
|
|
802
832
|
* criteria.</p>
|
|
803
833
|
*/
|
|
804
834
|
Key?: string;
|
|
@@ -820,7 +850,7 @@ export declare namespace Target {
|
|
|
820
850
|
export interface CreateAssociationRequest {
|
|
821
851
|
/**
|
|
822
852
|
* <p>The name of the SSM Command document or Automation runbook that contains the configuration
|
|
823
|
-
* information for the
|
|
853
|
+
* information for the managed node.</p>
|
|
824
854
|
* <p>You can specify Amazon Web Services-predefined documents, documents you created, or a document that is
|
|
825
855
|
* shared with you from another account.</p>
|
|
826
856
|
* <p>For Systems Manager documents (SSM documents) that are shared with you from other Amazon Web Services accounts, you
|
|
@@ -844,10 +874,10 @@ export interface CreateAssociationRequest {
|
|
|
844
874
|
*/
|
|
845
875
|
DocumentVersion?: string;
|
|
846
876
|
/**
|
|
847
|
-
* <p>The
|
|
877
|
+
* <p>The managed node ID.</p>
|
|
848
878
|
* <note>
|
|
849
879
|
* <p>
|
|
850
|
-
* <code>InstanceId</code> has been deprecated. To specify
|
|
880
|
+
* <code>InstanceId</code> has been deprecated. To specify a managed node ID for an association,
|
|
851
881
|
* use the <code>Targets</code> parameter. Requests that include the
|
|
852
882
|
* parameter <code>InstanceID</code> with Systems Manager documents (SSM documents) that use schema version
|
|
853
883
|
* 2.0 or later will fail. In addition, if you use the parameter
|
|
@@ -865,9 +895,9 @@ export interface CreateAssociationRequest {
|
|
|
865
895
|
[key: string]: string[];
|
|
866
896
|
};
|
|
867
897
|
/**
|
|
868
|
-
* <p>The targets for the association. You can target
|
|
869
|
-
* groups, all
|
|
870
|
-
*
|
|
898
|
+
* <p>The targets for the association. You can target managed nodes by using tags, Amazon Web Services resource
|
|
899
|
+
* groups, all managed nodes in an Amazon Web Services account, or individual managed node IDs. You can target all
|
|
900
|
+
* managed nodes in an Amazon Web Services account by specifying the <code>InstanceIds</code> key with a value of
|
|
871
901
|
* <code>*</code>. For more information about choosing targets for an association, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-state-manager-targets-and-rate-controls.html">Using targets and rate controls with State Manager associations</a> in the
|
|
872
902
|
* <i>Amazon Web Services Systems Manager User Guide</i>.</p>
|
|
873
903
|
*/
|
|
@@ -897,8 +927,8 @@ export interface CreateAssociationRequest {
|
|
|
897
927
|
* example 10, or a percentage of the target set, for example 10%. If you specify 3, for example,
|
|
898
928
|
* the system stops sending requests when the fourth error is received. If you specify 0, then the
|
|
899
929
|
* system stops sending requests after the first error is returned. If you run an association on 50
|
|
900
|
-
*
|
|
901
|
-
* the sixth error is received.</p>
|
|
930
|
+
* managed nodes and set <code>MaxError</code> to 10%, then the system stops sending the request
|
|
931
|
+
* when the sixth error is received.</p>
|
|
902
932
|
* <p>Executions that are already running an association when <code>MaxErrors</code> is reached
|
|
903
933
|
* are allowed to complete, but some of these executions may fail as well. If you need to ensure
|
|
904
934
|
* that there won't be more than max-errors failed executions, set <code>MaxConcurrency</code> to 1
|
|
@@ -909,9 +939,9 @@ export interface CreateAssociationRequest {
|
|
|
909
939
|
* <p>The maximum number of targets allowed to run the association at the same time. You can
|
|
910
940
|
* specify a number, for example 10, or a percentage of the target set, for example 10%. The default
|
|
911
941
|
* value is 100%, which means all targets run the association at the same time.</p>
|
|
912
|
-
* <p>If a new
|
|
942
|
+
* <p>If a new managed node starts and attempts to run an association while Systems Manager is running
|
|
913
943
|
* <code>MaxConcurrency</code> associations, the association is allowed to run. During the next
|
|
914
|
-
* association interval, the new
|
|
944
|
+
* association interval, the new managed node will process its association within the limit specified
|
|
915
945
|
* for <code>MaxConcurrency</code>.</p>
|
|
916
946
|
*/
|
|
917
947
|
MaxConcurrency?: string;
|
|
@@ -972,8 +1002,8 @@ export interface AssociationOverview {
|
|
|
972
1002
|
DetailedStatus?: string;
|
|
973
1003
|
/**
|
|
974
1004
|
* <p>Returns the number of targets for the association status. For example, if you created an
|
|
975
|
-
* association with two
|
|
976
|
-
*
|
|
1005
|
+
* association with two managed nodes, and one of them was successful, this would return the count
|
|
1006
|
+
* of managed nodes by status.</p>
|
|
977
1007
|
*/
|
|
978
1008
|
AssociationStatusAggregatedCount?: {
|
|
979
1009
|
[key: string]: number;
|
|
@@ -1026,7 +1056,7 @@ export interface AssociationDescription {
|
|
|
1026
1056
|
*/
|
|
1027
1057
|
Name?: string;
|
|
1028
1058
|
/**
|
|
1029
|
-
* <p>The
|
|
1059
|
+
* <p>The managed node ID.</p>
|
|
1030
1060
|
*/
|
|
1031
1061
|
InstanceId?: string;
|
|
1032
1062
|
/**
|
|
@@ -1070,7 +1100,7 @@ export interface AssociationDescription {
|
|
|
1070
1100
|
*/
|
|
1071
1101
|
AssociationId?: string;
|
|
1072
1102
|
/**
|
|
1073
|
-
* <p>The
|
|
1103
|
+
* <p>The managed nodes targeted by the request. </p>
|
|
1074
1104
|
*/
|
|
1075
1105
|
Targets?: Target[];
|
|
1076
1106
|
/**
|
|
@@ -1099,8 +1129,8 @@ export interface AssociationDescription {
|
|
|
1099
1129
|
* example 10, or a percentage of the target set, for example 10%. If you specify 3, for example,
|
|
1100
1130
|
* the system stops sending requests when the fourth error is received. If you specify 0, then the
|
|
1101
1131
|
* system stops sending requests after the first error is returned. If you run an association on 50
|
|
1102
|
-
*
|
|
1103
|
-
* the sixth error is received.</p>
|
|
1132
|
+
* managed nodes and set <code>MaxError</code> to 10%, then the system stops sending the request
|
|
1133
|
+
* when the sixth error is received.</p>
|
|
1104
1134
|
* <p>Executions that are already running an association when <code>MaxErrors</code> is reached
|
|
1105
1135
|
* are allowed to complete, but some of these executions may fail as well. If you need to ensure
|
|
1106
1136
|
* that there won't be more than max-errors failed executions, set <code>MaxConcurrency</code> to 1
|
|
@@ -1111,9 +1141,9 @@ export interface AssociationDescription {
|
|
|
1111
1141
|
* <p>The maximum number of targets allowed to run the association at the same time. You can
|
|
1112
1142
|
* specify a number, for example 10, or a percentage of the target set, for example 10%. The default
|
|
1113
1143
|
* value is 100%, which means all targets run the association at the same time.</p>
|
|
1114
|
-
* <p>If a new
|
|
1144
|
+
* <p>If a new managed node starts and attempts to run an association while Systems Manager is running
|
|
1115
1145
|
* <code>MaxConcurrency</code> associations, the association is allowed to run. During the next
|
|
1116
|
-
* association interval, the new
|
|
1146
|
+
* association interval, the new managed node will process its association within the limit specified
|
|
1117
1147
|
* for <code>MaxConcurrency</code>.</p>
|
|
1118
1148
|
*/
|
|
1119
1149
|
MaxConcurrency?: string;
|
|
@@ -1217,21 +1247,6 @@ export declare namespace InvalidOutputLocation {
|
|
|
1217
1247
|
*/
|
|
1218
1248
|
const filterSensitiveLog: (obj: InvalidOutputLocation) => any;
|
|
1219
1249
|
}
|
|
1220
|
-
/**
|
|
1221
|
-
* <p>You must specify values for all required parameters in the Amazon Web Services Systems Manager document (SSM
|
|
1222
|
-
* document). You can only supply values to parameters defined in the SSM document.</p>
|
|
1223
|
-
*/
|
|
1224
|
-
export interface InvalidParameters extends __SmithyException, $MetadataBearer {
|
|
1225
|
-
name: "InvalidParameters";
|
|
1226
|
-
$fault: "client";
|
|
1227
|
-
Message?: string;
|
|
1228
|
-
}
|
|
1229
|
-
export declare namespace InvalidParameters {
|
|
1230
|
-
/**
|
|
1231
|
-
* @internal
|
|
1232
|
-
*/
|
|
1233
|
-
const filterSensitiveLog: (obj: InvalidParameters) => any;
|
|
1234
|
-
}
|
|
1235
1250
|
/**
|
|
1236
1251
|
* <p>The schedule is invalid. Verify your cron or rate expression and try again.</p>
|
|
1237
1252
|
*/
|
|
@@ -1262,8 +1277,8 @@ export declare namespace InvalidTarget {
|
|
|
1262
1277
|
const filterSensitiveLog: (obj: InvalidTarget) => any;
|
|
1263
1278
|
}
|
|
1264
1279
|
/**
|
|
1265
|
-
* <p>The document doesn't support the platform type of the given
|
|
1266
|
-
* sent an document for a Windows
|
|
1280
|
+
* <p>The document doesn't support the platform type of the given managed node ID(s). For example, you
|
|
1281
|
+
* sent an document for a Windows managed node to a Linux node.</p>
|
|
1267
1282
|
*/
|
|
1268
1283
|
export interface UnsupportedPlatformType extends __SmithyException, $MetadataBearer {
|
|
1269
1284
|
name: "UnsupportedPlatformType";
|
|
@@ -1277,11 +1292,11 @@ export declare namespace UnsupportedPlatformType {
|
|
|
1277
1292
|
const filterSensitiveLog: (obj: UnsupportedPlatformType) => any;
|
|
1278
1293
|
}
|
|
1279
1294
|
/**
|
|
1280
|
-
* <p>Describes the association of a Amazon Web Services Systems Manager document (SSM document) and
|
|
1295
|
+
* <p>Describes the association of a Amazon Web Services Systems Manager document (SSM document) and a managed node.</p>
|
|
1281
1296
|
*/
|
|
1282
1297
|
export interface CreateAssociationBatchRequestEntry {
|
|
1283
1298
|
/**
|
|
1284
|
-
* <p>The name of the SSM document that contains the configuration information for the
|
|
1299
|
+
* <p>The name of the SSM document that contains the configuration information for the managed node.
|
|
1285
1300
|
* You can specify Command or Automation runbooks.</p>
|
|
1286
1301
|
* <p>You can specify Amazon Web Services-predefined documents, documents you created, or a document that is
|
|
1287
1302
|
* shared with you from another account.</p>
|
|
@@ -1301,10 +1316,10 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
1301
1316
|
*/
|
|
1302
1317
|
Name: string | undefined;
|
|
1303
1318
|
/**
|
|
1304
|
-
* <p>The
|
|
1319
|
+
* <p>The managed node ID.</p>
|
|
1305
1320
|
* <note>
|
|
1306
1321
|
* <p>
|
|
1307
|
-
* <code>InstanceId</code> has been deprecated. To specify
|
|
1322
|
+
* <code>InstanceId</code> has been deprecated. To specify a managed node ID for an association,
|
|
1308
1323
|
* use the <code>Targets</code> parameter. Requests that include the
|
|
1309
1324
|
* parameter <code>InstanceID</code> with Systems Manager documents (SSM documents) that use schema version
|
|
1310
1325
|
* 2.0 or later will fail. In addition, if you use the parameter
|
|
@@ -1332,7 +1347,7 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
1332
1347
|
*/
|
|
1333
1348
|
DocumentVersion?: string;
|
|
1334
1349
|
/**
|
|
1335
|
-
* <p>The
|
|
1350
|
+
* <p>The managed nodes targeted by the request.</p>
|
|
1336
1351
|
*/
|
|
1337
1352
|
Targets?: Target[];
|
|
1338
1353
|
/**
|
|
@@ -1353,8 +1368,8 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
1353
1368
|
* example 10, or a percentage of the target set, for example 10%. If you specify 3, for example,
|
|
1354
1369
|
* the system stops sending requests when the fourth error is received. If you specify 0, then the
|
|
1355
1370
|
* system stops sending requests after the first error is returned. If you run an association on 50
|
|
1356
|
-
*
|
|
1357
|
-
* the sixth error is received.</p>
|
|
1371
|
+
* managed nodes and set <code>MaxError</code> to 10%, then the system stops sending the request
|
|
1372
|
+
* when the sixth error is received.</p>
|
|
1358
1373
|
* <p>Executions that are already running an association when <code>MaxErrors</code> is reached
|
|
1359
1374
|
* are allowed to complete, but some of these executions may fail as well. If you need to ensure
|
|
1360
1375
|
* that there won't be more than max-errors failed executions, set <code>MaxConcurrency</code> to 1
|
|
@@ -1365,9 +1380,9 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
1365
1380
|
* <p>The maximum number of targets allowed to run the association at the same time. You can
|
|
1366
1381
|
* specify a number, for example 10, or a percentage of the target set, for example 10%. The default
|
|
1367
1382
|
* value is 100%, which means all targets run the association at the same time.</p>
|
|
1368
|
-
* <p>If a new
|
|
1383
|
+
* <p>If a new managed node starts and attempts to run an association while Systems Manager is running
|
|
1369
1384
|
* <code>MaxConcurrency</code> associations, the association is allowed to run. During the next
|
|
1370
|
-
* association interval, the new
|
|
1385
|
+
* association interval, the new managed node will process its association within the limit specified
|
|
1371
1386
|
* for <code>MaxConcurrency</code>.</p>
|
|
1372
1387
|
*/
|
|
1373
1388
|
MaxConcurrency?: string;
|
|
@@ -1742,6 +1757,7 @@ export declare namespace DocumentParameter {
|
|
|
1742
1757
|
}
|
|
1743
1758
|
export declare enum PlatformType {
|
|
1744
1759
|
LINUX = "Linux",
|
|
1760
|
+
MACOS = "MacOS",
|
|
1745
1761
|
WINDOWS = "Windows"
|
|
1746
1762
|
}
|
|
1747
1763
|
export declare enum ReviewStatus {
|
|
@@ -2057,9 +2073,9 @@ export interface CreateMaintenanceWindowRequest {
|
|
|
2057
2073
|
*/
|
|
2058
2074
|
Cutoff: number | undefined;
|
|
2059
2075
|
/**
|
|
2060
|
-
* <p>Enables a maintenance window task to run on managed
|
|
2061
|
-
*
|
|
2062
|
-
*
|
|
2076
|
+
* <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
|
+
* node ID) when you register a task with the maintenance window.</p>
|
|
2063
2079
|
* <p>If you don't enable this option, then you must specify previously-registered targets when
|
|
2064
2080
|
* you register a task with the maintenance window.</p>
|
|
2065
2081
|
*/
|
|
@@ -2570,9 +2586,9 @@ export interface PatchRule {
|
|
|
2570
2586
|
*/
|
|
2571
2587
|
ApproveUntilDate?: string;
|
|
2572
2588
|
/**
|
|
2573
|
-
* <p>For
|
|
2589
|
+
* <p>For managed nodes identified by the approval rule filters, enables a patch baseline to apply
|
|
2574
2590
|
* non-security updates available in the specified repository. The default value is
|
|
2575
|
-
* <code>false</code>. Applies to Linux
|
|
2591
|
+
* <code>false</code>. Applies to Linux managed nodes only.</p>
|
|
2576
2592
|
*/
|
|
2577
2593
|
EnableNonSecurity?: boolean;
|
|
2578
2594
|
}
|
|
@@ -2615,8 +2631,8 @@ export declare enum PatchAction {
|
|
|
2615
2631
|
Block = "BLOCK"
|
|
2616
2632
|
}
|
|
2617
2633
|
/**
|
|
2618
|
-
* <p>Information about the patches to use to update the
|
|
2619
|
-
* systems and source repository. Applies to Linux
|
|
2634
|
+
* <p>Information about the patches to use to update the managed nodes, including target operating
|
|
2635
|
+
* systems and source repository. Applies to Linux managed nodes only.</p>
|
|
2620
2636
|
*/
|
|
2621
2637
|
export interface PatchSource {
|
|
2622
2638
|
/**
|
|
@@ -2689,8 +2705,8 @@ export interface CreatePatchBaselineRequest {
|
|
|
2689
2705
|
ApprovedPatchesComplianceLevel?: PatchComplianceLevel | string;
|
|
2690
2706
|
/**
|
|
2691
2707
|
* <p>Indicates whether the list of approved patches includes non-security updates that should be
|
|
2692
|
-
* applied to the
|
|
2693
|
-
* only.</p>
|
|
2708
|
+
* applied to the managed nodes. The default value is <code>false</code>. Applies to Linux managed
|
|
2709
|
+
* nodes only.</p>
|
|
2694
2710
|
*/
|
|
2695
2711
|
ApprovedPatchesEnableNonSecurity?: boolean;
|
|
2696
2712
|
/**
|
|
@@ -2731,8 +2747,8 @@ export interface CreatePatchBaselineRequest {
|
|
|
2731
2747
|
*/
|
|
2732
2748
|
Description?: string;
|
|
2733
2749
|
/**
|
|
2734
|
-
* <p>Information about the patches to use to update the
|
|
2735
|
-
* systems and source repositories. Applies to Linux
|
|
2750
|
+
* <p>Information about the patches to use to update the managed nodes, including target operating
|
|
2751
|
+
* systems and source repositories. Applies to Linux managed nodes only.</p>
|
|
2736
2752
|
*/
|
|
2737
2753
|
Sources?: PatchSource[];
|
|
2738
2754
|
/**
|
|
@@ -3065,10 +3081,10 @@ export interface DeleteAssociationRequest {
|
|
|
3065
3081
|
*/
|
|
3066
3082
|
Name?: string;
|
|
3067
3083
|
/**
|
|
3068
|
-
* <p>The
|
|
3084
|
+
* <p>The managed node ID.</p>
|
|
3069
3085
|
* <note>
|
|
3070
3086
|
* <p>
|
|
3071
|
-
* <code>InstanceId</code> has been deprecated. To specify
|
|
3087
|
+
* <code>InstanceId</code> has been deprecated. To specify a managed node ID for an association,
|
|
3072
3088
|
* use the <code>Targets</code> parameter. Requests that include the
|
|
3073
3089
|
* parameter <code>InstanceID</code> with Systems Manager documents (SSM documents) that use schema version
|
|
3074
3090
|
* 2.0 or later will fail. In addition, if you use the parameter
|
|
@@ -3099,7 +3115,7 @@ export declare namespace DeleteAssociationResult {
|
|
|
3099
3115
|
const filterSensitiveLog: (obj: DeleteAssociationResult) => any;
|
|
3100
3116
|
}
|
|
3101
3117
|
/**
|
|
3102
|
-
* <p>You must disassociate a document from all
|
|
3118
|
+
* <p>You must disassociate a document from all managed nodes before you can delete it.</p>
|
|
3103
3119
|
*/
|
|
3104
3120
|
export interface AssociatedInstances extends __SmithyException, $MetadataBearer {
|
|
3105
3121
|
name: "AssociatedInstances";
|
|
@@ -3530,7 +3546,7 @@ export declare namespace ResourceDataSyncNotFoundException {
|
|
|
3530
3546
|
}
|
|
3531
3547
|
export interface DeregisterManagedInstanceRequest {
|
|
3532
3548
|
/**
|
|
3533
|
-
* <p>The ID assigned to the managed
|
|
3549
|
+
* <p>The ID assigned to the managed node when you registered it using the activation process.
|
|
3534
3550
|
* </p>
|
|
3535
3551
|
*/
|
|
3536
3552
|
InstanceId: string | undefined;
|
|
@@ -3762,7 +3778,7 @@ export interface DescribeAssociationRequest {
|
|
|
3762
3778
|
*/
|
|
3763
3779
|
Name?: string;
|
|
3764
3780
|
/**
|
|
3765
|
-
* <p>The
|
|
3781
|
+
* <p>The managed node ID.</p>
|
|
3766
3782
|
*/
|
|
3767
3783
|
InstanceId?: string;
|
|
3768
3784
|
/**
|
|
@@ -3772,7 +3788,7 @@ export interface DescribeAssociationRequest {
|
|
|
3772
3788
|
/**
|
|
3773
3789
|
* <p>Specify the association version to retrieve. To view the latest version, either specify
|
|
3774
3790
|
* <code>$LATEST</code> for this parameter, or omit this parameter. To view a list of all
|
|
3775
|
-
* associations for
|
|
3791
|
+
* associations for a managed node, use <a>ListAssociations</a>. To get a list of versions
|
|
3776
3792
|
* for a specific association, use <a>ListAssociationVersions</a>. </p>
|
|
3777
3793
|
*/
|
|
3778
3794
|
AssociationVersion?: string;
|
|
@@ -4038,11 +4054,11 @@ export interface AssociationExecutionTarget {
|
|
|
4038
4054
|
*/
|
|
4039
4055
|
ExecutionId?: string;
|
|
4040
4056
|
/**
|
|
4041
|
-
* <p>The resource ID, for example, the
|
|
4057
|
+
* <p>The resource ID, for example, the managed node ID where the association ran.</p>
|
|
4042
4058
|
*/
|
|
4043
4059
|
ResourceId?: string;
|
|
4044
4060
|
/**
|
|
4045
|
-
* <p>The resource type, for example,
|
|
4061
|
+
* <p>The resource type, for example, EC2.</p>
|
|
4046
4062
|
*/
|
|
4047
4063
|
ResourceType?: string;
|
|
4048
4064
|
/**
|
|
@@ -4713,7 +4729,7 @@ export interface DescribeAvailablePatchesRequest {
|
|
|
4713
4729
|
* <p>
|
|
4714
4730
|
* <b>Windows Server</b>
|
|
4715
4731
|
* </p>
|
|
4716
|
-
* <p>Supported keys for Windows Server
|
|
4732
|
+
* <p>Supported keys for Windows Server managed node patches include the following:</p>
|
|
4717
4733
|
* <ul>
|
|
4718
4734
|
* <li>
|
|
4719
4735
|
* <p>
|
|
@@ -4789,7 +4805,7 @@ export interface DescribeAvailablePatchesRequest {
|
|
|
4789
4805
|
* Key=CVE_ID,Values=CVE-2018-3615</code>
|
|
4790
4806
|
* </p>
|
|
4791
4807
|
* </important>
|
|
4792
|
-
* <p>Supported keys for Linux
|
|
4808
|
+
* <p>Supported keys for Linux managed node patches include the following:</p>
|
|
4793
4809
|
* <ul>
|
|
4794
4810
|
* <li>
|
|
4795
4811
|
* <p>
|
|
@@ -4976,45 +4992,45 @@ export interface Patch {
|
|
|
4976
4992
|
Language?: string;
|
|
4977
4993
|
/**
|
|
4978
4994
|
* <p>The Advisory ID of the patch. For example, <code>RHSA-2020:3779</code>. Applies to
|
|
4979
|
-
* Linux-based
|
|
4995
|
+
* Linux-based managed nodes only.</p>
|
|
4980
4996
|
*/
|
|
4981
4997
|
AdvisoryIds?: string[];
|
|
4982
4998
|
/**
|
|
4983
4999
|
* <p>The Bugzilla ID of the patch. For example, <code>1600646</code>. Applies to Linux-based
|
|
4984
|
-
*
|
|
5000
|
+
* managed nodes only.</p>
|
|
4985
5001
|
*/
|
|
4986
5002
|
BugzillaIds?: string[];
|
|
4987
5003
|
/**
|
|
4988
5004
|
* <p>The Common Vulnerabilities and Exposures (CVE) ID of the patch. For example,
|
|
4989
|
-
* <code>CVE-2011-3192</code>. Applies to Linux-based
|
|
5005
|
+
* <code>CVE-2011-3192</code>. Applies to Linux-based managed nodes only.</p>
|
|
4990
5006
|
*/
|
|
4991
5007
|
CVEIds?: string[];
|
|
4992
5008
|
/**
|
|
4993
|
-
* <p>The name of the patch. Applies to Linux-based
|
|
5009
|
+
* <p>The name of the patch. Applies to Linux-based managed nodes only.</p>
|
|
4994
5010
|
*/
|
|
4995
5011
|
Name?: string;
|
|
4996
5012
|
/**
|
|
4997
5013
|
* <p>The epoch of the patch. For example in
|
|
4998
5014
|
* <code>pkg-example-EE-20180914-2.2.amzn1.noarch</code>, the epoch value is
|
|
4999
|
-
* <code>20180914-2</code>. Applies to Linux-based
|
|
5015
|
+
* <code>20180914-2</code>. Applies to Linux-based managed nodes only.</p>
|
|
5000
5016
|
*/
|
|
5001
5017
|
Epoch?: number;
|
|
5002
5018
|
/**
|
|
5003
5019
|
* <p>The version number of the patch. For example, in
|
|
5004
5020
|
* <code>example-pkg-1.710.10-2.7.abcd.x86_64</code>, the version number is indicated by
|
|
5005
|
-
* <code>-1</code>. Applies to Linux-based
|
|
5021
|
+
* <code>-1</code>. Applies to Linux-based managed nodes only.</p>
|
|
5006
5022
|
*/
|
|
5007
5023
|
Version?: string;
|
|
5008
5024
|
/**
|
|
5009
5025
|
* <p>The particular release of a patch. For example, in
|
|
5010
5026
|
* <code>pkg-example-EE-20180914-2.2.amzn1.noarch</code>, the release is <code>2.amaz1</code>.
|
|
5011
|
-
* Applies to Linux-based
|
|
5027
|
+
* Applies to Linux-based managed nodes only.</p>
|
|
5012
5028
|
*/
|
|
5013
5029
|
Release?: string;
|
|
5014
5030
|
/**
|
|
5015
5031
|
* <p>The architecture of the patch. For example, in
|
|
5016
5032
|
* <code>example-pkg-0.710.10-2.7.abcd.x86_64</code>, the architecture is indicated by
|
|
5017
|
-
* <code>x86_64</code>. Applies to Linux-based
|
|
5033
|
+
* <code>x86_64</code>. Applies to Linux-based managed nodes only.</p>
|
|
5018
5034
|
*/
|
|
5019
5035
|
Arch?: string;
|
|
5020
5036
|
/**
|
|
@@ -5025,7 +5041,7 @@ export interface Patch {
|
|
|
5025
5041
|
/**
|
|
5026
5042
|
* <p>The source patch repository for the operating system and version, such as
|
|
5027
5043
|
* <code>trusty-security</code> for Ubuntu Server 14.04 LTE and <code>focal-security</code> for
|
|
5028
|
-
* Ubuntu Server 20.04 LTE. Applies to Linux-based
|
|
5044
|
+
* Ubuntu Server 20.04 LTE. Applies to Linux-based managed nodes only.</p>
|
|
5029
5045
|
*/
|
|
5030
5046
|
Repository?: string;
|
|
5031
5047
|
}
|
|
@@ -5157,7 +5173,7 @@ export declare namespace InvalidPermissionType {
|
|
|
5157
5173
|
}
|
|
5158
5174
|
export interface DescribeEffectiveInstanceAssociationsRequest {
|
|
5159
5175
|
/**
|
|
5160
|
-
* <p>The
|
|
5176
|
+
* <p>The managed node ID for which you want to view all associations.</p>
|
|
5161
5177
|
*/
|
|
5162
5178
|
InstanceId: string | undefined;
|
|
5163
5179
|
/**
|
|
@@ -5178,7 +5194,7 @@ export declare namespace DescribeEffectiveInstanceAssociationsRequest {
|
|
|
5178
5194
|
const filterSensitiveLog: (obj: DescribeEffectiveInstanceAssociationsRequest) => any;
|
|
5179
5195
|
}
|
|
5180
5196
|
/**
|
|
5181
|
-
* <p>One or more association documents on the
|
|
5197
|
+
* <p>One or more association documents on the managed node. </p>
|
|
5182
5198
|
*/
|
|
5183
5199
|
export interface InstanceAssociation {
|
|
5184
5200
|
/**
|
|
@@ -5186,15 +5202,15 @@ export interface InstanceAssociation {
|
|
|
5186
5202
|
*/
|
|
5187
5203
|
AssociationId?: string;
|
|
5188
5204
|
/**
|
|
5189
|
-
* <p>The
|
|
5205
|
+
* <p>The managed node ID.</p>
|
|
5190
5206
|
*/
|
|
5191
5207
|
InstanceId?: string;
|
|
5192
5208
|
/**
|
|
5193
|
-
* <p>The content of the association document for the
|
|
5209
|
+
* <p>The content of the association document for the managed node(s).</p>
|
|
5194
5210
|
*/
|
|
5195
5211
|
Content?: string;
|
|
5196
5212
|
/**
|
|
5197
|
-
* <p>Version information for the association on the
|
|
5213
|
+
* <p>Version information for the association on the managed node.</p>
|
|
5198
5214
|
*/
|
|
5199
5215
|
AssociationVersion?: string;
|
|
5200
5216
|
}
|
|
@@ -5206,7 +5222,7 @@ export declare namespace InstanceAssociation {
|
|
|
5206
5222
|
}
|
|
5207
5223
|
export interface DescribeEffectiveInstanceAssociationsResult {
|
|
5208
5224
|
/**
|
|
5209
|
-
* <p>The associations for the requested
|
|
5225
|
+
* <p>The associations for the requested managed node.</p>
|
|
5210
5226
|
*/
|
|
5211
5227
|
Associations?: InstanceAssociation[];
|
|
5212
5228
|
/**
|
|
@@ -5332,7 +5348,7 @@ export declare namespace UnsupportedOperatingSystem {
|
|
|
5332
5348
|
}
|
|
5333
5349
|
export interface DescribeInstanceAssociationsStatusRequest {
|
|
5334
5350
|
/**
|
|
5335
|
-
* <p>The
|
|
5351
|
+
* <p>The managed node IDs for which you want association status information.</p>
|
|
5336
5352
|
*/
|
|
5337
5353
|
InstanceId: string | undefined;
|
|
5338
5354
|
/**
|
|
@@ -5384,7 +5400,7 @@ export declare namespace InstanceAssociationOutputUrl {
|
|
|
5384
5400
|
const filterSensitiveLog: (obj: InstanceAssociationOutputUrl) => any;
|
|
5385
5401
|
}
|
|
5386
5402
|
/**
|
|
5387
|
-
* <p>Status information about the
|
|
5403
|
+
* <p>Status information about the association.</p>
|
|
5388
5404
|
*/
|
|
5389
5405
|
export interface InstanceAssociationStatusInfo {
|
|
5390
5406
|
/**
|
|
@@ -5400,23 +5416,23 @@ export interface InstanceAssociationStatusInfo {
|
|
|
5400
5416
|
*/
|
|
5401
5417
|
DocumentVersion?: string;
|
|
5402
5418
|
/**
|
|
5403
|
-
* <p>The version of the association applied to the
|
|
5419
|
+
* <p>The version of the association applied to the managed node.</p>
|
|
5404
5420
|
*/
|
|
5405
5421
|
AssociationVersion?: string;
|
|
5406
5422
|
/**
|
|
5407
|
-
* <p>The
|
|
5423
|
+
* <p>The managed node ID where the association was created.</p>
|
|
5408
5424
|
*/
|
|
5409
5425
|
InstanceId?: string;
|
|
5410
5426
|
/**
|
|
5411
|
-
* <p>The date the
|
|
5427
|
+
* <p>The date the association ran. </p>
|
|
5412
5428
|
*/
|
|
5413
5429
|
ExecutionDate?: Date;
|
|
5414
5430
|
/**
|
|
5415
|
-
* <p>Status information about the
|
|
5431
|
+
* <p>Status information about the association.</p>
|
|
5416
5432
|
*/
|
|
5417
5433
|
Status?: string;
|
|
5418
5434
|
/**
|
|
5419
|
-
* <p>Detailed status information about the
|
|
5435
|
+
* <p>Detailed status information about the association.</p>
|
|
5420
5436
|
*/
|
|
5421
5437
|
DetailedStatus?: string;
|
|
5422
5438
|
/**
|
|
@@ -5432,7 +5448,7 @@ export interface InstanceAssociationStatusInfo {
|
|
|
5432
5448
|
*/
|
|
5433
5449
|
OutputUrl?: InstanceAssociationOutputUrl;
|
|
5434
5450
|
/**
|
|
5435
|
-
* <p>The name of the association applied to the
|
|
5451
|
+
* <p>The name of the association applied to the managed node.</p>
|
|
5436
5452
|
*/
|
|
5437
5453
|
AssociationName?: string;
|
|
5438
5454
|
}
|
|
@@ -5460,11 +5476,11 @@ export declare namespace DescribeInstanceAssociationsStatusResult {
|
|
|
5460
5476
|
const filterSensitiveLog: (obj: DescribeInstanceAssociationsStatusResult) => any;
|
|
5461
5477
|
}
|
|
5462
5478
|
/**
|
|
5463
|
-
* <p>The filters to describe or get information about your managed
|
|
5479
|
+
* <p>The filters to describe or get information about your managed nodes.</p>
|
|
5464
5480
|
*/
|
|
5465
5481
|
export interface InstanceInformationStringFilter {
|
|
5466
5482
|
/**
|
|
5467
|
-
* <p>The filter key name to describe your
|
|
5483
|
+
* <p>The filter key name to describe your managed nodes. For example:</p>
|
|
5468
5484
|
* <p>"InstanceIds"|"AgentVersion"|"PingStatus"|"PlatformTypes"|"ActivationIds"|"IamRole"|"ResourceType"|"AssociationStatus"|"Tag
|
|
5469
5485
|
* Key"</p>
|
|
5470
5486
|
* <important>
|
|
@@ -5498,7 +5514,7 @@ export declare enum InstanceInformationFilterKey {
|
|
|
5498
5514
|
RESOURCE_TYPE = "ResourceType"
|
|
5499
5515
|
}
|
|
5500
5516
|
/**
|
|
5501
|
-
* <p>Describes a filter for a specific list of
|
|
5517
|
+
* <p>Describes a filter for a specific list of managed nodes. You can filter node information by
|
|
5502
5518
|
* using tags. You specify tags by using a key-value mapping.</p>
|
|
5503
5519
|
* <p>Use this operation instead of the <a>DescribeInstanceInformationRequest$InstanceInformationFilterList</a> method. The
|
|
5504
5520
|
* <code>InstanceInformationFilterList</code> method is a legacy method and doesn't support tags.
|
|
@@ -5523,8 +5539,8 @@ export declare namespace InstanceInformationFilter {
|
|
|
5523
5539
|
export interface DescribeInstanceInformationRequest {
|
|
5524
5540
|
/**
|
|
5525
5541
|
* <p>This is a legacy method. We recommend that you don't use this method. Instead, use the
|
|
5526
|
-
* <code>Filters</code> data type. <code>Filters</code> enables you to return
|
|
5527
|
-
* by filtering based on tags applied to managed
|
|
5542
|
+
* <code>Filters</code> data type. <code>Filters</code> enables you to return node information
|
|
5543
|
+
* by filtering based on tags applied to managed nodes.</p>
|
|
5528
5544
|
* <note>
|
|
5529
5545
|
* <p>Attempting to use <code>InstanceInformationFilterList</code> and <code>Filters</code> leads
|
|
5530
5546
|
* to an exception error. </p>
|
|
@@ -5532,7 +5548,7 @@ export interface DescribeInstanceInformationRequest {
|
|
|
5532
5548
|
*/
|
|
5533
5549
|
InstanceInformationFilterList?: InstanceInformationFilter[];
|
|
5534
5550
|
/**
|
|
5535
|
-
* <p>One or more filters. Use a filter to return a more specific list of
|
|
5551
|
+
* <p>One or more filters. Use a filter to return a more specific list of managed nodes. You can
|
|
5536
5552
|
* filter based on tags applied to EC2 instances. Use this <code>Filters</code> data type instead of
|
|
5537
5553
|
* <code>InstanceInformationFilterList</code>, which is deprecated.</p>
|
|
5538
5554
|
*/
|
|
@@ -5563,7 +5579,7 @@ export interface InstanceAggregatedAssociationOverview {
|
|
|
5563
5579
|
*/
|
|
5564
5580
|
DetailedStatus?: string;
|
|
5565
5581
|
/**
|
|
5566
|
-
* <p>The number of associations for the
|
|
5582
|
+
* <p>The number of associations for the managed node(s).</p>
|
|
5567
5583
|
*/
|
|
5568
5584
|
InstanceAssociationStatusAggregatedCount?: {
|
|
5569
5585
|
[key: string]: number;
|
|
@@ -5585,12 +5601,17 @@ export declare enum ResourceType {
|
|
|
5585
5601
|
EC2_INSTANCE = "EC2Instance",
|
|
5586
5602
|
MANAGED_INSTANCE = "ManagedInstance"
|
|
5587
5603
|
}
|
|
5604
|
+
export declare enum SourceType {
|
|
5605
|
+
AWS_EC2_INSTANCE = "AWS::EC2::Instance",
|
|
5606
|
+
AWS_IOT_THING = "AWS::IoT::Thing",
|
|
5607
|
+
AWS_SSM_MANAGEDINSTANCE = "AWS::SSM::ManagedInstance"
|
|
5608
|
+
}
|
|
5588
5609
|
/**
|
|
5589
|
-
* <p>Describes a filter for a specific list of
|
|
5610
|
+
* <p>Describes a filter for a specific list of managed nodes. </p>
|
|
5590
5611
|
*/
|
|
5591
5612
|
export interface InstanceInformation {
|
|
5592
5613
|
/**
|
|
5593
|
-
* <p>The
|
|
5614
|
+
* <p>The managed node ID. </p>
|
|
5594
5615
|
*/
|
|
5595
5616
|
InstanceId?: string;
|
|
5596
5617
|
/**
|
|
@@ -5605,14 +5626,14 @@ export interface InstanceInformation {
|
|
|
5605
5626
|
*/
|
|
5606
5627
|
LastPingDateTime?: Date;
|
|
5607
5628
|
/**
|
|
5608
|
-
* <p>The version of SSM Agent running on your Linux
|
|
5629
|
+
* <p>The version of SSM Agent running on your Linux managed node. </p>
|
|
5609
5630
|
*/
|
|
5610
5631
|
AgentVersion?: string;
|
|
5611
5632
|
/**
|
|
5612
|
-
* <p>Indicates whether the latest version of SSM Agent is running on your Linux
|
|
5613
|
-
*
|
|
5614
|
-
*
|
|
5615
|
-
*
|
|
5633
|
+
* <p>Indicates whether the latest version of SSM Agent is running on your Linux managed node. This
|
|
5634
|
+
* field doesn't indicate whether or not the latest version is installed on Windows managed nodes,
|
|
5635
|
+
* because some older versions of Windows Server use the EC2Config service to process Systems Manager
|
|
5636
|
+
* requests.</p>
|
|
5616
5637
|
*/
|
|
5617
5638
|
IsLatestVersion?: boolean;
|
|
5618
5639
|
/**
|
|
@@ -5620,11 +5641,11 @@ export interface InstanceInformation {
|
|
|
5620
5641
|
*/
|
|
5621
5642
|
PlatformType?: PlatformType | string;
|
|
5622
5643
|
/**
|
|
5623
|
-
* <p>The name of the operating system platform running on your
|
|
5644
|
+
* <p>The name of the operating system platform running on your managed node. </p>
|
|
5624
5645
|
*/
|
|
5625
5646
|
PlatformName?: string;
|
|
5626
5647
|
/**
|
|
5627
|
-
* <p>The version of the OS platform running on your
|
|
5648
|
+
* <p>The version of the OS platform running on your managed node. </p>
|
|
5628
5649
|
*/
|
|
5629
5650
|
PlatformVersion?: string;
|
|
5630
5651
|
/**
|
|
@@ -5634,14 +5655,14 @@ export interface InstanceInformation {
|
|
|
5634
5655
|
ActivationId?: string;
|
|
5635
5656
|
/**
|
|
5636
5657
|
* <p>The Identity and Access Management (IAM) role assigned to the on-premises Systems Manager
|
|
5637
|
-
* managed
|
|
5658
|
+
* managed node. This call doesn't return the IAM role for Amazon Elastic Compute Cloud
|
|
5638
5659
|
* (Amazon EC2) instances. To retrieve the IAM role for an EC2 instance, use
|
|
5639
5660
|
* the Amazon EC2 <code>DescribeInstances</code> operation. For information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html">DescribeInstances</a> in the <i>Amazon EC2 API Reference</i> or <a href="https://docs.aws.amazon.com/cli/latest/ec2/describe-instances.html">describe-instances</a> in
|
|
5640
5661
|
* the <i>Amazon Web Services CLI Command Reference</i>.</p>
|
|
5641
5662
|
*/
|
|
5642
5663
|
IamRole?: string;
|
|
5643
5664
|
/**
|
|
5644
|
-
* <p>The date the server or VM was registered with Amazon Web Services as a managed
|
|
5665
|
+
* <p>The date the server or VM was registered with Amazon Web Services as a managed node.</p>
|
|
5645
5666
|
*/
|
|
5646
5667
|
RegistrationDate?: Date;
|
|
5647
5668
|
/**
|
|
@@ -5649,24 +5670,23 @@ export interface InstanceInformation {
|
|
|
5649
5670
|
*/
|
|
5650
5671
|
ResourceType?: ResourceType | string;
|
|
5651
5672
|
/**
|
|
5652
|
-
* <p>The name assigned to an on-premises server or virtual machine (VM) when it is
|
|
5653
|
-
* Systems Manager managed
|
|
5654
|
-
* using the <a>CreateActivation</a> command. It is applied to the managed
|
|
5655
|
-
* specifying the Activation Code and Activation ID when you install SSM Agent on the
|
|
5673
|
+
* <p>The name assigned to an on-premises server, edge device, or virtual machine (VM) when it is
|
|
5674
|
+
* activated as a Systems Manager managed node. The name is specified as the <code>DefaultInstanceName</code>
|
|
5675
|
+
* property using the <a>CreateActivation</a> command. It is applied to the managed node
|
|
5676
|
+
* by specifying the Activation Code and Activation ID when you install SSM Agent on the node, as
|
|
5656
5677
|
* explained in <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-install-managed-linux.html">Install SSM Agent for a
|
|
5657
5678
|
* hybrid environment (Linux)</a> and <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-install-managed-win.html">Install SSM Agent for a
|
|
5658
|
-
* hybrid environment (Windows)</a>. To retrieve the Name tag of an EC2 instance,
|
|
5659
|
-
*
|
|
5660
|
-
*
|
|
5661
|
-
* <i>Amazon Web Services CLI Command Reference</i>.</p>
|
|
5679
|
+
* hybrid environment (Windows)</a>. To retrieve the <code>Name</code> tag of an EC2 instance,
|
|
5680
|
+
* use the Amazon EC2 <code>DescribeInstances</code> operation. For information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html">DescribeInstances</a> in the <i>Amazon EC2 API Reference</i> or <a href="https://docs.aws.amazon.com/cli/latest/ec2/describe-instances.html">describe-instances</a> in
|
|
5681
|
+
* the <i>Amazon Web Services CLI Command Reference</i>.</p>
|
|
5662
5682
|
*/
|
|
5663
5683
|
Name?: string;
|
|
5664
5684
|
/**
|
|
5665
|
-
* <p>The IP address of the managed
|
|
5685
|
+
* <p>The IP address of the managed node.</p>
|
|
5666
5686
|
*/
|
|
5667
5687
|
IPAddress?: string;
|
|
5668
5688
|
/**
|
|
5669
|
-
* <p>The fully qualified host name of the managed
|
|
5689
|
+
* <p>The fully qualified host name of the managed node.</p>
|
|
5670
5690
|
*/
|
|
5671
5691
|
ComputerName?: string;
|
|
5672
5692
|
/**
|
|
@@ -5685,6 +5705,16 @@ export interface InstanceInformation {
|
|
|
5685
5705
|
* <p>Information about the association.</p>
|
|
5686
5706
|
*/
|
|
5687
5707
|
AssociationOverview?: InstanceAggregatedAssociationOverview;
|
|
5708
|
+
/**
|
|
5709
|
+
* <p>The ID of the source resource. For IoT Greengrass devices, <code>SourceId</code> is
|
|
5710
|
+
* the Thing name. </p>
|
|
5711
|
+
*/
|
|
5712
|
+
SourceId?: string;
|
|
5713
|
+
/**
|
|
5714
|
+
* <p>The type of the source resource. For IoT Greengrass devices, <code>SourceType</code>
|
|
5715
|
+
* is <code>AWS::IoT::Thing</code>. </p>
|
|
5716
|
+
*/
|
|
5717
|
+
SourceType?: SourceType | string;
|
|
5688
5718
|
}
|
|
5689
5719
|
export declare namespace InstanceInformation {
|
|
5690
5720
|
/**
|
|
@@ -5694,7 +5724,7 @@ export declare namespace InstanceInformation {
|
|
|
5694
5724
|
}
|
|
5695
5725
|
export interface DescribeInstanceInformationResult {
|
|
5696
5726
|
/**
|
|
5697
|
-
* <p>The
|
|
5727
|
+
* <p>The managed node information list.</p>
|
|
5698
5728
|
*/
|
|
5699
5729
|
InstanceInformationList?: InstanceInformation[];
|
|
5700
5730
|
/**
|
|
@@ -5725,7 +5755,7 @@ export declare namespace InvalidInstanceInformationFilterValue {
|
|
|
5725
5755
|
}
|
|
5726
5756
|
export interface DescribeInstancePatchesRequest {
|
|
5727
5757
|
/**
|
|
5728
|
-
* <p>The ID of the
|
|
5758
|
+
* <p>The ID of the managed node whose patch state information should be retrieved.</p>
|
|
5729
5759
|
*/
|
|
5730
5760
|
InstanceId: string | undefined;
|
|
5731
5761
|
/**
|
|
@@ -5798,8 +5828,8 @@ export declare enum PatchComplianceDataState {
|
|
|
5798
5828
|
NotApplicable = "NOT_APPLICABLE"
|
|
5799
5829
|
}
|
|
5800
5830
|
/**
|
|
5801
|
-
* <p>Information about the state of a patch on a particular
|
|
5802
|
-
* baseline used to patch the
|
|
5831
|
+
* <p>Information about the state of a patch on a particular managed node as it relates to the patch
|
|
5832
|
+
* baseline used to patch the node.</p>
|
|
5803
5833
|
*/
|
|
5804
5834
|
export interface PatchComplianceData {
|
|
5805
5835
|
/**
|
|
@@ -5821,12 +5851,12 @@ export interface PatchComplianceData {
|
|
|
5821
5851
|
*/
|
|
5822
5852
|
Severity: string | undefined;
|
|
5823
5853
|
/**
|
|
5824
|
-
* <p>The state of the patch on the
|
|
5854
|
+
* <p>The state of the patch on the managed node, such as INSTALLED or FAILED.</p>
|
|
5825
5855
|
* <p>For descriptions of each patch state, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-compliance-about.html#sysman-compliance-monitor-patch">About patch compliance</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
|
|
5826
5856
|
*/
|
|
5827
5857
|
State: PatchComplianceDataState | string | undefined;
|
|
5828
5858
|
/**
|
|
5829
|
-
* <p>The date/time the patch was installed on the
|
|
5859
|
+
* <p>The date/time the patch was installed on the managed node. Not all operating systems provide
|
|
5830
5860
|
* this level of information.</p>
|
|
5831
5861
|
*/
|
|
5832
5862
|
InstalledTime: Date | undefined;
|
|
@@ -5884,7 +5914,7 @@ export declare namespace DescribeInstancePatchesResult {
|
|
|
5884
5914
|
}
|
|
5885
5915
|
export interface DescribeInstancePatchStatesRequest {
|
|
5886
5916
|
/**
|
|
5887
|
-
* <p>The ID of the
|
|
5917
|
+
* <p>The ID of the managed node for which patch state information should be retrieved.</p>
|
|
5888
5918
|
*/
|
|
5889
5919
|
InstanceIds: string[] | undefined;
|
|
5890
5920
|
/**
|
|
@@ -5893,7 +5923,7 @@ export interface DescribeInstancePatchStatesRequest {
|
|
|
5893
5923
|
*/
|
|
5894
5924
|
NextToken?: string;
|
|
5895
5925
|
/**
|
|
5896
|
-
* <p>The maximum number of
|
|
5926
|
+
* <p>The maximum number of managed nodes to return (per page).</p>
|
|
5897
5927
|
*/
|
|
5898
5928
|
MaxResults?: number;
|
|
5899
5929
|
}
|
|
@@ -5912,22 +5942,22 @@ export declare enum RebootOption {
|
|
|
5912
5942
|
REBOOT_IF_NEEDED = "RebootIfNeeded"
|
|
5913
5943
|
}
|
|
5914
5944
|
/**
|
|
5915
|
-
* <p>Defines the high-level patch compliance state for a managed
|
|
5945
|
+
* <p>Defines the high-level patch compliance state for a managed node, providing information
|
|
5916
5946
|
* about the number of installed, missing, not applicable, and failed patches along with metadata
|
|
5917
|
-
* about the operation when this information was gathered for the
|
|
5947
|
+
* about the operation when this information was gathered for the managed node.</p>
|
|
5918
5948
|
*/
|
|
5919
5949
|
export interface InstancePatchState {
|
|
5920
5950
|
/**
|
|
5921
|
-
* <p>The ID of the managed
|
|
5951
|
+
* <p>The ID of the managed node the high-level patch compliance information was collected
|
|
5922
5952
|
* for.</p>
|
|
5923
5953
|
*/
|
|
5924
5954
|
InstanceId: string | undefined;
|
|
5925
5955
|
/**
|
|
5926
|
-
* <p>The name of the patch group the managed
|
|
5956
|
+
* <p>The name of the patch group the managed node belongs to.</p>
|
|
5927
5957
|
*/
|
|
5928
5958
|
PatchGroup: string | undefined;
|
|
5929
5959
|
/**
|
|
5930
|
-
* <p>The ID of the patch baseline used to patch the
|
|
5960
|
+
* <p>The ID of the patch baseline used to patch the managed node.</p>
|
|
5931
5961
|
*/
|
|
5932
5962
|
BaselineId: string | undefined;
|
|
5933
5963
|
/**
|
|
@@ -5952,21 +5982,21 @@ export interface InstancePatchState {
|
|
|
5952
5982
|
*/
|
|
5953
5983
|
OwnerInformation?: string;
|
|
5954
5984
|
/**
|
|
5955
|
-
* <p>The number of patches from the patch baseline that are installed on the
|
|
5985
|
+
* <p>The number of patches from the patch baseline that are installed on the managed node.</p>
|
|
5956
5986
|
*/
|
|
5957
5987
|
InstalledCount?: number;
|
|
5958
5988
|
/**
|
|
5959
5989
|
* <p>The number of patches not specified in the patch baseline that are installed on the
|
|
5960
|
-
*
|
|
5990
|
+
* managed node.</p>
|
|
5961
5991
|
*/
|
|
5962
5992
|
InstalledOtherCount?: number;
|
|
5963
5993
|
/**
|
|
5964
|
-
* <p>The number of patches installed by Patch Manager since the last time the
|
|
5994
|
+
* <p>The number of patches installed by Patch Manager since the last time the managed node was
|
|
5965
5995
|
* rebooted.</p>
|
|
5966
5996
|
*/
|
|
5967
5997
|
InstalledPendingRebootCount?: number;
|
|
5968
5998
|
/**
|
|
5969
|
-
* <p>The number of patches installed on
|
|
5999
|
+
* <p>The number of patches installed on a managed node that are specified in a
|
|
5970
6000
|
* <code>RejectedPatches</code> list. Patches with a status of <code>InstalledRejected</code> were
|
|
5971
6001
|
* typically installed before they were added to a <code>RejectedPatches</code> list.</p>
|
|
5972
6002
|
* <note>
|
|
@@ -5977,7 +6007,7 @@ export interface InstancePatchState {
|
|
|
5977
6007
|
*/
|
|
5978
6008
|
InstalledRejectedCount?: number;
|
|
5979
6009
|
/**
|
|
5980
|
-
* <p>The number of patches from the patch baseline that are applicable for the
|
|
6010
|
+
* <p>The number of patches from the patch baseline that are applicable for the managed node but
|
|
5981
6011
|
* aren't currently installed.</p>
|
|
5982
6012
|
*/
|
|
5983
6013
|
MissingCount?: number;
|
|
@@ -5992,18 +6022,18 @@ export interface InstancePatchState {
|
|
|
5992
6022
|
*/
|
|
5993
6023
|
UnreportedNotApplicableCount?: number;
|
|
5994
6024
|
/**
|
|
5995
|
-
* <p>The number of patches from the patch baseline that aren't applicable for the
|
|
5996
|
-
* therefore aren't installed on the
|
|
6025
|
+
* <p>The number of patches from the patch baseline that aren't applicable for the managed node and
|
|
6026
|
+
* therefore aren't installed on the node. This number may be truncated if the list of patch
|
|
5997
6027
|
* names is very large. The number of patches beyond this limit are reported in
|
|
5998
6028
|
* <code>UnreportedNotApplicableCount</code>.</p>
|
|
5999
6029
|
*/
|
|
6000
6030
|
NotApplicableCount?: number;
|
|
6001
6031
|
/**
|
|
6002
|
-
* <p>The time the most recent patching operation was started on the
|
|
6032
|
+
* <p>The time the most recent patching operation was started on the managed node.</p>
|
|
6003
6033
|
*/
|
|
6004
6034
|
OperationStartTime: Date | undefined;
|
|
6005
6035
|
/**
|
|
6006
|
-
* <p>The time the most recent patching operation completed on the
|
|
6036
|
+
* <p>The time the most recent patching operation completed on the managed node.</p>
|
|
6007
6037
|
*/
|
|
6008
6038
|
OperationEndTime: Date | undefined;
|
|
6009
6039
|
/**
|
|
@@ -6021,7 +6051,7 @@ export interface InstancePatchState {
|
|
|
6021
6051
|
*/
|
|
6022
6052
|
Operation: PatchOperationType | string | undefined;
|
|
6023
6053
|
/**
|
|
6024
|
-
* <p>The time of the last attempt to patch the
|
|
6054
|
+
* <p>The time of the last attempt to patch the managed node with <code>NoReboot</code> specified as
|
|
6025
6055
|
* the reboot option.</p>
|
|
6026
6056
|
*/
|
|
6027
6057
|
LastNoRebootInstallOperationTime?: Date;
|
|
@@ -6034,7 +6064,7 @@ export interface InstancePatchState {
|
|
|
6034
6064
|
* <ul>
|
|
6035
6065
|
* <li>
|
|
6036
6066
|
* <p>
|
|
6037
|
-
* <code>RebootIfNeeded</code>: Patch Manager tries to reboot the
|
|
6067
|
+
* <code>RebootIfNeeded</code>: Patch Manager tries to reboot the managed node if it installed
|
|
6038
6068
|
* any patches, or if any patches are detected with a status of
|
|
6039
6069
|
* <code>InstalledPendingReboot</code>.</p>
|
|
6040
6070
|
* </li>
|
|
@@ -6049,23 +6079,23 @@ export interface InstancePatchState {
|
|
|
6049
6079
|
*/
|
|
6050
6080
|
RebootOption?: RebootOption | string;
|
|
6051
6081
|
/**
|
|
6052
|
-
* <p>The number of
|
|
6082
|
+
* <p>The number of managed nodes where patches that are specified as <code>Critical</code> for
|
|
6053
6083
|
* compliance reporting in the patch baseline aren't installed. These patches might be missing, have
|
|
6054
|
-
* failed installation, were rejected, or were installed but awaiting a required
|
|
6055
|
-
* The status of these
|
|
6084
|
+
* failed installation, were rejected, or were installed but awaiting a required managed node reboot.
|
|
6085
|
+
* The status of these managed nodes is <code>NON_COMPLIANT</code>.</p>
|
|
6056
6086
|
*/
|
|
6057
6087
|
CriticalNonCompliantCount?: number;
|
|
6058
6088
|
/**
|
|
6059
|
-
* <p>The number of
|
|
6060
|
-
* advisory aren't installed. These patches might be missing, have failed installation, were
|
|
6061
|
-
* rejected, or were installed but awaiting a required
|
|
6062
|
-
*
|
|
6089
|
+
* <p>The number of managed nodes where patches that are specified as <code>Security</code> in a
|
|
6090
|
+
* 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 managed
|
|
6092
|
+
* nodes is <code>NON_COMPLIANT</code>.</p>
|
|
6063
6093
|
*/
|
|
6064
6094
|
SecurityNonCompliantCount?: number;
|
|
6065
6095
|
/**
|
|
6066
|
-
* <p>The number of
|
|
6096
|
+
* <p>The number of managed nodes with patches installed that are specified as other than
|
|
6067
6097
|
* <code>Critical</code> or <code>Security</code> but aren't compliant with the patch baseline. The
|
|
6068
|
-
* status of these
|
|
6098
|
+
* status of these managed nodes is <code>NON_COMPLIANT</code>.</p>
|
|
6069
6099
|
*/
|
|
6070
6100
|
OtherNonCompliantCount?: number;
|
|
6071
6101
|
}
|
|
@@ -6077,7 +6107,7 @@ export declare namespace InstancePatchState {
|
|
|
6077
6107
|
}
|
|
6078
6108
|
export interface DescribeInstancePatchStatesResult {
|
|
6079
6109
|
/**
|
|
6080
|
-
* <p>The high-level patch state for the requested
|
|
6110
|
+
* <p>The high-level patch state for the requested managed nodes.</p>
|
|
6081
6111
|
*/
|
|
6082
6112
|
InstancePatchStates?: InstancePatchState[];
|
|
6083
6113
|
/**
|
|
@@ -6102,7 +6132,7 @@ export declare enum InstancePatchStateOperatorType {
|
|
|
6102
6132
|
* <p>Defines a filter used in <a>DescribeInstancePatchStatesForPatchGroup</a> to scope
|
|
6103
6133
|
* down the information returned by the API.</p>
|
|
6104
6134
|
* <p>
|
|
6105
|
-
* <b>Example</b>: To filter for all
|
|
6135
|
+
* <b>Example</b>: To filter for all managed nodes in a patch group
|
|
6106
6136
|
* having more than three patches with a <code>FailedCount</code> status, use the following for the
|
|
6107
6137
|
* filter:</p>
|
|
6108
6138
|
* <ul>
|
|
@@ -6221,7 +6251,7 @@ export declare namespace DescribeInstancePatchStatesForPatchGroupRequest {
|
|
|
6221
6251
|
}
|
|
6222
6252
|
export interface DescribeInstancePatchStatesForPatchGroupResult {
|
|
6223
6253
|
/**
|
|
6224
|
-
* <p>The high-level patch state for the requested
|
|
6254
|
+
* <p>The high-level patch state for the requested managed nodes. </p>
|
|
6225
6255
|
*/
|
|
6226
6256
|
InstancePatchStates?: InstancePatchState[];
|
|
6227
6257
|
/**
|
|
@@ -6814,7 +6844,7 @@ export interface DescribeMaintenanceWindowScheduleRequest {
|
|
|
6814
6844
|
*/
|
|
6815
6845
|
WindowId?: string;
|
|
6816
6846
|
/**
|
|
6817
|
-
* <p>The
|
|
6847
|
+
* <p>The managed node ID or key-value pair to retrieve information about.</p>
|
|
6818
6848
|
*/
|
|
6819
6849
|
Targets?: Target[];
|
|
6820
6850
|
/**
|
|
@@ -6887,7 +6917,7 @@ export declare namespace DescribeMaintenanceWindowScheduleResult {
|
|
|
6887
6917
|
}
|
|
6888
6918
|
export interface DescribeMaintenanceWindowsForTargetRequest {
|
|
6889
6919
|
/**
|
|
6890
|
-
* <p>The
|
|
6920
|
+
* <p>The managed node ID or key-value pair to retrieve information about.</p>
|
|
6891
6921
|
*/
|
|
6892
6922
|
Targets: Target[] | undefined;
|
|
6893
6923
|
/**
|
|
@@ -6933,7 +6963,7 @@ export declare namespace MaintenanceWindowIdentityForTarget {
|
|
|
6933
6963
|
}
|
|
6934
6964
|
export interface DescribeMaintenanceWindowsForTargetResult {
|
|
6935
6965
|
/**
|
|
6936
|
-
* <p>Information about the maintenance window targets and tasks
|
|
6966
|
+
* <p>Information about the maintenance window targets and tasks a managed node is associated
|
|
6937
6967
|
* with.</p>
|
|
6938
6968
|
*/
|
|
6939
6969
|
WindowIdentities?: MaintenanceWindowIdentityForTarget[];
|
|
@@ -6993,8 +7023,8 @@ export interface MaintenanceWindowTarget {
|
|
|
6993
7023
|
*/
|
|
6994
7024
|
ResourceType?: MaintenanceWindowResourceType | string;
|
|
6995
7025
|
/**
|
|
6996
|
-
* <p>The targets, either
|
|
6997
|
-
* <p>Specify
|
|
7026
|
+
* <p>The targets, either managed nodes or tags.</p>
|
|
7027
|
+
* <p>Specify managed nodes using the following format:</p>
|
|
6998
7028
|
* <p>
|
|
6999
7029
|
* <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code>
|
|
7000
7030
|
* </p>
|
|
@@ -7074,7 +7104,7 @@ export declare enum MaintenanceWindowTaskCutoffBehavior {
|
|
|
7074
7104
|
}
|
|
7075
7105
|
/**
|
|
7076
7106
|
* <p>Information about an Amazon Simple Storage Service (Amazon S3) bucket to write
|
|
7077
|
-
*
|
|
7107
|
+
* managed node-level logs to.</p>
|
|
7078
7108
|
* <note>
|
|
7079
7109
|
* <p>
|
|
7080
7110
|
* <code>LoggingInfo</code> has been deprecated. To specify an Amazon Simple Storage Service (Amazon S3) bucket to contain logs, instead use the
|
|
@@ -7143,7 +7173,7 @@ export interface MaintenanceWindowTask {
|
|
|
7143
7173
|
*/
|
|
7144
7174
|
Type?: MaintenanceWindowTaskType | string;
|
|
7145
7175
|
/**
|
|
7146
|
-
* <p>The targets (either
|
|
7176
|
+
* <p>The targets (either managed nodes or tags). Managed nodes are specified using
|
|
7147
7177
|
* <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code>. Tags are specified
|
|
7148
7178
|
* using <code>Key=<tag name>,Values=<tag value></code>.</p>
|
|
7149
7179
|
*/
|
|
@@ -7614,67 +7644,3 @@ export declare enum ParameterTier {
|
|
|
7614
7644
|
INTELLIGENT_TIERING = "Intelligent-Tiering",
|
|
7615
7645
|
STANDARD = "Standard"
|
|
7616
7646
|
}
|
|
7617
|
-
export declare enum ParameterType {
|
|
7618
|
-
SECURE_STRING = "SecureString",
|
|
7619
|
-
STRING = "String",
|
|
7620
|
-
STRING_LIST = "StringList"
|
|
7621
|
-
}
|
|
7622
|
-
/**
|
|
7623
|
-
* <p>Metadata includes information like the ARN of the last user and the date/time the parameter
|
|
7624
|
-
* was last used.</p>
|
|
7625
|
-
*/
|
|
7626
|
-
export interface ParameterMetadata {
|
|
7627
|
-
/**
|
|
7628
|
-
* <p>The parameter name.</p>
|
|
7629
|
-
*/
|
|
7630
|
-
Name?: string;
|
|
7631
|
-
/**
|
|
7632
|
-
* <p>The type of parameter. Valid parameter types include the following: <code>String</code>,
|
|
7633
|
-
* <code>StringList</code>, and <code>SecureString</code>.</p>
|
|
7634
|
-
*/
|
|
7635
|
-
Type?: ParameterType | string;
|
|
7636
|
-
/**
|
|
7637
|
-
* <p>The ID of the query key used for this parameter.</p>
|
|
7638
|
-
*/
|
|
7639
|
-
KeyId?: string;
|
|
7640
|
-
/**
|
|
7641
|
-
* <p>Date the parameter was last changed or updated.</p>
|
|
7642
|
-
*/
|
|
7643
|
-
LastModifiedDate?: Date;
|
|
7644
|
-
/**
|
|
7645
|
-
* <p>Amazon Resource Name (ARN) of the Amazon Web Services user who last changed the parameter.</p>
|
|
7646
|
-
*/
|
|
7647
|
-
LastModifiedUser?: string;
|
|
7648
|
-
/**
|
|
7649
|
-
* <p>Description of the parameter actions.</p>
|
|
7650
|
-
*/
|
|
7651
|
-
Description?: string;
|
|
7652
|
-
/**
|
|
7653
|
-
* <p>A parameter name can include only the following letters and symbols.</p>
|
|
7654
|
-
* <p>a-zA-Z0-9_.-</p>
|
|
7655
|
-
*/
|
|
7656
|
-
AllowedPattern?: string;
|
|
7657
|
-
/**
|
|
7658
|
-
* <p>The parameter version.</p>
|
|
7659
|
-
*/
|
|
7660
|
-
Version?: number;
|
|
7661
|
-
/**
|
|
7662
|
-
* <p>The parameter tier.</p>
|
|
7663
|
-
*/
|
|
7664
|
-
Tier?: ParameterTier | string;
|
|
7665
|
-
/**
|
|
7666
|
-
* <p>A list of policies associated with a parameter.</p>
|
|
7667
|
-
*/
|
|
7668
|
-
Policies?: ParameterInlinePolicy[];
|
|
7669
|
-
/**
|
|
7670
|
-
* <p>The data type of the parameter, such as <code>text</code> or <code>aws:ec2:image</code>. The
|
|
7671
|
-
* default is <code>text</code>.</p>
|
|
7672
|
-
*/
|
|
7673
|
-
DataType?: string;
|
|
7674
|
-
}
|
|
7675
|
-
export declare namespace ParameterMetadata {
|
|
7676
|
-
/**
|
|
7677
|
-
* @internal
|
|
7678
|
-
*/
|
|
7679
|
-
const filterSensitiveLog: (obj: ParameterMetadata) => any;
|
|
7680
|
-
}
|