@aws-sdk/client-ssm 3.47.2 → 3.51.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 +35 -0
- package/README.md +5 -6
- package/dist-cjs/protocols/Aws_json1_1.js +26 -0
- package/dist-es/protocols/Aws_json1_1.js +26 -0
- package/dist-types/SSM.d.ts +48 -39
- package/dist-types/SSMClient.d.ts +5 -6
- package/dist-types/commands/CreateActivationCommand.d.ts +2 -2
- package/dist-types/commands/CreateAssociationBatchCommand.d.ts +3 -3
- package/dist-types/commands/DeleteAssociationCommand.d.ts +3 -3
- package/dist-types/commands/DescribeInstanceInformationCommand.d.ts +2 -2
- package/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +2 -1
- package/dist-types/commands/DescribeInstancePatchesCommand.d.ts +2 -2
- package/dist-types/commands/GetConnectionStatusCommand.d.ts +2 -2
- package/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +2 -2
- package/dist-types/commands/GetInventoryCommand.d.ts +2 -2
- package/dist-types/commands/ListAssociationsCommand.d.ts +2 -2
- package/dist-types/commands/ListCommandInvocationsCommand.d.ts +5 -5
- package/dist-types/commands/PutInventoryCommand.d.ts +3 -2
- package/dist-types/commands/StartSessionCommand.d.ts +3 -3
- package/dist-types/commands/UpdateAssociationCommand.d.ts +10 -2
- package/dist-types/models/models_0.d.ts +71 -61
- package/dist-types/models/models_1.d.ts +87 -80
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/package.json +40 -34
|
@@ -348,15 +348,15 @@ export interface DescribePatchGroupStateResult {
|
|
|
348
348
|
/**
|
|
349
349
|
* <p>The number of managed nodes where patches that are specified as <code>Critical</code> for
|
|
350
350
|
* compliance reporting in the patch baseline aren't installed. These patches might be missing, have
|
|
351
|
-
* failed installation, were rejected, or were installed but awaiting a required managed node
|
|
352
|
-
* The status of these managed nodes is <code>NON_COMPLIANT</code>.</p>
|
|
351
|
+
* failed installation, were rejected, or were installed but awaiting a required managed node
|
|
352
|
+
* reboot. The status of these managed nodes is <code>NON_COMPLIANT</code>.</p>
|
|
353
353
|
*/
|
|
354
354
|
InstancesWithCriticalNonCompliantPatches?: number;
|
|
355
355
|
/**
|
|
356
356
|
* <p>The number of managed nodes where patches that are specified as <code>Security</code> in a
|
|
357
357
|
* patch advisory aren't installed. These patches might be missing, have failed installation, were
|
|
358
|
-
* rejected, or were installed but awaiting a required managed node reboot. The status of these
|
|
359
|
-
* nodes is <code>NON_COMPLIANT</code>.</p>
|
|
358
|
+
* rejected, or were installed but awaiting a required managed node reboot. The status of these
|
|
359
|
+
* managed nodes is <code>NON_COMPLIANT</code>.</p>
|
|
360
360
|
*/
|
|
361
361
|
InstancesWithSecurityNonCompliantPatches?: number;
|
|
362
362
|
/**
|
|
@@ -956,8 +956,9 @@ export interface GetCommandInvocationRequest {
|
|
|
956
956
|
*/
|
|
957
957
|
CommandId: string | undefined;
|
|
958
958
|
/**
|
|
959
|
-
* <p>(Required) The ID of the managed node targeted by the command. A <i>managed
|
|
960
|
-
*
|
|
959
|
+
* <p>(Required) The ID of the managed node targeted by the command. A <i>managed
|
|
960
|
+
* node</i> can be an Amazon Elastic Compute Cloud (Amazon EC2) instance, edge device, and on-premises server or VM
|
|
961
|
+
* in your hybrid environment that is configured for Amazon Web Services Systems Manager.</p>
|
|
961
962
|
*/
|
|
962
963
|
InstanceId: string | undefined;
|
|
963
964
|
/**
|
|
@@ -1021,8 +1022,9 @@ export interface GetCommandInvocationResult {
|
|
|
1021
1022
|
*/
|
|
1022
1023
|
CommandId?: string;
|
|
1023
1024
|
/**
|
|
1024
|
-
* <p>The ID of the managed node targeted by the command. A <i>managed node</i> can
|
|
1025
|
-
* Amazon Elastic Compute Cloud (Amazon EC2) instance, edge device, or on-premises server or VM in your hybrid
|
|
1025
|
+
* <p>The ID of the managed node targeted by the command. A <i>managed node</i> can
|
|
1026
|
+
* be an Amazon Elastic Compute Cloud (Amazon EC2) instance, edge device, or on-premises server or VM in your hybrid
|
|
1027
|
+
* environment that is configured for Amazon Web Services Systems Manager.</p>
|
|
1026
1028
|
*/
|
|
1027
1029
|
InstanceId?: string;
|
|
1028
1030
|
/**
|
|
@@ -1044,8 +1046,8 @@ export interface GetCommandInvocationResult {
|
|
|
1044
1046
|
PluginName?: string;
|
|
1045
1047
|
/**
|
|
1046
1048
|
* <p>The error level response code for the plugin script. If the response code is
|
|
1047
|
-
* <code>-1</code>, then the command hasn't started running on the managed node, or it wasn't
|
|
1048
|
-
* by the node.</p>
|
|
1049
|
+
* <code>-1</code>, then the command hasn't started running on the managed node, or it wasn't
|
|
1050
|
+
* received by the node.</p>
|
|
1049
1051
|
*/
|
|
1050
1052
|
ResponseCode?: number;
|
|
1051
1053
|
/**
|
|
@@ -1107,18 +1109,18 @@ export interface GetCommandInvocationResult {
|
|
|
1107
1109
|
* Success or Incomplete. This is a terminal state.</p>
|
|
1108
1110
|
* </li>
|
|
1109
1111
|
* <li>
|
|
1110
|
-
* <p>Execution Timed Out: The command started to run on the managed node, but the execution
|
|
1111
|
-
* complete before the timeout expired. Execution timeouts count against the
|
|
1112
|
+
* <p>Execution Timed Out: The command started to run on the managed node, but the execution
|
|
1113
|
+
* wasn't complete before the timeout expired. Execution timeouts count against the
|
|
1112
1114
|
* <code>MaxErrors</code> limit of the parent command. This is a terminal state.</p>
|
|
1113
1115
|
* </li>
|
|
1114
1116
|
* <li>
|
|
1115
|
-
* <p>Failed: The command wasn't run successfully on the managed node. For a plugin, this
|
|
1116
|
-
* that the result code wasn't zero. For a command invocation, this indicates that the
|
|
1117
|
-
* for one or more plugins wasn't zero. Invocation failures count against the
|
|
1117
|
+
* <p>Failed: The command wasn't run successfully on the managed node. For a plugin, this
|
|
1118
|
+
* indicates that the result code wasn't zero. For a command invocation, this indicates that the
|
|
1119
|
+
* result code for one or more plugins wasn't zero. Invocation failures count against the
|
|
1118
1120
|
* <code>MaxErrors</code> limit of the parent command. This is a terminal state.</p>
|
|
1119
1121
|
* </li>
|
|
1120
1122
|
* <li>
|
|
1121
|
-
* <p>
|
|
1123
|
+
* <p>Cancelled: The command was terminated before it was completed. This is a terminal
|
|
1122
1124
|
* state.</p>
|
|
1123
1125
|
* </li>
|
|
1124
1126
|
* <li>
|
|
@@ -1303,7 +1305,8 @@ export declare namespace BaselineOverride {
|
|
|
1303
1305
|
}
|
|
1304
1306
|
export interface GetDeployablePatchSnapshotForInstanceRequest {
|
|
1305
1307
|
/**
|
|
1306
|
-
* <p>The ID of the managed node for which the appropriate patch snapshot should be
|
|
1308
|
+
* <p>The ID of the managed node for which the appropriate patch snapshot should be
|
|
1309
|
+
* retrieved.</p>
|
|
1307
1310
|
*/
|
|
1308
1311
|
InstanceId: string | undefined;
|
|
1309
1312
|
/**
|
|
@@ -1608,9 +1611,8 @@ export declare namespace InventoryResultItem {
|
|
|
1608
1611
|
*/
|
|
1609
1612
|
export interface InventoryResultEntity {
|
|
1610
1613
|
/**
|
|
1611
|
-
* <p>ID of the inventory result entity. For example, for managed node inventory the result
|
|
1612
|
-
*
|
|
1613
|
-
* </p>
|
|
1614
|
+
* <p>ID of the inventory result entity. For example, for managed node inventory the result will
|
|
1615
|
+
* be the managed node ID. For EC2 instance inventory, the result will be the instance ID. </p>
|
|
1614
1616
|
*/
|
|
1615
1617
|
Id?: string;
|
|
1616
1618
|
/**
|
|
@@ -2118,14 +2120,13 @@ export interface MaintenanceWindowAutomationParameters {
|
|
|
2118
2120
|
* <code>OutputS3BucketName</code> and <code>OutputS3KeyPrefix</code> options in the <code>TaskInvocationParameters</code> structure.
|
|
2119
2121
|
* For information about how Amazon Web Services Systems Manager handles these options for the supported maintenance
|
|
2120
2122
|
* window task types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>
|
|
2121
|
-
*
|
|
2122
2123
|
* <p>
|
|
2123
2124
|
* <code>TaskParameters</code> has been deprecated. To specify parameters to pass to a task when it runs,
|
|
2124
2125
|
* instead use the <code>Parameters</code> option in the <code>TaskInvocationParameters</code> structure. For information
|
|
2125
2126
|
* about how Systems Manager handles these options for the supported maintenance window task
|
|
2126
2127
|
* types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>
|
|
2127
|
-
* <p>For <code>AUTOMATION</code>
|
|
2128
|
-
* parameters.</p>
|
|
2128
|
+
* <p>For <code>AUTOMATION</code>
|
|
2129
|
+
* task types, Amazon Web Services Systems Manager ignores any values specified for these parameters.</p>
|
|
2129
2130
|
* </note>
|
|
2130
2131
|
*/
|
|
2131
2132
|
Parameters?: {
|
|
@@ -2147,14 +2148,13 @@ export declare namespace MaintenanceWindowAutomationParameters {
|
|
|
2147
2148
|
* <code>OutputS3BucketName</code> and <code>OutputS3KeyPrefix</code> options in the <code>TaskInvocationParameters</code> structure.
|
|
2148
2149
|
* For information about how Amazon Web Services Systems Manager handles these options for the supported maintenance
|
|
2149
2150
|
* window task types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>
|
|
2150
|
-
*
|
|
2151
2151
|
* <p>
|
|
2152
2152
|
* <code>TaskParameters</code> has been deprecated. To specify parameters to pass to a task when it runs,
|
|
2153
2153
|
* instead use the <code>Parameters</code> option in the <code>TaskInvocationParameters</code> structure. For information
|
|
2154
2154
|
* about how Systems Manager handles these options for the supported maintenance window task
|
|
2155
2155
|
* types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>
|
|
2156
|
-
* <p>For Lambda tasks, Systems Manager ignores
|
|
2157
|
-
* LoggingInfo.</p>
|
|
2156
|
+
* <p>For Lambda tasks, Systems Manager ignores
|
|
2157
|
+
* any values specified for TaskParameters and LoggingInfo.</p>
|
|
2158
2158
|
* </note>
|
|
2159
2159
|
*/
|
|
2160
2160
|
export interface MaintenanceWindowLambdaParameters {
|
|
@@ -2241,15 +2241,14 @@ export declare namespace NotificationConfig {
|
|
|
2241
2241
|
* <code>OutputS3BucketName</code> and <code>OutputS3KeyPrefix</code> options in the <code>TaskInvocationParameters</code> structure.
|
|
2242
2242
|
* For information about how Amazon Web Services Systems Manager handles these options for the supported maintenance
|
|
2243
2243
|
* window task types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>
|
|
2244
|
-
*
|
|
2245
2244
|
* <p>
|
|
2246
2245
|
* <code>TaskParameters</code> has been deprecated. To specify parameters to pass to a task when it runs,
|
|
2247
2246
|
* instead use the <code>Parameters</code> option in the <code>TaskInvocationParameters</code> structure. For information
|
|
2248
2247
|
* about how Systems Manager handles these options for the supported maintenance window task
|
|
2249
2248
|
* types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>
|
|
2250
|
-
* <p>For <code>RUN_COMMAND</code>
|
|
2251
|
-
*
|
|
2252
|
-
*
|
|
2249
|
+
* <p>For <code>RUN_COMMAND</code>
|
|
2250
|
+
* tasks, Systems Manager uses specified values for <code>TaskParameters</code> and <code>LoggingInfo</code>
|
|
2251
|
+
* only if no values are specified for <code>TaskInvocationParameters</code>. </p>
|
|
2253
2252
|
* </note>
|
|
2254
2253
|
*/
|
|
2255
2254
|
export interface MaintenanceWindowRunCommandParameters {
|
|
@@ -2331,14 +2330,14 @@ export declare namespace MaintenanceWindowRunCommandParameters {
|
|
|
2331
2330
|
* <code>OutputS3BucketName</code> and <code>OutputS3KeyPrefix</code> options in the <code>TaskInvocationParameters</code> structure.
|
|
2332
2331
|
* For information about how Amazon Web Services Systems Manager handles these options for the supported maintenance
|
|
2333
2332
|
* window task types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>
|
|
2334
|
-
*
|
|
2335
2333
|
* <p>
|
|
2336
2334
|
* <code>TaskParameters</code> has been deprecated. To specify parameters to pass to a task when it runs,
|
|
2337
2335
|
* instead use the <code>Parameters</code> option in the <code>TaskInvocationParameters</code> structure. For information
|
|
2338
2336
|
* about how Systems Manager handles these options for the supported maintenance window task
|
|
2339
2337
|
* types, see <a>MaintenanceWindowTaskInvocationParameters</a>.</p>
|
|
2340
|
-
* <p>For Step Functions tasks, Systems Manager
|
|
2341
|
-
*
|
|
2338
|
+
* <p>For Step Functions tasks, Systems Manager
|
|
2339
|
+
* ignores any values specified for <code>TaskParameters</code> and
|
|
2340
|
+
* <code>LoggingInfo</code>.</p>
|
|
2342
2341
|
* </note>
|
|
2343
2342
|
*/
|
|
2344
2343
|
export interface MaintenanceWindowStepFunctionsParameters {
|
|
@@ -3470,8 +3469,8 @@ export interface ListAssociationsRequest {
|
|
|
3470
3469
|
* <note>
|
|
3471
3470
|
* <p>Filtering associations using the <code>InstanceID</code> attribute only returns legacy
|
|
3472
3471
|
* associations created using the <code>InstanceID</code> attribute. Associations targeting the
|
|
3473
|
-
* managed node that are part of the Target Attributes <code>ResourceGroup</code> or
|
|
3474
|
-
*
|
|
3472
|
+
* managed node that are part of the Target Attributes <code>ResourceGroup</code> or
|
|
3473
|
+
* <code>Tags</code> aren't returned.</p>
|
|
3475
3474
|
* </note>
|
|
3476
3475
|
*/
|
|
3477
3476
|
AssociationFilterList?: AssociationFilter[];
|
|
@@ -3515,6 +3514,9 @@ export interface Association {
|
|
|
3515
3514
|
AssociationVersion?: string;
|
|
3516
3515
|
/**
|
|
3517
3516
|
* <p>The version of the document used in the association.</p>
|
|
3517
|
+
* <important>
|
|
3518
|
+
* <p>State Manager doesn't support running associations that use a new version of a document if that document is shared from another account. State Manager always runs the <code>default</code> version of a document if shared from another account, even though the Systems Manager console shows that a new version was processed. If you want to run an association using a new version of a document shared form another account, you must set the document version to <code>default</code>.</p>
|
|
3519
|
+
* </important>
|
|
3518
3520
|
*/
|
|
3519
3521
|
DocumentVersion?: string;
|
|
3520
3522
|
/**
|
|
@@ -3655,8 +3657,8 @@ export interface AssociationVersionInfo {
|
|
|
3655
3657
|
* value is 100%, which means all targets run the association at the same time.</p>
|
|
3656
3658
|
* <p>If a new managed node starts and attempts to run an association while Systems Manager is running
|
|
3657
3659
|
* <code>MaxConcurrency</code> associations, the association is allowed to run. During the next
|
|
3658
|
-
* association interval, the new managed node will process its association within the limit
|
|
3659
|
-
* for <code>MaxConcurrency</code>.</p>
|
|
3660
|
+
* association interval, the new managed node will process its association within the limit
|
|
3661
|
+
* specified for <code>MaxConcurrency</code>.</p>
|
|
3660
3662
|
*/
|
|
3661
3663
|
MaxConcurrency?: string;
|
|
3662
3664
|
/**
|
|
@@ -3729,8 +3731,8 @@ export declare enum CommandFilterKey {
|
|
|
3729
3731
|
/**
|
|
3730
3732
|
* <p>Describes a command filter.</p>
|
|
3731
3733
|
* <note>
|
|
3732
|
-
* <p>A managed node ID can't be specified when a command status is <code>Pending</code> because
|
|
3733
|
-
* command hasn't run on the node yet.</p>
|
|
3734
|
+
* <p>A managed node ID can't be specified when a command status is <code>Pending</code> because
|
|
3735
|
+
* the command hasn't run on the node yet.</p>
|
|
3734
3736
|
* </note>
|
|
3735
3737
|
*/
|
|
3736
3738
|
export interface CommandFilter {
|
|
@@ -4010,25 +4012,25 @@ export interface CommandPlugin {
|
|
|
4010
4012
|
* Success or Incomplete. This is a terminal state.</p>
|
|
4011
4013
|
* </li>
|
|
4012
4014
|
* <li>
|
|
4013
|
-
* <p>Execution Timed Out: Command execution started on the managed node, but the execution
|
|
4014
|
-
* complete before the execution timeout expired. Execution timeouts count against the
|
|
4015
|
+
* <p>Execution Timed Out: Command execution started on the managed node, but the execution
|
|
4016
|
+
* wasn't complete before the execution timeout expired. Execution timeouts count against the
|
|
4015
4017
|
* <code>MaxErrors</code> limit of the parent command. This is a terminal state.</p>
|
|
4016
4018
|
* </li>
|
|
4017
4019
|
* <li>
|
|
4018
|
-
* <p>Failed: The command wasn't successful on the managed node. For a plugin, this indicates
|
|
4019
|
-
* the result code wasn't zero. For a command invocation, this indicates that the result code
|
|
4020
|
-
* one or more plugins wasn't zero. Invocation failures count against the MaxErrors limit of
|
|
4021
|
-
* parent command. This is a terminal state.</p>
|
|
4020
|
+
* <p>Failed: The command wasn't successful on the managed node. For a plugin, this indicates
|
|
4021
|
+
* that the result code wasn't zero. For a command invocation, this indicates that the result code
|
|
4022
|
+
* for one or more plugins wasn't zero. Invocation failures count against the MaxErrors limit of
|
|
4023
|
+
* the parent command. This is a terminal state.</p>
|
|
4022
4024
|
* </li>
|
|
4023
4025
|
* <li>
|
|
4024
|
-
* <p>
|
|
4026
|
+
* <p>Cancelled: The command was terminated before it was completed. This is a terminal
|
|
4025
4027
|
* state.</p>
|
|
4026
4028
|
* </li>
|
|
4027
4029
|
* <li>
|
|
4028
|
-
* <p>Undeliverable: The command can't be delivered to the managed node. The managed node might
|
|
4029
|
-
* exist, or it might not be responding. Undeliverable invocations don't count against the
|
|
4030
|
-
* command's MaxErrors limit, and they don't contribute to whether the parent command
|
|
4031
|
-
* Success or Incomplete. This is a terminal state.</p>
|
|
4030
|
+
* <p>Undeliverable: The command can't be delivered to the managed node. The managed node might
|
|
4031
|
+
* not exist, or it might not be responding. Undeliverable invocations don't count against the
|
|
4032
|
+
* parent command's MaxErrors limit, and they don't contribute to whether the parent command
|
|
4033
|
+
* status is Success or Incomplete. This is a terminal state.</p>
|
|
4032
4034
|
* </li>
|
|
4033
4035
|
* <li>
|
|
4034
4036
|
* <p>Terminated: The parent command exceeded its MaxErrors limit and subsequent command
|
|
@@ -4110,11 +4112,11 @@ export declare namespace CommandPlugin {
|
|
|
4110
4112
|
const filterSensitiveLog: (obj: CommandPlugin) => any;
|
|
4111
4113
|
}
|
|
4112
4114
|
/**
|
|
4113
|
-
* <p>An invocation is a copy of a command sent to a specific managed node. A command can apply to
|
|
4114
|
-
* or more managed nodes. A command invocation applies to one managed node. For example, if a
|
|
4115
|
-
*
|
|
4116
|
-
* each requested managed node ID. A command invocation returns status and detail
|
|
4117
|
-
* command you ran. </p>
|
|
4115
|
+
* <p>An invocation is a copy of a command sent to a specific managed node. A command can apply to
|
|
4116
|
+
* one or more managed nodes. A command invocation applies to one managed node. For example, if a
|
|
4117
|
+
* user runs <code>SendCommand</code> against three managed nodes, then a command invocation is
|
|
4118
|
+
* created for each requested managed node ID. A command invocation returns status and detail
|
|
4119
|
+
* information about a command you ran. </p>
|
|
4118
4120
|
*/
|
|
4119
4121
|
export interface CommandInvocation {
|
|
4120
4122
|
/**
|
|
@@ -4151,8 +4153,8 @@ export interface CommandInvocation {
|
|
|
4151
4153
|
*/
|
|
4152
4154
|
Status?: CommandInvocationStatus | string;
|
|
4153
4155
|
/**
|
|
4154
|
-
* <p>A detailed status of the command execution for each invocation (each managed node targeted
|
|
4155
|
-
* the command). StatusDetails includes more information than Status because it includes states
|
|
4156
|
+
* <p>A detailed status of the command execution for each invocation (each managed node targeted
|
|
4157
|
+
* by the command). StatusDetails includes more information than Status because it includes states
|
|
4156
4158
|
* resulting from error and concurrency control parameters. StatusDetails can show different results
|
|
4157
4159
|
* than Status. For more information about these statuses, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/monitor-commands.html">Understanding command
|
|
4158
4160
|
* statuses</a> in the <i>Amazon Web Services Systems Manager User Guide</i>. StatusDetails can be one of the
|
|
@@ -4176,23 +4178,23 @@ export interface CommandInvocation {
|
|
|
4176
4178
|
* Success or Incomplete. This is a terminal state.</p>
|
|
4177
4179
|
* </li>
|
|
4178
4180
|
* <li>
|
|
4179
|
-
* <p>Execution Timed Out: Command execution started on the managed node, but the execution
|
|
4180
|
-
* complete before the execution timeout expired. Execution timeouts count against the
|
|
4181
|
+
* <p>Execution Timed Out: Command execution started on the managed node, but the execution
|
|
4182
|
+
* wasn't complete before the execution timeout expired. Execution timeouts count against the
|
|
4181
4183
|
* <code>MaxErrors</code> limit of the parent command. This is a terminal state.</p>
|
|
4182
4184
|
* </li>
|
|
4183
4185
|
* <li>
|
|
4184
|
-
* <p>Failed: The command wasn't successful on the managed node. For a plugin, this indicates
|
|
4185
|
-
* the result code wasn't zero. For a command invocation, this indicates that the result code
|
|
4186
|
-
* one or more plugins wasn't zero. Invocation failures count against the
|
|
4187
|
-
*
|
|
4186
|
+
* <p>Failed: The command wasn't successful on the managed node. For a plugin, this indicates
|
|
4187
|
+
* that the result code wasn't zero. For a command invocation, this indicates that the result code
|
|
4188
|
+
* for one or more plugins wasn't zero. Invocation failures count against the
|
|
4189
|
+
* <code>MaxErrors</code> limit of the parent command. This is a terminal state.</p>
|
|
4188
4190
|
* </li>
|
|
4189
4191
|
* <li>
|
|
4190
|
-
* <p>
|
|
4192
|
+
* <p>Cancelled: The command was terminated before it was completed. This is a terminal
|
|
4191
4193
|
* state.</p>
|
|
4192
4194
|
* </li>
|
|
4193
4195
|
* <li>
|
|
4194
|
-
* <p>Undeliverable: The command can't be delivered to the managed node. The managed node might
|
|
4195
|
-
* exist or might not be responding. Undeliverable invocations don't count against the parent
|
|
4196
|
+
* <p>Undeliverable: The command can't be delivered to the managed node. The managed node might
|
|
4197
|
+
* not exist or might not be responding. Undeliverable invocations don't count against the parent
|
|
4196
4198
|
* command's MaxErrors limit and don't contribute to whether the parent command status is Success
|
|
4197
4199
|
* or Incomplete. This is a terminal state.</p>
|
|
4198
4200
|
* </li>
|
|
@@ -4273,8 +4275,9 @@ export interface ListCommandsRequest {
|
|
|
4273
4275
|
/**
|
|
4274
4276
|
* <p>(Optional) Lists commands issued against this managed node ID.</p>
|
|
4275
4277
|
* <note>
|
|
4276
|
-
* <p>You can't specify a managed node ID in the same command that you specify
|
|
4277
|
-
* <code>Pending</code>. This is because the command hasn't reached the
|
|
4278
|
+
* <p>You can't specify a managed node ID in the same command that you specify
|
|
4279
|
+
* <code>Status</code> = <code>Pending</code>. This is because the command hasn't reached the
|
|
4280
|
+
* managed node yet.</p>
|
|
4278
4281
|
* </note>
|
|
4279
4282
|
*/
|
|
4280
4283
|
InstanceId?: string;
|
|
@@ -4372,8 +4375,8 @@ export interface Command {
|
|
|
4372
4375
|
* <p>Pending: The command hasn't been sent to any managed nodes.</p>
|
|
4373
4376
|
* </li>
|
|
4374
4377
|
* <li>
|
|
4375
|
-
* <p>In Progress: The command has been sent to at least one managed node but hasn't reached a
|
|
4376
|
-
* state on all managed nodes.</p>
|
|
4378
|
+
* <p>In Progress: The command has been sent to at least one managed node but hasn't reached a
|
|
4379
|
+
* final state on all managed nodes.</p>
|
|
4377
4380
|
* </li>
|
|
4378
4381
|
* <li>
|
|
4379
4382
|
* <p>Success: The command successfully ran on all invocations. This is a terminal state.</p>
|
|
@@ -4396,7 +4399,7 @@ export interface Command {
|
|
|
4396
4399
|
* This is a terminal state.</p>
|
|
4397
4400
|
* </li>
|
|
4398
4401
|
* <li>
|
|
4399
|
-
* <p>
|
|
4402
|
+
* <p>Cancelled: The command was terminated before it was completed. This is a terminal
|
|
4400
4403
|
* state.</p>
|
|
4401
4404
|
* </li>
|
|
4402
4405
|
* <li>
|
|
@@ -4444,7 +4447,7 @@ export interface Command {
|
|
|
4444
4447
|
TargetCount?: number;
|
|
4445
4448
|
/**
|
|
4446
4449
|
* <p>The number of targets for which the command invocation reached a terminal state. Terminal
|
|
4447
|
-
* states include the following: Success, Failed, Execution Timed Out, Delivery Timed Out,
|
|
4450
|
+
* states include the following: Success, Failed, Execution Timed Out, Delivery Timed Out, Cancelled,
|
|
4448
4451
|
* Terminated, or Undeliverable.</p>
|
|
4449
4452
|
*/
|
|
4450
4453
|
CompletedCount?: number;
|
|
@@ -7343,9 +7346,9 @@ export interface InvalidRole extends __SmithyException, $MetadataBearer {
|
|
|
7343
7346
|
}
|
|
7344
7347
|
export interface SendCommandRequest {
|
|
7345
7348
|
/**
|
|
7346
|
-
* <p>The IDs of the managed nodes where the command should run. Specifying managed node IDs is
|
|
7347
|
-
* useful when you are targeting a limited number of managed nodes, though you can specify up
|
|
7348
|
-
* IDs.</p>
|
|
7349
|
+
* <p>The IDs of the managed nodes where the command should run. Specifying managed node IDs is
|
|
7350
|
+
* most useful when you are targeting a limited number of managed nodes, though you can specify up
|
|
7351
|
+
* to 50 IDs.</p>
|
|
7349
7352
|
* <p>To target a larger number of managed nodes, or if you prefer not to list individual node
|
|
7350
7353
|
* IDs, we recommend using the <code>Targets</code> option instead. Using <code>Targets</code>,
|
|
7351
7354
|
* which accepts tag key-value pairs to identify the managed nodes to send commands to, you can a
|
|
@@ -7832,10 +7835,11 @@ export declare namespace StartSessionResponse {
|
|
|
7832
7835
|
const filterSensitiveLog: (obj: StartSessionResponse) => any;
|
|
7833
7836
|
}
|
|
7834
7837
|
/**
|
|
7835
|
-
* <p>The specified target managed node for the session isn't fully configured for use with Session Manager.
|
|
7836
|
-
* more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-getting-started.html">Getting started with
|
|
7838
|
+
* <p>The specified target managed node for the session isn't fully configured for use with Session Manager.
|
|
7839
|
+
* For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-getting-started.html">Getting started with
|
|
7837
7840
|
* Session Manager</a> in the <i>Amazon Web Services Systems Manager User Guide</i>. This error is also returned if you
|
|
7838
|
-
* attempt to start a session on a managed node that is located in a different account or
|
|
7841
|
+
* attempt to start a session on a managed node that is located in a different account or
|
|
7842
|
+
* Region</p>
|
|
7839
7843
|
*/
|
|
7840
7844
|
export interface TargetNotConnected extends __SmithyException, $MetadataBearer {
|
|
7841
7845
|
name: "TargetNotConnected";
|
|
@@ -7972,6 +7976,9 @@ export interface UpdateAssociationRequest {
|
|
|
7972
7976
|
};
|
|
7973
7977
|
/**
|
|
7974
7978
|
* <p>The document version you want update for the association. </p>
|
|
7979
|
+
* <important>
|
|
7980
|
+
* <p>State Manager doesn't support running associations that use a new version of a document if that document is shared from another account. State Manager always runs the <code>default</code> version of a document if shared from another account, even though the Systems Manager console shows that a new version was processed. If you want to run an association using a new version of a document shared form another account, you must set the document version to <code>default</code>.</p>
|
|
7981
|
+
* </important>
|
|
7975
7982
|
*/
|
|
7976
7983
|
DocumentVersion?: string;
|
|
7977
7984
|
/**
|
|
@@ -8042,8 +8049,8 @@ export interface UpdateAssociationRequest {
|
|
|
8042
8049
|
* value is 100%, which means all targets run the association at the same time.</p>
|
|
8043
8050
|
* <p>If a new managed node starts and attempts to run an association while Systems Manager is running
|
|
8044
8051
|
* <code>MaxConcurrency</code> associations, the association is allowed to run. During the next
|
|
8045
|
-
* association interval, the new managed node will process its association within the limit
|
|
8046
|
-
* for <code>MaxConcurrency</code>.</p>
|
|
8052
|
+
* association interval, the new managed node will process its association within the limit
|
|
8053
|
+
* specified for <code>MaxConcurrency</code>.</p>
|
|
8047
8054
|
*/
|
|
8048
8055
|
MaxConcurrency?: string;
|
|
8049
8056
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.51.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,44 +18,50 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
51
|
-
"@aws-sdk/util-waiter": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.51.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.51.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.51.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.50.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.50.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.50.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.50.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.50.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.50.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.51.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.50.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.50.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.50.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.50.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.51.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.50.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.50.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.50.0",
|
|
39
|
+
"@aws-sdk/types": "3.50.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.50.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.49.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.49.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.50.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.51.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.50.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.51.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
|
+
"@aws-sdk/util-waiter": "3.50.0",
|
|
52
52
|
"tslib": "^2.3.0",
|
|
53
53
|
"uuid": "^8.3.2"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
56
|
+
"@aws-sdk/service-client-documentation-generator": "3.49.0",
|
|
57
|
+
"@tsconfig/recommended": "1.0.1",
|
|
57
58
|
"@types/node": "^12.7.5",
|
|
58
|
-
"@types/uuid": "^8.3.0"
|
|
59
|
+
"@types/uuid": "^8.3.0",
|
|
60
|
+
"concurrently": "7.0.0",
|
|
61
|
+
"downlevel-dts": "0.7.0",
|
|
62
|
+
"rimraf": "3.0.2",
|
|
63
|
+
"typedoc": "0.19.2",
|
|
64
|
+
"typescript": "~4.3.5"
|
|
59
65
|
},
|
|
60
66
|
"engines": {
|
|
61
67
|
"node": ">=12.0.0"
|