@aws-sdk/client-ssm 3.43.0 → 3.44.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 +11 -0
- package/README.md +12 -6
- package/dist-cjs/commands/UpdateDocumentMetadataCommand.js +2 -1
- package/dist-cjs/models/models_0.js +9 -8
- package/dist-cjs/models/models_1.js +12 -12
- package/dist-cjs/models/models_2.js +7 -1
- package/dist-cjs/protocols/Aws_json1_1.js +2 -0
- package/dist-es/commands/UpdateDocumentMetadataCommand.js +2 -1
- package/dist-es/models/models_0.js +7 -6
- package/dist-es/models/models_1.js +6 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +2 -0
- 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/UpdateManagedInstanceRoleCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +194 -192
- package/dist-types/models/models_1.d.ts +188 -194
- package/dist-types/models/models_2.d.ts +21 -13
- package/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +2 -1
- package/dist-types/ts3.4/models/models_0.d.ts +10 -5
- package/dist-types/ts3.4/models/models_1.d.ts +6 -7
- package/dist-types/ts3.4/models/models_2.d.ts +6 -0
- package/package.json +1 -1
|
@@ -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>
|
|
@@ -518,8 +518,8 @@ export interface CreateActivationRequest {
|
|
|
518
518
|
*/
|
|
519
519
|
Description?: string;
|
|
520
520
|
/**
|
|
521
|
-
* <p>The name of the registered, managed
|
|
522
|
-
*
|
|
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>
|
|
523
523
|
* <important>
|
|
524
524
|
* <p>Don't enter personally identifiable information in this field.</p>
|
|
525
525
|
* </important>
|
|
@@ -527,14 +527,14 @@ export interface CreateActivationRequest {
|
|
|
527
527
|
DefaultInstanceName?: string;
|
|
528
528
|
/**
|
|
529
529
|
* <p>The name of the Identity and Access Management (IAM) role that you want to assign to
|
|
530
|
-
* the managed
|
|
530
|
+
* the managed node. This IAM role must provide AssumeRole permissions for the
|
|
531
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
|
|
532
532
|
* IAM service role for a hybrid environment</a> in the
|
|
533
533
|
* <i>Amazon Web Services Systems Manager User Guide</i>.</p>
|
|
534
534
|
*/
|
|
535
535
|
IamRole: string | undefined;
|
|
536
536
|
/**
|
|
537
|
-
* <p>Specify the maximum number of managed
|
|
537
|
+
* <p>Specify the maximum number of managed nodes you want to register. The default value is
|
|
538
538
|
* <code>1</code>.</p>
|
|
539
539
|
*/
|
|
540
540
|
RegistrationLimit?: number;
|
|
@@ -567,10 +567,10 @@ export interface CreateActivationRequest {
|
|
|
567
567
|
* automatically applied to the on-premises servers or VMs.</p>
|
|
568
568
|
* </important>
|
|
569
569
|
* <p>You can't add tags to or delete tags from an existing activation. You can tag your
|
|
570
|
-
* on-premises servers and VMs after they connect to Systems Manager for the first time and are assigned a
|
|
571
|
-
* managed
|
|
572
|
-
* prefixed with "mi-". For information about how to add tags to your managed
|
|
573
|
-
*
|
|
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>
|
|
574
574
|
*/
|
|
575
575
|
Tags?: Tag[];
|
|
576
576
|
/**
|
|
@@ -730,7 +730,7 @@ export declare namespace TargetLocation {
|
|
|
730
730
|
const filterSensitiveLog: (obj: TargetLocation) => any;
|
|
731
731
|
}
|
|
732
732
|
/**
|
|
733
|
-
* <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
|
|
734
734
|
* specify.</p>
|
|
735
735
|
* <note>
|
|
736
736
|
* <p> One or more targets must be specified for maintenance window Run Command-type tasks.
|
|
@@ -744,41 +744,35 @@ export declare namespace TargetLocation {
|
|
|
744
744
|
* <ul>
|
|
745
745
|
* <li>
|
|
746
746
|
* <p>
|
|
747
|
-
* <code>Key=InstanceIds,Values=<
|
|
748
|
-
* </code>
|
|
747
|
+
* <code>Key=InstanceIds,Values=<instance-id-1>,<instance-id-2>,<instance-id-3></code>
|
|
749
748
|
* </p>
|
|
750
749
|
* </li>
|
|
751
750
|
* <li>
|
|
752
751
|
* <p>
|
|
753
|
-
* <code>Key=tag:<
|
|
754
|
-
* </code>
|
|
752
|
+
* <code>Key=tag:<my-tag-key>,Values=<my-tag-value-1>,<my-tag-value-2></code>
|
|
755
753
|
* </p>
|
|
756
754
|
* </li>
|
|
757
755
|
* <li>
|
|
758
756
|
* <p>
|
|
759
|
-
* <code>Key=tag-key,Values=<
|
|
760
|
-
* </code>
|
|
757
|
+
* <code>Key=tag-key,Values=<my-tag-key-1>,<my-tag-key-2></code>
|
|
761
758
|
* </p>
|
|
762
759
|
* </li>
|
|
763
760
|
* <li>
|
|
764
761
|
* <p>
|
|
765
762
|
* <b>Run Command and Maintenance window targets only</b>:
|
|
766
|
-
*
|
|
767
|
-
* </code>
|
|
763
|
+
* <code>Key=resource-groups:Name,Values=<resource-group-name></code>
|
|
768
764
|
* </p>
|
|
769
765
|
* </li>
|
|
770
766
|
* <li>
|
|
771
767
|
* <p>
|
|
772
768
|
* <b>Maintenance window targets only</b>:
|
|
773
|
-
*
|
|
774
|
-
* </code>
|
|
769
|
+
* <code>Key=resource-groups:ResourceTypeFilters,Values=<resource-type-1>,<resource-type-2></code>
|
|
775
770
|
* </p>
|
|
776
771
|
* </li>
|
|
777
772
|
* <li>
|
|
778
773
|
* <p>
|
|
779
774
|
* <b>Automation targets only</b>:
|
|
780
|
-
*
|
|
781
|
-
* </code>
|
|
775
|
+
* <code>Key=ResourceGroup;Values=<resource-group-name></code>
|
|
782
776
|
* </p>
|
|
783
777
|
* </li>
|
|
784
778
|
* </ul>
|
|
@@ -809,8 +803,7 @@ export declare namespace TargetLocation {
|
|
|
809
803
|
* <li>
|
|
810
804
|
* <p>
|
|
811
805
|
* <b>Maintenance window targets only</b>:
|
|
812
|
-
*
|
|
813
|
-
* </code>
|
|
806
|
+
* <code>Key=resource-groups:ResourceTypeFilters,Values=AWS::EC2::INSTANCE,AWS::EC2::VPC</code>
|
|
814
807
|
* </p>
|
|
815
808
|
* <p>This example demonstrates how to target only Amazon Elastic Compute Cloud (Amazon EC2)
|
|
816
809
|
* instances and VPCs in your maintenance window.</p>
|
|
@@ -824,19 +817,18 @@ export declare namespace TargetLocation {
|
|
|
824
817
|
* <li>
|
|
825
818
|
* <p>
|
|
826
819
|
* <b>State Manager association targets only</b>:
|
|
827
|
-
*
|
|
828
|
-
* </code>
|
|
820
|
+
* <code>Key=InstanceIds,Values=*</code>
|
|
829
821
|
* </p>
|
|
830
822
|
* <p>This example demonstrates how to target all managed instances in the Amazon Web Services Region where
|
|
831
823
|
* the association was created.</p>
|
|
832
824
|
* </li>
|
|
833
825
|
* </ul>
|
|
834
|
-
* <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
|
|
835
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>
|
|
836
828
|
*/
|
|
837
829
|
export interface Target {
|
|
838
830
|
/**
|
|
839
|
-
* <p>User-defined criteria for sending commands that target
|
|
831
|
+
* <p>User-defined criteria for sending commands that target managed nodes that meet the
|
|
840
832
|
* criteria.</p>
|
|
841
833
|
*/
|
|
842
834
|
Key?: string;
|
|
@@ -858,7 +850,7 @@ export declare namespace Target {
|
|
|
858
850
|
export interface CreateAssociationRequest {
|
|
859
851
|
/**
|
|
860
852
|
* <p>The name of the SSM Command document or Automation runbook that contains the configuration
|
|
861
|
-
* information for the
|
|
853
|
+
* information for the managed node.</p>
|
|
862
854
|
* <p>You can specify Amazon Web Services-predefined documents, documents you created, or a document that is
|
|
863
855
|
* shared with you from another account.</p>
|
|
864
856
|
* <p>For Systems Manager documents (SSM documents) that are shared with you from other Amazon Web Services accounts, you
|
|
@@ -882,10 +874,10 @@ export interface CreateAssociationRequest {
|
|
|
882
874
|
*/
|
|
883
875
|
DocumentVersion?: string;
|
|
884
876
|
/**
|
|
885
|
-
* <p>The
|
|
877
|
+
* <p>The managed node ID.</p>
|
|
886
878
|
* <note>
|
|
887
879
|
* <p>
|
|
888
|
-
* <code>InstanceId</code> has been deprecated. To specify
|
|
880
|
+
* <code>InstanceId</code> has been deprecated. To specify a managed node ID for an association,
|
|
889
881
|
* use the <code>Targets</code> parameter. Requests that include the
|
|
890
882
|
* parameter <code>InstanceID</code> with Systems Manager documents (SSM documents) that use schema version
|
|
891
883
|
* 2.0 or later will fail. In addition, if you use the parameter
|
|
@@ -903,9 +895,9 @@ export interface CreateAssociationRequest {
|
|
|
903
895
|
[key: string]: string[];
|
|
904
896
|
};
|
|
905
897
|
/**
|
|
906
|
-
* <p>The targets for the association. You can target
|
|
907
|
-
* groups, all
|
|
908
|
-
*
|
|
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
|
|
909
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
|
|
910
902
|
* <i>Amazon Web Services Systems Manager User Guide</i>.</p>
|
|
911
903
|
*/
|
|
@@ -935,8 +927,8 @@ export interface CreateAssociationRequest {
|
|
|
935
927
|
* example 10, or a percentage of the target set, for example 10%. If you specify 3, for example,
|
|
936
928
|
* the system stops sending requests when the fourth error is received. If you specify 0, then the
|
|
937
929
|
* system stops sending requests after the first error is returned. If you run an association on 50
|
|
938
|
-
*
|
|
939
|
-
* 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>
|
|
940
932
|
* <p>Executions that are already running an association when <code>MaxErrors</code> is reached
|
|
941
933
|
* are allowed to complete, but some of these executions may fail as well. If you need to ensure
|
|
942
934
|
* that there won't be more than max-errors failed executions, set <code>MaxConcurrency</code> to 1
|
|
@@ -947,9 +939,9 @@ export interface CreateAssociationRequest {
|
|
|
947
939
|
* <p>The maximum number of targets allowed to run the association at the same time. You can
|
|
948
940
|
* specify a number, for example 10, or a percentage of the target set, for example 10%. The default
|
|
949
941
|
* value is 100%, which means all targets run the association at the same time.</p>
|
|
950
|
-
* <p>If a new
|
|
942
|
+
* <p>If a new managed node starts and attempts to run an association while Systems Manager is running
|
|
951
943
|
* <code>MaxConcurrency</code> associations, the association is allowed to run. During the next
|
|
952
|
-
* association interval, the new
|
|
944
|
+
* association interval, the new managed node will process its association within the limit specified
|
|
953
945
|
* for <code>MaxConcurrency</code>.</p>
|
|
954
946
|
*/
|
|
955
947
|
MaxConcurrency?: string;
|
|
@@ -1010,8 +1002,8 @@ export interface AssociationOverview {
|
|
|
1010
1002
|
DetailedStatus?: string;
|
|
1011
1003
|
/**
|
|
1012
1004
|
* <p>Returns the number of targets for the association status. For example, if you created an
|
|
1013
|
-
* association with two
|
|
1014
|
-
*
|
|
1005
|
+
* association with two managed nodes, and one of them was successful, this would return the count
|
|
1006
|
+
* of managed nodes by status.</p>
|
|
1015
1007
|
*/
|
|
1016
1008
|
AssociationStatusAggregatedCount?: {
|
|
1017
1009
|
[key: string]: number;
|
|
@@ -1064,7 +1056,7 @@ export interface AssociationDescription {
|
|
|
1064
1056
|
*/
|
|
1065
1057
|
Name?: string;
|
|
1066
1058
|
/**
|
|
1067
|
-
* <p>The
|
|
1059
|
+
* <p>The managed node ID.</p>
|
|
1068
1060
|
*/
|
|
1069
1061
|
InstanceId?: string;
|
|
1070
1062
|
/**
|
|
@@ -1108,7 +1100,7 @@ export interface AssociationDescription {
|
|
|
1108
1100
|
*/
|
|
1109
1101
|
AssociationId?: string;
|
|
1110
1102
|
/**
|
|
1111
|
-
* <p>The
|
|
1103
|
+
* <p>The managed nodes targeted by the request. </p>
|
|
1112
1104
|
*/
|
|
1113
1105
|
Targets?: Target[];
|
|
1114
1106
|
/**
|
|
@@ -1137,8 +1129,8 @@ export interface AssociationDescription {
|
|
|
1137
1129
|
* example 10, or a percentage of the target set, for example 10%. If you specify 3, for example,
|
|
1138
1130
|
* the system stops sending requests when the fourth error is received. If you specify 0, then the
|
|
1139
1131
|
* system stops sending requests after the first error is returned. If you run an association on 50
|
|
1140
|
-
*
|
|
1141
|
-
* 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>
|
|
1142
1134
|
* <p>Executions that are already running an association when <code>MaxErrors</code> is reached
|
|
1143
1135
|
* are allowed to complete, but some of these executions may fail as well. If you need to ensure
|
|
1144
1136
|
* that there won't be more than max-errors failed executions, set <code>MaxConcurrency</code> to 1
|
|
@@ -1149,9 +1141,9 @@ export interface AssociationDescription {
|
|
|
1149
1141
|
* <p>The maximum number of targets allowed to run the association at the same time. You can
|
|
1150
1142
|
* specify a number, for example 10, or a percentage of the target set, for example 10%. The default
|
|
1151
1143
|
* value is 100%, which means all targets run the association at the same time.</p>
|
|
1152
|
-
* <p>If a new
|
|
1144
|
+
* <p>If a new managed node starts and attempts to run an association while Systems Manager is running
|
|
1153
1145
|
* <code>MaxConcurrency</code> associations, the association is allowed to run. During the next
|
|
1154
|
-
* association interval, the new
|
|
1146
|
+
* association interval, the new managed node will process its association within the limit specified
|
|
1155
1147
|
* for <code>MaxConcurrency</code>.</p>
|
|
1156
1148
|
*/
|
|
1157
1149
|
MaxConcurrency?: string;
|
|
@@ -1285,8 +1277,8 @@ export declare namespace InvalidTarget {
|
|
|
1285
1277
|
const filterSensitiveLog: (obj: InvalidTarget) => any;
|
|
1286
1278
|
}
|
|
1287
1279
|
/**
|
|
1288
|
-
* <p>The document doesn't support the platform type of the given
|
|
1289
|
-
* 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>
|
|
1290
1282
|
*/
|
|
1291
1283
|
export interface UnsupportedPlatformType extends __SmithyException, $MetadataBearer {
|
|
1292
1284
|
name: "UnsupportedPlatformType";
|
|
@@ -1300,11 +1292,11 @@ export declare namespace UnsupportedPlatformType {
|
|
|
1300
1292
|
const filterSensitiveLog: (obj: UnsupportedPlatformType) => any;
|
|
1301
1293
|
}
|
|
1302
1294
|
/**
|
|
1303
|
-
* <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>
|
|
1304
1296
|
*/
|
|
1305
1297
|
export interface CreateAssociationBatchRequestEntry {
|
|
1306
1298
|
/**
|
|
1307
|
-
* <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.
|
|
1308
1300
|
* You can specify Command or Automation runbooks.</p>
|
|
1309
1301
|
* <p>You can specify Amazon Web Services-predefined documents, documents you created, or a document that is
|
|
1310
1302
|
* shared with you from another account.</p>
|
|
@@ -1324,10 +1316,10 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
1324
1316
|
*/
|
|
1325
1317
|
Name: string | undefined;
|
|
1326
1318
|
/**
|
|
1327
|
-
* <p>The
|
|
1319
|
+
* <p>The managed node ID.</p>
|
|
1328
1320
|
* <note>
|
|
1329
1321
|
* <p>
|
|
1330
|
-
* <code>InstanceId</code> has been deprecated. To specify
|
|
1322
|
+
* <code>InstanceId</code> has been deprecated. To specify a managed node ID for an association,
|
|
1331
1323
|
* use the <code>Targets</code> parameter. Requests that include the
|
|
1332
1324
|
* parameter <code>InstanceID</code> with Systems Manager documents (SSM documents) that use schema version
|
|
1333
1325
|
* 2.0 or later will fail. In addition, if you use the parameter
|
|
@@ -1355,7 +1347,7 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
1355
1347
|
*/
|
|
1356
1348
|
DocumentVersion?: string;
|
|
1357
1349
|
/**
|
|
1358
|
-
* <p>The
|
|
1350
|
+
* <p>The managed nodes targeted by the request.</p>
|
|
1359
1351
|
*/
|
|
1360
1352
|
Targets?: Target[];
|
|
1361
1353
|
/**
|
|
@@ -1376,8 +1368,8 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
1376
1368
|
* example 10, or a percentage of the target set, for example 10%. If you specify 3, for example,
|
|
1377
1369
|
* the system stops sending requests when the fourth error is received. If you specify 0, then the
|
|
1378
1370
|
* system stops sending requests after the first error is returned. If you run an association on 50
|
|
1379
|
-
*
|
|
1380
|
-
* 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>
|
|
1381
1373
|
* <p>Executions that are already running an association when <code>MaxErrors</code> is reached
|
|
1382
1374
|
* are allowed to complete, but some of these executions may fail as well. If you need to ensure
|
|
1383
1375
|
* that there won't be more than max-errors failed executions, set <code>MaxConcurrency</code> to 1
|
|
@@ -1388,9 +1380,9 @@ export interface CreateAssociationBatchRequestEntry {
|
|
|
1388
1380
|
* <p>The maximum number of targets allowed to run the association at the same time. You can
|
|
1389
1381
|
* specify a number, for example 10, or a percentage of the target set, for example 10%. The default
|
|
1390
1382
|
* value is 100%, which means all targets run the association at the same time.</p>
|
|
1391
|
-
* <p>If a new
|
|
1383
|
+
* <p>If a new managed node starts and attempts to run an association while Systems Manager is running
|
|
1392
1384
|
* <code>MaxConcurrency</code> associations, the association is allowed to run. During the next
|
|
1393
|
-
* association interval, the new
|
|
1385
|
+
* association interval, the new managed node will process its association within the limit specified
|
|
1394
1386
|
* for <code>MaxConcurrency</code>.</p>
|
|
1395
1387
|
*/
|
|
1396
1388
|
MaxConcurrency?: string;
|
|
@@ -1765,6 +1757,7 @@ export declare namespace DocumentParameter {
|
|
|
1765
1757
|
}
|
|
1766
1758
|
export declare enum PlatformType {
|
|
1767
1759
|
LINUX = "Linux",
|
|
1760
|
+
MACOS = "MacOS",
|
|
1768
1761
|
WINDOWS = "Windows"
|
|
1769
1762
|
}
|
|
1770
1763
|
export declare enum ReviewStatus {
|
|
@@ -2080,9 +2073,9 @@ export interface CreateMaintenanceWindowRequest {
|
|
|
2080
2073
|
*/
|
|
2081
2074
|
Cutoff: number | undefined;
|
|
2082
2075
|
/**
|
|
2083
|
-
* <p>Enables a maintenance window task to run on managed
|
|
2084
|
-
*
|
|
2085
|
-
*
|
|
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>
|
|
2086
2079
|
* <p>If you don't enable this option, then you must specify previously-registered targets when
|
|
2087
2080
|
* you register a task with the maintenance window.</p>
|
|
2088
2081
|
*/
|
|
@@ -2593,9 +2586,9 @@ export interface PatchRule {
|
|
|
2593
2586
|
*/
|
|
2594
2587
|
ApproveUntilDate?: string;
|
|
2595
2588
|
/**
|
|
2596
|
-
* <p>For
|
|
2589
|
+
* <p>For managed nodes identified by the approval rule filters, enables a patch baseline to apply
|
|
2597
2590
|
* non-security updates available in the specified repository. The default value is
|
|
2598
|
-
* <code>false</code>. Applies to Linux
|
|
2591
|
+
* <code>false</code>. Applies to Linux managed nodes only.</p>
|
|
2599
2592
|
*/
|
|
2600
2593
|
EnableNonSecurity?: boolean;
|
|
2601
2594
|
}
|
|
@@ -2638,8 +2631,8 @@ export declare enum PatchAction {
|
|
|
2638
2631
|
Block = "BLOCK"
|
|
2639
2632
|
}
|
|
2640
2633
|
/**
|
|
2641
|
-
* <p>Information about the patches to use to update the
|
|
2642
|
-
* 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>
|
|
2643
2636
|
*/
|
|
2644
2637
|
export interface PatchSource {
|
|
2645
2638
|
/**
|
|
@@ -2712,8 +2705,8 @@ export interface CreatePatchBaselineRequest {
|
|
|
2712
2705
|
ApprovedPatchesComplianceLevel?: PatchComplianceLevel | string;
|
|
2713
2706
|
/**
|
|
2714
2707
|
* <p>Indicates whether the list of approved patches includes non-security updates that should be
|
|
2715
|
-
* applied to the
|
|
2716
|
-
* only.</p>
|
|
2708
|
+
* applied to the managed nodes. The default value is <code>false</code>. Applies to Linux managed
|
|
2709
|
+
* nodes only.</p>
|
|
2717
2710
|
*/
|
|
2718
2711
|
ApprovedPatchesEnableNonSecurity?: boolean;
|
|
2719
2712
|
/**
|
|
@@ -2754,8 +2747,8 @@ export interface CreatePatchBaselineRequest {
|
|
|
2754
2747
|
*/
|
|
2755
2748
|
Description?: string;
|
|
2756
2749
|
/**
|
|
2757
|
-
* <p>Information about the patches to use to update the
|
|
2758
|
-
* 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>
|
|
2759
2752
|
*/
|
|
2760
2753
|
Sources?: PatchSource[];
|
|
2761
2754
|
/**
|
|
@@ -3088,10 +3081,10 @@ export interface DeleteAssociationRequest {
|
|
|
3088
3081
|
*/
|
|
3089
3082
|
Name?: string;
|
|
3090
3083
|
/**
|
|
3091
|
-
* <p>The
|
|
3084
|
+
* <p>The managed node ID.</p>
|
|
3092
3085
|
* <note>
|
|
3093
3086
|
* <p>
|
|
3094
|
-
* <code>InstanceId</code> has been deprecated. To specify
|
|
3087
|
+
* <code>InstanceId</code> has been deprecated. To specify a managed node ID for an association,
|
|
3095
3088
|
* use the <code>Targets</code> parameter. Requests that include the
|
|
3096
3089
|
* parameter <code>InstanceID</code> with Systems Manager documents (SSM documents) that use schema version
|
|
3097
3090
|
* 2.0 or later will fail. In addition, if you use the parameter
|
|
@@ -3122,7 +3115,7 @@ export declare namespace DeleteAssociationResult {
|
|
|
3122
3115
|
const filterSensitiveLog: (obj: DeleteAssociationResult) => any;
|
|
3123
3116
|
}
|
|
3124
3117
|
/**
|
|
3125
|
-
* <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>
|
|
3126
3119
|
*/
|
|
3127
3120
|
export interface AssociatedInstances extends __SmithyException, $MetadataBearer {
|
|
3128
3121
|
name: "AssociatedInstances";
|
|
@@ -3553,7 +3546,7 @@ export declare namespace ResourceDataSyncNotFoundException {
|
|
|
3553
3546
|
}
|
|
3554
3547
|
export interface DeregisterManagedInstanceRequest {
|
|
3555
3548
|
/**
|
|
3556
|
-
* <p>The ID assigned to the managed
|
|
3549
|
+
* <p>The ID assigned to the managed node when you registered it using the activation process.
|
|
3557
3550
|
* </p>
|
|
3558
3551
|
*/
|
|
3559
3552
|
InstanceId: string | undefined;
|
|
@@ -3785,7 +3778,7 @@ export interface DescribeAssociationRequest {
|
|
|
3785
3778
|
*/
|
|
3786
3779
|
Name?: string;
|
|
3787
3780
|
/**
|
|
3788
|
-
* <p>The
|
|
3781
|
+
* <p>The managed node ID.</p>
|
|
3789
3782
|
*/
|
|
3790
3783
|
InstanceId?: string;
|
|
3791
3784
|
/**
|
|
@@ -3795,7 +3788,7 @@ export interface DescribeAssociationRequest {
|
|
|
3795
3788
|
/**
|
|
3796
3789
|
* <p>Specify the association version to retrieve. To view the latest version, either specify
|
|
3797
3790
|
* <code>$LATEST</code> for this parameter, or omit this parameter. To view a list of all
|
|
3798
|
-
* associations for
|
|
3791
|
+
* associations for a managed node, use <a>ListAssociations</a>. To get a list of versions
|
|
3799
3792
|
* for a specific association, use <a>ListAssociationVersions</a>. </p>
|
|
3800
3793
|
*/
|
|
3801
3794
|
AssociationVersion?: string;
|
|
@@ -4061,11 +4054,11 @@ export interface AssociationExecutionTarget {
|
|
|
4061
4054
|
*/
|
|
4062
4055
|
ExecutionId?: string;
|
|
4063
4056
|
/**
|
|
4064
|
-
* <p>The resource ID, for example, the
|
|
4057
|
+
* <p>The resource ID, for example, the managed node ID where the association ran.</p>
|
|
4065
4058
|
*/
|
|
4066
4059
|
ResourceId?: string;
|
|
4067
4060
|
/**
|
|
4068
|
-
* <p>The resource type, for example,
|
|
4061
|
+
* <p>The resource type, for example, EC2.</p>
|
|
4069
4062
|
*/
|
|
4070
4063
|
ResourceType?: string;
|
|
4071
4064
|
/**
|
|
@@ -4736,7 +4729,7 @@ export interface DescribeAvailablePatchesRequest {
|
|
|
4736
4729
|
* <p>
|
|
4737
4730
|
* <b>Windows Server</b>
|
|
4738
4731
|
* </p>
|
|
4739
|
-
* <p>Supported keys for Windows Server
|
|
4732
|
+
* <p>Supported keys for Windows Server managed node patches include the following:</p>
|
|
4740
4733
|
* <ul>
|
|
4741
4734
|
* <li>
|
|
4742
4735
|
* <p>
|
|
@@ -4812,7 +4805,7 @@ export interface DescribeAvailablePatchesRequest {
|
|
|
4812
4805
|
* Key=CVE_ID,Values=CVE-2018-3615</code>
|
|
4813
4806
|
* </p>
|
|
4814
4807
|
* </important>
|
|
4815
|
-
* <p>Supported keys for Linux
|
|
4808
|
+
* <p>Supported keys for Linux managed node patches include the following:</p>
|
|
4816
4809
|
* <ul>
|
|
4817
4810
|
* <li>
|
|
4818
4811
|
* <p>
|
|
@@ -4999,45 +4992,45 @@ export interface Patch {
|
|
|
4999
4992
|
Language?: string;
|
|
5000
4993
|
/**
|
|
5001
4994
|
* <p>The Advisory ID of the patch. For example, <code>RHSA-2020:3779</code>. Applies to
|
|
5002
|
-
* Linux-based
|
|
4995
|
+
* Linux-based managed nodes only.</p>
|
|
5003
4996
|
*/
|
|
5004
4997
|
AdvisoryIds?: string[];
|
|
5005
4998
|
/**
|
|
5006
4999
|
* <p>The Bugzilla ID of the patch. For example, <code>1600646</code>. Applies to Linux-based
|
|
5007
|
-
*
|
|
5000
|
+
* managed nodes only.</p>
|
|
5008
5001
|
*/
|
|
5009
5002
|
BugzillaIds?: string[];
|
|
5010
5003
|
/**
|
|
5011
5004
|
* <p>The Common Vulnerabilities and Exposures (CVE) ID of the patch. For example,
|
|
5012
|
-
* <code>CVE-2011-3192</code>. Applies to Linux-based
|
|
5005
|
+
* <code>CVE-2011-3192</code>. Applies to Linux-based managed nodes only.</p>
|
|
5013
5006
|
*/
|
|
5014
5007
|
CVEIds?: string[];
|
|
5015
5008
|
/**
|
|
5016
|
-
* <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>
|
|
5017
5010
|
*/
|
|
5018
5011
|
Name?: string;
|
|
5019
5012
|
/**
|
|
5020
5013
|
* <p>The epoch of the patch. For example in
|
|
5021
5014
|
* <code>pkg-example-EE-20180914-2.2.amzn1.noarch</code>, the epoch value is
|
|
5022
|
-
* <code>20180914-2</code>. Applies to Linux-based
|
|
5015
|
+
* <code>20180914-2</code>. Applies to Linux-based managed nodes only.</p>
|
|
5023
5016
|
*/
|
|
5024
5017
|
Epoch?: number;
|
|
5025
5018
|
/**
|
|
5026
5019
|
* <p>The version number of the patch. For example, in
|
|
5027
5020
|
* <code>example-pkg-1.710.10-2.7.abcd.x86_64</code>, the version number is indicated by
|
|
5028
|
-
* <code>-1</code>. Applies to Linux-based
|
|
5021
|
+
* <code>-1</code>. Applies to Linux-based managed nodes only.</p>
|
|
5029
5022
|
*/
|
|
5030
5023
|
Version?: string;
|
|
5031
5024
|
/**
|
|
5032
5025
|
* <p>The particular release of a patch. For example, in
|
|
5033
5026
|
* <code>pkg-example-EE-20180914-2.2.amzn1.noarch</code>, the release is <code>2.amaz1</code>.
|
|
5034
|
-
* Applies to Linux-based
|
|
5027
|
+
* Applies to Linux-based managed nodes only.</p>
|
|
5035
5028
|
*/
|
|
5036
5029
|
Release?: string;
|
|
5037
5030
|
/**
|
|
5038
5031
|
* <p>The architecture of the patch. For example, in
|
|
5039
5032
|
* <code>example-pkg-0.710.10-2.7.abcd.x86_64</code>, the architecture is indicated by
|
|
5040
|
-
* <code>x86_64</code>. Applies to Linux-based
|
|
5033
|
+
* <code>x86_64</code>. Applies to Linux-based managed nodes only.</p>
|
|
5041
5034
|
*/
|
|
5042
5035
|
Arch?: string;
|
|
5043
5036
|
/**
|
|
@@ -5048,7 +5041,7 @@ export interface Patch {
|
|
|
5048
5041
|
/**
|
|
5049
5042
|
* <p>The source patch repository for the operating system and version, such as
|
|
5050
5043
|
* <code>trusty-security</code> for Ubuntu Server 14.04 LTE and <code>focal-security</code> for
|
|
5051
|
-
* Ubuntu Server 20.04 LTE. Applies to Linux-based
|
|
5044
|
+
* Ubuntu Server 20.04 LTE. Applies to Linux-based managed nodes only.</p>
|
|
5052
5045
|
*/
|
|
5053
5046
|
Repository?: string;
|
|
5054
5047
|
}
|
|
@@ -5180,7 +5173,7 @@ export declare namespace InvalidPermissionType {
|
|
|
5180
5173
|
}
|
|
5181
5174
|
export interface DescribeEffectiveInstanceAssociationsRequest {
|
|
5182
5175
|
/**
|
|
5183
|
-
* <p>The
|
|
5176
|
+
* <p>The managed node ID for which you want to view all associations.</p>
|
|
5184
5177
|
*/
|
|
5185
5178
|
InstanceId: string | undefined;
|
|
5186
5179
|
/**
|
|
@@ -5201,7 +5194,7 @@ export declare namespace DescribeEffectiveInstanceAssociationsRequest {
|
|
|
5201
5194
|
const filterSensitiveLog: (obj: DescribeEffectiveInstanceAssociationsRequest) => any;
|
|
5202
5195
|
}
|
|
5203
5196
|
/**
|
|
5204
|
-
* <p>One or more association documents on the
|
|
5197
|
+
* <p>One or more association documents on the managed node. </p>
|
|
5205
5198
|
*/
|
|
5206
5199
|
export interface InstanceAssociation {
|
|
5207
5200
|
/**
|
|
@@ -5209,15 +5202,15 @@ export interface InstanceAssociation {
|
|
|
5209
5202
|
*/
|
|
5210
5203
|
AssociationId?: string;
|
|
5211
5204
|
/**
|
|
5212
|
-
* <p>The
|
|
5205
|
+
* <p>The managed node ID.</p>
|
|
5213
5206
|
*/
|
|
5214
5207
|
InstanceId?: string;
|
|
5215
5208
|
/**
|
|
5216
|
-
* <p>The content of the association document for the
|
|
5209
|
+
* <p>The content of the association document for the managed node(s).</p>
|
|
5217
5210
|
*/
|
|
5218
5211
|
Content?: string;
|
|
5219
5212
|
/**
|
|
5220
|
-
* <p>Version information for the association on the
|
|
5213
|
+
* <p>Version information for the association on the managed node.</p>
|
|
5221
5214
|
*/
|
|
5222
5215
|
AssociationVersion?: string;
|
|
5223
5216
|
}
|
|
@@ -5229,7 +5222,7 @@ export declare namespace InstanceAssociation {
|
|
|
5229
5222
|
}
|
|
5230
5223
|
export interface DescribeEffectiveInstanceAssociationsResult {
|
|
5231
5224
|
/**
|
|
5232
|
-
* <p>The associations for the requested
|
|
5225
|
+
* <p>The associations for the requested managed node.</p>
|
|
5233
5226
|
*/
|
|
5234
5227
|
Associations?: InstanceAssociation[];
|
|
5235
5228
|
/**
|
|
@@ -5355,7 +5348,7 @@ export declare namespace UnsupportedOperatingSystem {
|
|
|
5355
5348
|
}
|
|
5356
5349
|
export interface DescribeInstanceAssociationsStatusRequest {
|
|
5357
5350
|
/**
|
|
5358
|
-
* <p>The
|
|
5351
|
+
* <p>The managed node IDs for which you want association status information.</p>
|
|
5359
5352
|
*/
|
|
5360
5353
|
InstanceId: string | undefined;
|
|
5361
5354
|
/**
|
|
@@ -5407,7 +5400,7 @@ export declare namespace InstanceAssociationOutputUrl {
|
|
|
5407
5400
|
const filterSensitiveLog: (obj: InstanceAssociationOutputUrl) => any;
|
|
5408
5401
|
}
|
|
5409
5402
|
/**
|
|
5410
|
-
* <p>Status information about the
|
|
5403
|
+
* <p>Status information about the association.</p>
|
|
5411
5404
|
*/
|
|
5412
5405
|
export interface InstanceAssociationStatusInfo {
|
|
5413
5406
|
/**
|
|
@@ -5423,23 +5416,23 @@ export interface InstanceAssociationStatusInfo {
|
|
|
5423
5416
|
*/
|
|
5424
5417
|
DocumentVersion?: string;
|
|
5425
5418
|
/**
|
|
5426
|
-
* <p>The version of the association applied to the
|
|
5419
|
+
* <p>The version of the association applied to the managed node.</p>
|
|
5427
5420
|
*/
|
|
5428
5421
|
AssociationVersion?: string;
|
|
5429
5422
|
/**
|
|
5430
|
-
* <p>The
|
|
5423
|
+
* <p>The managed node ID where the association was created.</p>
|
|
5431
5424
|
*/
|
|
5432
5425
|
InstanceId?: string;
|
|
5433
5426
|
/**
|
|
5434
|
-
* <p>The date the
|
|
5427
|
+
* <p>The date the association ran. </p>
|
|
5435
5428
|
*/
|
|
5436
5429
|
ExecutionDate?: Date;
|
|
5437
5430
|
/**
|
|
5438
|
-
* <p>Status information about the
|
|
5431
|
+
* <p>Status information about the association.</p>
|
|
5439
5432
|
*/
|
|
5440
5433
|
Status?: string;
|
|
5441
5434
|
/**
|
|
5442
|
-
* <p>Detailed status information about the
|
|
5435
|
+
* <p>Detailed status information about the association.</p>
|
|
5443
5436
|
*/
|
|
5444
5437
|
DetailedStatus?: string;
|
|
5445
5438
|
/**
|
|
@@ -5455,7 +5448,7 @@ export interface InstanceAssociationStatusInfo {
|
|
|
5455
5448
|
*/
|
|
5456
5449
|
OutputUrl?: InstanceAssociationOutputUrl;
|
|
5457
5450
|
/**
|
|
5458
|
-
* <p>The name of the association applied to the
|
|
5451
|
+
* <p>The name of the association applied to the managed node.</p>
|
|
5459
5452
|
*/
|
|
5460
5453
|
AssociationName?: string;
|
|
5461
5454
|
}
|
|
@@ -5483,11 +5476,11 @@ export declare namespace DescribeInstanceAssociationsStatusResult {
|
|
|
5483
5476
|
const filterSensitiveLog: (obj: DescribeInstanceAssociationsStatusResult) => any;
|
|
5484
5477
|
}
|
|
5485
5478
|
/**
|
|
5486
|
-
* <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>
|
|
5487
5480
|
*/
|
|
5488
5481
|
export interface InstanceInformationStringFilter {
|
|
5489
5482
|
/**
|
|
5490
|
-
* <p>The filter key name to describe your
|
|
5483
|
+
* <p>The filter key name to describe your managed nodes. For example:</p>
|
|
5491
5484
|
* <p>"InstanceIds"|"AgentVersion"|"PingStatus"|"PlatformTypes"|"ActivationIds"|"IamRole"|"ResourceType"|"AssociationStatus"|"Tag
|
|
5492
5485
|
* Key"</p>
|
|
5493
5486
|
* <important>
|
|
@@ -5521,7 +5514,7 @@ export declare enum InstanceInformationFilterKey {
|
|
|
5521
5514
|
RESOURCE_TYPE = "ResourceType"
|
|
5522
5515
|
}
|
|
5523
5516
|
/**
|
|
5524
|
-
* <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
|
|
5525
5518
|
* using tags. You specify tags by using a key-value mapping.</p>
|
|
5526
5519
|
* <p>Use this operation instead of the <a>DescribeInstanceInformationRequest$InstanceInformationFilterList</a> method. The
|
|
5527
5520
|
* <code>InstanceInformationFilterList</code> method is a legacy method and doesn't support tags.
|
|
@@ -5546,8 +5539,8 @@ export declare namespace InstanceInformationFilter {
|
|
|
5546
5539
|
export interface DescribeInstanceInformationRequest {
|
|
5547
5540
|
/**
|
|
5548
5541
|
* <p>This is a legacy method. We recommend that you don't use this method. Instead, use the
|
|
5549
|
-
* <code>Filters</code> data type. <code>Filters</code> enables you to return
|
|
5550
|
-
* 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>
|
|
5551
5544
|
* <note>
|
|
5552
5545
|
* <p>Attempting to use <code>InstanceInformationFilterList</code> and <code>Filters</code> leads
|
|
5553
5546
|
* to an exception error. </p>
|
|
@@ -5555,7 +5548,7 @@ export interface DescribeInstanceInformationRequest {
|
|
|
5555
5548
|
*/
|
|
5556
5549
|
InstanceInformationFilterList?: InstanceInformationFilter[];
|
|
5557
5550
|
/**
|
|
5558
|
-
* <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
|
|
5559
5552
|
* filter based on tags applied to EC2 instances. Use this <code>Filters</code> data type instead of
|
|
5560
5553
|
* <code>InstanceInformationFilterList</code>, which is deprecated.</p>
|
|
5561
5554
|
*/
|
|
@@ -5586,7 +5579,7 @@ export interface InstanceAggregatedAssociationOverview {
|
|
|
5586
5579
|
*/
|
|
5587
5580
|
DetailedStatus?: string;
|
|
5588
5581
|
/**
|
|
5589
|
-
* <p>The number of associations for the
|
|
5582
|
+
* <p>The number of associations for the managed node(s).</p>
|
|
5590
5583
|
*/
|
|
5591
5584
|
InstanceAssociationStatusAggregatedCount?: {
|
|
5592
5585
|
[key: string]: number;
|
|
@@ -5608,12 +5601,17 @@ export declare enum ResourceType {
|
|
|
5608
5601
|
EC2_INSTANCE = "EC2Instance",
|
|
5609
5602
|
MANAGED_INSTANCE = "ManagedInstance"
|
|
5610
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
|
+
}
|
|
5611
5609
|
/**
|
|
5612
|
-
* <p>Describes a filter for a specific list of
|
|
5610
|
+
* <p>Describes a filter for a specific list of managed nodes. </p>
|
|
5613
5611
|
*/
|
|
5614
5612
|
export interface InstanceInformation {
|
|
5615
5613
|
/**
|
|
5616
|
-
* <p>The
|
|
5614
|
+
* <p>The managed node ID. </p>
|
|
5617
5615
|
*/
|
|
5618
5616
|
InstanceId?: string;
|
|
5619
5617
|
/**
|
|
@@ -5628,14 +5626,14 @@ export interface InstanceInformation {
|
|
|
5628
5626
|
*/
|
|
5629
5627
|
LastPingDateTime?: Date;
|
|
5630
5628
|
/**
|
|
5631
|
-
* <p>The version of SSM Agent running on your Linux
|
|
5629
|
+
* <p>The version of SSM Agent running on your Linux managed node. </p>
|
|
5632
5630
|
*/
|
|
5633
5631
|
AgentVersion?: string;
|
|
5634
5632
|
/**
|
|
5635
|
-
* <p>Indicates whether the latest version of SSM Agent is running on your Linux
|
|
5636
|
-
*
|
|
5637
|
-
*
|
|
5638
|
-
*
|
|
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>
|
|
5639
5637
|
*/
|
|
5640
5638
|
IsLatestVersion?: boolean;
|
|
5641
5639
|
/**
|
|
@@ -5643,11 +5641,11 @@ export interface InstanceInformation {
|
|
|
5643
5641
|
*/
|
|
5644
5642
|
PlatformType?: PlatformType | string;
|
|
5645
5643
|
/**
|
|
5646
|
-
* <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>
|
|
5647
5645
|
*/
|
|
5648
5646
|
PlatformName?: string;
|
|
5649
5647
|
/**
|
|
5650
|
-
* <p>The version of the OS platform running on your
|
|
5648
|
+
* <p>The version of the OS platform running on your managed node. </p>
|
|
5651
5649
|
*/
|
|
5652
5650
|
PlatformVersion?: string;
|
|
5653
5651
|
/**
|
|
@@ -5657,14 +5655,14 @@ export interface InstanceInformation {
|
|
|
5657
5655
|
ActivationId?: string;
|
|
5658
5656
|
/**
|
|
5659
5657
|
* <p>The Identity and Access Management (IAM) role assigned to the on-premises Systems Manager
|
|
5660
|
-
* managed
|
|
5658
|
+
* managed node. This call doesn't return the IAM role for Amazon Elastic Compute Cloud
|
|
5661
5659
|
* (Amazon EC2) instances. To retrieve the IAM role for an EC2 instance, use
|
|
5662
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
|
|
5663
5661
|
* the <i>Amazon Web Services CLI Command Reference</i>.</p>
|
|
5664
5662
|
*/
|
|
5665
5663
|
IamRole?: string;
|
|
5666
5664
|
/**
|
|
5667
|
-
* <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>
|
|
5668
5666
|
*/
|
|
5669
5667
|
RegistrationDate?: Date;
|
|
5670
5668
|
/**
|
|
@@ -5672,24 +5670,23 @@ export interface InstanceInformation {
|
|
|
5672
5670
|
*/
|
|
5673
5671
|
ResourceType?: ResourceType | string;
|
|
5674
5672
|
/**
|
|
5675
|
-
* <p>The name assigned to an on-premises server or virtual machine (VM) when it is
|
|
5676
|
-
* Systems Manager managed
|
|
5677
|
-
* using the <a>CreateActivation</a> command. It is applied to the managed
|
|
5678
|
-
* 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
|
|
5679
5677
|
* explained in <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-install-managed-linux.html">Install SSM Agent for a
|
|
5680
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
|
|
5681
|
-
* hybrid environment (Windows)</a>. To retrieve the Name tag of an EC2 instance,
|
|
5682
|
-
*
|
|
5683
|
-
*
|
|
5684
|
-
* <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>
|
|
5685
5682
|
*/
|
|
5686
5683
|
Name?: string;
|
|
5687
5684
|
/**
|
|
5688
|
-
* <p>The IP address of the managed
|
|
5685
|
+
* <p>The IP address of the managed node.</p>
|
|
5689
5686
|
*/
|
|
5690
5687
|
IPAddress?: string;
|
|
5691
5688
|
/**
|
|
5692
|
-
* <p>The fully qualified host name of the managed
|
|
5689
|
+
* <p>The fully qualified host name of the managed node.</p>
|
|
5693
5690
|
*/
|
|
5694
5691
|
ComputerName?: string;
|
|
5695
5692
|
/**
|
|
@@ -5708,6 +5705,16 @@ export interface InstanceInformation {
|
|
|
5708
5705
|
* <p>Information about the association.</p>
|
|
5709
5706
|
*/
|
|
5710
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;
|
|
5711
5718
|
}
|
|
5712
5719
|
export declare namespace InstanceInformation {
|
|
5713
5720
|
/**
|
|
@@ -5717,7 +5724,7 @@ export declare namespace InstanceInformation {
|
|
|
5717
5724
|
}
|
|
5718
5725
|
export interface DescribeInstanceInformationResult {
|
|
5719
5726
|
/**
|
|
5720
|
-
* <p>The
|
|
5727
|
+
* <p>The managed node information list.</p>
|
|
5721
5728
|
*/
|
|
5722
5729
|
InstanceInformationList?: InstanceInformation[];
|
|
5723
5730
|
/**
|
|
@@ -5748,7 +5755,7 @@ export declare namespace InvalidInstanceInformationFilterValue {
|
|
|
5748
5755
|
}
|
|
5749
5756
|
export interface DescribeInstancePatchesRequest {
|
|
5750
5757
|
/**
|
|
5751
|
-
* <p>The ID of the
|
|
5758
|
+
* <p>The ID of the managed node whose patch state information should be retrieved.</p>
|
|
5752
5759
|
*/
|
|
5753
5760
|
InstanceId: string | undefined;
|
|
5754
5761
|
/**
|
|
@@ -5821,8 +5828,8 @@ export declare enum PatchComplianceDataState {
|
|
|
5821
5828
|
NotApplicable = "NOT_APPLICABLE"
|
|
5822
5829
|
}
|
|
5823
5830
|
/**
|
|
5824
|
-
* <p>Information about the state of a patch on a particular
|
|
5825
|
-
* 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>
|
|
5826
5833
|
*/
|
|
5827
5834
|
export interface PatchComplianceData {
|
|
5828
5835
|
/**
|
|
@@ -5844,12 +5851,12 @@ export interface PatchComplianceData {
|
|
|
5844
5851
|
*/
|
|
5845
5852
|
Severity: string | undefined;
|
|
5846
5853
|
/**
|
|
5847
|
-
* <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>
|
|
5848
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>
|
|
5849
5856
|
*/
|
|
5850
5857
|
State: PatchComplianceDataState | string | undefined;
|
|
5851
5858
|
/**
|
|
5852
|
-
* <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
|
|
5853
5860
|
* this level of information.</p>
|
|
5854
5861
|
*/
|
|
5855
5862
|
InstalledTime: Date | undefined;
|
|
@@ -5907,7 +5914,7 @@ export declare namespace DescribeInstancePatchesResult {
|
|
|
5907
5914
|
}
|
|
5908
5915
|
export interface DescribeInstancePatchStatesRequest {
|
|
5909
5916
|
/**
|
|
5910
|
-
* <p>The ID of the
|
|
5917
|
+
* <p>The ID of the managed node for which patch state information should be retrieved.</p>
|
|
5911
5918
|
*/
|
|
5912
5919
|
InstanceIds: string[] | undefined;
|
|
5913
5920
|
/**
|
|
@@ -5916,7 +5923,7 @@ export interface DescribeInstancePatchStatesRequest {
|
|
|
5916
5923
|
*/
|
|
5917
5924
|
NextToken?: string;
|
|
5918
5925
|
/**
|
|
5919
|
-
* <p>The maximum number of
|
|
5926
|
+
* <p>The maximum number of managed nodes to return (per page).</p>
|
|
5920
5927
|
*/
|
|
5921
5928
|
MaxResults?: number;
|
|
5922
5929
|
}
|
|
@@ -5935,22 +5942,22 @@ export declare enum RebootOption {
|
|
|
5935
5942
|
REBOOT_IF_NEEDED = "RebootIfNeeded"
|
|
5936
5943
|
}
|
|
5937
5944
|
/**
|
|
5938
|
-
* <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
|
|
5939
5946
|
* about the number of installed, missing, not applicable, and failed patches along with metadata
|
|
5940
|
-
* about the operation when this information was gathered for the
|
|
5947
|
+
* about the operation when this information was gathered for the managed node.</p>
|
|
5941
5948
|
*/
|
|
5942
5949
|
export interface InstancePatchState {
|
|
5943
5950
|
/**
|
|
5944
|
-
* <p>The ID of the managed
|
|
5951
|
+
* <p>The ID of the managed node the high-level patch compliance information was collected
|
|
5945
5952
|
* for.</p>
|
|
5946
5953
|
*/
|
|
5947
5954
|
InstanceId: string | undefined;
|
|
5948
5955
|
/**
|
|
5949
|
-
* <p>The name of the patch group the managed
|
|
5956
|
+
* <p>The name of the patch group the managed node belongs to.</p>
|
|
5950
5957
|
*/
|
|
5951
5958
|
PatchGroup: string | undefined;
|
|
5952
5959
|
/**
|
|
5953
|
-
* <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>
|
|
5954
5961
|
*/
|
|
5955
5962
|
BaselineId: string | undefined;
|
|
5956
5963
|
/**
|
|
@@ -5975,21 +5982,21 @@ export interface InstancePatchState {
|
|
|
5975
5982
|
*/
|
|
5976
5983
|
OwnerInformation?: string;
|
|
5977
5984
|
/**
|
|
5978
|
-
* <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>
|
|
5979
5986
|
*/
|
|
5980
5987
|
InstalledCount?: number;
|
|
5981
5988
|
/**
|
|
5982
5989
|
* <p>The number of patches not specified in the patch baseline that are installed on the
|
|
5983
|
-
*
|
|
5990
|
+
* managed node.</p>
|
|
5984
5991
|
*/
|
|
5985
5992
|
InstalledOtherCount?: number;
|
|
5986
5993
|
/**
|
|
5987
|
-
* <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
|
|
5988
5995
|
* rebooted.</p>
|
|
5989
5996
|
*/
|
|
5990
5997
|
InstalledPendingRebootCount?: number;
|
|
5991
5998
|
/**
|
|
5992
|
-
* <p>The number of patches installed on
|
|
5999
|
+
* <p>The number of patches installed on a managed node that are specified in a
|
|
5993
6000
|
* <code>RejectedPatches</code> list. Patches with a status of <code>InstalledRejected</code> were
|
|
5994
6001
|
* typically installed before they were added to a <code>RejectedPatches</code> list.</p>
|
|
5995
6002
|
* <note>
|
|
@@ -6000,7 +6007,7 @@ export interface InstancePatchState {
|
|
|
6000
6007
|
*/
|
|
6001
6008
|
InstalledRejectedCount?: number;
|
|
6002
6009
|
/**
|
|
6003
|
-
* <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
|
|
6004
6011
|
* aren't currently installed.</p>
|
|
6005
6012
|
*/
|
|
6006
6013
|
MissingCount?: number;
|
|
@@ -6015,18 +6022,18 @@ export interface InstancePatchState {
|
|
|
6015
6022
|
*/
|
|
6016
6023
|
UnreportedNotApplicableCount?: number;
|
|
6017
6024
|
/**
|
|
6018
|
-
* <p>The number of patches from the patch baseline that aren't applicable for the
|
|
6019
|
-
* 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
|
|
6020
6027
|
* names is very large. The number of patches beyond this limit are reported in
|
|
6021
6028
|
* <code>UnreportedNotApplicableCount</code>.</p>
|
|
6022
6029
|
*/
|
|
6023
6030
|
NotApplicableCount?: number;
|
|
6024
6031
|
/**
|
|
6025
|
-
* <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>
|
|
6026
6033
|
*/
|
|
6027
6034
|
OperationStartTime: Date | undefined;
|
|
6028
6035
|
/**
|
|
6029
|
-
* <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>
|
|
6030
6037
|
*/
|
|
6031
6038
|
OperationEndTime: Date | undefined;
|
|
6032
6039
|
/**
|
|
@@ -6044,7 +6051,7 @@ export interface InstancePatchState {
|
|
|
6044
6051
|
*/
|
|
6045
6052
|
Operation: PatchOperationType | string | undefined;
|
|
6046
6053
|
/**
|
|
6047
|
-
* <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
|
|
6048
6055
|
* the reboot option.</p>
|
|
6049
6056
|
*/
|
|
6050
6057
|
LastNoRebootInstallOperationTime?: Date;
|
|
@@ -6057,7 +6064,7 @@ export interface InstancePatchState {
|
|
|
6057
6064
|
* <ul>
|
|
6058
6065
|
* <li>
|
|
6059
6066
|
* <p>
|
|
6060
|
-
* <code>RebootIfNeeded</code>: Patch Manager tries to reboot the
|
|
6067
|
+
* <code>RebootIfNeeded</code>: Patch Manager tries to reboot the managed node if it installed
|
|
6061
6068
|
* any patches, or if any patches are detected with a status of
|
|
6062
6069
|
* <code>InstalledPendingReboot</code>.</p>
|
|
6063
6070
|
* </li>
|
|
@@ -6072,23 +6079,23 @@ export interface InstancePatchState {
|
|
|
6072
6079
|
*/
|
|
6073
6080
|
RebootOption?: RebootOption | string;
|
|
6074
6081
|
/**
|
|
6075
|
-
* <p>The number of
|
|
6082
|
+
* <p>The number of managed nodes where patches that are specified as <code>Critical</code> for
|
|
6076
6083
|
* compliance reporting in the patch baseline aren't installed. These patches might be missing, have
|
|
6077
|
-
* failed installation, were rejected, or were installed but awaiting a required
|
|
6078
|
-
* 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>
|
|
6079
6086
|
*/
|
|
6080
6087
|
CriticalNonCompliantCount?: number;
|
|
6081
6088
|
/**
|
|
6082
|
-
* <p>The number of
|
|
6083
|
-
* advisory aren't installed. These patches might be missing, have failed installation, were
|
|
6084
|
-
* rejected, or were installed but awaiting a required
|
|
6085
|
-
*
|
|
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>
|
|
6086
6093
|
*/
|
|
6087
6094
|
SecurityNonCompliantCount?: number;
|
|
6088
6095
|
/**
|
|
6089
|
-
* <p>The number of
|
|
6096
|
+
* <p>The number of managed nodes with patches installed that are specified as other than
|
|
6090
6097
|
* <code>Critical</code> or <code>Security</code> but aren't compliant with the patch baseline. The
|
|
6091
|
-
* status of these
|
|
6098
|
+
* status of these managed nodes is <code>NON_COMPLIANT</code>.</p>
|
|
6092
6099
|
*/
|
|
6093
6100
|
OtherNonCompliantCount?: number;
|
|
6094
6101
|
}
|
|
@@ -6100,7 +6107,7 @@ export declare namespace InstancePatchState {
|
|
|
6100
6107
|
}
|
|
6101
6108
|
export interface DescribeInstancePatchStatesResult {
|
|
6102
6109
|
/**
|
|
6103
|
-
* <p>The high-level patch state for the requested
|
|
6110
|
+
* <p>The high-level patch state for the requested managed nodes.</p>
|
|
6104
6111
|
*/
|
|
6105
6112
|
InstancePatchStates?: InstancePatchState[];
|
|
6106
6113
|
/**
|
|
@@ -6125,7 +6132,7 @@ export declare enum InstancePatchStateOperatorType {
|
|
|
6125
6132
|
* <p>Defines a filter used in <a>DescribeInstancePatchStatesForPatchGroup</a> to scope
|
|
6126
6133
|
* down the information returned by the API.</p>
|
|
6127
6134
|
* <p>
|
|
6128
|
-
* <b>Example</b>: To filter for all
|
|
6135
|
+
* <b>Example</b>: To filter for all managed nodes in a patch group
|
|
6129
6136
|
* having more than three patches with a <code>FailedCount</code> status, use the following for the
|
|
6130
6137
|
* filter:</p>
|
|
6131
6138
|
* <ul>
|
|
@@ -6244,7 +6251,7 @@ export declare namespace DescribeInstancePatchStatesForPatchGroupRequest {
|
|
|
6244
6251
|
}
|
|
6245
6252
|
export interface DescribeInstancePatchStatesForPatchGroupResult {
|
|
6246
6253
|
/**
|
|
6247
|
-
* <p>The high-level patch state for the requested
|
|
6254
|
+
* <p>The high-level patch state for the requested managed nodes. </p>
|
|
6248
6255
|
*/
|
|
6249
6256
|
InstancePatchStates?: InstancePatchState[];
|
|
6250
6257
|
/**
|
|
@@ -6837,7 +6844,7 @@ export interface DescribeMaintenanceWindowScheduleRequest {
|
|
|
6837
6844
|
*/
|
|
6838
6845
|
WindowId?: string;
|
|
6839
6846
|
/**
|
|
6840
|
-
* <p>The
|
|
6847
|
+
* <p>The managed node ID or key-value pair to retrieve information about.</p>
|
|
6841
6848
|
*/
|
|
6842
6849
|
Targets?: Target[];
|
|
6843
6850
|
/**
|
|
@@ -6910,7 +6917,7 @@ export declare namespace DescribeMaintenanceWindowScheduleResult {
|
|
|
6910
6917
|
}
|
|
6911
6918
|
export interface DescribeMaintenanceWindowsForTargetRequest {
|
|
6912
6919
|
/**
|
|
6913
|
-
* <p>The
|
|
6920
|
+
* <p>The managed node ID or key-value pair to retrieve information about.</p>
|
|
6914
6921
|
*/
|
|
6915
6922
|
Targets: Target[] | undefined;
|
|
6916
6923
|
/**
|
|
@@ -6956,7 +6963,7 @@ export declare namespace MaintenanceWindowIdentityForTarget {
|
|
|
6956
6963
|
}
|
|
6957
6964
|
export interface DescribeMaintenanceWindowsForTargetResult {
|
|
6958
6965
|
/**
|
|
6959
|
-
* <p>Information about the maintenance window targets and tasks
|
|
6966
|
+
* <p>Information about the maintenance window targets and tasks a managed node is associated
|
|
6960
6967
|
* with.</p>
|
|
6961
6968
|
*/
|
|
6962
6969
|
WindowIdentities?: MaintenanceWindowIdentityForTarget[];
|
|
@@ -7016,8 +7023,8 @@ export interface MaintenanceWindowTarget {
|
|
|
7016
7023
|
*/
|
|
7017
7024
|
ResourceType?: MaintenanceWindowResourceType | string;
|
|
7018
7025
|
/**
|
|
7019
|
-
* <p>The targets, either
|
|
7020
|
-
* <p>Specify
|
|
7026
|
+
* <p>The targets, either managed nodes or tags.</p>
|
|
7027
|
+
* <p>Specify managed nodes using the following format:</p>
|
|
7021
7028
|
* <p>
|
|
7022
7029
|
* <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code>
|
|
7023
7030
|
* </p>
|
|
@@ -7097,7 +7104,7 @@ export declare enum MaintenanceWindowTaskCutoffBehavior {
|
|
|
7097
7104
|
}
|
|
7098
7105
|
/**
|
|
7099
7106
|
* <p>Information about an Amazon Simple Storage Service (Amazon S3) bucket to write
|
|
7100
|
-
*
|
|
7107
|
+
* managed node-level logs to.</p>
|
|
7101
7108
|
* <note>
|
|
7102
7109
|
* <p>
|
|
7103
7110
|
* <code>LoggingInfo</code> has been deprecated. To specify an Amazon Simple Storage Service (Amazon S3) bucket to contain logs, instead use the
|
|
@@ -7166,7 +7173,7 @@ export interface MaintenanceWindowTask {
|
|
|
7166
7173
|
*/
|
|
7167
7174
|
Type?: MaintenanceWindowTaskType | string;
|
|
7168
7175
|
/**
|
|
7169
|
-
* <p>The targets (either
|
|
7176
|
+
* <p>The targets (either managed nodes or tags). Managed nodes are specified using
|
|
7170
7177
|
* <code>Key=instanceids,Values=<instanceid1>,<instanceid2></code>. Tags are specified
|
|
7171
7178
|
* using <code>Key=<tag name>,Values=<tag value></code>.</p>
|
|
7172
7179
|
*/
|
|
@@ -7637,8 +7644,3 @@ export declare enum ParameterTier {
|
|
|
7637
7644
|
INTELLIGENT_TIERING = "Intelligent-Tiering",
|
|
7638
7645
|
STANDARD = "Standard"
|
|
7639
7646
|
}
|
|
7640
|
-
export declare enum ParameterType {
|
|
7641
|
-
SECURE_STRING = "SecureString",
|
|
7642
|
-
STRING = "String",
|
|
7643
|
-
STRING_LIST = "StringList"
|
|
7644
|
-
}
|