@aws-sdk/client-ssm 3.925.0 → 3.926.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +31 -4
- package/dist-es/models/models_0.js +14 -4
- package/dist-es/models/models_1.js +5 -1
- package/dist-es/protocols/Aws_json1_1.js +13 -1
- package/dist-types/commands/CreateDocumentCommand.d.ts +3 -0
- package/dist-types/commands/ListDocumentMetadataHistoryCommand.d.ts +7 -1
- package/dist-types/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +1 -2
- package/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +10 -1
- package/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +7 -1
- package/dist-types/models/models_0.d.ts +36 -84
- package/dist-types/models/models_1.d.ts +79 -19
- package/dist-types/models/models_2.d.ts +17 -1
- package/dist-types/ts3.4/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +8 -17
- package/dist-types/ts3.4/models/models_1.d.ts +17 -5
- package/dist-types/ts3.4/models/models_2.d.ts +4 -0
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -665,6 +665,20 @@ class MaxDocumentSizeExceeded extends SSMServiceException {
|
|
|
665
665
|
this.Message = opts.Message;
|
|
666
666
|
}
|
|
667
667
|
}
|
|
668
|
+
class NoLongerSupportedException extends SSMServiceException {
|
|
669
|
+
name = "NoLongerSupportedException";
|
|
670
|
+
$fault = "client";
|
|
671
|
+
Message;
|
|
672
|
+
constructor(opts) {
|
|
673
|
+
super({
|
|
674
|
+
name: "NoLongerSupportedException",
|
|
675
|
+
$fault: "client",
|
|
676
|
+
...opts,
|
|
677
|
+
});
|
|
678
|
+
Object.setPrototypeOf(this, NoLongerSupportedException.prototype);
|
|
679
|
+
this.Message = opts.Message;
|
|
680
|
+
}
|
|
681
|
+
}
|
|
668
682
|
class IdempotentParameterMismatch extends SSMServiceException {
|
|
669
683
|
name = "IdempotentParameterMismatch";
|
|
670
684
|
$fault = "client";
|
|
@@ -1577,10 +1591,6 @@ const DescribeMaintenanceWindowExecutionTaskInvocationsResultFilterSensitiveLog
|
|
|
1577
1591
|
WindowExecutionTaskInvocationIdentities: obj.WindowExecutionTaskInvocationIdentities.map((item) => MaintenanceWindowExecutionTaskInvocationIdentityFilterSensitiveLog(item)),
|
|
1578
1592
|
}),
|
|
1579
1593
|
});
|
|
1580
|
-
const MaintenanceWindowIdentityFilterSensitiveLog = (obj) => ({
|
|
1581
|
-
...obj,
|
|
1582
|
-
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
1583
|
-
});
|
|
1584
1594
|
|
|
1585
1595
|
const MaintenanceWindowResourceType = {
|
|
1586
1596
|
Instance: "INSTANCE",
|
|
@@ -2470,6 +2480,10 @@ class ResourcePolicyLimitExceededException extends SSMServiceException {
|
|
|
2470
2480
|
this.Message = opts.Message;
|
|
2471
2481
|
}
|
|
2472
2482
|
}
|
|
2483
|
+
const MaintenanceWindowIdentityFilterSensitiveLog = (obj) => ({
|
|
2484
|
+
...obj,
|
|
2485
|
+
...(obj.Description && { Description: smithyClient.SENSITIVE_STRING }),
|
|
2486
|
+
});
|
|
2473
2487
|
const DescribeMaintenanceWindowsResultFilterSensitiveLog = (obj) => ({
|
|
2474
2488
|
...obj,
|
|
2475
2489
|
...(obj.WindowIdentities && {
|
|
@@ -5925,6 +5939,9 @@ const de_CommandError = async (output, context) => {
|
|
|
5925
5939
|
case "MaxDocumentSizeExceeded":
|
|
5926
5940
|
case "com.amazonaws.ssm#MaxDocumentSizeExceeded":
|
|
5927
5941
|
throw await de_MaxDocumentSizeExceededRes(parsedOutput);
|
|
5942
|
+
case "NoLongerSupportedException":
|
|
5943
|
+
case "com.amazonaws.ssm#NoLongerSupportedException":
|
|
5944
|
+
throw await de_NoLongerSupportedExceptionRes(parsedOutput);
|
|
5928
5945
|
case "IdempotentParameterMismatch":
|
|
5929
5946
|
case "com.amazonaws.ssm#IdempotentParameterMismatch":
|
|
5930
5947
|
throw await de_IdempotentParameterMismatchRes(parsedOutput);
|
|
@@ -7023,6 +7040,15 @@ const de_MaxDocumentSizeExceededRes = async (parsedOutput, context) => {
|
|
|
7023
7040
|
});
|
|
7024
7041
|
return smithyClient.decorateServiceException(exception, body);
|
|
7025
7042
|
};
|
|
7043
|
+
const de_NoLongerSupportedExceptionRes = async (parsedOutput, context) => {
|
|
7044
|
+
const body = parsedOutput.body;
|
|
7045
|
+
const deserialized = smithyClient._json(body);
|
|
7046
|
+
const exception = new NoLongerSupportedException({
|
|
7047
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
7048
|
+
...deserialized,
|
|
7049
|
+
});
|
|
7050
|
+
return smithyClient.decorateServiceException(exception, body);
|
|
7051
|
+
};
|
|
7026
7052
|
const de_OpsItemAccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
7027
7053
|
const body = parsedOutput.body;
|
|
7028
7054
|
const deserialized = smithyClient._json(body);
|
|
@@ -12538,6 +12564,7 @@ exports.MalformedResourcePolicyDocumentException = MalformedResourcePolicyDocume
|
|
|
12538
12564
|
exports.ManagedStatus = ManagedStatus;
|
|
12539
12565
|
exports.MaxDocumentSizeExceeded = MaxDocumentSizeExceeded;
|
|
12540
12566
|
exports.ModifyDocumentPermissionCommand = ModifyDocumentPermissionCommand;
|
|
12567
|
+
exports.NoLongerSupportedException = NoLongerSupportedException;
|
|
12541
12568
|
exports.NodeAggregatorType = NodeAggregatorType;
|
|
12542
12569
|
exports.NodeAttributeName = NodeAttributeName;
|
|
12543
12570
|
exports.NodeFilterKey = NodeFilterKey;
|
|
@@ -546,6 +546,20 @@ export class MaxDocumentSizeExceeded extends __BaseException {
|
|
|
546
546
|
this.Message = opts.Message;
|
|
547
547
|
}
|
|
548
548
|
}
|
|
549
|
+
export class NoLongerSupportedException extends __BaseException {
|
|
550
|
+
name = "NoLongerSupportedException";
|
|
551
|
+
$fault = "client";
|
|
552
|
+
Message;
|
|
553
|
+
constructor(opts) {
|
|
554
|
+
super({
|
|
555
|
+
name: "NoLongerSupportedException",
|
|
556
|
+
$fault: "client",
|
|
557
|
+
...opts,
|
|
558
|
+
});
|
|
559
|
+
Object.setPrototypeOf(this, NoLongerSupportedException.prototype);
|
|
560
|
+
this.Message = opts.Message;
|
|
561
|
+
}
|
|
562
|
+
}
|
|
549
563
|
export class IdempotentParameterMismatch extends __BaseException {
|
|
550
564
|
name = "IdempotentParameterMismatch";
|
|
551
565
|
$fault = "client";
|
|
@@ -1458,7 +1472,3 @@ export const DescribeMaintenanceWindowExecutionTaskInvocationsResultFilterSensit
|
|
|
1458
1472
|
WindowExecutionTaskInvocationIdentities: obj.WindowExecutionTaskInvocationIdentities.map((item) => MaintenanceWindowExecutionTaskInvocationIdentityFilterSensitiveLog(item)),
|
|
1459
1473
|
}),
|
|
1460
1474
|
});
|
|
1461
|
-
export const MaintenanceWindowIdentityFilterSensitiveLog = (obj) => ({
|
|
1462
|
-
...obj,
|
|
1463
|
-
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
1464
|
-
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
|
-
import {
|
|
2
|
+
import { PatchSourceFilterSensitiveLog, } from "./models_0";
|
|
3
3
|
import { SSMServiceException as __BaseException } from "./SSMServiceException";
|
|
4
4
|
export const MaintenanceWindowResourceType = {
|
|
5
5
|
Instance: "INSTANCE",
|
|
@@ -889,6 +889,10 @@ export class ResourcePolicyLimitExceededException extends __BaseException {
|
|
|
889
889
|
this.Message = opts.Message;
|
|
890
890
|
}
|
|
891
891
|
}
|
|
892
|
+
export const MaintenanceWindowIdentityFilterSensitiveLog = (obj) => ({
|
|
893
|
+
...obj,
|
|
894
|
+
...(obj.Description && { Description: SENSITIVE_STRING }),
|
|
895
|
+
});
|
|
892
896
|
export const DescribeMaintenanceWindowsResultFilterSensitiveLog = (obj) => ({
|
|
893
897
|
...obj,
|
|
894
898
|
...(obj.WindowIdentities && {
|
|
@@ -2,7 +2,7 @@ import { awsExpectUnion as __expectUnion, loadRestJsonErrorCode, parseJsonBody a
|
|
|
2
2
|
import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
3
3
|
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectString as __expectString, parseEpochTimestamp as __parseEpochTimestamp, take, withBaseException, } from "@smithy/smithy-client";
|
|
4
4
|
import { v4 as generateIdempotencyToken } from "@smithy/uuid";
|
|
5
|
-
import { AccessDeniedException, AlreadyExistsException, AssociatedInstances, AssociationAlreadyExists, AssociationDoesNotExist, AssociationExecutionDoesNotExist, AssociationLimitExceeded, AutomationExecutionNotFoundException, DocumentAlreadyExists, DocumentLimitExceeded, DoesNotExistException, DuplicateInstanceId, IdempotentParameterMismatch, InternalServerError, InvalidActivation, InvalidActivationId, InvalidAssociationVersion, InvalidCommandId, InvalidDeleteInventoryParametersException, InvalidDeletionIdException, InvalidDocument, InvalidDocumentContent, InvalidDocumentOperation, InvalidDocumentSchemaVersion, InvalidDocumentVersion, InvalidFilter, InvalidFilterKey, InvalidFilterValue, InvalidInstanceId, InvalidInstanceInformationFilterValue, InvalidInstancePropertyFilterValue, InvalidInventoryRequestException, InvalidNextToken, InvalidOptionException, InvalidOutputLocation, InvalidParameters, InvalidPermissionType, InvalidResourceId, InvalidResourceType, InvalidSchedule, InvalidTag, InvalidTarget, InvalidTargetMaps, InvalidTypeNameException, MalformedResourcePolicyDocumentException, MaxDocumentSizeExceeded, OpsItemAccessDeniedException, OpsItemAlreadyExistsException, OpsItemConflictException, OpsItemInvalidParameterException, OpsItemLimitExceededException, OpsItemNotFoundException, OpsItemRelatedItemAlreadyExistsException, OpsMetadataAlreadyExistsException, OpsMetadataInvalidArgumentException, OpsMetadataLimitExceededException, OpsMetadataNotFoundException, OpsMetadataTooManyUpdatesException, ParameterNotFound, ResourceDataSyncAlreadyExistsException, ResourceDataSyncCountExceededException, ResourceDataSyncInvalidConfigurationException, ResourceDataSyncNotFoundException, ResourceInUseException, ResourceLimitExceededException, ResourceNotFoundException, ResourcePolicyConflictException, ResourcePolicyInvalidParameterException, ResourcePolicyNotFoundException, TargetInUseException, TooManyTagsError, TooManyUpdates, UnsupportedOperatingSystem, UnsupportedPlatformType, } from "../models/models_0";
|
|
5
|
+
import { AccessDeniedException, AlreadyExistsException, AssociatedInstances, AssociationAlreadyExists, AssociationDoesNotExist, AssociationExecutionDoesNotExist, AssociationLimitExceeded, AutomationExecutionNotFoundException, DocumentAlreadyExists, DocumentLimitExceeded, DoesNotExistException, DuplicateInstanceId, IdempotentParameterMismatch, InternalServerError, InvalidActivation, InvalidActivationId, InvalidAssociationVersion, InvalidCommandId, InvalidDeleteInventoryParametersException, InvalidDeletionIdException, InvalidDocument, InvalidDocumentContent, InvalidDocumentOperation, InvalidDocumentSchemaVersion, InvalidDocumentVersion, InvalidFilter, InvalidFilterKey, InvalidFilterValue, InvalidInstanceId, InvalidInstanceInformationFilterValue, InvalidInstancePropertyFilterValue, InvalidInventoryRequestException, InvalidNextToken, InvalidOptionException, InvalidOutputLocation, InvalidParameters, InvalidPermissionType, InvalidResourceId, InvalidResourceType, InvalidSchedule, InvalidTag, InvalidTarget, InvalidTargetMaps, InvalidTypeNameException, MalformedResourcePolicyDocumentException, MaxDocumentSizeExceeded, NoLongerSupportedException, OpsItemAccessDeniedException, OpsItemAlreadyExistsException, OpsItemConflictException, OpsItemInvalidParameterException, OpsItemLimitExceededException, OpsItemNotFoundException, OpsItemRelatedItemAlreadyExistsException, OpsMetadataAlreadyExistsException, OpsMetadataInvalidArgumentException, OpsMetadataLimitExceededException, OpsMetadataNotFoundException, OpsMetadataTooManyUpdatesException, ParameterNotFound, ResourceDataSyncAlreadyExistsException, ResourceDataSyncCountExceededException, ResourceDataSyncInvalidConfigurationException, ResourceDataSyncNotFoundException, ResourceInUseException, ResourceLimitExceededException, ResourceNotFoundException, ResourcePolicyConflictException, ResourcePolicyInvalidParameterException, ResourcePolicyNotFoundException, TargetInUseException, TooManyTagsError, TooManyUpdates, UnsupportedOperatingSystem, UnsupportedPlatformType, } from "../models/models_0";
|
|
6
6
|
import { ComplianceTypeCountLimitExceededException, CustomSchemaCountLimitExceededException, DocumentPermissionLimit, HierarchyLevelLimitExceededException, HierarchyTypeMismatchException, IncompatiblePolicyException, InvalidAggregatorException, InvalidAllowedPatternException, InvalidDocumentType, InvalidFilterOption, InvalidInventoryGroupException, InvalidInventoryItemContextException, InvalidItemContentException, InvalidKeyId, InvalidPluginName, InvalidPolicyAttributeException, InvalidPolicyTypeException, InvalidResultAttributeException, InvocationDoesNotExist, ItemContentMismatchException, ItemSizeLimitExceededException, OpsItemRelatedItemAssociationNotFoundException, ParameterAlreadyExists, ParameterLimitExceeded, ParameterMaxVersionLimitExceeded, ParameterPatternMismatchException, ParameterVersionLabelLimitExceeded, ParameterVersionNotFound, PoliciesLimitExceededException, ResourcePolicyLimitExceededException, ServiceSettingNotFound, SubTypeCountLimitExceededException, ThrottlingException, TotalSizeLimitExceededException, UnsupportedCalendarException, UnsupportedFeatureRequiredException, UnsupportedInventoryItemContextException, UnsupportedInventorySchemaVersionException, UnsupportedOperationException, UnsupportedParameterType, ValidationException, } from "../models/models_1";
|
|
7
7
|
import { AssociationVersionLimitExceeded, AutomationDefinitionNotApprovedException, AutomationDefinitionNotFoundException, AutomationDefinitionVersionNotFoundException, AutomationExecutionLimitExceededException, AutomationStepNotFoundException, DocumentVersionLimitExceeded, DuplicateDocumentContent, DuplicateDocumentVersionName, FeatureNotAvailableException, InvalidAssociation, InvalidAutomationExecutionParametersException, InvalidAutomationSignalException, InvalidAutomationStatusUpdateException, InvalidNotificationConfig, InvalidOutputFolder, InvalidRole, InvalidUpdate, OpsMetadataKeyLimitExceededException, ResourceDataSyncConflictException, ServiceQuotaExceededException, StatusUnchanged, TargetNotConnected, } from "../models/models_2";
|
|
8
8
|
import { SSMServiceException as __BaseException } from "../models/SSMServiceException";
|
|
@@ -2877,6 +2877,9 @@ const de_CommandError = async (output, context) => {
|
|
|
2877
2877
|
case "MaxDocumentSizeExceeded":
|
|
2878
2878
|
case "com.amazonaws.ssm#MaxDocumentSizeExceeded":
|
|
2879
2879
|
throw await de_MaxDocumentSizeExceededRes(parsedOutput, context);
|
|
2880
|
+
case "NoLongerSupportedException":
|
|
2881
|
+
case "com.amazonaws.ssm#NoLongerSupportedException":
|
|
2882
|
+
throw await de_NoLongerSupportedExceptionRes(parsedOutput, context);
|
|
2880
2883
|
case "IdempotentParameterMismatch":
|
|
2881
2884
|
case "com.amazonaws.ssm#IdempotentParameterMismatch":
|
|
2882
2885
|
throw await de_IdempotentParameterMismatchRes(parsedOutput, context);
|
|
@@ -3975,6 +3978,15 @@ const de_MaxDocumentSizeExceededRes = async (parsedOutput, context) => {
|
|
|
3975
3978
|
});
|
|
3976
3979
|
return __decorateServiceException(exception, body);
|
|
3977
3980
|
};
|
|
3981
|
+
const de_NoLongerSupportedExceptionRes = async (parsedOutput, context) => {
|
|
3982
|
+
const body = parsedOutput.body;
|
|
3983
|
+
const deserialized = _json(body);
|
|
3984
|
+
const exception = new NoLongerSupportedException({
|
|
3985
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
3986
|
+
...deserialized,
|
|
3987
|
+
});
|
|
3988
|
+
return __decorateServiceException(exception, body);
|
|
3989
|
+
};
|
|
3978
3990
|
const de_OpsItemAccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
3979
3991
|
const body = parsedOutput.body;
|
|
3980
3992
|
const deserialized = _json(body);
|
|
@@ -169,6 +169,9 @@ declare const CreateDocumentCommand_base: {
|
|
|
169
169
|
* @throws {@link MaxDocumentSizeExceeded} (client fault)
|
|
170
170
|
* <p>The size limit of a document is 64 KB.</p>
|
|
171
171
|
*
|
|
172
|
+
* @throws {@link NoLongerSupportedException} (client fault)
|
|
173
|
+
* <p>The requested operation is no longer supported by Systems Manager.</p>
|
|
174
|
+
*
|
|
172
175
|
* @throws {@link TooManyUpdates} (client fault)
|
|
173
176
|
* <p>There are concurrent updates for a resource that supports one update at a time.</p>
|
|
174
177
|
*
|
|
@@ -27,7 +27,13 @@ declare const ListDocumentMetadataHistoryCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <
|
|
30
|
+
* <important>
|
|
31
|
+
* <p>Amazon Web Services Systems Manager Change Manager will no longer be open to new
|
|
32
|
+
* customers starting November 7, 2025. If you would like to use Change Manager, sign up prior to that date. Existing customers can
|
|
33
|
+
* continue to use the service as normal. For more information, see
|
|
34
|
+
* <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/change-manager-availability-change.html">Amazon Web Services Systems Manager Change Manager availability change</a>.</p>
|
|
35
|
+
* </important>
|
|
36
|
+
* <p>Information about approval reviews for a version of a change template in Change Manager.</p>
|
|
31
37
|
* @example
|
|
32
38
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
39
|
* ```javascript
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { RegisterPatchBaselineForPatchGroupRequest } from "../models/
|
|
4
|
-
import { RegisterPatchBaselineForPatchGroupResult } from "../models/models_2";
|
|
3
|
+
import { RegisterPatchBaselineForPatchGroupRequest, RegisterPatchBaselineForPatchGroupResult } from "../models/models_2";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
@@ -27,7 +27,13 @@ declare const StartChangeRequestExecutionCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <
|
|
30
|
+
* <important>
|
|
31
|
+
* <p>Amazon Web Services Systems Manager Change Manager will no longer be open to new
|
|
32
|
+
* customers starting November 7, 2025. If you would like to use Change Manager, sign up prior to that date. Existing customers can
|
|
33
|
+
* continue to use the service as normal. For more information, see
|
|
34
|
+
* <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/change-manager-availability-change.html">Amazon Web Services Systems Manager Change Manager availability change</a>.</p>
|
|
35
|
+
* </important>
|
|
36
|
+
* <p>Creates a change request for Change Manager. The Automation runbooks specified in the
|
|
31
37
|
* change request run only after all required approvals for the change request have been
|
|
32
38
|
* received.</p>
|
|
33
39
|
* @example
|
|
@@ -163,6 +169,9 @@ declare const StartChangeRequestExecutionCommand_base: {
|
|
|
163
169
|
* example, they may not match the set of parameters permitted for the specified Automation
|
|
164
170
|
* document.</p>
|
|
165
171
|
*
|
|
172
|
+
* @throws {@link NoLongerSupportedException} (client fault)
|
|
173
|
+
* <p>The requested operation is no longer supported by Systems Manager.</p>
|
|
174
|
+
*
|
|
166
175
|
* @throws {@link SSMServiceException}
|
|
167
176
|
* <p>Base exception class for all service exceptions from SSM service.</p>
|
|
168
177
|
*
|
|
@@ -27,7 +27,13 @@ declare const UpdateDocumentMetadataCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <
|
|
30
|
+
* <important>
|
|
31
|
+
* <p>Amazon Web Services Systems Manager Change Manager will no longer be open to new
|
|
32
|
+
* customers starting November 7, 2025. If you would like to use Change Manager, sign up prior to that date. Existing customers can
|
|
33
|
+
* continue to use the service as normal. For more information, see
|
|
34
|
+
* <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/change-manager-availability-change.html">Amazon Web Services Systems Manager Change Manager availability change</a>.</p>
|
|
35
|
+
* </important>
|
|
36
|
+
* <p>Updates information related to approval reviews for a specific version of a change template
|
|
31
37
|
* in Change Manager.</p>
|
|
32
38
|
* @example
|
|
33
39
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -1168,7 +1168,8 @@ export interface CreateAssociationRequest {
|
|
|
1168
1168
|
* association. Use this action to create an association in multiple Regions and multiple
|
|
1169
1169
|
* accounts.</p>
|
|
1170
1170
|
* <note>
|
|
1171
|
-
* <p>The <code>IncludeChildOrganizationUnits</code> parameter is not supported by State
|
|
1171
|
+
* <p>The <code>IncludeChildOrganizationUnits</code> parameter is not supported by State
|
|
1172
|
+
* Manager.</p>
|
|
1172
1173
|
* </note>
|
|
1173
1174
|
* @public
|
|
1174
1175
|
*/
|
|
@@ -2511,6 +2512,19 @@ export declare class MaxDocumentSizeExceeded extends __BaseException {
|
|
|
2511
2512
|
*/
|
|
2512
2513
|
constructor(opts: __ExceptionOptionType<MaxDocumentSizeExceeded, __BaseException>);
|
|
2513
2514
|
}
|
|
2515
|
+
/**
|
|
2516
|
+
* <p>The requested operation is no longer supported by Systems Manager.</p>
|
|
2517
|
+
* @public
|
|
2518
|
+
*/
|
|
2519
|
+
export declare class NoLongerSupportedException extends __BaseException {
|
|
2520
|
+
readonly name: "NoLongerSupportedException";
|
|
2521
|
+
readonly $fault: "client";
|
|
2522
|
+
Message?: string | undefined;
|
|
2523
|
+
/**
|
|
2524
|
+
* @internal
|
|
2525
|
+
*/
|
|
2526
|
+
constructor(opts: __ExceptionOptionType<NoLongerSupportedException, __BaseException>);
|
|
2527
|
+
}
|
|
2514
2528
|
/**
|
|
2515
2529
|
* @public
|
|
2516
2530
|
*/
|
|
@@ -2743,17 +2757,23 @@ export interface CreateOpsItemRequest {
|
|
|
2743
2757
|
* </li>
|
|
2744
2758
|
* <li>
|
|
2745
2759
|
* <p>
|
|
2746
|
-
* <code>/aws/
|
|
2760
|
+
* <code>/aws/insight</code>
|
|
2747
2761
|
* </p>
|
|
2748
|
-
* <p>This type of OpsItem is used by
|
|
2749
|
-
*
|
|
2762
|
+
* <p>This type of OpsItem is used by OpsCenter for aggregating and reporting on duplicate
|
|
2763
|
+
* OpsItems. </p>
|
|
2750
2764
|
* </li>
|
|
2751
2765
|
* <li>
|
|
2752
2766
|
* <p>
|
|
2753
|
-
* <code>/aws/
|
|
2767
|
+
* <code>/aws/changerequest</code>
|
|
2754
2768
|
* </p>
|
|
2755
|
-
* <p>This type of OpsItem is used by
|
|
2756
|
-
*
|
|
2769
|
+
* <p>This type of OpsItem is used by Change Manager for reviewing and approving or rejecting change
|
|
2770
|
+
* requests. </p>
|
|
2771
|
+
* <important>
|
|
2772
|
+
* <p>Amazon Web Services Systems Manager Change Manager will no longer be open to new
|
|
2773
|
+
* customers starting November 7, 2025. If you would like to use Change Manager, sign up prior to that date. Existing customers can
|
|
2774
|
+
* continue to use the service as normal. For more information, see
|
|
2775
|
+
* <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/change-manager-availability-change.html">Amazon Web Services Systems Manager Change Manager availability change</a>.</p>
|
|
2776
|
+
* </important>
|
|
2757
2777
|
* </li>
|
|
2758
2778
|
* </ul>
|
|
2759
2779
|
* @public
|
|
@@ -3129,6 +3149,10 @@ export interface PatchRule {
|
|
|
3129
3149
|
* <p>The number of days after the release date of each patch matched by the rule that the patch
|
|
3130
3150
|
* is marked as approved in the patch baseline. For example, a value of <code>7</code> means that
|
|
3131
3151
|
* patches are approved seven days after they are released.</p>
|
|
3152
|
+
* <p>Patch Manager evaluates patch release dates using Coordinated Universal Time (UTC). If the
|
|
3153
|
+
* day represented by <code>7</code> is <code>2025-11-16</code>, patches released between
|
|
3154
|
+
* <code>2025-11-16T00:00:00Z</code> and <code>2025-11-16T23:59:59Z</code> will be included in the
|
|
3155
|
+
* approval.</p>
|
|
3132
3156
|
* <p>This parameter is marked as <code>Required: No</code>, but your request must include a value
|
|
3133
3157
|
* for either <code>ApproveAfterDays</code> or <code>ApproveUntilDate</code>.</p>
|
|
3134
3158
|
* <p>Not supported for Debian Server or Ubuntu Server.</p>
|
|
@@ -3146,7 +3170,11 @@ export interface PatchRule {
|
|
|
3146
3170
|
* <p>The cutoff date for auto approval of released patches. Any patches released on or before
|
|
3147
3171
|
* this date are installed automatically.</p>
|
|
3148
3172
|
* <p>Enter dates in the format <code>YYYY-MM-DD</code>. For example,
|
|
3149
|
-
* <code>
|
|
3173
|
+
* <code>2025-11-16</code>.</p>
|
|
3174
|
+
* <p>Patch Manager evaluates patch release dates using Coordinated Universal Time (UTC). If you
|
|
3175
|
+
* enter the date <code>2025-11-16</code>, patches released between
|
|
3176
|
+
* <code>2025-11-16T00:00:00Z</code> and <code>2025-11-16T23:59:59Z</code> will be included in the
|
|
3177
|
+
* approval.</p>
|
|
3150
3178
|
* <p>This parameter is marked as <code>Required: No</code>, but your request must include a value
|
|
3151
3179
|
* for either <code>ApproveUntilDate</code> or <code>ApproveAfterDays</code>.</p>
|
|
3152
3180
|
* <p>Not supported for Debian Server or Ubuntu Server.</p>
|
|
@@ -8085,78 +8113,6 @@ export interface DescribeMaintenanceWindowsRequest {
|
|
|
8085
8113
|
*/
|
|
8086
8114
|
NextToken?: string | undefined;
|
|
8087
8115
|
}
|
|
8088
|
-
/**
|
|
8089
|
-
* <p>Information about the maintenance window.</p>
|
|
8090
|
-
* @public
|
|
8091
|
-
*/
|
|
8092
|
-
export interface MaintenanceWindowIdentity {
|
|
8093
|
-
/**
|
|
8094
|
-
* <p>The ID of the maintenance window.</p>
|
|
8095
|
-
* @public
|
|
8096
|
-
*/
|
|
8097
|
-
WindowId?: string | undefined;
|
|
8098
|
-
/**
|
|
8099
|
-
* <p>The name of the maintenance window.</p>
|
|
8100
|
-
* @public
|
|
8101
|
-
*/
|
|
8102
|
-
Name?: string | undefined;
|
|
8103
|
-
/**
|
|
8104
|
-
* <p>A description of the maintenance window.</p>
|
|
8105
|
-
* @public
|
|
8106
|
-
*/
|
|
8107
|
-
Description?: string | undefined;
|
|
8108
|
-
/**
|
|
8109
|
-
* <p>Indicates whether the maintenance window is enabled.</p>
|
|
8110
|
-
* @public
|
|
8111
|
-
*/
|
|
8112
|
-
Enabled?: boolean | undefined;
|
|
8113
|
-
/**
|
|
8114
|
-
* <p>The duration of the maintenance window in hours.</p>
|
|
8115
|
-
* @public
|
|
8116
|
-
*/
|
|
8117
|
-
Duration?: number | undefined;
|
|
8118
|
-
/**
|
|
8119
|
-
* <p>The number of hours before the end of the maintenance window that Amazon Web Services Systems Manager stops scheduling
|
|
8120
|
-
* new tasks for execution.</p>
|
|
8121
|
-
* @public
|
|
8122
|
-
*/
|
|
8123
|
-
Cutoff?: number | undefined;
|
|
8124
|
-
/**
|
|
8125
|
-
* <p>The schedule of the maintenance window in the form of a cron or rate expression.</p>
|
|
8126
|
-
* @public
|
|
8127
|
-
*/
|
|
8128
|
-
Schedule?: string | undefined;
|
|
8129
|
-
/**
|
|
8130
|
-
* <p>The time zone that the scheduled maintenance window executions are based on, in Internet
|
|
8131
|
-
* Assigned Numbers Authority (IANA) format.</p>
|
|
8132
|
-
* @public
|
|
8133
|
-
*/
|
|
8134
|
-
ScheduleTimezone?: string | undefined;
|
|
8135
|
-
/**
|
|
8136
|
-
* <p>The number of days to wait to run a maintenance window after the scheduled cron expression
|
|
8137
|
-
* date and time.</p>
|
|
8138
|
-
* @public
|
|
8139
|
-
*/
|
|
8140
|
-
ScheduleOffset?: number | undefined;
|
|
8141
|
-
/**
|
|
8142
|
-
* <p>The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled
|
|
8143
|
-
* to become inactive.</p>
|
|
8144
|
-
* @public
|
|
8145
|
-
*/
|
|
8146
|
-
EndDate?: string | undefined;
|
|
8147
|
-
/**
|
|
8148
|
-
* <p>The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled
|
|
8149
|
-
* to become active.</p>
|
|
8150
|
-
* @public
|
|
8151
|
-
*/
|
|
8152
|
-
StartDate?: string | undefined;
|
|
8153
|
-
/**
|
|
8154
|
-
* <p>The next time the maintenance window will actually run, taking into account any specified
|
|
8155
|
-
* times for the maintenance window to become active or inactive.</p>
|
|
8156
|
-
* @public
|
|
8157
|
-
*/
|
|
8158
|
-
NextExecutionTime?: string | undefined;
|
|
8159
|
-
}
|
|
8160
8116
|
/**
|
|
8161
8117
|
* @internal
|
|
8162
8118
|
*/
|
|
@@ -8237,7 +8193,3 @@ export declare const MaintenanceWindowExecutionTaskInvocationIdentityFilterSensi
|
|
|
8237
8193
|
* @internal
|
|
8238
8194
|
*/
|
|
8239
8195
|
export declare const DescribeMaintenanceWindowExecutionTaskInvocationsResultFilterSensitiveLog: (obj: DescribeMaintenanceWindowExecutionTaskInvocationsResult) => any;
|
|
8240
|
-
/**
|
|
8241
|
-
* @internal
|
|
8242
|
-
*/
|
|
8243
|
-
export declare const MaintenanceWindowIdentityFilterSensitiveLog: (obj: MaintenanceWindowIdentity) => any;
|
|
@@ -1,6 +1,78 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { AccessRequestStatus, AccessType, AlarmConfiguration, AlarmStateInformation, AssociationComplianceSeverity, AssociationOverview, AssociationSyncCompliance, AutomationExecutionStatus, AutomationSubtype, DocumentFormat, DocumentHashType, DocumentPermissionType, DocumentRequires, DocumentStatus, DocumentType, ExecutionMode, InstanceAssociationOutputLocation, MaintenanceWindowExecutionStatus, MaintenanceWindowFilter,
|
|
2
|
+
import { AccessRequestStatus, AccessType, AlarmConfiguration, AlarmStateInformation, AssociationComplianceSeverity, AssociationOverview, AssociationSyncCompliance, AutomationExecutionStatus, AutomationSubtype, DocumentFormat, DocumentHashType, DocumentPermissionType, DocumentRequires, DocumentStatus, DocumentType, ExecutionMode, InstanceAssociationOutputLocation, MaintenanceWindowExecutionStatus, MaintenanceWindowFilter, MaintenanceWindowTaskType, MetadataValue, OperatingSystem, OpsItemDataValue, OpsItemNotification, PatchAction, PatchComplianceLevel, PatchComplianceStatus, PatchFilterGroup, PatchOrchestratorFilter, PatchRuleGroup, PatchSource, PlatformType, RelatedOpsItem, ResolvedTargets, ResourceDataSyncAwsOrganizationsSource, ResourceDataSyncS3Destination, ResourceType, ResourceTypeForTagging, ReviewStatus, Runbook, StepExecution, Tag, Target, TargetLocation } from "./models_0";
|
|
3
3
|
import { SSMServiceException as __BaseException } from "./SSMServiceException";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Information about the maintenance window.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface MaintenanceWindowIdentity {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The ID of the maintenance window.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
WindowId?: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The name of the maintenance window.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
Name?: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>A description of the maintenance window.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
Description?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* <p>Indicates whether the maintenance window is enabled.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
Enabled?: boolean | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p>The duration of the maintenance window in hours.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
Duration?: number | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* <p>The number of hours before the end of the maintenance window that Amazon Web Services Systems Manager stops scheduling
|
|
36
|
+
* new tasks for execution.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
Cutoff?: number | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* <p>The schedule of the maintenance window in the form of a cron or rate expression.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
Schedule?: string | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* <p>The time zone that the scheduled maintenance window executions are based on, in Internet
|
|
47
|
+
* Assigned Numbers Authority (IANA) format.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
ScheduleTimezone?: string | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* <p>The number of days to wait to run a maintenance window after the scheduled cron expression
|
|
53
|
+
* date and time.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
ScheduleOffset?: number | undefined;
|
|
57
|
+
/**
|
|
58
|
+
* <p>The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled
|
|
59
|
+
* to become inactive.</p>
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
EndDate?: string | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* <p>The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled
|
|
65
|
+
* to become active.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
StartDate?: string | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* <p>The next time the maintenance window will actually run, taking into account any specified
|
|
71
|
+
* times for the maintenance window to become active or inactive.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
NextExecutionTime?: string | undefined;
|
|
75
|
+
}
|
|
4
76
|
/**
|
|
5
77
|
* @public
|
|
6
78
|
*/
|
|
@@ -2558,11 +2630,10 @@ export interface GetDeployablePatchSnapshotForInstanceRequest {
|
|
|
2558
2630
|
*/
|
|
2559
2631
|
BaselineOverride?: BaselineOverride | undefined;
|
|
2560
2632
|
/**
|
|
2561
|
-
* <p>Specifies whether to use S3 dualstack endpoints
|
|
2562
|
-
*
|
|
2563
|
-
*
|
|
2564
|
-
*
|
|
2565
|
-
* IPv6-only environments. </p>
|
|
2633
|
+
* <p>Specifies whether to use S3 dualstack endpoints for the patch snapshot download URL. Set to
|
|
2634
|
+
* <code>true</code> to receive a presigned URL that supports both IPv4 and IPv6 connectivity. Set
|
|
2635
|
+
* to <code>false</code> to use standard IPv4-only endpoints. Default is <code>false</code>. This
|
|
2636
|
+
* parameter is required for managed nodes in IPv6-only environments. </p>
|
|
2566
2637
|
* @public
|
|
2567
2638
|
*/
|
|
2568
2639
|
UseS3DualStackEndpoint?: boolean | undefined;
|
|
@@ -9259,20 +9330,9 @@ export interface RegisterDefaultPatchBaselineResult {
|
|
|
9259
9330
|
BaselineId?: string | undefined;
|
|
9260
9331
|
}
|
|
9261
9332
|
/**
|
|
9262
|
-
* @
|
|
9333
|
+
* @internal
|
|
9263
9334
|
*/
|
|
9264
|
-
export
|
|
9265
|
-
/**
|
|
9266
|
-
* <p>The ID of the patch baseline to register with the patch group.</p>
|
|
9267
|
-
* @public
|
|
9268
|
-
*/
|
|
9269
|
-
BaselineId: string | undefined;
|
|
9270
|
-
/**
|
|
9271
|
-
* <p>The name of the patch group to be registered with the patch baseline.</p>
|
|
9272
|
-
* @public
|
|
9273
|
-
*/
|
|
9274
|
-
PatchGroup: string | undefined;
|
|
9275
|
-
}
|
|
9335
|
+
export declare const MaintenanceWindowIdentityFilterSensitiveLog: (obj: MaintenanceWindowIdentity) => any;
|
|
9276
9336
|
/**
|
|
9277
9337
|
* @internal
|
|
9278
9338
|
*/
|
|
@@ -2,6 +2,21 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
|
|
|
2
2
|
import { AlarmConfiguration, AssociationComplianceSeverity, AssociationDescription, AssociationStatus, AssociationSyncCompliance, AttachmentsSource, DocumentDescription, DocumentFormat, DocumentHashType, ExecutionMode, InstanceAssociationOutputLocation, MaintenanceWindowTaskType, MetadataValue, OperatingSystem, OpsItemDataValue, OpsItemNotification, PatchAction, PatchComplianceLevel, PatchComplianceStatus, PatchFilterGroup, PatchRuleGroup, PatchSource, RelatedOpsItem, ResourceDataSyncSource, ResourceTypeForTagging, Runbook, Tag, Target, TargetLocation } from "./models_0";
|
|
3
3
|
import { CloudWatchOutputConfig, Command, DocumentReviewCommentSource, InventoryFilter, InventoryGroup, LoggingInfo, MaintenanceWindowResourceType, MaintenanceWindowTaskCutoffBehavior, MaintenanceWindowTaskInvocationParameters, MaintenanceWindowTaskParameterValueExpression, NodeAggregatorType, NodeAttributeName, NodeFilter, NodeTypeName, NotificationConfig, OpsFilter, OpsItemStatus, OpsResultAttribute, ResultAttribute, ServiceSetting } from "./models_1";
|
|
4
4
|
import { SSMServiceException as __BaseException } from "./SSMServiceException";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface RegisterPatchBaselineForPatchGroupRequest {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The ID of the patch baseline to register with the patch group.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
BaselineId: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The name of the patch group to be registered with the patch baseline.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
PatchGroup: string | undefined;
|
|
19
|
+
}
|
|
5
20
|
/**
|
|
6
21
|
* @public
|
|
7
22
|
*/
|
|
@@ -1653,7 +1668,8 @@ export interface UpdateAssociationRequest {
|
|
|
1653
1668
|
* association. Use this action to update an association in multiple Regions and multiple
|
|
1654
1669
|
* accounts.</p>
|
|
1655
1670
|
* <note>
|
|
1656
|
-
* <p>The <code>IncludeChildOrganizationUnits</code> parameter is not supported by State
|
|
1671
|
+
* <p>The <code>IncludeChildOrganizationUnits</code> parameter is not supported by State
|
|
1672
|
+
* Manager.</p>
|
|
1657
1673
|
* </note>
|
|
1658
1674
|
* @public
|
|
1659
1675
|
*/
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
RegisterPatchBaselineForPatchGroupRequest,
|
|
5
|
+
RegisterPatchBaselineForPatchGroupResult,
|
|
6
|
+
} from "../models/models_2";
|
|
5
7
|
import {
|
|
6
8
|
ServiceInputTypes,
|
|
7
9
|
ServiceOutputTypes,
|
|
@@ -640,6 +640,14 @@ export declare class MaxDocumentSizeExceeded extends __BaseException {
|
|
|
640
640
|
opts: __ExceptionOptionType<MaxDocumentSizeExceeded, __BaseException>
|
|
641
641
|
);
|
|
642
642
|
}
|
|
643
|
+
export declare class NoLongerSupportedException extends __BaseException {
|
|
644
|
+
readonly name: "NoLongerSupportedException";
|
|
645
|
+
readonly $fault: "client";
|
|
646
|
+
Message?: string | undefined;
|
|
647
|
+
constructor(
|
|
648
|
+
opts: __ExceptionOptionType<NoLongerSupportedException, __BaseException>
|
|
649
|
+
);
|
|
650
|
+
}
|
|
643
651
|
export interface CreateMaintenanceWindowRequest {
|
|
644
652
|
Name: string | undefined;
|
|
645
653
|
Description?: string | undefined;
|
|
@@ -2120,20 +2128,6 @@ export interface DescribeMaintenanceWindowsRequest {
|
|
|
2120
2128
|
MaxResults?: number | undefined;
|
|
2121
2129
|
NextToken?: string | undefined;
|
|
2122
2130
|
}
|
|
2123
|
-
export interface MaintenanceWindowIdentity {
|
|
2124
|
-
WindowId?: string | undefined;
|
|
2125
|
-
Name?: string | undefined;
|
|
2126
|
-
Description?: string | undefined;
|
|
2127
|
-
Enabled?: boolean | undefined;
|
|
2128
|
-
Duration?: number | undefined;
|
|
2129
|
-
Cutoff?: number | undefined;
|
|
2130
|
-
Schedule?: string | undefined;
|
|
2131
|
-
ScheduleTimezone?: string | undefined;
|
|
2132
|
-
ScheduleOffset?: number | undefined;
|
|
2133
|
-
EndDate?: string | undefined;
|
|
2134
|
-
StartDate?: string | undefined;
|
|
2135
|
-
NextExecutionTime?: string | undefined;
|
|
2136
|
-
}
|
|
2137
2131
|
export declare const CreateAssociationRequestFilterSensitiveLog: (
|
|
2138
2132
|
obj: CreateAssociationRequest
|
|
2139
2133
|
) => any;
|
|
@@ -2192,6 +2186,3 @@ export declare const MaintenanceWindowExecutionTaskInvocationIdentityFilterSensi
|
|
|
2192
2186
|
export declare const DescribeMaintenanceWindowExecutionTaskInvocationsResultFilterSensitiveLog: (
|
|
2193
2187
|
obj: DescribeMaintenanceWindowExecutionTaskInvocationsResult
|
|
2194
2188
|
) => any;
|
|
2195
|
-
export declare const MaintenanceWindowIdentityFilterSensitiveLog: (
|
|
2196
|
-
obj: MaintenanceWindowIdentity
|
|
2197
|
-
) => any;
|
|
@@ -19,7 +19,6 @@ import {
|
|
|
19
19
|
InstanceAssociationOutputLocation,
|
|
20
20
|
MaintenanceWindowExecutionStatus,
|
|
21
21
|
MaintenanceWindowFilter,
|
|
22
|
-
MaintenanceWindowIdentity,
|
|
23
22
|
MaintenanceWindowTaskType,
|
|
24
23
|
MetadataValue,
|
|
25
24
|
OperatingSystem,
|
|
@@ -47,6 +46,20 @@ import {
|
|
|
47
46
|
TargetLocation,
|
|
48
47
|
} from "./models_0";
|
|
49
48
|
import { SSMServiceException as __BaseException } from "./SSMServiceException";
|
|
49
|
+
export interface MaintenanceWindowIdentity {
|
|
50
|
+
WindowId?: string | undefined;
|
|
51
|
+
Name?: string | undefined;
|
|
52
|
+
Description?: string | undefined;
|
|
53
|
+
Enabled?: boolean | undefined;
|
|
54
|
+
Duration?: number | undefined;
|
|
55
|
+
Cutoff?: number | undefined;
|
|
56
|
+
Schedule?: string | undefined;
|
|
57
|
+
ScheduleTimezone?: string | undefined;
|
|
58
|
+
ScheduleOffset?: number | undefined;
|
|
59
|
+
EndDate?: string | undefined;
|
|
60
|
+
StartDate?: string | undefined;
|
|
61
|
+
NextExecutionTime?: string | undefined;
|
|
62
|
+
}
|
|
50
63
|
export interface DescribeMaintenanceWindowsResult {
|
|
51
64
|
WindowIdentities?: MaintenanceWindowIdentity[] | undefined;
|
|
52
65
|
NextToken?: string | undefined;
|
|
@@ -2208,10 +2221,9 @@ export interface RegisterDefaultPatchBaselineRequest {
|
|
|
2208
2221
|
export interface RegisterDefaultPatchBaselineResult {
|
|
2209
2222
|
BaselineId?: string | undefined;
|
|
2210
2223
|
}
|
|
2211
|
-
export
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
}
|
|
2224
|
+
export declare const MaintenanceWindowIdentityFilterSensitiveLog: (
|
|
2225
|
+
obj: MaintenanceWindowIdentity
|
|
2226
|
+
) => any;
|
|
2215
2227
|
export declare const DescribeMaintenanceWindowsResultFilterSensitiveLog: (
|
|
2216
2228
|
obj: DescribeMaintenanceWindowsResult
|
|
2217
2229
|
) => any;
|
|
@@ -53,6 +53,10 @@ import {
|
|
|
53
53
|
ServiceSetting,
|
|
54
54
|
} from "./models_1";
|
|
55
55
|
import { SSMServiceException as __BaseException } from "./SSMServiceException";
|
|
56
|
+
export interface RegisterPatchBaselineForPatchGroupRequest {
|
|
57
|
+
BaselineId: string | undefined;
|
|
58
|
+
PatchGroup: string | undefined;
|
|
59
|
+
}
|
|
56
60
|
export interface RegisterPatchBaselineForPatchGroupResult {
|
|
57
61
|
BaselineId?: string | undefined;
|
|
58
62
|
PatchGroup?: string | undefined;
|
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.926.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ssm",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.926.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.926.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.926.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.926.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|