@aws-sdk/client-ssm 3.428.0 → 3.429.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-types/models/models_0.d.ts +63 -63
- package/dist-types/models/models_1.d.ts +96 -96
- package/dist-types/models/models_2.d.ts +12 -12
- package/dist-types/ts3.4/models/models_0.d.ts +63 -63
- package/dist-types/ts3.4/models/models_1.d.ts +96 -96
- package/dist-types/ts3.4/models/models_2.d.ts +12 -12
- package/package.json +5 -5
|
@@ -56,8 +56,8 @@ export interface UpdateAssociationRequest {
|
|
|
56
56
|
AutomationTargetParameterName?: string;
|
|
57
57
|
MaxErrors?: string;
|
|
58
58
|
MaxConcurrency?: string;
|
|
59
|
-
ComplianceSeverity?: AssociationComplianceSeverity
|
|
60
|
-
SyncCompliance?: AssociationSyncCompliance
|
|
59
|
+
ComplianceSeverity?: AssociationComplianceSeverity;
|
|
60
|
+
SyncCompliance?: AssociationSyncCompliance;
|
|
61
61
|
ApplyOnlyAtCronInterval?: boolean;
|
|
62
62
|
CalendarNames?: string[];
|
|
63
63
|
TargetLocations?: TargetLocation[];
|
|
@@ -112,7 +112,7 @@ export interface UpdateDocumentRequest {
|
|
|
112
112
|
DisplayName?: string;
|
|
113
113
|
VersionName?: string;
|
|
114
114
|
DocumentVersion?: string;
|
|
115
|
-
DocumentFormat?: DocumentFormat
|
|
115
|
+
DocumentFormat?: DocumentFormat;
|
|
116
116
|
TargetType?: string;
|
|
117
117
|
}
|
|
118
118
|
export interface UpdateDocumentResult {
|
|
@@ -139,7 +139,7 @@ export declare const DocumentReviewAction: {
|
|
|
139
139
|
export type DocumentReviewAction =
|
|
140
140
|
(typeof DocumentReviewAction)[keyof typeof DocumentReviewAction];
|
|
141
141
|
export interface DocumentReviews {
|
|
142
|
-
Action: DocumentReviewAction |
|
|
142
|
+
Action: DocumentReviewAction | undefined;
|
|
143
143
|
Comment?: DocumentReviewCommentSource[];
|
|
144
144
|
}
|
|
145
145
|
export interface UpdateDocumentMetadataRequest {
|
|
@@ -212,7 +212,7 @@ export interface UpdateMaintenanceWindowTaskRequest {
|
|
|
212
212
|
Name?: string;
|
|
213
213
|
Description?: string;
|
|
214
214
|
Replace?: boolean;
|
|
215
|
-
CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior
|
|
215
|
+
CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior;
|
|
216
216
|
AlarmConfiguration?: AlarmConfiguration;
|
|
217
217
|
}
|
|
218
218
|
export interface UpdateMaintenanceWindowTaskResult {
|
|
@@ -232,7 +232,7 @@ export interface UpdateMaintenanceWindowTaskResult {
|
|
|
232
232
|
LoggingInfo?: LoggingInfo;
|
|
233
233
|
Name?: string;
|
|
234
234
|
Description?: string;
|
|
235
|
-
CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior
|
|
235
|
+
CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior;
|
|
236
236
|
AlarmConfiguration?: AlarmConfiguration;
|
|
237
237
|
}
|
|
238
238
|
export interface UpdateManagedInstanceRoleRequest {
|
|
@@ -247,7 +247,7 @@ export interface UpdateOpsItemRequest {
|
|
|
247
247
|
Notifications?: OpsItemNotification[];
|
|
248
248
|
Priority?: number;
|
|
249
249
|
RelatedOpsItems?: RelatedOpsItem[];
|
|
250
|
-
Status?: OpsItemStatus
|
|
250
|
+
Status?: OpsItemStatus;
|
|
251
251
|
OpsItemId: string | undefined;
|
|
252
252
|
Title?: string;
|
|
253
253
|
Category?: string;
|
|
@@ -283,10 +283,10 @@ export interface UpdatePatchBaselineRequest {
|
|
|
283
283
|
GlobalFilters?: PatchFilterGroup;
|
|
284
284
|
ApprovalRules?: PatchRuleGroup;
|
|
285
285
|
ApprovedPatches?: string[];
|
|
286
|
-
ApprovedPatchesComplianceLevel?: PatchComplianceLevel
|
|
286
|
+
ApprovedPatchesComplianceLevel?: PatchComplianceLevel;
|
|
287
287
|
ApprovedPatchesEnableNonSecurity?: boolean;
|
|
288
288
|
RejectedPatches?: string[];
|
|
289
|
-
RejectedPatchesAction?: PatchAction
|
|
289
|
+
RejectedPatchesAction?: PatchAction;
|
|
290
290
|
Description?: string;
|
|
291
291
|
Sources?: PatchSource[];
|
|
292
292
|
Replace?: boolean;
|
|
@@ -294,14 +294,14 @@ export interface UpdatePatchBaselineRequest {
|
|
|
294
294
|
export interface UpdatePatchBaselineResult {
|
|
295
295
|
BaselineId?: string;
|
|
296
296
|
Name?: string;
|
|
297
|
-
OperatingSystem?: OperatingSystem
|
|
297
|
+
OperatingSystem?: OperatingSystem;
|
|
298
298
|
GlobalFilters?: PatchFilterGroup;
|
|
299
299
|
ApprovalRules?: PatchRuleGroup;
|
|
300
300
|
ApprovedPatches?: string[];
|
|
301
|
-
ApprovedPatchesComplianceLevel?: PatchComplianceLevel
|
|
301
|
+
ApprovedPatchesComplianceLevel?: PatchComplianceLevel;
|
|
302
302
|
ApprovedPatchesEnableNonSecurity?: boolean;
|
|
303
303
|
RejectedPatches?: string[];
|
|
304
|
-
RejectedPatchesAction?: PatchAction
|
|
304
|
+
RejectedPatchesAction?: PatchAction;
|
|
305
305
|
CreatedDate?: Date;
|
|
306
306
|
ModifiedDate?: Date;
|
|
307
307
|
Description?: string;
|
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.429.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|