aws-sdk 2.916.0 → 2.920.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 (45) hide show
  1. package/CHANGELOG.md +26 -1
  2. package/README.md +1 -1
  3. package/apis/autoscaling-2011-01-01.min.json +63 -60
  4. package/apis/datasync-2018-11-09.min.json +16 -15
  5. package/apis/devicefarm-2015-06-23.min.json +144 -92
  6. package/apis/docdb-2014-10-31.min.json +233 -65
  7. package/apis/docdb-2014-10-31.paginators.json +6 -0
  8. package/apis/ec2-2016-11-15.min.json +6 -0
  9. package/apis/fsx-2018-03-01.min.json +27 -24
  10. package/apis/iotevents-2018-07-27.min.json +715 -188
  11. package/apis/iotevents-data-2018-10-23.min.json +380 -1
  12. package/apis/iotsitewise-2019-12-02.min.json +65 -43
  13. package/apis/iotwireless-2020-11-22.min.json +210 -6
  14. package/apis/kendra-2019-02-03.min.json +351 -77
  15. package/apis/location-2020-11-19.min.json +677 -84
  16. package/apis/location-2020-11-19.paginators.json +12 -0
  17. package/apis/sns-2010-03-31.min.json +150 -13
  18. package/apis/sns-2010-03-31.paginators.json +12 -0
  19. package/clients/autoscaling.d.ts +55 -50
  20. package/clients/braket.d.ts +2 -2
  21. package/clients/datasync.d.ts +39 -34
  22. package/clients/devicefarm.d.ts +41 -10
  23. package/clients/docdb.d.ts +217 -4
  24. package/clients/ec2.d.ts +8 -0
  25. package/clients/ecs.d.ts +4 -4
  26. package/clients/fsx.d.ts +15 -2
  27. package/clients/iam.d.ts +1 -1
  28. package/clients/iotevents.d.ts +595 -11
  29. package/clients/ioteventsdata.d.ts +474 -9
  30. package/clients/iotsitewise.d.ts +34 -0
  31. package/clients/iotwireless.d.ts +126 -0
  32. package/clients/kendra.d.ts +410 -6
  33. package/clients/lightsail.d.ts +3 -3
  34. package/clients/location.d.ts +651 -77
  35. package/clients/polly.d.ts +1 -1
  36. package/clients/resourcegroups.d.ts +4 -4
  37. package/clients/servicediscovery.d.ts +41 -41
  38. package/clients/sns.d.ts +181 -4
  39. package/clients/sqs.d.ts +5 -5
  40. package/dist/aws-sdk-core-react-native.js +1 -1
  41. package/dist/aws-sdk-react-native.js +17 -17
  42. package/dist/aws-sdk.js +378 -168
  43. package/dist/aws-sdk.min.js +68 -68
  44. package/lib/core.js +1 -1
  45. package/package.json +1 -1
@@ -11,6 +11,120 @@
11
11
  "uid": "iotevents-data-2018-10-23"
12
12
  },
13
13
  "operations": {
14
+ "BatchAcknowledgeAlarm": {
15
+ "http": {
16
+ "requestUri": "/alarms/acknowledge",
17
+ "responseCode": 202
18
+ },
19
+ "input": {
20
+ "type": "structure",
21
+ "required": [
22
+ "acknowledgeActionRequests"
23
+ ],
24
+ "members": {
25
+ "acknowledgeActionRequests": {
26
+ "type": "list",
27
+ "member": {
28
+ "type": "structure",
29
+ "required": [
30
+ "requestId",
31
+ "alarmModelName"
32
+ ],
33
+ "members": {
34
+ "requestId": {},
35
+ "alarmModelName": {},
36
+ "keyValue": {},
37
+ "note": {}
38
+ }
39
+ }
40
+ }
41
+ }
42
+ },
43
+ "output": {
44
+ "type": "structure",
45
+ "members": {
46
+ "errorEntries": {
47
+ "shape": "S9"
48
+ }
49
+ }
50
+ }
51
+ },
52
+ "BatchDisableAlarm": {
53
+ "http": {
54
+ "requestUri": "/alarms/disable",
55
+ "responseCode": 202
56
+ },
57
+ "input": {
58
+ "type": "structure",
59
+ "required": [
60
+ "disableActionRequests"
61
+ ],
62
+ "members": {
63
+ "disableActionRequests": {
64
+ "type": "list",
65
+ "member": {
66
+ "type": "structure",
67
+ "required": [
68
+ "requestId",
69
+ "alarmModelName"
70
+ ],
71
+ "members": {
72
+ "requestId": {},
73
+ "alarmModelName": {},
74
+ "keyValue": {},
75
+ "note": {}
76
+ }
77
+ }
78
+ }
79
+ }
80
+ },
81
+ "output": {
82
+ "type": "structure",
83
+ "members": {
84
+ "errorEntries": {
85
+ "shape": "S9"
86
+ }
87
+ }
88
+ }
89
+ },
90
+ "BatchEnableAlarm": {
91
+ "http": {
92
+ "requestUri": "/alarms/enable",
93
+ "responseCode": 202
94
+ },
95
+ "input": {
96
+ "type": "structure",
97
+ "required": [
98
+ "enableActionRequests"
99
+ ],
100
+ "members": {
101
+ "enableActionRequests": {
102
+ "type": "list",
103
+ "member": {
104
+ "type": "structure",
105
+ "required": [
106
+ "requestId",
107
+ "alarmModelName"
108
+ ],
109
+ "members": {
110
+ "requestId": {},
111
+ "alarmModelName": {},
112
+ "keyValue": {},
113
+ "note": {}
114
+ }
115
+ }
116
+ }
117
+ }
118
+ },
119
+ "output": {
120
+ "type": "structure",
121
+ "members": {
122
+ "errorEntries": {
123
+ "shape": "S9"
124
+ }
125
+ }
126
+ }
127
+ },
14
128
  "BatchPutMessage": {
15
129
  "http": {
16
130
  "requestUri": "/inputs/messages",
@@ -36,6 +150,14 @@
36
150
  "inputName": {},
37
151
  "payload": {
38
152
  "type": "blob"
153
+ },
154
+ "timestamp": {
155
+ "type": "structure",
156
+ "members": {
157
+ "timeInMillis": {
158
+ "type": "long"
159
+ }
160
+ }
39
161
  }
40
162
  }
41
163
  }
@@ -59,6 +181,86 @@
59
181
  }
60
182
  }
61
183
  },
184
+ "BatchResetAlarm": {
185
+ "http": {
186
+ "requestUri": "/alarms/reset",
187
+ "responseCode": 202
188
+ },
189
+ "input": {
190
+ "type": "structure",
191
+ "required": [
192
+ "resetActionRequests"
193
+ ],
194
+ "members": {
195
+ "resetActionRequests": {
196
+ "type": "list",
197
+ "member": {
198
+ "type": "structure",
199
+ "required": [
200
+ "requestId",
201
+ "alarmModelName"
202
+ ],
203
+ "members": {
204
+ "requestId": {},
205
+ "alarmModelName": {},
206
+ "keyValue": {},
207
+ "note": {}
208
+ }
209
+ }
210
+ }
211
+ }
212
+ },
213
+ "output": {
214
+ "type": "structure",
215
+ "members": {
216
+ "errorEntries": {
217
+ "shape": "S9"
218
+ }
219
+ }
220
+ }
221
+ },
222
+ "BatchSnoozeAlarm": {
223
+ "http": {
224
+ "requestUri": "/alarms/snooze",
225
+ "responseCode": 202
226
+ },
227
+ "input": {
228
+ "type": "structure",
229
+ "required": [
230
+ "snoozeActionRequests"
231
+ ],
232
+ "members": {
233
+ "snoozeActionRequests": {
234
+ "type": "list",
235
+ "member": {
236
+ "type": "structure",
237
+ "required": [
238
+ "requestId",
239
+ "alarmModelName",
240
+ "snoozeDuration"
241
+ ],
242
+ "members": {
243
+ "requestId": {},
244
+ "alarmModelName": {},
245
+ "keyValue": {},
246
+ "note": {},
247
+ "snoozeDuration": {
248
+ "type": "integer"
249
+ }
250
+ }
251
+ }
252
+ }
253
+ }
254
+ },
255
+ "output": {
256
+ "type": "structure",
257
+ "members": {
258
+ "errorEntries": {
259
+ "shape": "S9"
260
+ }
261
+ }
262
+ }
263
+ },
62
264
  "BatchUpdateDetector": {
63
265
  "http": {
64
266
  "requestUri": "/detectors",
@@ -146,6 +348,120 @@
146
348
  }
147
349
  }
148
350
  },
351
+ "DescribeAlarm": {
352
+ "http": {
353
+ "method": "GET",
354
+ "requestUri": "/alarms/{alarmModelName}/keyValues/"
355
+ },
356
+ "input": {
357
+ "type": "structure",
358
+ "required": [
359
+ "alarmModelName"
360
+ ],
361
+ "members": {
362
+ "alarmModelName": {
363
+ "location": "uri",
364
+ "locationName": "alarmModelName"
365
+ },
366
+ "keyValue": {
367
+ "location": "querystring",
368
+ "locationName": "keyValue"
369
+ }
370
+ }
371
+ },
372
+ "output": {
373
+ "type": "structure",
374
+ "members": {
375
+ "alarm": {
376
+ "type": "structure",
377
+ "members": {
378
+ "alarmModelName": {},
379
+ "alarmModelVersion": {},
380
+ "keyValue": {},
381
+ "alarmState": {
382
+ "type": "structure",
383
+ "members": {
384
+ "stateName": {},
385
+ "ruleEvaluation": {
386
+ "type": "structure",
387
+ "members": {
388
+ "simpleRuleEvaluation": {
389
+ "type": "structure",
390
+ "members": {
391
+ "inputPropertyValue": {},
392
+ "operator": {},
393
+ "thresholdValue": {}
394
+ }
395
+ }
396
+ }
397
+ },
398
+ "customerAction": {
399
+ "type": "structure",
400
+ "members": {
401
+ "actionName": {},
402
+ "snoozeActionConfiguration": {
403
+ "type": "structure",
404
+ "members": {
405
+ "snoozeDuration": {
406
+ "type": "integer"
407
+ },
408
+ "note": {}
409
+ }
410
+ },
411
+ "enableActionConfiguration": {
412
+ "type": "structure",
413
+ "members": {
414
+ "note": {}
415
+ }
416
+ },
417
+ "disableActionConfiguration": {
418
+ "type": "structure",
419
+ "members": {
420
+ "note": {}
421
+ }
422
+ },
423
+ "acknowledgeActionConfiguration": {
424
+ "type": "structure",
425
+ "members": {
426
+ "note": {}
427
+ }
428
+ },
429
+ "resetActionConfiguration": {
430
+ "type": "structure",
431
+ "members": {
432
+ "note": {}
433
+ }
434
+ }
435
+ }
436
+ },
437
+ "systemEvent": {
438
+ "type": "structure",
439
+ "members": {
440
+ "eventType": {},
441
+ "stateChangeConfiguration": {
442
+ "type": "structure",
443
+ "members": {
444
+ "triggerType": {}
445
+ }
446
+ }
447
+ }
448
+ }
449
+ }
450
+ },
451
+ "severity": {
452
+ "type": "integer"
453
+ },
454
+ "creationTime": {
455
+ "type": "timestamp"
456
+ },
457
+ "lastUpdateTime": {
458
+ "type": "timestamp"
459
+ }
460
+ }
461
+ }
462
+ }
463
+ }
464
+ },
149
465
  "DescribeDetector": {
150
466
  "http": {
151
467
  "method": "GET",
@@ -228,6 +544,57 @@
228
544
  }
229
545
  }
230
546
  },
547
+ "ListAlarms": {
548
+ "http": {
549
+ "method": "GET",
550
+ "requestUri": "/alarms/{alarmModelName}"
551
+ },
552
+ "input": {
553
+ "type": "structure",
554
+ "required": [
555
+ "alarmModelName"
556
+ ],
557
+ "members": {
558
+ "alarmModelName": {
559
+ "location": "uri",
560
+ "locationName": "alarmModelName"
561
+ },
562
+ "nextToken": {
563
+ "location": "querystring",
564
+ "locationName": "nextToken"
565
+ },
566
+ "maxResults": {
567
+ "location": "querystring",
568
+ "locationName": "maxResults",
569
+ "type": "integer"
570
+ }
571
+ }
572
+ },
573
+ "output": {
574
+ "type": "structure",
575
+ "members": {
576
+ "alarmSummaries": {
577
+ "type": "list",
578
+ "member": {
579
+ "type": "structure",
580
+ "members": {
581
+ "alarmModelName": {},
582
+ "alarmModelVersion": {},
583
+ "keyValue": {},
584
+ "stateName": {},
585
+ "creationTime": {
586
+ "type": "timestamp"
587
+ },
588
+ "lastUpdateTime": {
589
+ "type": "timestamp"
590
+ }
591
+ }
592
+ }
593
+ },
594
+ "nextToken": {}
595
+ }
596
+ }
597
+ },
231
598
  "ListDetectors": {
232
599
  "http": {
233
600
  "method": "GET",
@@ -289,5 +656,17 @@
289
656
  }
290
657
  }
291
658
  },
292
- "shapes": {}
659
+ "shapes": {
660
+ "S9": {
661
+ "type": "list",
662
+ "member": {
663
+ "type": "structure",
664
+ "members": {
665
+ "requestId": {},
666
+ "errorCode": {},
667
+ "errorMessage": {}
668
+ }
669
+ }
670
+ }
671
+ }
293
672
  }