@aws-sdk/client-ssm-incidents 3.315.0 → 3.319.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.
@@ -1,3 +1,4 @@
1
+ import { createAggregatedClient } from "@aws-sdk/smithy-client";
1
2
  import { CreateReplicationSetCommand, } from "./commands/CreateReplicationSetCommand";
2
3
  import { CreateResponsePlanCommand, } from "./commands/CreateResponsePlanCommand";
3
4
  import { CreateTimelineEventCommand, } from "./commands/CreateTimelineEventCommand";
@@ -28,411 +29,37 @@ import { UpdateReplicationSetCommand, } from "./commands/UpdateReplicationSetCom
28
29
  import { UpdateResponsePlanCommand, } from "./commands/UpdateResponsePlanCommand";
29
30
  import { UpdateTimelineEventCommand, } from "./commands/UpdateTimelineEventCommand";
30
31
  import { SSMIncidentsClient } from "./SSMIncidentsClient";
32
+ const commands = {
33
+ CreateReplicationSetCommand,
34
+ CreateResponsePlanCommand,
35
+ CreateTimelineEventCommand,
36
+ DeleteIncidentRecordCommand,
37
+ DeleteReplicationSetCommand,
38
+ DeleteResourcePolicyCommand,
39
+ DeleteResponsePlanCommand,
40
+ DeleteTimelineEventCommand,
41
+ GetIncidentRecordCommand,
42
+ GetReplicationSetCommand,
43
+ GetResourcePoliciesCommand,
44
+ GetResponsePlanCommand,
45
+ GetTimelineEventCommand,
46
+ ListIncidentRecordsCommand,
47
+ ListRelatedItemsCommand,
48
+ ListReplicationSetsCommand,
49
+ ListResponsePlansCommand,
50
+ ListTagsForResourceCommand,
51
+ ListTimelineEventsCommand,
52
+ PutResourcePolicyCommand,
53
+ StartIncidentCommand,
54
+ TagResourceCommand,
55
+ UntagResourceCommand,
56
+ UpdateDeletionProtectionCommand,
57
+ UpdateIncidentRecordCommand,
58
+ UpdateRelatedItemsCommand,
59
+ UpdateReplicationSetCommand,
60
+ UpdateResponsePlanCommand,
61
+ UpdateTimelineEventCommand,
62
+ };
31
63
  export class SSMIncidents extends SSMIncidentsClient {
32
- createReplicationSet(args, optionsOrCb, cb) {
33
- const command = new CreateReplicationSetCommand(args);
34
- if (typeof optionsOrCb === "function") {
35
- this.send(command, optionsOrCb);
36
- }
37
- else if (typeof cb === "function") {
38
- if (typeof optionsOrCb !== "object")
39
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
40
- this.send(command, optionsOrCb || {}, cb);
41
- }
42
- else {
43
- return this.send(command, optionsOrCb);
44
- }
45
- }
46
- createResponsePlan(args, optionsOrCb, cb) {
47
- const command = new CreateResponsePlanCommand(args);
48
- if (typeof optionsOrCb === "function") {
49
- this.send(command, optionsOrCb);
50
- }
51
- else if (typeof cb === "function") {
52
- if (typeof optionsOrCb !== "object")
53
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
54
- this.send(command, optionsOrCb || {}, cb);
55
- }
56
- else {
57
- return this.send(command, optionsOrCb);
58
- }
59
- }
60
- createTimelineEvent(args, optionsOrCb, cb) {
61
- const command = new CreateTimelineEventCommand(args);
62
- if (typeof optionsOrCb === "function") {
63
- this.send(command, optionsOrCb);
64
- }
65
- else if (typeof cb === "function") {
66
- if (typeof optionsOrCb !== "object")
67
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
68
- this.send(command, optionsOrCb || {}, cb);
69
- }
70
- else {
71
- return this.send(command, optionsOrCb);
72
- }
73
- }
74
- deleteIncidentRecord(args, optionsOrCb, cb) {
75
- const command = new DeleteIncidentRecordCommand(args);
76
- if (typeof optionsOrCb === "function") {
77
- this.send(command, optionsOrCb);
78
- }
79
- else if (typeof cb === "function") {
80
- if (typeof optionsOrCb !== "object")
81
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
82
- this.send(command, optionsOrCb || {}, cb);
83
- }
84
- else {
85
- return this.send(command, optionsOrCb);
86
- }
87
- }
88
- deleteReplicationSet(args, optionsOrCb, cb) {
89
- const command = new DeleteReplicationSetCommand(args);
90
- if (typeof optionsOrCb === "function") {
91
- this.send(command, optionsOrCb);
92
- }
93
- else if (typeof cb === "function") {
94
- if (typeof optionsOrCb !== "object")
95
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
96
- this.send(command, optionsOrCb || {}, cb);
97
- }
98
- else {
99
- return this.send(command, optionsOrCb);
100
- }
101
- }
102
- deleteResourcePolicy(args, optionsOrCb, cb) {
103
- const command = new DeleteResourcePolicyCommand(args);
104
- if (typeof optionsOrCb === "function") {
105
- this.send(command, optionsOrCb);
106
- }
107
- else if (typeof cb === "function") {
108
- if (typeof optionsOrCb !== "object")
109
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
110
- this.send(command, optionsOrCb || {}, cb);
111
- }
112
- else {
113
- return this.send(command, optionsOrCb);
114
- }
115
- }
116
- deleteResponsePlan(args, optionsOrCb, cb) {
117
- const command = new DeleteResponsePlanCommand(args);
118
- if (typeof optionsOrCb === "function") {
119
- this.send(command, optionsOrCb);
120
- }
121
- else if (typeof cb === "function") {
122
- if (typeof optionsOrCb !== "object")
123
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
124
- this.send(command, optionsOrCb || {}, cb);
125
- }
126
- else {
127
- return this.send(command, optionsOrCb);
128
- }
129
- }
130
- deleteTimelineEvent(args, optionsOrCb, cb) {
131
- const command = new DeleteTimelineEventCommand(args);
132
- if (typeof optionsOrCb === "function") {
133
- this.send(command, optionsOrCb);
134
- }
135
- else if (typeof cb === "function") {
136
- if (typeof optionsOrCb !== "object")
137
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
138
- this.send(command, optionsOrCb || {}, cb);
139
- }
140
- else {
141
- return this.send(command, optionsOrCb);
142
- }
143
- }
144
- getIncidentRecord(args, optionsOrCb, cb) {
145
- const command = new GetIncidentRecordCommand(args);
146
- if (typeof optionsOrCb === "function") {
147
- this.send(command, optionsOrCb);
148
- }
149
- else if (typeof cb === "function") {
150
- if (typeof optionsOrCb !== "object")
151
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
152
- this.send(command, optionsOrCb || {}, cb);
153
- }
154
- else {
155
- return this.send(command, optionsOrCb);
156
- }
157
- }
158
- getReplicationSet(args, optionsOrCb, cb) {
159
- const command = new GetReplicationSetCommand(args);
160
- if (typeof optionsOrCb === "function") {
161
- this.send(command, optionsOrCb);
162
- }
163
- else if (typeof cb === "function") {
164
- if (typeof optionsOrCb !== "object")
165
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
166
- this.send(command, optionsOrCb || {}, cb);
167
- }
168
- else {
169
- return this.send(command, optionsOrCb);
170
- }
171
- }
172
- getResourcePolicies(args, optionsOrCb, cb) {
173
- const command = new GetResourcePoliciesCommand(args);
174
- if (typeof optionsOrCb === "function") {
175
- this.send(command, optionsOrCb);
176
- }
177
- else if (typeof cb === "function") {
178
- if (typeof optionsOrCb !== "object")
179
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
180
- this.send(command, optionsOrCb || {}, cb);
181
- }
182
- else {
183
- return this.send(command, optionsOrCb);
184
- }
185
- }
186
- getResponsePlan(args, optionsOrCb, cb) {
187
- const command = new GetResponsePlanCommand(args);
188
- if (typeof optionsOrCb === "function") {
189
- this.send(command, optionsOrCb);
190
- }
191
- else if (typeof cb === "function") {
192
- if (typeof optionsOrCb !== "object")
193
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
194
- this.send(command, optionsOrCb || {}, cb);
195
- }
196
- else {
197
- return this.send(command, optionsOrCb);
198
- }
199
- }
200
- getTimelineEvent(args, optionsOrCb, cb) {
201
- const command = new GetTimelineEventCommand(args);
202
- if (typeof optionsOrCb === "function") {
203
- this.send(command, optionsOrCb);
204
- }
205
- else if (typeof cb === "function") {
206
- if (typeof optionsOrCb !== "object")
207
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
208
- this.send(command, optionsOrCb || {}, cb);
209
- }
210
- else {
211
- return this.send(command, optionsOrCb);
212
- }
213
- }
214
- listIncidentRecords(args, optionsOrCb, cb) {
215
- const command = new ListIncidentRecordsCommand(args);
216
- if (typeof optionsOrCb === "function") {
217
- this.send(command, optionsOrCb);
218
- }
219
- else if (typeof cb === "function") {
220
- if (typeof optionsOrCb !== "object")
221
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
222
- this.send(command, optionsOrCb || {}, cb);
223
- }
224
- else {
225
- return this.send(command, optionsOrCb);
226
- }
227
- }
228
- listRelatedItems(args, optionsOrCb, cb) {
229
- const command = new ListRelatedItemsCommand(args);
230
- if (typeof optionsOrCb === "function") {
231
- this.send(command, optionsOrCb);
232
- }
233
- else if (typeof cb === "function") {
234
- if (typeof optionsOrCb !== "object")
235
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
236
- this.send(command, optionsOrCb || {}, cb);
237
- }
238
- else {
239
- return this.send(command, optionsOrCb);
240
- }
241
- }
242
- listReplicationSets(args, optionsOrCb, cb) {
243
- const command = new ListReplicationSetsCommand(args);
244
- if (typeof optionsOrCb === "function") {
245
- this.send(command, optionsOrCb);
246
- }
247
- else if (typeof cb === "function") {
248
- if (typeof optionsOrCb !== "object")
249
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
250
- this.send(command, optionsOrCb || {}, cb);
251
- }
252
- else {
253
- return this.send(command, optionsOrCb);
254
- }
255
- }
256
- listResponsePlans(args, optionsOrCb, cb) {
257
- const command = new ListResponsePlansCommand(args);
258
- if (typeof optionsOrCb === "function") {
259
- this.send(command, optionsOrCb);
260
- }
261
- else if (typeof cb === "function") {
262
- if (typeof optionsOrCb !== "object")
263
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
264
- this.send(command, optionsOrCb || {}, cb);
265
- }
266
- else {
267
- return this.send(command, optionsOrCb);
268
- }
269
- }
270
- listTagsForResource(args, optionsOrCb, cb) {
271
- const command = new ListTagsForResourceCommand(args);
272
- if (typeof optionsOrCb === "function") {
273
- this.send(command, optionsOrCb);
274
- }
275
- else if (typeof cb === "function") {
276
- if (typeof optionsOrCb !== "object")
277
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
278
- this.send(command, optionsOrCb || {}, cb);
279
- }
280
- else {
281
- return this.send(command, optionsOrCb);
282
- }
283
- }
284
- listTimelineEvents(args, optionsOrCb, cb) {
285
- const command = new ListTimelineEventsCommand(args);
286
- if (typeof optionsOrCb === "function") {
287
- this.send(command, optionsOrCb);
288
- }
289
- else if (typeof cb === "function") {
290
- if (typeof optionsOrCb !== "object")
291
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
292
- this.send(command, optionsOrCb || {}, cb);
293
- }
294
- else {
295
- return this.send(command, optionsOrCb);
296
- }
297
- }
298
- putResourcePolicy(args, optionsOrCb, cb) {
299
- const command = new PutResourcePolicyCommand(args);
300
- if (typeof optionsOrCb === "function") {
301
- this.send(command, optionsOrCb);
302
- }
303
- else if (typeof cb === "function") {
304
- if (typeof optionsOrCb !== "object")
305
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
306
- this.send(command, optionsOrCb || {}, cb);
307
- }
308
- else {
309
- return this.send(command, optionsOrCb);
310
- }
311
- }
312
- startIncident(args, optionsOrCb, cb) {
313
- const command = new StartIncidentCommand(args);
314
- if (typeof optionsOrCb === "function") {
315
- this.send(command, optionsOrCb);
316
- }
317
- else if (typeof cb === "function") {
318
- if (typeof optionsOrCb !== "object")
319
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
320
- this.send(command, optionsOrCb || {}, cb);
321
- }
322
- else {
323
- return this.send(command, optionsOrCb);
324
- }
325
- }
326
- tagResource(args, optionsOrCb, cb) {
327
- const command = new TagResourceCommand(args);
328
- if (typeof optionsOrCb === "function") {
329
- this.send(command, optionsOrCb);
330
- }
331
- else if (typeof cb === "function") {
332
- if (typeof optionsOrCb !== "object")
333
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
334
- this.send(command, optionsOrCb || {}, cb);
335
- }
336
- else {
337
- return this.send(command, optionsOrCb);
338
- }
339
- }
340
- untagResource(args, optionsOrCb, cb) {
341
- const command = new UntagResourceCommand(args);
342
- if (typeof optionsOrCb === "function") {
343
- this.send(command, optionsOrCb);
344
- }
345
- else if (typeof cb === "function") {
346
- if (typeof optionsOrCb !== "object")
347
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
348
- this.send(command, optionsOrCb || {}, cb);
349
- }
350
- else {
351
- return this.send(command, optionsOrCb);
352
- }
353
- }
354
- updateDeletionProtection(args, optionsOrCb, cb) {
355
- const command = new UpdateDeletionProtectionCommand(args);
356
- if (typeof optionsOrCb === "function") {
357
- this.send(command, optionsOrCb);
358
- }
359
- else if (typeof cb === "function") {
360
- if (typeof optionsOrCb !== "object")
361
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
362
- this.send(command, optionsOrCb || {}, cb);
363
- }
364
- else {
365
- return this.send(command, optionsOrCb);
366
- }
367
- }
368
- updateIncidentRecord(args, optionsOrCb, cb) {
369
- const command = new UpdateIncidentRecordCommand(args);
370
- if (typeof optionsOrCb === "function") {
371
- this.send(command, optionsOrCb);
372
- }
373
- else if (typeof cb === "function") {
374
- if (typeof optionsOrCb !== "object")
375
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
376
- this.send(command, optionsOrCb || {}, cb);
377
- }
378
- else {
379
- return this.send(command, optionsOrCb);
380
- }
381
- }
382
- updateRelatedItems(args, optionsOrCb, cb) {
383
- const command = new UpdateRelatedItemsCommand(args);
384
- if (typeof optionsOrCb === "function") {
385
- this.send(command, optionsOrCb);
386
- }
387
- else if (typeof cb === "function") {
388
- if (typeof optionsOrCb !== "object")
389
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
390
- this.send(command, optionsOrCb || {}, cb);
391
- }
392
- else {
393
- return this.send(command, optionsOrCb);
394
- }
395
- }
396
- updateReplicationSet(args, optionsOrCb, cb) {
397
- const command = new UpdateReplicationSetCommand(args);
398
- if (typeof optionsOrCb === "function") {
399
- this.send(command, optionsOrCb);
400
- }
401
- else if (typeof cb === "function") {
402
- if (typeof optionsOrCb !== "object")
403
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
404
- this.send(command, optionsOrCb || {}, cb);
405
- }
406
- else {
407
- return this.send(command, optionsOrCb);
408
- }
409
- }
410
- updateResponsePlan(args, optionsOrCb, cb) {
411
- const command = new UpdateResponsePlanCommand(args);
412
- if (typeof optionsOrCb === "function") {
413
- this.send(command, optionsOrCb);
414
- }
415
- else if (typeof cb === "function") {
416
- if (typeof optionsOrCb !== "object")
417
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
418
- this.send(command, optionsOrCb || {}, cb);
419
- }
420
- else {
421
- return this.send(command, optionsOrCb);
422
- }
423
- }
424
- updateTimelineEvent(args, optionsOrCb, cb) {
425
- const command = new UpdateTimelineEventCommand(args);
426
- if (typeof optionsOrCb === "function") {
427
- this.send(command, optionsOrCb);
428
- }
429
- else if (typeof cb === "function") {
430
- if (typeof optionsOrCb !== "object")
431
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
432
- this.send(command, optionsOrCb || {}, cb);
433
- }
434
- else {
435
- return this.send(command, optionsOrCb);
436
- }
437
- }
438
64
  }
65
+ createAggregatedClient(commands, SSMIncidents);
@@ -11,7 +11,7 @@ export const se_CreateReplicationSetCommand = async (input, context) => {
11
11
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/createReplicationSet";
12
12
  let body;
13
13
  body = JSON.stringify(take(input, {
14
- clientToken: (_) => _ ?? generateIdempotencyToken(),
14
+ clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
15
15
  regions: (_) => _json(_),
16
16
  tags: (_) => _json(_),
17
17
  }));
@@ -35,7 +35,7 @@ export const se_CreateResponsePlanCommand = async (input, context) => {
35
35
  body = JSON.stringify(take(input, {
36
36
  actions: (_) => _json(_),
37
37
  chatChannel: (_) => _json(_),
38
- clientToken: (_) => _ ?? generateIdempotencyToken(),
38
+ clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
39
39
  displayName: [],
40
40
  engagements: (_) => _json(_),
41
41
  incidentTemplate: (_) => _json(_),
@@ -61,7 +61,7 @@ export const se_CreateTimelineEventCommand = async (input, context) => {
61
61
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/createTimelineEvent";
62
62
  let body;
63
63
  body = JSON.stringify(take(input, {
64
- clientToken: (_) => _ ?? generateIdempotencyToken(),
64
+ clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
65
65
  eventData: [],
66
66
  eventReferences: (_) => _json(_),
67
67
  eventTime: (_) => Math.round(_.getTime() / 1000),
@@ -437,7 +437,7 @@ export const se_StartIncidentCommand = async (input, context) => {
437
437
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/startIncident";
438
438
  let body;
439
439
  body = JSON.stringify(take(input, {
440
- clientToken: (_) => _ ?? generateIdempotencyToken(),
440
+ clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
441
441
  impact: [],
442
442
  relatedItems: (_) => _json(_),
443
443
  responsePlanArn: [],
@@ -507,7 +507,7 @@ export const se_UpdateDeletionProtectionCommand = async (input, context) => {
507
507
  let body;
508
508
  body = JSON.stringify(take(input, {
509
509
  arn: [],
510
- clientToken: (_) => _ ?? generateIdempotencyToken(),
510
+ clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
511
511
  deletionProtected: [],
512
512
  }));
513
513
  return new __HttpRequest({
@@ -530,7 +530,7 @@ export const se_UpdateIncidentRecordCommand = async (input, context) => {
530
530
  body = JSON.stringify(take(input, {
531
531
  arn: [],
532
532
  chatChannel: (_) => _json(_),
533
- clientToken: (_) => _ ?? generateIdempotencyToken(),
533
+ clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
534
534
  impact: [],
535
535
  notificationTargets: (_) => _json(_),
536
536
  status: [],
@@ -555,7 +555,7 @@ export const se_UpdateRelatedItemsCommand = async (input, context) => {
555
555
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/updateRelatedItems";
556
556
  let body;
557
557
  body = JSON.stringify(take(input, {
558
- clientToken: (_) => _ ?? generateIdempotencyToken(),
558
+ clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
559
559
  incidentRecordArn: [],
560
560
  relatedItemsUpdate: (_) => _json(_),
561
561
  }));
@@ -579,7 +579,7 @@ export const se_UpdateReplicationSetCommand = async (input, context) => {
579
579
  body = JSON.stringify(take(input, {
580
580
  actions: (_) => _json(_),
581
581
  arn: [],
582
- clientToken: (_) => _ ?? generateIdempotencyToken(),
582
+ clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
583
583
  }));
584
584
  return new __HttpRequest({
585
585
  protocol,
@@ -602,7 +602,7 @@ export const se_UpdateResponsePlanCommand = async (input, context) => {
602
602
  actions: (_) => _json(_),
603
603
  arn: [],
604
604
  chatChannel: (_) => _json(_),
605
- clientToken: (_) => _ ?? generateIdempotencyToken(),
605
+ clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
606
606
  displayName: [],
607
607
  engagements: (_) => _json(_),
608
608
  incidentTemplateDedupeString: [],
@@ -631,7 +631,7 @@ export const se_UpdateTimelineEventCommand = async (input, context) => {
631
631
  const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/updateTimelineEvent";
632
632
  let body;
633
633
  body = JSON.stringify(take(input, {
634
- clientToken: (_) => _ ?? generateIdempotencyToken(),
634
+ clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
635
635
  eventData: [],
636
636
  eventId: [],
637
637
  eventReferences: (_) => _json(_),