@aws-sdk/client-ssm 3.687.0 → 3.691.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.
@@ -42,7 +42,7 @@ import { SSMServiceException as __BaseException } from "./SSMServiceException";
42
42
  export declare class AutomationDefinitionNotApprovedException extends __BaseException {
43
43
  readonly name: "AutomationDefinitionNotApprovedException";
44
44
  readonly $fault: "client";
45
- Message?: string;
45
+ Message?: string | undefined;
46
46
  constructor(
47
47
  opts: __ExceptionOptionType<
48
48
  AutomationDefinitionNotApprovedException,
@@ -51,42 +51,42 @@ export declare class AutomationDefinitionNotApprovedException extends __BaseExce
51
51
  );
52
52
  }
53
53
  export interface StartChangeRequestExecutionRequest {
54
- ScheduledTime?: Date;
54
+ ScheduledTime?: Date | undefined;
55
55
  DocumentName: string | undefined;
56
- DocumentVersion?: string;
57
- Parameters?: Record<string, string[]>;
58
- ChangeRequestName?: string;
59
- ClientToken?: string;
60
- AutoApprove?: boolean;
56
+ DocumentVersion?: string | undefined;
57
+ Parameters?: Record<string, string[]> | undefined;
58
+ ChangeRequestName?: string | undefined;
59
+ ClientToken?: string | undefined;
60
+ AutoApprove?: boolean | undefined;
61
61
  Runbooks: Runbook[] | undefined;
62
- Tags?: Tag[];
63
- ScheduledEndTime?: Date;
64
- ChangeDetails?: string;
62
+ Tags?: Tag[] | undefined;
63
+ ScheduledEndTime?: Date | undefined;
64
+ ChangeDetails?: string | undefined;
65
65
  }
66
66
  export interface StartChangeRequestExecutionResult {
67
- AutomationExecutionId?: string;
67
+ AutomationExecutionId?: string | undefined;
68
68
  }
69
69
  export interface StartSessionRequest {
70
70
  Target: string | undefined;
71
- DocumentName?: string;
72
- Reason?: string;
73
- Parameters?: Record<string, string[]>;
71
+ DocumentName?: string | undefined;
72
+ Reason?: string | undefined;
73
+ Parameters?: Record<string, string[]> | undefined;
74
74
  }
75
75
  export interface StartSessionResponse {
76
- SessionId?: string;
77
- TokenValue?: string;
78
- StreamUrl?: string;
76
+ SessionId?: string | undefined;
77
+ TokenValue?: string | undefined;
78
+ StreamUrl?: string | undefined;
79
79
  }
80
80
  export declare class TargetNotConnected extends __BaseException {
81
81
  readonly name: "TargetNotConnected";
82
82
  readonly $fault: "client";
83
- Message?: string;
83
+ Message?: string | undefined;
84
84
  constructor(opts: __ExceptionOptionType<TargetNotConnected, __BaseException>);
85
85
  }
86
86
  export declare class InvalidAutomationStatusUpdateException extends __BaseException {
87
87
  readonly name: "InvalidAutomationStatusUpdateException";
88
88
  readonly $fault: "client";
89
- Message?: string;
89
+ Message?: string | undefined;
90
90
  constructor(
91
91
  opts: __ExceptionOptionType<
92
92
  InvalidAutomationStatusUpdateException,
@@ -101,14 +101,14 @@ export declare const StopType: {
101
101
  export type StopType = (typeof StopType)[keyof typeof StopType];
102
102
  export interface StopAutomationExecutionRequest {
103
103
  AutomationExecutionId: string | undefined;
104
- Type?: StopType;
104
+ Type?: StopType | undefined;
105
105
  }
106
106
  export interface StopAutomationExecutionResult {}
107
107
  export interface TerminateSessionRequest {
108
108
  SessionId: string | undefined;
109
109
  }
110
110
  export interface TerminateSessionResponse {
111
- SessionId?: string;
111
+ SessionId?: string | undefined;
112
112
  }
113
113
  export interface UnlabelParameterVersionRequest {
114
114
  Name: string | undefined;
@@ -116,13 +116,13 @@ export interface UnlabelParameterVersionRequest {
116
116
  Labels: string[] | undefined;
117
117
  }
118
118
  export interface UnlabelParameterVersionResult {
119
- RemovedLabels?: string[];
120
- InvalidLabels?: string[];
119
+ RemovedLabels?: string[] | undefined;
120
+ InvalidLabels?: string[] | undefined;
121
121
  }
122
122
  export declare class AssociationVersionLimitExceeded extends __BaseException {
123
123
  readonly name: "AssociationVersionLimitExceeded";
124
124
  readonly $fault: "client";
125
- Message?: string;
125
+ Message?: string | undefined;
126
126
  constructor(
127
127
  opts: __ExceptionOptionType<
128
128
  AssociationVersionLimitExceeded,
@@ -133,34 +133,34 @@ export declare class AssociationVersionLimitExceeded extends __BaseException {
133
133
  export declare class InvalidUpdate extends __BaseException {
134
134
  readonly name: "InvalidUpdate";
135
135
  readonly $fault: "client";
136
- Message?: string;
136
+ Message?: string | undefined;
137
137
  constructor(opts: __ExceptionOptionType<InvalidUpdate, __BaseException>);
138
138
  }
139
139
  export interface UpdateAssociationRequest {
140
140
  AssociationId: string | undefined;
141
- Parameters?: Record<string, string[]>;
142
- DocumentVersion?: string;
143
- ScheduleExpression?: string;
144
- OutputLocation?: InstanceAssociationOutputLocation;
145
- Name?: string;
146
- Targets?: Target[];
147
- AssociationName?: string;
148
- AssociationVersion?: string;
149
- AutomationTargetParameterName?: string;
150
- MaxErrors?: string;
151
- MaxConcurrency?: string;
152
- ComplianceSeverity?: AssociationComplianceSeverity;
153
- SyncCompliance?: AssociationSyncCompliance;
154
- ApplyOnlyAtCronInterval?: boolean;
155
- CalendarNames?: string[];
156
- TargetLocations?: TargetLocation[];
157
- ScheduleOffset?: number;
158
- Duration?: number;
159
- TargetMaps?: Record<string, string[]>[];
160
- AlarmConfiguration?: AlarmConfiguration;
141
+ Parameters?: Record<string, string[]> | undefined;
142
+ DocumentVersion?: string | undefined;
143
+ ScheduleExpression?: string | undefined;
144
+ OutputLocation?: InstanceAssociationOutputLocation | undefined;
145
+ Name?: string | undefined;
146
+ Targets?: Target[] | undefined;
147
+ AssociationName?: string | undefined;
148
+ AssociationVersion?: string | undefined;
149
+ AutomationTargetParameterName?: string | undefined;
150
+ MaxErrors?: string | undefined;
151
+ MaxConcurrency?: string | undefined;
152
+ ComplianceSeverity?: AssociationComplianceSeverity | undefined;
153
+ SyncCompliance?: AssociationSyncCompliance | undefined;
154
+ ApplyOnlyAtCronInterval?: boolean | undefined;
155
+ CalendarNames?: string[] | undefined;
156
+ TargetLocations?: TargetLocation[] | undefined;
157
+ ScheduleOffset?: number | undefined;
158
+ Duration?: number | undefined;
159
+ TargetMaps?: Record<string, string[]>[] | undefined;
160
+ AlarmConfiguration?: AlarmConfiguration | undefined;
161
161
  }
162
162
  export interface UpdateAssociationResult {
163
- AssociationDescription?: AssociationDescription;
163
+ AssociationDescription?: AssociationDescription | undefined;
164
164
  }
165
165
  export declare class StatusUnchanged extends __BaseException {
166
166
  readonly name: "StatusUnchanged";
@@ -173,12 +173,12 @@ export interface UpdateAssociationStatusRequest {
173
173
  AssociationStatus: AssociationStatus | undefined;
174
174
  }
175
175
  export interface UpdateAssociationStatusResult {
176
- AssociationDescription?: AssociationDescription;
176
+ AssociationDescription?: AssociationDescription | undefined;
177
177
  }
178
178
  export declare class DocumentVersionLimitExceeded extends __BaseException {
179
179
  readonly name: "DocumentVersionLimitExceeded";
180
180
  readonly $fault: "client";
181
- Message?: string;
181
+ Message?: string | undefined;
182
182
  constructor(
183
183
  opts: __ExceptionOptionType<DocumentVersionLimitExceeded, __BaseException>
184
184
  );
@@ -186,7 +186,7 @@ export declare class DocumentVersionLimitExceeded extends __BaseException {
186
186
  export declare class DuplicateDocumentContent extends __BaseException {
187
187
  readonly name: "DuplicateDocumentContent";
188
188
  readonly $fault: "client";
189
- Message?: string;
189
+ Message?: string | undefined;
190
190
  constructor(
191
191
  opts: __ExceptionOptionType<DuplicateDocumentContent, __BaseException>
192
192
  );
@@ -194,35 +194,35 @@ export declare class DuplicateDocumentContent extends __BaseException {
194
194
  export declare class DuplicateDocumentVersionName extends __BaseException {
195
195
  readonly name: "DuplicateDocumentVersionName";
196
196
  readonly $fault: "client";
197
- Message?: string;
197
+ Message?: string | undefined;
198
198
  constructor(
199
199
  opts: __ExceptionOptionType<DuplicateDocumentVersionName, __BaseException>
200
200
  );
201
201
  }
202
202
  export interface UpdateDocumentRequest {
203
203
  Content: string | undefined;
204
- Attachments?: AttachmentsSource[];
204
+ Attachments?: AttachmentsSource[] | undefined;
205
205
  Name: string | undefined;
206
- DisplayName?: string;
207
- VersionName?: string;
208
- DocumentVersion?: string;
209
- DocumentFormat?: DocumentFormat;
210
- TargetType?: string;
206
+ DisplayName?: string | undefined;
207
+ VersionName?: string | undefined;
208
+ DocumentVersion?: string | undefined;
209
+ DocumentFormat?: DocumentFormat | undefined;
210
+ TargetType?: string | undefined;
211
211
  }
212
212
  export interface UpdateDocumentResult {
213
- DocumentDescription?: DocumentDescription;
213
+ DocumentDescription?: DocumentDescription | undefined;
214
214
  }
215
215
  export interface UpdateDocumentDefaultVersionRequest {
216
216
  Name: string | undefined;
217
217
  DocumentVersion: string | undefined;
218
218
  }
219
219
  export interface DocumentDefaultVersionDescription {
220
- Name?: string;
221
- DefaultVersion?: string;
222
- DefaultVersionName?: string;
220
+ Name?: string | undefined;
221
+ DefaultVersion?: string | undefined;
222
+ DefaultVersionName?: string | undefined;
223
223
  }
224
224
  export interface UpdateDocumentDefaultVersionResult {
225
- Description?: DocumentDefaultVersionDescription;
225
+ Description?: DocumentDefaultVersionDescription | undefined;
226
226
  }
227
227
  export declare const DocumentReviewAction: {
228
228
  readonly Approve: "Approve";
@@ -234,100 +234,102 @@ export type DocumentReviewAction =
234
234
  (typeof DocumentReviewAction)[keyof typeof DocumentReviewAction];
235
235
  export interface DocumentReviews {
236
236
  Action: DocumentReviewAction | undefined;
237
- Comment?: DocumentReviewCommentSource[];
237
+ Comment?: DocumentReviewCommentSource[] | undefined;
238
238
  }
239
239
  export interface UpdateDocumentMetadataRequest {
240
240
  Name: string | undefined;
241
- DocumentVersion?: string;
241
+ DocumentVersion?: string | undefined;
242
242
  DocumentReviews: DocumentReviews | undefined;
243
243
  }
244
244
  export interface UpdateDocumentMetadataResponse {}
245
245
  export interface UpdateMaintenanceWindowRequest {
246
246
  WindowId: string | undefined;
247
- Name?: string;
248
- Description?: string;
249
- StartDate?: string;
250
- EndDate?: string;
251
- Schedule?: string;
252
- ScheduleTimezone?: string;
253
- ScheduleOffset?: number;
254
- Duration?: number;
255
- Cutoff?: number;
256
- AllowUnassociatedTargets?: boolean;
257
- Enabled?: boolean;
258
- Replace?: boolean;
247
+ Name?: string | undefined;
248
+ Description?: string | undefined;
249
+ StartDate?: string | undefined;
250
+ EndDate?: string | undefined;
251
+ Schedule?: string | undefined;
252
+ ScheduleTimezone?: string | undefined;
253
+ ScheduleOffset?: number | undefined;
254
+ Duration?: number | undefined;
255
+ Cutoff?: number | undefined;
256
+ AllowUnassociatedTargets?: boolean | undefined;
257
+ Enabled?: boolean | undefined;
258
+ Replace?: boolean | undefined;
259
259
  }
260
260
  export interface UpdateMaintenanceWindowResult {
261
- WindowId?: string;
262
- Name?: string;
263
- Description?: string;
264
- StartDate?: string;
265
- EndDate?: string;
266
- Schedule?: string;
267
- ScheduleTimezone?: string;
268
- ScheduleOffset?: number;
269
- Duration?: number;
270
- Cutoff?: number;
271
- AllowUnassociatedTargets?: boolean;
272
- Enabled?: boolean;
261
+ WindowId?: string | undefined;
262
+ Name?: string | undefined;
263
+ Description?: string | undefined;
264
+ StartDate?: string | undefined;
265
+ EndDate?: string | undefined;
266
+ Schedule?: string | undefined;
267
+ ScheduleTimezone?: string | undefined;
268
+ ScheduleOffset?: number | undefined;
269
+ Duration?: number | undefined;
270
+ Cutoff?: number | undefined;
271
+ AllowUnassociatedTargets?: boolean | undefined;
272
+ Enabled?: boolean | undefined;
273
273
  }
274
274
  export interface UpdateMaintenanceWindowTargetRequest {
275
275
  WindowId: string | undefined;
276
276
  WindowTargetId: string | undefined;
277
- Targets?: Target[];
278
- OwnerInformation?: string;
279
- Name?: string;
280
- Description?: string;
281
- Replace?: boolean;
277
+ Targets?: Target[] | undefined;
278
+ OwnerInformation?: string | undefined;
279
+ Name?: string | undefined;
280
+ Description?: string | undefined;
281
+ Replace?: boolean | undefined;
282
282
  }
283
283
  export interface UpdateMaintenanceWindowTargetResult {
284
- WindowId?: string;
285
- WindowTargetId?: string;
286
- Targets?: Target[];
287
- OwnerInformation?: string;
288
- Name?: string;
289
- Description?: string;
284
+ WindowId?: string | undefined;
285
+ WindowTargetId?: string | undefined;
286
+ Targets?: Target[] | undefined;
287
+ OwnerInformation?: string | undefined;
288
+ Name?: string | undefined;
289
+ Description?: string | undefined;
290
290
  }
291
291
  export interface UpdateMaintenanceWindowTaskRequest {
292
292
  WindowId: string | undefined;
293
293
  WindowTaskId: string | undefined;
294
- Targets?: Target[];
295
- TaskArn?: string;
296
- ServiceRoleArn?: string;
297
- TaskParameters?: Record<
298
- string,
299
- MaintenanceWindowTaskParameterValueExpression
300
- >;
301
- TaskInvocationParameters?: MaintenanceWindowTaskInvocationParameters;
302
- Priority?: number;
303
- MaxConcurrency?: string;
304
- MaxErrors?: string;
305
- LoggingInfo?: LoggingInfo;
306
- Name?: string;
307
- Description?: string;
308
- Replace?: boolean;
309
- CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior;
310
- AlarmConfiguration?: AlarmConfiguration;
294
+ Targets?: Target[] | undefined;
295
+ TaskArn?: string | undefined;
296
+ ServiceRoleArn?: string | undefined;
297
+ TaskParameters?:
298
+ | Record<string, MaintenanceWindowTaskParameterValueExpression>
299
+ | undefined;
300
+ TaskInvocationParameters?:
301
+ | MaintenanceWindowTaskInvocationParameters
302
+ | undefined;
303
+ Priority?: number | undefined;
304
+ MaxConcurrency?: string | undefined;
305
+ MaxErrors?: string | undefined;
306
+ LoggingInfo?: LoggingInfo | undefined;
307
+ Name?: string | undefined;
308
+ Description?: string | undefined;
309
+ Replace?: boolean | undefined;
310
+ CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior | undefined;
311
+ AlarmConfiguration?: AlarmConfiguration | undefined;
311
312
  }
312
313
  export interface UpdateMaintenanceWindowTaskResult {
313
- WindowId?: string;
314
- WindowTaskId?: string;
315
- Targets?: Target[];
316
- TaskArn?: string;
317
- ServiceRoleArn?: string;
318
- TaskParameters?: Record<
319
- string,
320
- MaintenanceWindowTaskParameterValueExpression
321
- >;
322
- TaskInvocationParameters?: MaintenanceWindowTaskInvocationParameters;
323
- Priority?: number;
324
- MaxConcurrency?: string;
325
- MaxErrors?: string;
326
- LoggingInfo?: LoggingInfo;
327
- Name?: string;
328
- Description?: string;
329
- CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior;
330
- AlarmConfiguration?: AlarmConfiguration;
314
+ WindowId?: string | undefined;
315
+ WindowTaskId?: string | undefined;
316
+ Targets?: Target[] | undefined;
317
+ TaskArn?: string | undefined;
318
+ ServiceRoleArn?: string | undefined;
319
+ TaskParameters?:
320
+ | Record<string, MaintenanceWindowTaskParameterValueExpression>
321
+ | undefined;
322
+ TaskInvocationParameters?:
323
+ | MaintenanceWindowTaskInvocationParameters
324
+ | undefined;
325
+ Priority?: number | undefined;
326
+ MaxConcurrency?: string | undefined;
327
+ MaxErrors?: string | undefined;
328
+ LoggingInfo?: LoggingInfo | undefined;
329
+ Name?: string | undefined;
330
+ Description?: string | undefined;
331
+ CutoffBehavior?: MaintenanceWindowTaskCutoffBehavior | undefined;
332
+ AlarmConfiguration?: AlarmConfiguration | undefined;
331
333
  }
332
334
  export interface UpdateManagedInstanceRoleRequest {
333
335
  InstanceId: string | undefined;
@@ -335,22 +337,22 @@ export interface UpdateManagedInstanceRoleRequest {
335
337
  }
336
338
  export interface UpdateManagedInstanceRoleResult {}
337
339
  export interface UpdateOpsItemRequest {
338
- Description?: string;
339
- OperationalData?: Record<string, OpsItemDataValue>;
340
- OperationalDataToDelete?: string[];
341
- Notifications?: OpsItemNotification[];
342
- Priority?: number;
343
- RelatedOpsItems?: RelatedOpsItem[];
344
- Status?: OpsItemStatus;
340
+ Description?: string | undefined;
341
+ OperationalData?: Record<string, OpsItemDataValue> | undefined;
342
+ OperationalDataToDelete?: string[] | undefined;
343
+ Notifications?: OpsItemNotification[] | undefined;
344
+ Priority?: number | undefined;
345
+ RelatedOpsItems?: RelatedOpsItem[] | undefined;
346
+ Status?: OpsItemStatus | undefined;
345
347
  OpsItemId: string | undefined;
346
- Title?: string;
347
- Category?: string;
348
- Severity?: string;
349
- ActualStartTime?: Date;
350
- ActualEndTime?: Date;
351
- PlannedStartTime?: Date;
352
- PlannedEndTime?: Date;
353
- OpsItemArn?: string;
348
+ Title?: string | undefined;
349
+ Category?: string | undefined;
350
+ Severity?: string | undefined;
351
+ ActualStartTime?: Date | undefined;
352
+ ActualEndTime?: Date | undefined;
353
+ PlannedStartTime?: Date | undefined;
354
+ PlannedEndTime?: Date | undefined;
355
+ OpsItemArn?: string | undefined;
354
356
  }
355
357
  export interface UpdateOpsItemResponse {}
356
358
  export declare class OpsMetadataKeyLimitExceededException extends __BaseException {
@@ -365,46 +367,46 @@ export declare class OpsMetadataKeyLimitExceededException extends __BaseExceptio
365
367
  }
366
368
  export interface UpdateOpsMetadataRequest {
367
369
  OpsMetadataArn: string | undefined;
368
- MetadataToUpdate?: Record<string, MetadataValue>;
369
- KeysToDelete?: string[];
370
+ MetadataToUpdate?: Record<string, MetadataValue> | undefined;
371
+ KeysToDelete?: string[] | undefined;
370
372
  }
371
373
  export interface UpdateOpsMetadataResult {
372
- OpsMetadataArn?: string;
374
+ OpsMetadataArn?: string | undefined;
373
375
  }
374
376
  export interface UpdatePatchBaselineRequest {
375
377
  BaselineId: string | undefined;
376
- Name?: string;
377
- GlobalFilters?: PatchFilterGroup;
378
- ApprovalRules?: PatchRuleGroup;
379
- ApprovedPatches?: string[];
380
- ApprovedPatchesComplianceLevel?: PatchComplianceLevel;
381
- ApprovedPatchesEnableNonSecurity?: boolean;
382
- RejectedPatches?: string[];
383
- RejectedPatchesAction?: PatchAction;
384
- Description?: string;
385
- Sources?: PatchSource[];
386
- Replace?: boolean;
378
+ Name?: string | undefined;
379
+ GlobalFilters?: PatchFilterGroup | undefined;
380
+ ApprovalRules?: PatchRuleGroup | undefined;
381
+ ApprovedPatches?: string[] | undefined;
382
+ ApprovedPatchesComplianceLevel?: PatchComplianceLevel | undefined;
383
+ ApprovedPatchesEnableNonSecurity?: boolean | undefined;
384
+ RejectedPatches?: string[] | undefined;
385
+ RejectedPatchesAction?: PatchAction | undefined;
386
+ Description?: string | undefined;
387
+ Sources?: PatchSource[] | undefined;
388
+ Replace?: boolean | undefined;
387
389
  }
388
390
  export interface UpdatePatchBaselineResult {
389
- BaselineId?: string;
390
- Name?: string;
391
- OperatingSystem?: OperatingSystem;
392
- GlobalFilters?: PatchFilterGroup;
393
- ApprovalRules?: PatchRuleGroup;
394
- ApprovedPatches?: string[];
395
- ApprovedPatchesComplianceLevel?: PatchComplianceLevel;
396
- ApprovedPatchesEnableNonSecurity?: boolean;
397
- RejectedPatches?: string[];
398
- RejectedPatchesAction?: PatchAction;
399
- CreatedDate?: Date;
400
- ModifiedDate?: Date;
401
- Description?: string;
402
- Sources?: PatchSource[];
391
+ BaselineId?: string | undefined;
392
+ Name?: string | undefined;
393
+ OperatingSystem?: OperatingSystem | undefined;
394
+ GlobalFilters?: PatchFilterGroup | undefined;
395
+ ApprovalRules?: PatchRuleGroup | undefined;
396
+ ApprovedPatches?: string[] | undefined;
397
+ ApprovedPatchesComplianceLevel?: PatchComplianceLevel | undefined;
398
+ ApprovedPatchesEnableNonSecurity?: boolean | undefined;
399
+ RejectedPatches?: string[] | undefined;
400
+ RejectedPatchesAction?: PatchAction | undefined;
401
+ CreatedDate?: Date | undefined;
402
+ ModifiedDate?: Date | undefined;
403
+ Description?: string | undefined;
404
+ Sources?: PatchSource[] | undefined;
403
405
  }
404
406
  export declare class ResourceDataSyncConflictException extends __BaseException {
405
407
  readonly name: "ResourceDataSyncConflictException";
406
408
  readonly $fault: "client";
407
- Message?: string;
409
+ Message?: string | undefined;
408
410
  constructor(
409
411
  opts: __ExceptionOptionType<
410
412
  ResourceDataSyncConflictException,
@@ -424,32 +426,32 @@ export interface UpdateServiceSettingRequest {
424
426
  }
425
427
  export interface UpdateServiceSettingResult {}
426
428
  export interface InventoryAggregator {
427
- Expression?: string;
428
- Aggregators?: InventoryAggregator[];
429
- Groups?: InventoryGroup[];
429
+ Expression?: string | undefined;
430
+ Aggregators?: InventoryAggregator[] | undefined;
431
+ Groups?: InventoryGroup[] | undefined;
430
432
  }
431
433
  export interface OpsAggregator {
432
- AggregatorType?: string;
433
- TypeName?: string;
434
- AttributeName?: string;
435
- Values?: Record<string, string>;
436
- Filters?: OpsFilter[];
437
- Aggregators?: OpsAggregator[];
434
+ AggregatorType?: string | undefined;
435
+ TypeName?: string | undefined;
436
+ AttributeName?: string | undefined;
437
+ Values?: Record<string, string> | undefined;
438
+ Filters?: OpsFilter[] | undefined;
439
+ Aggregators?: OpsAggregator[] | undefined;
438
440
  }
439
441
  export interface GetInventoryRequest {
440
- Filters?: InventoryFilter[];
441
- Aggregators?: InventoryAggregator[];
442
- ResultAttributes?: ResultAttribute[];
443
- NextToken?: string;
444
- MaxResults?: number;
442
+ Filters?: InventoryFilter[] | undefined;
443
+ Aggregators?: InventoryAggregator[] | undefined;
444
+ ResultAttributes?: ResultAttribute[] | undefined;
445
+ NextToken?: string | undefined;
446
+ MaxResults?: number | undefined;
445
447
  }
446
448
  export interface GetOpsSummaryRequest {
447
- SyncName?: string;
448
- Filters?: OpsFilter[];
449
- Aggregators?: OpsAggregator[];
450
- ResultAttributes?: OpsResultAttribute[];
451
- NextToken?: string;
452
- MaxResults?: number;
449
+ SyncName?: string | undefined;
450
+ Filters?: OpsFilter[] | undefined;
451
+ Aggregators?: OpsAggregator[] | undefined;
452
+ ResultAttributes?: OpsResultAttribute[] | undefined;
453
+ NextToken?: string | undefined;
454
+ MaxResults?: number | undefined;
453
455
  }
454
456
  export declare const UpdateAssociationRequestFilterSensitiveLog: (
455
457
  obj: UpdateAssociationRequest
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.687.0",
4
+ "version": "3.691.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,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",