aws-sdk 2.658.0 → 2.662.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 (57) hide show
  1. package/CHANGELOG.md +30 -1
  2. package/README.md +1 -1
  3. package/apis/apigatewayv2-2018-11-29.min.json +51 -0
  4. package/apis/application-autoscaling-2016-02-06.examples.json +6 -169
  5. package/apis/ce-2017-10-25.min.json +123 -88
  6. package/apis/ce-2017-10-25.paginators.json +5 -0
  7. package/apis/codeguru-reviewer-2019-09-19.min.json +341 -3
  8. package/apis/codeguru-reviewer-2019-09-19.paginators.json +15 -0
  9. package/apis/elasticmapreduce-2009-03-31.min.json +98 -17
  10. package/apis/es-2015-01-01.min.json +3 -0
  11. package/apis/firehose-2015-08-04.min.json +74 -30
  12. package/apis/guardduty-2017-11-28.min.json +165 -16
  13. package/apis/guardduty-2017-11-28.paginators.json +6 -0
  14. package/apis/iotevents-2018-07-27.min.json +102 -20
  15. package/apis/mediapackage-vod-2018-11-07.min.json +173 -36
  16. package/apis/metadata.json +3 -0
  17. package/apis/pinpoint-2016-12-01.min.json +363 -335
  18. package/apis/ram-2018-01-04.min.json +30 -0
  19. package/apis/rds-2014-10-31.min.json +2 -0
  20. package/apis/redshift-2012-12-01.min.json +154 -46
  21. package/apis/redshift-2012-12-01.paginators.json +6 -0
  22. package/apis/route53domains-2014-05-15.min.json +97 -24
  23. package/apis/storagegateway-2013-06-30.min.json +99 -14
  24. package/apis/synthetics-2017-10-11.examples.json +5 -0
  25. package/apis/synthetics-2017-10-11.min.json +578 -0
  26. package/apis/synthetics-2017-10-11.paginators.json +24 -0
  27. package/apis/transfer-2018-11-05.min.json +41 -24
  28. package/clients/all.d.ts +1 -0
  29. package/clients/all.js +2 -1
  30. package/clients/apigatewayv2.d.ts +40 -2
  31. package/clients/applicationautoscaling.d.ts +83 -83
  32. package/clients/codegurureviewer.d.ts +417 -10
  33. package/clients/costexplorer.d.ts +66 -28
  34. package/clients/emr.d.ts +91 -6
  35. package/clients/es.d.ts +4 -0
  36. package/clients/firehose.d.ts +50 -8
  37. package/clients/fms.d.ts +6 -6
  38. package/clients/glue.d.ts +4 -4
  39. package/clients/guardduty.d.ts +340 -224
  40. package/clients/iotevents.d.ts +106 -0
  41. package/clients/mediapackagevod.d.ts +55 -0
  42. package/clients/pinpoint.d.ts +115 -77
  43. package/clients/ram.d.ts +41 -2
  44. package/clients/rds.d.ts +13 -5
  45. package/clients/redshift.d.ts +162 -1
  46. package/clients/route53domains.d.ts +140 -47
  47. package/clients/storagegateway.d.ts +137 -60
  48. package/clients/synthetics.d.ts +656 -0
  49. package/clients/synthetics.js +18 -0
  50. package/clients/transfer.d.ts +154 -123
  51. package/dist/aws-sdk-core-react-native.js +2 -2
  52. package/dist/aws-sdk-react-native.js +61 -24
  53. package/dist/aws-sdk.js +664 -222
  54. package/dist/aws-sdk.min.js +74 -74
  55. package/lib/config_service_placeholders.d.ts +2 -0
  56. package/lib/core.js +1 -1
  57. package/package.json +1 -1
@@ -51,6 +51,121 @@
51
51
  }
52
52
  }
53
53
  },
54
+ "DescribeCodeReview": {
55
+ "http": {
56
+ "method": "GET",
57
+ "requestUri": "/codereviews/{CodeReviewArn}"
58
+ },
59
+ "input": {
60
+ "type": "structure",
61
+ "required": [
62
+ "CodeReviewArn"
63
+ ],
64
+ "members": {
65
+ "CodeReviewArn": {
66
+ "location": "uri",
67
+ "locationName": "CodeReviewArn"
68
+ }
69
+ }
70
+ },
71
+ "output": {
72
+ "type": "structure",
73
+ "members": {
74
+ "CodeReview": {
75
+ "type": "structure",
76
+ "members": {
77
+ "Name": {},
78
+ "CodeReviewArn": {},
79
+ "RepositoryName": {},
80
+ "Owner": {},
81
+ "ProviderType": {},
82
+ "State": {},
83
+ "StateReason": {},
84
+ "CreatedTimeStamp": {
85
+ "type": "timestamp"
86
+ },
87
+ "LastUpdatedTimeStamp": {
88
+ "type": "timestamp"
89
+ },
90
+ "Type": {},
91
+ "PullRequestId": {},
92
+ "SourceCodeType": {
93
+ "type": "structure",
94
+ "members": {
95
+ "CommitDiff": {
96
+ "type": "structure",
97
+ "members": {
98
+ "SourceCommit": {},
99
+ "DestinationCommit": {}
100
+ }
101
+ }
102
+ }
103
+ },
104
+ "Metrics": {
105
+ "type": "structure",
106
+ "members": {
107
+ "MeteredLinesOfCodeCount": {
108
+ "type": "long"
109
+ },
110
+ "FindingsCount": {
111
+ "type": "long"
112
+ }
113
+ }
114
+ }
115
+ }
116
+ }
117
+ }
118
+ }
119
+ },
120
+ "DescribeRecommendationFeedback": {
121
+ "http": {
122
+ "method": "GET",
123
+ "requestUri": "/feedback/{CodeReviewArn}"
124
+ },
125
+ "input": {
126
+ "type": "structure",
127
+ "required": [
128
+ "CodeReviewArn",
129
+ "RecommendationId"
130
+ ],
131
+ "members": {
132
+ "CodeReviewArn": {
133
+ "location": "uri",
134
+ "locationName": "CodeReviewArn"
135
+ },
136
+ "RecommendationId": {
137
+ "location": "querystring",
138
+ "locationName": "RecommendationId"
139
+ },
140
+ "UserId": {
141
+ "location": "querystring",
142
+ "locationName": "UserId"
143
+ }
144
+ }
145
+ },
146
+ "output": {
147
+ "type": "structure",
148
+ "members": {
149
+ "RecommendationFeedback": {
150
+ "type": "structure",
151
+ "members": {
152
+ "CodeReviewArn": {},
153
+ "RecommendationId": {},
154
+ "Reactions": {
155
+ "shape": "Sw"
156
+ },
157
+ "UserId": {},
158
+ "CreatedTimeStamp": {
159
+ "type": "timestamp"
160
+ },
161
+ "LastUpdatedTimeStamp": {
162
+ "type": "timestamp"
163
+ }
164
+ }
165
+ }
166
+ }
167
+ }
168
+ },
54
169
  "DescribeRepositoryAssociation": {
55
170
  "http": {
56
171
  "method": "GET",
@@ -103,20 +218,210 @@
103
218
  }
104
219
  }
105
220
  },
106
- "ListRepositoryAssociations": {
221
+ "ListCodeReviews": {
107
222
  "http": {
108
223
  "method": "GET",
109
- "requestUri": "/associations"
224
+ "requestUri": "/codereviews"
110
225
  },
111
226
  "input": {
112
227
  "type": "structure",
228
+ "required": [
229
+ "Type"
230
+ ],
113
231
  "members": {
114
232
  "ProviderTypes": {
233
+ "shape": "S13",
234
+ "location": "querystring",
235
+ "locationName": "ProviderTypes"
236
+ },
237
+ "States": {
238
+ "location": "querystring",
239
+ "locationName": "States",
240
+ "type": "list",
241
+ "member": {}
242
+ },
243
+ "RepositoryNames": {
115
244
  "location": "querystring",
116
- "locationName": "ProviderType",
245
+ "locationName": "RepositoryNames",
117
246
  "type": "list",
118
247
  "member": {}
119
248
  },
249
+ "Type": {
250
+ "location": "querystring",
251
+ "locationName": "Type"
252
+ },
253
+ "MaxResults": {
254
+ "location": "querystring",
255
+ "locationName": "MaxResults",
256
+ "type": "integer"
257
+ },
258
+ "NextToken": {
259
+ "location": "querystring",
260
+ "locationName": "NextToken"
261
+ }
262
+ }
263
+ },
264
+ "output": {
265
+ "type": "structure",
266
+ "members": {
267
+ "CodeReviewSummaries": {
268
+ "type": "list",
269
+ "member": {
270
+ "type": "structure",
271
+ "members": {
272
+ "Name": {},
273
+ "CodeReviewArn": {},
274
+ "RepositoryName": {},
275
+ "Owner": {},
276
+ "ProviderType": {},
277
+ "State": {},
278
+ "CreatedTimeStamp": {
279
+ "type": "timestamp"
280
+ },
281
+ "LastUpdatedTimeStamp": {
282
+ "type": "timestamp"
283
+ },
284
+ "Type": {},
285
+ "PullRequestId": {},
286
+ "MetricsSummary": {
287
+ "type": "structure",
288
+ "members": {
289
+ "MeteredLinesOfCodeCount": {
290
+ "type": "long"
291
+ },
292
+ "FindingsCount": {
293
+ "type": "long"
294
+ }
295
+ }
296
+ }
297
+ }
298
+ }
299
+ },
300
+ "NextToken": {}
301
+ }
302
+ }
303
+ },
304
+ "ListRecommendationFeedback": {
305
+ "http": {
306
+ "method": "GET",
307
+ "requestUri": "/feedback/{CodeReviewArn}/RecommendationFeedback"
308
+ },
309
+ "input": {
310
+ "type": "structure",
311
+ "required": [
312
+ "CodeReviewArn"
313
+ ],
314
+ "members": {
315
+ "NextToken": {
316
+ "location": "querystring",
317
+ "locationName": "NextToken"
318
+ },
319
+ "MaxResults": {
320
+ "location": "querystring",
321
+ "locationName": "MaxResults",
322
+ "type": "integer"
323
+ },
324
+ "CodeReviewArn": {
325
+ "location": "uri",
326
+ "locationName": "CodeReviewArn"
327
+ },
328
+ "UserIds": {
329
+ "location": "querystring",
330
+ "locationName": "UserIds",
331
+ "type": "list",
332
+ "member": {}
333
+ },
334
+ "RecommendationIds": {
335
+ "location": "querystring",
336
+ "locationName": "RecommendationIds",
337
+ "type": "list",
338
+ "member": {}
339
+ }
340
+ }
341
+ },
342
+ "output": {
343
+ "type": "structure",
344
+ "members": {
345
+ "RecommendationFeedbackSummaries": {
346
+ "type": "list",
347
+ "member": {
348
+ "type": "structure",
349
+ "members": {
350
+ "RecommendationId": {},
351
+ "Reactions": {
352
+ "shape": "Sw"
353
+ },
354
+ "UserId": {}
355
+ }
356
+ }
357
+ },
358
+ "NextToken": {}
359
+ }
360
+ }
361
+ },
362
+ "ListRecommendations": {
363
+ "http": {
364
+ "method": "GET",
365
+ "requestUri": "/codereviews/{CodeReviewArn}/Recommendations"
366
+ },
367
+ "input": {
368
+ "type": "structure",
369
+ "required": [
370
+ "CodeReviewArn"
371
+ ],
372
+ "members": {
373
+ "NextToken": {
374
+ "location": "querystring",
375
+ "locationName": "NextToken"
376
+ },
377
+ "MaxResults": {
378
+ "location": "querystring",
379
+ "locationName": "MaxResults",
380
+ "type": "integer"
381
+ },
382
+ "CodeReviewArn": {
383
+ "location": "uri",
384
+ "locationName": "CodeReviewArn"
385
+ }
386
+ }
387
+ },
388
+ "output": {
389
+ "type": "structure",
390
+ "members": {
391
+ "RecommendationSummaries": {
392
+ "type": "list",
393
+ "member": {
394
+ "type": "structure",
395
+ "members": {
396
+ "FilePath": {},
397
+ "RecommendationId": {},
398
+ "StartLine": {
399
+ "type": "integer"
400
+ },
401
+ "EndLine": {
402
+ "type": "integer"
403
+ },
404
+ "Description": {}
405
+ }
406
+ }
407
+ },
408
+ "NextToken": {}
409
+ }
410
+ }
411
+ },
412
+ "ListRepositoryAssociations": {
413
+ "http": {
414
+ "method": "GET",
415
+ "requestUri": "/associations"
416
+ },
417
+ "input": {
418
+ "type": "structure",
419
+ "members": {
420
+ "ProviderTypes": {
421
+ "shape": "S13",
422
+ "location": "querystring",
423
+ "locationName": "ProviderType"
424
+ },
120
425
  "States": {
121
426
  "location": "querystring",
122
427
  "locationName": "State",
@@ -169,6 +474,31 @@
169
474
  "NextToken": {}
170
475
  }
171
476
  }
477
+ },
478
+ "PutRecommendationFeedback": {
479
+ "http": {
480
+ "method": "PUT",
481
+ "requestUri": "/feedback"
482
+ },
483
+ "input": {
484
+ "type": "structure",
485
+ "required": [
486
+ "CodeReviewArn",
487
+ "RecommendationId",
488
+ "Reactions"
489
+ ],
490
+ "members": {
491
+ "CodeReviewArn": {},
492
+ "RecommendationId": {},
493
+ "Reactions": {
494
+ "shape": "Sw"
495
+ }
496
+ }
497
+ },
498
+ "output": {
499
+ "type": "structure",
500
+ "members": {}
501
+ }
172
502
  }
173
503
  },
174
504
  "shapes": {
@@ -189,6 +519,14 @@
189
519
  "type": "timestamp"
190
520
  }
191
521
  }
522
+ },
523
+ "Sw": {
524
+ "type": "list",
525
+ "member": {}
526
+ },
527
+ "S13": {
528
+ "type": "list",
529
+ "member": {}
192
530
  }
193
531
  }
194
532
  }
@@ -1,5 +1,20 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListCodeReviews": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
8
+ "ListRecommendationFeedback": {
9
+ "input_token": "NextToken",
10
+ "output_token": "NextToken",
11
+ "limit_key": "MaxResults"
12
+ },
13
+ "ListRecommendations": {
14
+ "input_token": "NextToken",
15
+ "output_token": "NextToken",
16
+ "limit_key": "MaxResults"
17
+ },
3
18
  "ListRepositoryAssociations": {
4
19
  "input_token": "NextToken",
5
20
  "output_token": "NextToken",
@@ -262,10 +262,10 @@
262
262
  "shape": "S2l"
263
263
  },
264
264
  "ClusterArn": {},
265
+ "OutpostArn": {},
265
266
  "StepConcurrencyLevel": {
266
267
  "type": "integer"
267
- },
268
- "OutpostArn": {}
268
+ }
269
269
  }
270
270
  }
271
271
  }
@@ -553,6 +553,25 @@
553
553
  }
554
554
  }
555
555
  },
556
+ "GetManagedScalingPolicy": {
557
+ "input": {
558
+ "type": "structure",
559
+ "required": [
560
+ "ClusterId"
561
+ ],
562
+ "members": {
563
+ "ClusterId": {}
564
+ }
565
+ },
566
+ "output": {
567
+ "type": "structure",
568
+ "members": {
569
+ "ManagedScalingPolicy": {
570
+ "shape": "S3t"
571
+ }
572
+ }
573
+ }
574
+ },
556
575
  "ListBootstrapActions": {
557
576
  "input": {
558
577
  "type": "structure",
@@ -704,7 +723,7 @@
704
723
  "shape": "Sh"
705
724
  },
706
725
  "EbsBlockDevices": {
707
- "shape": "S4c"
726
+ "shape": "S4h"
708
727
  },
709
728
  "EbsOptimized": {
710
729
  "type": "boolean"
@@ -793,16 +812,16 @@
793
812
  "type": "long"
794
813
  },
795
814
  "EbsBlockDevices": {
796
- "shape": "S4c"
815
+ "shape": "S4h"
797
816
  },
798
817
  "EbsOptimized": {
799
818
  "type": "boolean"
800
819
  },
801
820
  "ShrinkPolicy": {
802
- "shape": "S4p"
821
+ "shape": "S4u"
803
822
  },
804
823
  "AutoScalingPolicy": {
805
- "shape": "S4t"
824
+ "shape": "S4y"
806
825
  }
807
826
  }
808
827
  }
@@ -1034,7 +1053,7 @@
1034
1053
  "member": {}
1035
1054
  },
1036
1055
  "ShrinkPolicy": {
1037
- "shape": "S4p"
1056
+ "shape": "S4u"
1038
1057
  },
1039
1058
  "Configurations": {
1040
1059
  "shape": "Sh"
@@ -1067,7 +1086,7 @@
1067
1086
  "ClusterId": {},
1068
1087
  "InstanceGroupId": {},
1069
1088
  "AutoScalingPolicy": {
1070
- "shape": "S4t"
1089
+ "shape": "S4y"
1071
1090
  },
1072
1091
  "ClusterArn": {}
1073
1092
  }
@@ -1090,6 +1109,25 @@
1090
1109
  "members": {}
1091
1110
  }
1092
1111
  },
1112
+ "PutManagedScalingPolicy": {
1113
+ "input": {
1114
+ "type": "structure",
1115
+ "required": [
1116
+ "ClusterId",
1117
+ "ManagedScalingPolicy"
1118
+ ],
1119
+ "members": {
1120
+ "ClusterId": {},
1121
+ "ManagedScalingPolicy": {
1122
+ "shape": "S3t"
1123
+ }
1124
+ }
1125
+ },
1126
+ "output": {
1127
+ "type": "structure",
1128
+ "members": {}
1129
+ }
1130
+ },
1093
1131
  "RemoveAutoScalingPolicy": {
1094
1132
  "input": {
1095
1133
  "type": "structure",
@@ -1107,6 +1145,21 @@
1107
1145
  "members": {}
1108
1146
  }
1109
1147
  },
1148
+ "RemoveManagedScalingPolicy": {
1149
+ "input": {
1150
+ "type": "structure",
1151
+ "required": [
1152
+ "ClusterId"
1153
+ ],
1154
+ "members": {
1155
+ "ClusterId": {}
1156
+ }
1157
+ },
1158
+ "output": {
1159
+ "type": "structure",
1160
+ "members": {}
1161
+ }
1162
+ },
1110
1163
  "RemoveTags": {
1111
1164
  "input": {
1112
1165
  "type": "structure",
@@ -1175,10 +1228,10 @@
1175
1228
  "EmrManagedSlaveSecurityGroup": {},
1176
1229
  "ServiceAccessSecurityGroup": {},
1177
1230
  "AdditionalMasterSecurityGroups": {
1178
- "shape": "S63"
1231
+ "shape": "S6c"
1179
1232
  },
1180
1233
  "AdditionalSlaveSecurityGroups": {
1181
- "shape": "S63"
1234
+ "shape": "S6c"
1182
1235
  }
1183
1236
  }
1184
1237
  },
@@ -1233,6 +1286,9 @@
1233
1286
  },
1234
1287
  "StepConcurrencyLevel": {
1235
1288
  "type": "integer"
1289
+ },
1290
+ "ManagedScalingPolicy": {
1291
+ "shape": "S3t"
1236
1292
  }
1237
1293
  }
1238
1294
  },
@@ -1798,7 +1854,32 @@
1798
1854
  }
1799
1855
  }
1800
1856
  },
1801
- "S4c": {
1857
+ "S3t": {
1858
+ "type": "structure",
1859
+ "members": {
1860
+ "ComputeLimits": {
1861
+ "type": "structure",
1862
+ "required": [
1863
+ "UnitType",
1864
+ "MinimumCapacityUnits",
1865
+ "MaximumCapacityUnits"
1866
+ ],
1867
+ "members": {
1868
+ "UnitType": {},
1869
+ "MinimumCapacityUnits": {
1870
+ "type": "integer"
1871
+ },
1872
+ "MaximumCapacityUnits": {
1873
+ "type": "integer"
1874
+ },
1875
+ "MaximumOnDemandCapacityUnits": {
1876
+ "type": "integer"
1877
+ }
1878
+ }
1879
+ }
1880
+ }
1881
+ },
1882
+ "S4h": {
1802
1883
  "type": "list",
1803
1884
  "member": {
1804
1885
  "type": "structure",
@@ -1810,7 +1891,7 @@
1810
1891
  }
1811
1892
  }
1812
1893
  },
1813
- "S4p": {
1894
+ "S4u": {
1814
1895
  "type": "structure",
1815
1896
  "members": {
1816
1897
  "DecommissionTimeout": {
@@ -1820,10 +1901,10 @@
1820
1901
  "type": "structure",
1821
1902
  "members": {
1822
1903
  "InstancesToTerminate": {
1823
- "shape": "S4r"
1904
+ "shape": "S4w"
1824
1905
  },
1825
1906
  "InstancesToProtect": {
1826
- "shape": "S4r"
1907
+ "shape": "S4w"
1827
1908
  },
1828
1909
  "InstanceTerminationTimeout": {
1829
1910
  "type": "integer"
@@ -1832,11 +1913,11 @@
1832
1913
  }
1833
1914
  }
1834
1915
  },
1835
- "S4r": {
1916
+ "S4w": {
1836
1917
  "type": "list",
1837
1918
  "member": {}
1838
1919
  },
1839
- "S4t": {
1920
+ "S4y": {
1840
1921
  "type": "structure",
1841
1922
  "members": {
1842
1923
  "Status": {
@@ -1860,7 +1941,7 @@
1860
1941
  }
1861
1942
  }
1862
1943
  },
1863
- "S63": {
1944
+ "S6c": {
1864
1945
  "type": "list",
1865
1946
  "member": {}
1866
1947
  }
@@ -1109,6 +1109,9 @@
1109
1109
  "Description": {},
1110
1110
  "AutomatedUpdateDate": {
1111
1111
  "type": "timestamp"
1112
+ },
1113
+ "OptionalDeployment": {
1114
+ "type": "boolean"
1112
1115
  }
1113
1116
  }
1114
1117
  },