@aws-sdk/client-ssm-incidents 3.1086.0 → 3.1088.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.
Files changed (52) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/SSMIncidents.d.ts +104 -109
  3. package/dist-types/ts3.4/SSMIncidentsClient.d.ts +7 -20
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/BatchGetIncidentFindingsCommand.d.ts +5 -10
  8. package/dist-types/ts3.4/commands/CreateReplicationSetCommand.d.ts +5 -10
  9. package/dist-types/ts3.4/commands/CreateResponsePlanCommand.d.ts +5 -10
  10. package/dist-types/ts3.4/commands/CreateTimelineEventCommand.d.ts +5 -10
  11. package/dist-types/ts3.4/commands/DeleteIncidentRecordCommand.d.ts +5 -10
  12. package/dist-types/ts3.4/commands/DeleteReplicationSetCommand.d.ts +5 -10
  13. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +5 -10
  14. package/dist-types/ts3.4/commands/DeleteResponsePlanCommand.d.ts +5 -10
  15. package/dist-types/ts3.4/commands/DeleteTimelineEventCommand.d.ts +5 -10
  16. package/dist-types/ts3.4/commands/GetIncidentRecordCommand.d.ts +4 -9
  17. package/dist-types/ts3.4/commands/GetReplicationSetCommand.d.ts +4 -9
  18. package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +5 -10
  19. package/dist-types/ts3.4/commands/GetResponsePlanCommand.d.ts +4 -9
  20. package/dist-types/ts3.4/commands/GetTimelineEventCommand.d.ts +4 -9
  21. package/dist-types/ts3.4/commands/ListIncidentFindingsCommand.d.ts +5 -10
  22. package/dist-types/ts3.4/commands/ListIncidentRecordsCommand.d.ts +4 -9
  23. package/dist-types/ts3.4/commands/ListRelatedItemsCommand.d.ts +4 -9
  24. package/dist-types/ts3.4/commands/ListReplicationSetsCommand.d.ts +4 -9
  25. package/dist-types/ts3.4/commands/ListResponsePlansCommand.d.ts +3 -8
  26. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  27. package/dist-types/ts3.4/commands/ListTimelineEventsCommand.d.ts +5 -10
  28. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +4 -9
  29. package/dist-types/ts3.4/commands/StartIncidentCommand.d.ts +3 -5
  30. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  31. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  32. package/dist-types/ts3.4/commands/UpdateDeletionProtectionCommand.d.ts +5 -10
  33. package/dist-types/ts3.4/commands/UpdateIncidentRecordCommand.d.ts +5 -10
  34. package/dist-types/ts3.4/commands/UpdateRelatedItemsCommand.d.ts +5 -10
  35. package/dist-types/ts3.4/commands/UpdateReplicationSetCommand.d.ts +5 -10
  36. package/dist-types/ts3.4/commands/UpdateResponsePlanCommand.d.ts +5 -10
  37. package/dist-types/ts3.4/commands/UpdateTimelineEventCommand.d.ts +5 -10
  38. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  39. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  40. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  41. package/dist-types/ts3.4/models/enums.d.ts +4 -8
  42. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  43. package/dist-types/ts3.4/models/models_0.d.ts +1 -3
  44. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  45. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  46. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  47. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  48. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  49. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  50. package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetActive.d.ts +3 -5
  51. package/dist-types/ts3.4/waiters/waitForWaitForReplicationSetDeleted.d.ts +3 -5
  52. package/package.json +39 -39
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1085.0";
72
+ var version = "3.1087.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -97,10 +97,7 @@ import {
97
97
  StartIncidentCommandInput,
98
98
  StartIncidentCommandOutput,
99
99
  } from "./commands/StartIncidentCommand";
100
- import {
101
- TagResourceCommandInput,
102
- TagResourceCommandOutput,
103
- } from "./commands/TagResourceCommand";
100
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
104
101
  import {
105
102
  UntagResourceCommandInput,
106
103
  UntagResourceCommandOutput,
@@ -134,458 +131,458 @@ import { SSMIncidentsClient } from "./SSMIncidentsClient";
134
131
  export interface SSMIncidents {
135
132
  batchGetIncidentFindings(
136
133
  args: BatchGetIncidentFindingsCommandInput,
137
- options?: __HttpHandlerOptions
134
+ options?: __HttpHandlerOptions,
138
135
  ): Promise<BatchGetIncidentFindingsCommandOutput>;
139
136
  batchGetIncidentFindings(
140
137
  args: BatchGetIncidentFindingsCommandInput,
141
- cb: (err: any, data?: BatchGetIncidentFindingsCommandOutput) => void
138
+ cb: (err: any, data?: BatchGetIncidentFindingsCommandOutput) => void,
142
139
  ): void;
143
140
  batchGetIncidentFindings(
144
141
  args: BatchGetIncidentFindingsCommandInput,
145
142
  options: __HttpHandlerOptions,
146
- cb: (err: any, data?: BatchGetIncidentFindingsCommandOutput) => void
143
+ cb: (err: any, data?: BatchGetIncidentFindingsCommandOutput) => void,
147
144
  ): void;
148
145
  createReplicationSet(
149
146
  args: CreateReplicationSetCommandInput,
150
- options?: __HttpHandlerOptions
147
+ options?: __HttpHandlerOptions,
151
148
  ): Promise<CreateReplicationSetCommandOutput>;
152
149
  createReplicationSet(
153
150
  args: CreateReplicationSetCommandInput,
154
- cb: (err: any, data?: CreateReplicationSetCommandOutput) => void
151
+ cb: (err: any, data?: CreateReplicationSetCommandOutput) => void,
155
152
  ): void;
156
153
  createReplicationSet(
157
154
  args: CreateReplicationSetCommandInput,
158
155
  options: __HttpHandlerOptions,
159
- cb: (err: any, data?: CreateReplicationSetCommandOutput) => void
156
+ cb: (err: any, data?: CreateReplicationSetCommandOutput) => void,
160
157
  ): void;
161
158
  createResponsePlan(
162
159
  args: CreateResponsePlanCommandInput,
163
- options?: __HttpHandlerOptions
160
+ options?: __HttpHandlerOptions,
164
161
  ): Promise<CreateResponsePlanCommandOutput>;
165
162
  createResponsePlan(
166
163
  args: CreateResponsePlanCommandInput,
167
- cb: (err: any, data?: CreateResponsePlanCommandOutput) => void
164
+ cb: (err: any, data?: CreateResponsePlanCommandOutput) => void,
168
165
  ): void;
169
166
  createResponsePlan(
170
167
  args: CreateResponsePlanCommandInput,
171
168
  options: __HttpHandlerOptions,
172
- cb: (err: any, data?: CreateResponsePlanCommandOutput) => void
169
+ cb: (err: any, data?: CreateResponsePlanCommandOutput) => void,
173
170
  ): void;
174
171
  createTimelineEvent(
175
172
  args: CreateTimelineEventCommandInput,
176
- options?: __HttpHandlerOptions
173
+ options?: __HttpHandlerOptions,
177
174
  ): Promise<CreateTimelineEventCommandOutput>;
178
175
  createTimelineEvent(
179
176
  args: CreateTimelineEventCommandInput,
180
- cb: (err: any, data?: CreateTimelineEventCommandOutput) => void
177
+ cb: (err: any, data?: CreateTimelineEventCommandOutput) => void,
181
178
  ): void;
182
179
  createTimelineEvent(
183
180
  args: CreateTimelineEventCommandInput,
184
181
  options: __HttpHandlerOptions,
185
- cb: (err: any, data?: CreateTimelineEventCommandOutput) => void
182
+ cb: (err: any, data?: CreateTimelineEventCommandOutput) => void,
186
183
  ): void;
187
184
  deleteIncidentRecord(
188
185
  args: DeleteIncidentRecordCommandInput,
189
- options?: __HttpHandlerOptions
186
+ options?: __HttpHandlerOptions,
190
187
  ): Promise<DeleteIncidentRecordCommandOutput>;
191
188
  deleteIncidentRecord(
192
189
  args: DeleteIncidentRecordCommandInput,
193
- cb: (err: any, data?: DeleteIncidentRecordCommandOutput) => void
190
+ cb: (err: any, data?: DeleteIncidentRecordCommandOutput) => void,
194
191
  ): void;
195
192
  deleteIncidentRecord(
196
193
  args: DeleteIncidentRecordCommandInput,
197
194
  options: __HttpHandlerOptions,
198
- cb: (err: any, data?: DeleteIncidentRecordCommandOutput) => void
195
+ cb: (err: any, data?: DeleteIncidentRecordCommandOutput) => void,
199
196
  ): void;
200
197
  deleteReplicationSet(
201
198
  args: DeleteReplicationSetCommandInput,
202
- options?: __HttpHandlerOptions
199
+ options?: __HttpHandlerOptions,
203
200
  ): Promise<DeleteReplicationSetCommandOutput>;
204
201
  deleteReplicationSet(
205
202
  args: DeleteReplicationSetCommandInput,
206
- cb: (err: any, data?: DeleteReplicationSetCommandOutput) => void
203
+ cb: (err: any, data?: DeleteReplicationSetCommandOutput) => void,
207
204
  ): void;
208
205
  deleteReplicationSet(
209
206
  args: DeleteReplicationSetCommandInput,
210
207
  options: __HttpHandlerOptions,
211
- cb: (err: any, data?: DeleteReplicationSetCommandOutput) => void
208
+ cb: (err: any, data?: DeleteReplicationSetCommandOutput) => void,
212
209
  ): void;
213
210
  deleteResourcePolicy(
214
211
  args: DeleteResourcePolicyCommandInput,
215
- options?: __HttpHandlerOptions
212
+ options?: __HttpHandlerOptions,
216
213
  ): Promise<DeleteResourcePolicyCommandOutput>;
217
214
  deleteResourcePolicy(
218
215
  args: DeleteResourcePolicyCommandInput,
219
- cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
216
+ cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void,
220
217
  ): void;
221
218
  deleteResourcePolicy(
222
219
  args: DeleteResourcePolicyCommandInput,
223
220
  options: __HttpHandlerOptions,
224
- cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
221
+ cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void,
225
222
  ): void;
226
223
  deleteResponsePlan(
227
224
  args: DeleteResponsePlanCommandInput,
228
- options?: __HttpHandlerOptions
225
+ options?: __HttpHandlerOptions,
229
226
  ): Promise<DeleteResponsePlanCommandOutput>;
230
227
  deleteResponsePlan(
231
228
  args: DeleteResponsePlanCommandInput,
232
- cb: (err: any, data?: DeleteResponsePlanCommandOutput) => void
229
+ cb: (err: any, data?: DeleteResponsePlanCommandOutput) => void,
233
230
  ): void;
234
231
  deleteResponsePlan(
235
232
  args: DeleteResponsePlanCommandInput,
236
233
  options: __HttpHandlerOptions,
237
- cb: (err: any, data?: DeleteResponsePlanCommandOutput) => void
234
+ cb: (err: any, data?: DeleteResponsePlanCommandOutput) => void,
238
235
  ): void;
239
236
  deleteTimelineEvent(
240
237
  args: DeleteTimelineEventCommandInput,
241
- options?: __HttpHandlerOptions
238
+ options?: __HttpHandlerOptions,
242
239
  ): Promise<DeleteTimelineEventCommandOutput>;
243
240
  deleteTimelineEvent(
244
241
  args: DeleteTimelineEventCommandInput,
245
- cb: (err: any, data?: DeleteTimelineEventCommandOutput) => void
242
+ cb: (err: any, data?: DeleteTimelineEventCommandOutput) => void,
246
243
  ): void;
247
244
  deleteTimelineEvent(
248
245
  args: DeleteTimelineEventCommandInput,
249
246
  options: __HttpHandlerOptions,
250
- cb: (err: any, data?: DeleteTimelineEventCommandOutput) => void
247
+ cb: (err: any, data?: DeleteTimelineEventCommandOutput) => void,
251
248
  ): void;
252
249
  getIncidentRecord(
253
250
  args: GetIncidentRecordCommandInput,
254
- options?: __HttpHandlerOptions
251
+ options?: __HttpHandlerOptions,
255
252
  ): Promise<GetIncidentRecordCommandOutput>;
256
253
  getIncidentRecord(
257
254
  args: GetIncidentRecordCommandInput,
258
- cb: (err: any, data?: GetIncidentRecordCommandOutput) => void
255
+ cb: (err: any, data?: GetIncidentRecordCommandOutput) => void,
259
256
  ): void;
260
257
  getIncidentRecord(
261
258
  args: GetIncidentRecordCommandInput,
262
259
  options: __HttpHandlerOptions,
263
- cb: (err: any, data?: GetIncidentRecordCommandOutput) => void
260
+ cb: (err: any, data?: GetIncidentRecordCommandOutput) => void,
264
261
  ): void;
265
262
  getReplicationSet(
266
263
  args: GetReplicationSetCommandInput,
267
- options?: __HttpHandlerOptions
264
+ options?: __HttpHandlerOptions,
268
265
  ): Promise<GetReplicationSetCommandOutput>;
269
266
  getReplicationSet(
270
267
  args: GetReplicationSetCommandInput,
271
- cb: (err: any, data?: GetReplicationSetCommandOutput) => void
268
+ cb: (err: any, data?: GetReplicationSetCommandOutput) => void,
272
269
  ): void;
273
270
  getReplicationSet(
274
271
  args: GetReplicationSetCommandInput,
275
272
  options: __HttpHandlerOptions,
276
- cb: (err: any, data?: GetReplicationSetCommandOutput) => void
273
+ cb: (err: any, data?: GetReplicationSetCommandOutput) => void,
277
274
  ): void;
278
275
  getResourcePolicies(
279
276
  args: GetResourcePoliciesCommandInput,
280
- options?: __HttpHandlerOptions
277
+ options?: __HttpHandlerOptions,
281
278
  ): Promise<GetResourcePoliciesCommandOutput>;
282
279
  getResourcePolicies(
283
280
  args: GetResourcePoliciesCommandInput,
284
- cb: (err: any, data?: GetResourcePoliciesCommandOutput) => void
281
+ cb: (err: any, data?: GetResourcePoliciesCommandOutput) => void,
285
282
  ): void;
286
283
  getResourcePolicies(
287
284
  args: GetResourcePoliciesCommandInput,
288
285
  options: __HttpHandlerOptions,
289
- cb: (err: any, data?: GetResourcePoliciesCommandOutput) => void
286
+ cb: (err: any, data?: GetResourcePoliciesCommandOutput) => void,
290
287
  ): void;
291
288
  getResponsePlan(
292
289
  args: GetResponsePlanCommandInput,
293
- options?: __HttpHandlerOptions
290
+ options?: __HttpHandlerOptions,
294
291
  ): Promise<GetResponsePlanCommandOutput>;
295
292
  getResponsePlan(
296
293
  args: GetResponsePlanCommandInput,
297
- cb: (err: any, data?: GetResponsePlanCommandOutput) => void
294
+ cb: (err: any, data?: GetResponsePlanCommandOutput) => void,
298
295
  ): void;
299
296
  getResponsePlan(
300
297
  args: GetResponsePlanCommandInput,
301
298
  options: __HttpHandlerOptions,
302
- cb: (err: any, data?: GetResponsePlanCommandOutput) => void
299
+ cb: (err: any, data?: GetResponsePlanCommandOutput) => void,
303
300
  ): void;
304
301
  getTimelineEvent(
305
302
  args: GetTimelineEventCommandInput,
306
- options?: __HttpHandlerOptions
303
+ options?: __HttpHandlerOptions,
307
304
  ): Promise<GetTimelineEventCommandOutput>;
308
305
  getTimelineEvent(
309
306
  args: GetTimelineEventCommandInput,
310
- cb: (err: any, data?: GetTimelineEventCommandOutput) => void
307
+ cb: (err: any, data?: GetTimelineEventCommandOutput) => void,
311
308
  ): void;
312
309
  getTimelineEvent(
313
310
  args: GetTimelineEventCommandInput,
314
311
  options: __HttpHandlerOptions,
315
- cb: (err: any, data?: GetTimelineEventCommandOutput) => void
312
+ cb: (err: any, data?: GetTimelineEventCommandOutput) => void,
316
313
  ): void;
317
314
  listIncidentFindings(
318
315
  args: ListIncidentFindingsCommandInput,
319
- options?: __HttpHandlerOptions
316
+ options?: __HttpHandlerOptions,
320
317
  ): Promise<ListIncidentFindingsCommandOutput>;
321
318
  listIncidentFindings(
322
319
  args: ListIncidentFindingsCommandInput,
323
- cb: (err: any, data?: ListIncidentFindingsCommandOutput) => void
320
+ cb: (err: any, data?: ListIncidentFindingsCommandOutput) => void,
324
321
  ): void;
325
322
  listIncidentFindings(
326
323
  args: ListIncidentFindingsCommandInput,
327
324
  options: __HttpHandlerOptions,
328
- cb: (err: any, data?: ListIncidentFindingsCommandOutput) => void
325
+ cb: (err: any, data?: ListIncidentFindingsCommandOutput) => void,
329
326
  ): void;
330
327
  listIncidentRecords(): Promise<ListIncidentRecordsCommandOutput>;
331
328
  listIncidentRecords(
332
329
  args: ListIncidentRecordsCommandInput,
333
- options?: __HttpHandlerOptions
330
+ options?: __HttpHandlerOptions,
334
331
  ): Promise<ListIncidentRecordsCommandOutput>;
335
332
  listIncidentRecords(
336
333
  args: ListIncidentRecordsCommandInput,
337
- cb: (err: any, data?: ListIncidentRecordsCommandOutput) => void
334
+ cb: (err: any, data?: ListIncidentRecordsCommandOutput) => void,
338
335
  ): void;
339
336
  listIncidentRecords(
340
337
  args: ListIncidentRecordsCommandInput,
341
338
  options: __HttpHandlerOptions,
342
- cb: (err: any, data?: ListIncidentRecordsCommandOutput) => void
339
+ cb: (err: any, data?: ListIncidentRecordsCommandOutput) => void,
343
340
  ): void;
344
341
  listRelatedItems(
345
342
  args: ListRelatedItemsCommandInput,
346
- options?: __HttpHandlerOptions
343
+ options?: __HttpHandlerOptions,
347
344
  ): Promise<ListRelatedItemsCommandOutput>;
348
345
  listRelatedItems(
349
346
  args: ListRelatedItemsCommandInput,
350
- cb: (err: any, data?: ListRelatedItemsCommandOutput) => void
347
+ cb: (err: any, data?: ListRelatedItemsCommandOutput) => void,
351
348
  ): void;
352
349
  listRelatedItems(
353
350
  args: ListRelatedItemsCommandInput,
354
351
  options: __HttpHandlerOptions,
355
- cb: (err: any, data?: ListRelatedItemsCommandOutput) => void
352
+ cb: (err: any, data?: ListRelatedItemsCommandOutput) => void,
356
353
  ): void;
357
354
  listReplicationSets(): Promise<ListReplicationSetsCommandOutput>;
358
355
  listReplicationSets(
359
356
  args: ListReplicationSetsCommandInput,
360
- options?: __HttpHandlerOptions
357
+ options?: __HttpHandlerOptions,
361
358
  ): Promise<ListReplicationSetsCommandOutput>;
362
359
  listReplicationSets(
363
360
  args: ListReplicationSetsCommandInput,
364
- cb: (err: any, data?: ListReplicationSetsCommandOutput) => void
361
+ cb: (err: any, data?: ListReplicationSetsCommandOutput) => void,
365
362
  ): void;
366
363
  listReplicationSets(
367
364
  args: ListReplicationSetsCommandInput,
368
365
  options: __HttpHandlerOptions,
369
- cb: (err: any, data?: ListReplicationSetsCommandOutput) => void
366
+ cb: (err: any, data?: ListReplicationSetsCommandOutput) => void,
370
367
  ): void;
371
368
  listResponsePlans(): Promise<ListResponsePlansCommandOutput>;
372
369
  listResponsePlans(
373
370
  args: ListResponsePlansCommandInput,
374
- options?: __HttpHandlerOptions
371
+ options?: __HttpHandlerOptions,
375
372
  ): Promise<ListResponsePlansCommandOutput>;
376
373
  listResponsePlans(
377
374
  args: ListResponsePlansCommandInput,
378
- cb: (err: any, data?: ListResponsePlansCommandOutput) => void
375
+ cb: (err: any, data?: ListResponsePlansCommandOutput) => void,
379
376
  ): void;
380
377
  listResponsePlans(
381
378
  args: ListResponsePlansCommandInput,
382
379
  options: __HttpHandlerOptions,
383
- cb: (err: any, data?: ListResponsePlansCommandOutput) => void
380
+ cb: (err: any, data?: ListResponsePlansCommandOutput) => void,
384
381
  ): void;
385
382
  listTagsForResource(
386
383
  args: ListTagsForResourceCommandInput,
387
- options?: __HttpHandlerOptions
384
+ options?: __HttpHandlerOptions,
388
385
  ): Promise<ListTagsForResourceCommandOutput>;
389
386
  listTagsForResource(
390
387
  args: ListTagsForResourceCommandInput,
391
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
388
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
392
389
  ): void;
393
390
  listTagsForResource(
394
391
  args: ListTagsForResourceCommandInput,
395
392
  options: __HttpHandlerOptions,
396
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
393
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
397
394
  ): void;
398
395
  listTimelineEvents(
399
396
  args: ListTimelineEventsCommandInput,
400
- options?: __HttpHandlerOptions
397
+ options?: __HttpHandlerOptions,
401
398
  ): Promise<ListTimelineEventsCommandOutput>;
402
399
  listTimelineEvents(
403
400
  args: ListTimelineEventsCommandInput,
404
- cb: (err: any, data?: ListTimelineEventsCommandOutput) => void
401
+ cb: (err: any, data?: ListTimelineEventsCommandOutput) => void,
405
402
  ): void;
406
403
  listTimelineEvents(
407
404
  args: ListTimelineEventsCommandInput,
408
405
  options: __HttpHandlerOptions,
409
- cb: (err: any, data?: ListTimelineEventsCommandOutput) => void
406
+ cb: (err: any, data?: ListTimelineEventsCommandOutput) => void,
410
407
  ): void;
411
408
  putResourcePolicy(
412
409
  args: PutResourcePolicyCommandInput,
413
- options?: __HttpHandlerOptions
410
+ options?: __HttpHandlerOptions,
414
411
  ): Promise<PutResourcePolicyCommandOutput>;
415
412
  putResourcePolicy(
416
413
  args: PutResourcePolicyCommandInput,
417
- cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
414
+ cb: (err: any, data?: PutResourcePolicyCommandOutput) => void,
418
415
  ): void;
419
416
  putResourcePolicy(
420
417
  args: PutResourcePolicyCommandInput,
421
418
  options: __HttpHandlerOptions,
422
- cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
419
+ cb: (err: any, data?: PutResourcePolicyCommandOutput) => void,
423
420
  ): void;
424
421
  startIncident(
425
422
  args: StartIncidentCommandInput,
426
- options?: __HttpHandlerOptions
423
+ options?: __HttpHandlerOptions,
427
424
  ): Promise<StartIncidentCommandOutput>;
428
425
  startIncident(
429
426
  args: StartIncidentCommandInput,
430
- cb: (err: any, data?: StartIncidentCommandOutput) => void
427
+ cb: (err: any, data?: StartIncidentCommandOutput) => void,
431
428
  ): void;
432
429
  startIncident(
433
430
  args: StartIncidentCommandInput,
434
431
  options: __HttpHandlerOptions,
435
- cb: (err: any, data?: StartIncidentCommandOutput) => void
432
+ cb: (err: any, data?: StartIncidentCommandOutput) => void,
436
433
  ): void;
437
434
  tagResource(
438
435
  args: TagResourceCommandInput,
439
- options?: __HttpHandlerOptions
436
+ options?: __HttpHandlerOptions,
440
437
  ): Promise<TagResourceCommandOutput>;
441
438
  tagResource(
442
439
  args: TagResourceCommandInput,
443
- cb: (err: any, data?: TagResourceCommandOutput) => void
440
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
444
441
  ): void;
445
442
  tagResource(
446
443
  args: TagResourceCommandInput,
447
444
  options: __HttpHandlerOptions,
448
- cb: (err: any, data?: TagResourceCommandOutput) => void
445
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
449
446
  ): void;
450
447
  untagResource(
451
448
  args: UntagResourceCommandInput,
452
- options?: __HttpHandlerOptions
449
+ options?: __HttpHandlerOptions,
453
450
  ): Promise<UntagResourceCommandOutput>;
454
451
  untagResource(
455
452
  args: UntagResourceCommandInput,
456
- cb: (err: any, data?: UntagResourceCommandOutput) => void
453
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
457
454
  ): void;
458
455
  untagResource(
459
456
  args: UntagResourceCommandInput,
460
457
  options: __HttpHandlerOptions,
461
- cb: (err: any, data?: UntagResourceCommandOutput) => void
458
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
462
459
  ): void;
463
460
  updateDeletionProtection(
464
461
  args: UpdateDeletionProtectionCommandInput,
465
- options?: __HttpHandlerOptions
462
+ options?: __HttpHandlerOptions,
466
463
  ): Promise<UpdateDeletionProtectionCommandOutput>;
467
464
  updateDeletionProtection(
468
465
  args: UpdateDeletionProtectionCommandInput,
469
- cb: (err: any, data?: UpdateDeletionProtectionCommandOutput) => void
466
+ cb: (err: any, data?: UpdateDeletionProtectionCommandOutput) => void,
470
467
  ): void;
471
468
  updateDeletionProtection(
472
469
  args: UpdateDeletionProtectionCommandInput,
473
470
  options: __HttpHandlerOptions,
474
- cb: (err: any, data?: UpdateDeletionProtectionCommandOutput) => void
471
+ cb: (err: any, data?: UpdateDeletionProtectionCommandOutput) => void,
475
472
  ): void;
476
473
  updateIncidentRecord(
477
474
  args: UpdateIncidentRecordCommandInput,
478
- options?: __HttpHandlerOptions
475
+ options?: __HttpHandlerOptions,
479
476
  ): Promise<UpdateIncidentRecordCommandOutput>;
480
477
  updateIncidentRecord(
481
478
  args: UpdateIncidentRecordCommandInput,
482
- cb: (err: any, data?: UpdateIncidentRecordCommandOutput) => void
479
+ cb: (err: any, data?: UpdateIncidentRecordCommandOutput) => void,
483
480
  ): void;
484
481
  updateIncidentRecord(
485
482
  args: UpdateIncidentRecordCommandInput,
486
483
  options: __HttpHandlerOptions,
487
- cb: (err: any, data?: UpdateIncidentRecordCommandOutput) => void
484
+ cb: (err: any, data?: UpdateIncidentRecordCommandOutput) => void,
488
485
  ): void;
489
486
  updateRelatedItems(
490
487
  args: UpdateRelatedItemsCommandInput,
491
- options?: __HttpHandlerOptions
488
+ options?: __HttpHandlerOptions,
492
489
  ): Promise<UpdateRelatedItemsCommandOutput>;
493
490
  updateRelatedItems(
494
491
  args: UpdateRelatedItemsCommandInput,
495
- cb: (err: any, data?: UpdateRelatedItemsCommandOutput) => void
492
+ cb: (err: any, data?: UpdateRelatedItemsCommandOutput) => void,
496
493
  ): void;
497
494
  updateRelatedItems(
498
495
  args: UpdateRelatedItemsCommandInput,
499
496
  options: __HttpHandlerOptions,
500
- cb: (err: any, data?: UpdateRelatedItemsCommandOutput) => void
497
+ cb: (err: any, data?: UpdateRelatedItemsCommandOutput) => void,
501
498
  ): void;
502
499
  updateReplicationSet(
503
500
  args: UpdateReplicationSetCommandInput,
504
- options?: __HttpHandlerOptions
501
+ options?: __HttpHandlerOptions,
505
502
  ): Promise<UpdateReplicationSetCommandOutput>;
506
503
  updateReplicationSet(
507
504
  args: UpdateReplicationSetCommandInput,
508
- cb: (err: any, data?: UpdateReplicationSetCommandOutput) => void
505
+ cb: (err: any, data?: UpdateReplicationSetCommandOutput) => void,
509
506
  ): void;
510
507
  updateReplicationSet(
511
508
  args: UpdateReplicationSetCommandInput,
512
509
  options: __HttpHandlerOptions,
513
- cb: (err: any, data?: UpdateReplicationSetCommandOutput) => void
510
+ cb: (err: any, data?: UpdateReplicationSetCommandOutput) => void,
514
511
  ): void;
515
512
  updateResponsePlan(
516
513
  args: UpdateResponsePlanCommandInput,
517
- options?: __HttpHandlerOptions
514
+ options?: __HttpHandlerOptions,
518
515
  ): Promise<UpdateResponsePlanCommandOutput>;
519
516
  updateResponsePlan(
520
517
  args: UpdateResponsePlanCommandInput,
521
- cb: (err: any, data?: UpdateResponsePlanCommandOutput) => void
518
+ cb: (err: any, data?: UpdateResponsePlanCommandOutput) => void,
522
519
  ): void;
523
520
  updateResponsePlan(
524
521
  args: UpdateResponsePlanCommandInput,
525
522
  options: __HttpHandlerOptions,
526
- cb: (err: any, data?: UpdateResponsePlanCommandOutput) => void
523
+ cb: (err: any, data?: UpdateResponsePlanCommandOutput) => void,
527
524
  ): void;
528
525
  updateTimelineEvent(
529
526
  args: UpdateTimelineEventCommandInput,
530
- options?: __HttpHandlerOptions
527
+ options?: __HttpHandlerOptions,
531
528
  ): Promise<UpdateTimelineEventCommandOutput>;
532
529
  updateTimelineEvent(
533
530
  args: UpdateTimelineEventCommandInput,
534
- cb: (err: any, data?: UpdateTimelineEventCommandOutput) => void
531
+ cb: (err: any, data?: UpdateTimelineEventCommandOutput) => void,
535
532
  ): void;
536
533
  updateTimelineEvent(
537
534
  args: UpdateTimelineEventCommandInput,
538
535
  options: __HttpHandlerOptions,
539
- cb: (err: any, data?: UpdateTimelineEventCommandOutput) => void
536
+ cb: (err: any, data?: UpdateTimelineEventCommandOutput) => void,
540
537
  ): void;
541
538
  paginateGetResourcePolicies(
542
539
  args: GetResourcePoliciesCommandInput,
543
540
  paginationConfig?: Pick<
544
541
  PaginationConfiguration,
545
542
  Exclude<keyof PaginationConfiguration, "client">
546
- >
543
+ >,
547
544
  ): Paginator<GetResourcePoliciesCommandOutput>;
548
545
  paginateListIncidentFindings(
549
546
  args: ListIncidentFindingsCommandInput,
550
547
  paginationConfig?: Pick<
551
548
  PaginationConfiguration,
552
549
  Exclude<keyof PaginationConfiguration, "client">
553
- >
550
+ >,
554
551
  ): Paginator<ListIncidentFindingsCommandOutput>;
555
552
  paginateListIncidentRecords(
556
553
  args?: ListIncidentRecordsCommandInput,
557
554
  paginationConfig?: Pick<
558
555
  PaginationConfiguration,
559
556
  Exclude<keyof PaginationConfiguration, "client">
560
- >
557
+ >,
561
558
  ): Paginator<ListIncidentRecordsCommandOutput>;
562
559
  paginateListRelatedItems(
563
560
  args: ListRelatedItemsCommandInput,
564
561
  paginationConfig?: Pick<
565
562
  PaginationConfiguration,
566
563
  Exclude<keyof PaginationConfiguration, "client">
567
- >
564
+ >,
568
565
  ): Paginator<ListRelatedItemsCommandOutput>;
569
566
  paginateListReplicationSets(
570
567
  args?: ListReplicationSetsCommandInput,
571
568
  paginationConfig?: Pick<
572
569
  PaginationConfiguration,
573
570
  Exclude<keyof PaginationConfiguration, "client">
574
- >
571
+ >,
575
572
  ): Paginator<ListReplicationSetsCommandOutput>;
576
573
  paginateListResponsePlans(
577
574
  args?: ListResponsePlansCommandInput,
578
575
  paginationConfig?: Pick<
579
576
  PaginationConfiguration,
580
577
  Exclude<keyof PaginationConfiguration, "client">
581
- >
578
+ >,
582
579
  ): Paginator<ListResponsePlansCommandOutput>;
583
580
  paginateListTimelineEvents(
584
581
  args: ListTimelineEventsCommandInput,
585
582
  paginationConfig?: Pick<
586
583
  PaginationConfiguration,
587
584
  Exclude<keyof PaginationConfiguration, "client">
588
- >
585
+ >,
589
586
  ): Paginator<ListTimelineEventsCommandOutput>;
590
587
  waitUntilWaitForReplicationSetActive(
591
588
  args: GetReplicationSetCommandInput,
@@ -594,7 +591,7 @@ export interface SSMIncidents {
594
591
  | Pick<
595
592
  WaiterConfiguration<SSMIncidents>,
596
593
  Exclude<keyof WaiterConfiguration<SSMIncidents>, "client">
597
- >
594
+ >,
598
595
  ): Promise<WaiterResult<GetReplicationSetCommandOutput>>;
599
596
  waitUntilWaitForReplicationSetDeleted(
600
597
  args: GetReplicationSetCommandInput,
@@ -603,9 +600,7 @@ export interface SSMIncidents {
603
600
  | Pick<
604
601
  WaiterConfiguration<SSMIncidents>,
605
602
  Exclude<keyof WaiterConfiguration<SSMIncidents>, "client">
606
- >
603
+ >,
607
604
  ): Promise<WaiterResult<ResourceNotFoundException>>;
608
605
  }
609
- export declare class SSMIncidents
610
- extends SSMIncidentsClient
611
- implements SSMIncidents {}
606
+ export declare class SSMIncidents extends SSMIncidentsClient implements SSMIncidents {}
@@ -11,10 +11,7 @@ import {
11
11
  Client as __Client,
12
12
  } from "@smithy/core/client";
13
13
  import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
14
- import {
15
- EndpointInputConfig,
16
- EndpointResolvedConfig,
17
- } from "@smithy/core/endpoints";
14
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
18
15
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
19
16
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
20
17
  import {
@@ -128,10 +125,7 @@ import {
128
125
  StartIncidentCommandInput,
129
126
  StartIncidentCommandOutput,
130
127
  } from "./commands/StartIncidentCommand";
131
- import {
132
- TagResourceCommandInput,
133
- TagResourceCommandOutput,
134
- } from "./commands/TagResourceCommand";
128
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
135
129
  import {
136
130
  UntagResourceCommandInput,
137
131
  UntagResourceCommandOutput,
@@ -231,8 +225,7 @@ export type ServiceOutputTypes =
231
225
  | UpdateReplicationSetCommandOutput
232
226
  | UpdateResponsePlanCommandOutput
233
227
  | UpdateTimelineEventCommandOutput;
234
- export interface ClientDefaults
235
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
228
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
236
229
  requestHandler?: __HttpHandlerUserInput;
237
230
  sha256?: __ChecksumConstructor | __HashConstructor;
238
231
  urlParser?: __UrlParser;
@@ -257,9 +250,7 @@ export interface ClientDefaults
257
250
  extensions?: RuntimeExtension[];
258
251
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
259
252
  }
260
- export type SSMIncidentsClientConfigType = Partial<
261
- __SmithyConfiguration<__HttpHandlerOptions>
262
- > &
253
+ export type SSMIncidentsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
263
254
  ClientDefaults &
264
255
  UserAgentInputConfig &
265
256
  RetryInputConfig &
@@ -268,8 +259,7 @@ export type SSMIncidentsClientConfigType = Partial<
268
259
  EndpointInputConfig<EndpointParameters> &
269
260
  HttpAuthSchemeInputConfig &
270
261
  ClientInputEndpointParameters;
271
- export interface SSMIncidentsClientConfig
272
- extends SSMIncidentsClientConfigType {}
262
+ export interface SSMIncidentsClientConfig extends SSMIncidentsClientConfigType {}
273
263
  export type SSMIncidentsClientResolvedConfigType =
274
264
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
275
265
  Required<ClientDefaults> &
@@ -281,8 +271,7 @@ export type SSMIncidentsClientResolvedConfigType =
281
271
  EndpointResolvedConfig<EndpointParameters> &
282
272
  HttpAuthSchemeResolvedConfig &
283
273
  ClientResolvedEndpointParameters;
284
- export interface SSMIncidentsClientResolvedConfig
285
- extends SSMIncidentsClientResolvedConfigType {}
274
+ export interface SSMIncidentsClientResolvedConfig extends SSMIncidentsClientResolvedConfigType {}
286
275
  export declare class SSMIncidentsClient extends __Client<
287
276
  __HttpHandlerOptions,
288
277
  ServiceInputTypes,
@@ -290,8 +279,6 @@ export declare class SSMIncidentsClient extends __Client<
290
279
  SSMIncidentsClientResolvedConfig
291
280
  > {
292
281
  readonly config: SSMIncidentsClientResolvedConfig;
293
- constructor(
294
- ...[configuration]: __CheckOptionalClientConfig<SSMIncidentsClientConfig>
295
- );
282
+ constructor(...[configuration]: __CheckOptionalClientConfig<SSMIncidentsClientConfig>);
296
283
  destroy(): void;
297
284
  }