@aws-sdk/client-codeguru-reviewer 3.169.0 → 3.170.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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/CodeGuruReviewer.d.ts +256 -75
- package/dist-types/ts3.4/CodeGuruReviewerClient.d.ts +214 -87
- package/dist-types/ts3.4/commands/AssociateRepositoryCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateCodeReviewCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeCodeReviewCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeRecommendationFeedbackCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeRepositoryAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisassociateRepositoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListCodeReviewsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListRecommendationFeedbackCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListRepositoryAssociationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutRecommendationFeedbackCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +14 -14
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/CodeGuruReviewerServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +768 -716
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListCodeReviewsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRecommendationFeedbackPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRepositoryAssociationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/dist-types/ts3.4/waiters/index.d.ts +2 -2
- package/dist-types/ts3.4/waiters/waitForCodeReviewCompleted.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForRepositoryAssociationSucceeded.d.ts +13 -7
- package/package.json +35 -35
|
@@ -1,716 +1,768 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { CodeGuruReviewerServiceException as __BaseException } from "./CodeGuruReviewerServiceException";
|
|
3
|
-
|
|
4
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export interface CodeCommitRepository {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
export
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
export declare class
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
export
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
export
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
export
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
}
|
|
320
|
-
export
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
export interface
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
export interface
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
export declare const
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
export declare const
|
|
615
|
-
|
|
616
|
-
export declare const
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
export declare const
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
export declare const
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
export declare const
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
export declare const
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
export declare const
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
export declare const
|
|
641
|
-
|
|
642
|
-
export declare const
|
|
643
|
-
|
|
644
|
-
export declare const
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
export declare const
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
export declare const
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
export declare const
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
export declare const
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
export declare const DescribeRecommendationFeedbackResponseFilterSensitiveLog: (
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
export declare const
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
export declare const
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
export declare const
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
export declare const
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
export declare const
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
export declare const
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
export declare const
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
export declare const
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
export declare const
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
export declare const
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
export declare const
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
export declare const
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
export declare const
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CodeGuruReviewerServiceException as __BaseException } from "./CodeGuruReviewerServiceException";
|
|
3
|
+
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(
|
|
10
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
export declare enum AnalysisType {
|
|
14
|
+
CODE_QUALITY = "CodeQuality",
|
|
15
|
+
SECURITY = "Security",
|
|
16
|
+
}
|
|
17
|
+
export declare enum EncryptionOption {
|
|
18
|
+
AoCmk = "AWS_OWNED_CMK",
|
|
19
|
+
CmCmk = "CUSTOMER_MANAGED_CMK",
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface KMSKeyDetails {
|
|
23
|
+
KMSKeyId?: string;
|
|
24
|
+
|
|
25
|
+
EncryptionOption?: EncryptionOption | string;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface ThirdPartySourceRepository {
|
|
29
|
+
Name: string | undefined;
|
|
30
|
+
|
|
31
|
+
ConnectionArn: string | undefined;
|
|
32
|
+
|
|
33
|
+
Owner: string | undefined;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export interface CodeCommitRepository {
|
|
37
|
+
Name: string | undefined;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export interface S3Repository {
|
|
41
|
+
Name: string | undefined;
|
|
42
|
+
|
|
43
|
+
BucketName: string | undefined;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export interface Repository {
|
|
47
|
+
CodeCommit?: CodeCommitRepository;
|
|
48
|
+
|
|
49
|
+
Bitbucket?: ThirdPartySourceRepository;
|
|
50
|
+
|
|
51
|
+
GitHubEnterpriseServer?: ThirdPartySourceRepository;
|
|
52
|
+
|
|
53
|
+
S3Bucket?: S3Repository;
|
|
54
|
+
}
|
|
55
|
+
export interface AssociateRepositoryRequest {
|
|
56
|
+
Repository: Repository | undefined;
|
|
57
|
+
|
|
58
|
+
ClientRequestToken?: string;
|
|
59
|
+
|
|
60
|
+
Tags?: Record<string, string>;
|
|
61
|
+
|
|
62
|
+
KMSKeyDetails?: KMSKeyDetails;
|
|
63
|
+
}
|
|
64
|
+
export declare enum ProviderType {
|
|
65
|
+
BITBUCKET = "Bitbucket",
|
|
66
|
+
CODE_COMMIT = "CodeCommit",
|
|
67
|
+
GIT_HUB = "GitHub",
|
|
68
|
+
GIT_HUB_ENTERPRISE_SERVER = "GitHubEnterpriseServer",
|
|
69
|
+
S3_BUCKET = "S3Bucket",
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export interface CodeArtifacts {
|
|
73
|
+
SourceCodeArtifactsObjectKey: string | undefined;
|
|
74
|
+
|
|
75
|
+
BuildArtifactsObjectKey?: string;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export interface S3RepositoryDetails {
|
|
79
|
+
BucketName?: string;
|
|
80
|
+
|
|
81
|
+
CodeArtifacts?: CodeArtifacts;
|
|
82
|
+
}
|
|
83
|
+
export declare enum RepositoryAssociationState {
|
|
84
|
+
ASSOCIATED = "Associated",
|
|
85
|
+
ASSOCIATING = "Associating",
|
|
86
|
+
DISASSOCIATED = "Disassociated",
|
|
87
|
+
DISASSOCIATING = "Disassociating",
|
|
88
|
+
FAILED = "Failed",
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export interface RepositoryAssociation {
|
|
92
|
+
AssociationId?: string;
|
|
93
|
+
|
|
94
|
+
AssociationArn?: string;
|
|
95
|
+
|
|
96
|
+
ConnectionArn?: string;
|
|
97
|
+
|
|
98
|
+
Name?: string;
|
|
99
|
+
|
|
100
|
+
Owner?: string;
|
|
101
|
+
|
|
102
|
+
ProviderType?: ProviderType | string;
|
|
103
|
+
|
|
104
|
+
State?: RepositoryAssociationState | string;
|
|
105
|
+
|
|
106
|
+
StateReason?: string;
|
|
107
|
+
|
|
108
|
+
LastUpdatedTimeStamp?: Date;
|
|
109
|
+
|
|
110
|
+
CreatedTimeStamp?: Date;
|
|
111
|
+
|
|
112
|
+
KMSKeyDetails?: KMSKeyDetails;
|
|
113
|
+
|
|
114
|
+
S3RepositoryDetails?: S3RepositoryDetails;
|
|
115
|
+
}
|
|
116
|
+
export interface AssociateRepositoryResponse {
|
|
117
|
+
RepositoryAssociation?: RepositoryAssociation;
|
|
118
|
+
|
|
119
|
+
Tags?: Record<string, string>;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
export declare class ConflictException extends __BaseException {
|
|
123
|
+
readonly name: "ConflictException";
|
|
124
|
+
readonly $fault: "client";
|
|
125
|
+
Message?: string;
|
|
126
|
+
|
|
127
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
export declare class InternalServerException extends __BaseException {
|
|
131
|
+
readonly name: "InternalServerException";
|
|
132
|
+
readonly $fault: "server";
|
|
133
|
+
Message?: string;
|
|
134
|
+
|
|
135
|
+
constructor(
|
|
136
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
137
|
+
);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
export declare class ThrottlingException extends __BaseException {
|
|
141
|
+
readonly name: "ThrottlingException";
|
|
142
|
+
readonly $fault: "client";
|
|
143
|
+
Message?: string;
|
|
144
|
+
|
|
145
|
+
constructor(
|
|
146
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
147
|
+
);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
export declare class ValidationException extends __BaseException {
|
|
151
|
+
readonly name: "ValidationException";
|
|
152
|
+
readonly $fault: "client";
|
|
153
|
+
Message?: string;
|
|
154
|
+
|
|
155
|
+
constructor(
|
|
156
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
157
|
+
);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export interface RepositoryHeadSourceCodeType {
|
|
161
|
+
BranchName: string | undefined;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
export interface BranchDiffSourceCodeType {
|
|
165
|
+
SourceBranchName: string | undefined;
|
|
166
|
+
|
|
167
|
+
DestinationBranchName: string | undefined;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
export interface CommitDiffSourceCodeType {
|
|
171
|
+
SourceCommit?: string;
|
|
172
|
+
|
|
173
|
+
DestinationCommit?: string;
|
|
174
|
+
|
|
175
|
+
MergeBaseCommit?: string;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export interface EventInfo {
|
|
179
|
+
Name?: string;
|
|
180
|
+
|
|
181
|
+
State?: string;
|
|
182
|
+
}
|
|
183
|
+
export declare enum VendorName {
|
|
184
|
+
GITHUB = "GitHub",
|
|
185
|
+
GITLAB = "GitLab",
|
|
186
|
+
NATIVE_S3 = "NativeS3",
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
export interface RequestMetadata {
|
|
190
|
+
RequestId?: string;
|
|
191
|
+
|
|
192
|
+
Requester?: string;
|
|
193
|
+
|
|
194
|
+
EventInfo?: EventInfo;
|
|
195
|
+
|
|
196
|
+
VendorName?: VendorName | string;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
export interface S3BucketRepository {
|
|
200
|
+
Name: string | undefined;
|
|
201
|
+
|
|
202
|
+
Details?: S3RepositoryDetails;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
export interface SourceCodeType {
|
|
206
|
+
CommitDiff?: CommitDiffSourceCodeType;
|
|
207
|
+
|
|
208
|
+
RepositoryHead?: RepositoryHeadSourceCodeType;
|
|
209
|
+
|
|
210
|
+
BranchDiff?: BranchDiffSourceCodeType;
|
|
211
|
+
|
|
212
|
+
S3BucketRepository?: S3BucketRepository;
|
|
213
|
+
|
|
214
|
+
RequestMetadata?: RequestMetadata;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
export interface RepositoryAnalysis {
|
|
218
|
+
RepositoryHead?: RepositoryHeadSourceCodeType;
|
|
219
|
+
|
|
220
|
+
SourceCodeType?: SourceCodeType;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
export interface CodeReviewType {
|
|
224
|
+
RepositoryAnalysis: RepositoryAnalysis | undefined;
|
|
225
|
+
|
|
226
|
+
AnalysisTypes?: (AnalysisType | string)[];
|
|
227
|
+
}
|
|
228
|
+
export interface CreateCodeReviewRequest {
|
|
229
|
+
Name: string | undefined;
|
|
230
|
+
|
|
231
|
+
RepositoryAssociationArn: string | undefined;
|
|
232
|
+
|
|
233
|
+
Type: CodeReviewType | undefined;
|
|
234
|
+
|
|
235
|
+
ClientRequestToken?: string;
|
|
236
|
+
}
|
|
237
|
+
export declare enum ConfigFileState {
|
|
238
|
+
ABSENT = "Absent",
|
|
239
|
+
PRESENT = "Present",
|
|
240
|
+
PRESENT_WITH_ERRORS = "PresentWithErrors",
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
export interface Metrics {
|
|
244
|
+
MeteredLinesOfCodeCount?: number;
|
|
245
|
+
|
|
246
|
+
SuppressedLinesOfCodeCount?: number;
|
|
247
|
+
|
|
248
|
+
FindingsCount?: number;
|
|
249
|
+
}
|
|
250
|
+
export declare enum JobState {
|
|
251
|
+
COMPLETED = "Completed",
|
|
252
|
+
DELETING = "Deleting",
|
|
253
|
+
FAILED = "Failed",
|
|
254
|
+
PENDING = "Pending",
|
|
255
|
+
}
|
|
256
|
+
export declare enum Type {
|
|
257
|
+
PULL_REQUEST = "PullRequest",
|
|
258
|
+
REPOSITORY_ANALYSIS = "RepositoryAnalysis",
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
export interface CodeReview {
|
|
262
|
+
Name?: string;
|
|
263
|
+
|
|
264
|
+
CodeReviewArn?: string;
|
|
265
|
+
|
|
266
|
+
RepositoryName?: string;
|
|
267
|
+
|
|
268
|
+
Owner?: string;
|
|
269
|
+
|
|
270
|
+
ProviderType?: ProviderType | string;
|
|
271
|
+
|
|
272
|
+
State?: JobState | string;
|
|
273
|
+
|
|
274
|
+
StateReason?: string;
|
|
275
|
+
|
|
276
|
+
CreatedTimeStamp?: Date;
|
|
277
|
+
|
|
278
|
+
LastUpdatedTimeStamp?: Date;
|
|
279
|
+
|
|
280
|
+
Type?: Type | string;
|
|
281
|
+
|
|
282
|
+
PullRequestId?: string;
|
|
283
|
+
|
|
284
|
+
SourceCodeType?: SourceCodeType;
|
|
285
|
+
|
|
286
|
+
AssociationArn?: string;
|
|
287
|
+
|
|
288
|
+
Metrics?: Metrics;
|
|
289
|
+
|
|
290
|
+
AnalysisTypes?: (AnalysisType | string)[];
|
|
291
|
+
|
|
292
|
+
ConfigFileState?: ConfigFileState | string;
|
|
293
|
+
}
|
|
294
|
+
export interface CreateCodeReviewResponse {
|
|
295
|
+
CodeReview?: CodeReview;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
299
|
+
readonly name: "ResourceNotFoundException";
|
|
300
|
+
readonly $fault: "client";
|
|
301
|
+
Message?: string;
|
|
302
|
+
|
|
303
|
+
constructor(
|
|
304
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
305
|
+
);
|
|
306
|
+
}
|
|
307
|
+
export interface DescribeCodeReviewRequest {
|
|
308
|
+
CodeReviewArn: string | undefined;
|
|
309
|
+
}
|
|
310
|
+
export interface DescribeCodeReviewResponse {
|
|
311
|
+
CodeReview?: CodeReview;
|
|
312
|
+
}
|
|
313
|
+
export interface DescribeRecommendationFeedbackRequest {
|
|
314
|
+
CodeReviewArn: string | undefined;
|
|
315
|
+
|
|
316
|
+
RecommendationId: string | undefined;
|
|
317
|
+
|
|
318
|
+
UserId?: string;
|
|
319
|
+
}
|
|
320
|
+
export declare enum Reaction {
|
|
321
|
+
THUMBS_DOWN = "ThumbsDown",
|
|
322
|
+
THUMBS_UP = "ThumbsUp",
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
export interface RecommendationFeedback {
|
|
326
|
+
CodeReviewArn?: string;
|
|
327
|
+
|
|
328
|
+
RecommendationId?: string;
|
|
329
|
+
|
|
330
|
+
Reactions?: (Reaction | string)[];
|
|
331
|
+
|
|
332
|
+
UserId?: string;
|
|
333
|
+
|
|
334
|
+
CreatedTimeStamp?: Date;
|
|
335
|
+
|
|
336
|
+
LastUpdatedTimeStamp?: Date;
|
|
337
|
+
}
|
|
338
|
+
export interface DescribeRecommendationFeedbackResponse {
|
|
339
|
+
RecommendationFeedback?: RecommendationFeedback;
|
|
340
|
+
}
|
|
341
|
+
export interface DescribeRepositoryAssociationRequest {
|
|
342
|
+
AssociationArn: string | undefined;
|
|
343
|
+
}
|
|
344
|
+
export interface DescribeRepositoryAssociationResponse {
|
|
345
|
+
RepositoryAssociation?: RepositoryAssociation;
|
|
346
|
+
|
|
347
|
+
Tags?: Record<string, string>;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
export declare class NotFoundException extends __BaseException {
|
|
351
|
+
readonly name: "NotFoundException";
|
|
352
|
+
readonly $fault: "client";
|
|
353
|
+
Message?: string;
|
|
354
|
+
|
|
355
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
356
|
+
}
|
|
357
|
+
export interface DisassociateRepositoryRequest {
|
|
358
|
+
AssociationArn: string | undefined;
|
|
359
|
+
}
|
|
360
|
+
export interface DisassociateRepositoryResponse {
|
|
361
|
+
RepositoryAssociation?: RepositoryAssociation;
|
|
362
|
+
|
|
363
|
+
Tags?: Record<string, string>;
|
|
364
|
+
}
|
|
365
|
+
export interface ListCodeReviewsRequest {
|
|
366
|
+
ProviderTypes?: (ProviderType | string)[];
|
|
367
|
+
|
|
368
|
+
States?: (JobState | string)[];
|
|
369
|
+
|
|
370
|
+
RepositoryNames?: string[];
|
|
371
|
+
|
|
372
|
+
Type: Type | string | undefined;
|
|
373
|
+
|
|
374
|
+
MaxResults?: number;
|
|
375
|
+
|
|
376
|
+
NextToken?: string;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
export interface MetricsSummary {
|
|
380
|
+
MeteredLinesOfCodeCount?: number;
|
|
381
|
+
|
|
382
|
+
SuppressedLinesOfCodeCount?: number;
|
|
383
|
+
|
|
384
|
+
FindingsCount?: number;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
export interface CodeReviewSummary {
|
|
388
|
+
Name?: string;
|
|
389
|
+
|
|
390
|
+
CodeReviewArn?: string;
|
|
391
|
+
|
|
392
|
+
RepositoryName?: string;
|
|
393
|
+
|
|
394
|
+
Owner?: string;
|
|
395
|
+
|
|
396
|
+
ProviderType?: ProviderType | string;
|
|
397
|
+
|
|
398
|
+
State?: JobState | string;
|
|
399
|
+
|
|
400
|
+
CreatedTimeStamp?: Date;
|
|
401
|
+
|
|
402
|
+
LastUpdatedTimeStamp?: Date;
|
|
403
|
+
|
|
404
|
+
Type?: Type | string;
|
|
405
|
+
|
|
406
|
+
PullRequestId?: string;
|
|
407
|
+
|
|
408
|
+
MetricsSummary?: MetricsSummary;
|
|
409
|
+
|
|
410
|
+
SourceCodeType?: SourceCodeType;
|
|
411
|
+
}
|
|
412
|
+
export interface ListCodeReviewsResponse {
|
|
413
|
+
CodeReviewSummaries?: CodeReviewSummary[];
|
|
414
|
+
|
|
415
|
+
NextToken?: string;
|
|
416
|
+
}
|
|
417
|
+
export interface ListRecommendationFeedbackRequest {
|
|
418
|
+
NextToken?: string;
|
|
419
|
+
|
|
420
|
+
MaxResults?: number;
|
|
421
|
+
|
|
422
|
+
CodeReviewArn: string | undefined;
|
|
423
|
+
|
|
424
|
+
UserIds?: string[];
|
|
425
|
+
|
|
426
|
+
RecommendationIds?: string[];
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
export interface RecommendationFeedbackSummary {
|
|
430
|
+
RecommendationId?: string;
|
|
431
|
+
|
|
432
|
+
Reactions?: (Reaction | string)[];
|
|
433
|
+
|
|
434
|
+
UserId?: string;
|
|
435
|
+
}
|
|
436
|
+
export interface ListRecommendationFeedbackResponse {
|
|
437
|
+
RecommendationFeedbackSummaries?: RecommendationFeedbackSummary[];
|
|
438
|
+
|
|
439
|
+
NextToken?: string;
|
|
440
|
+
}
|
|
441
|
+
export interface ListRecommendationsRequest {
|
|
442
|
+
NextToken?: string;
|
|
443
|
+
|
|
444
|
+
MaxResults?: number;
|
|
445
|
+
|
|
446
|
+
CodeReviewArn: string | undefined;
|
|
447
|
+
}
|
|
448
|
+
export declare enum RecommendationCategory {
|
|
449
|
+
AWS_BEST_PRACTICES = "AWSBestPractices",
|
|
450
|
+
AWS_CLOUDFORMATION_ISSUES = "AWSCloudFormationIssues",
|
|
451
|
+
CODE_INCONSISTENCIES = "CodeInconsistencies",
|
|
452
|
+
CODE_MAINTENANCE_ISSUES = "CodeMaintenanceIssues",
|
|
453
|
+
CONCURRENCY_ISSUES = "ConcurrencyIssues",
|
|
454
|
+
DUPLICATE_CODE = "DuplicateCode",
|
|
455
|
+
INPUT_VALIDATIONS = "InputValidations",
|
|
456
|
+
JAVA_BEST_PRACTICES = "JavaBestPractices",
|
|
457
|
+
PYTHON_BEST_PRACTICES = "PythonBestPractices",
|
|
458
|
+
RESOURCE_LEAKS = "ResourceLeaks",
|
|
459
|
+
SECURITY_ISSUES = "SecurityIssues",
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
export interface RuleMetadata {
|
|
463
|
+
RuleId?: string;
|
|
464
|
+
|
|
465
|
+
RuleName?: string;
|
|
466
|
+
|
|
467
|
+
ShortDescription?: string;
|
|
468
|
+
|
|
469
|
+
LongDescription?: string;
|
|
470
|
+
|
|
471
|
+
RuleTags?: string[];
|
|
472
|
+
}
|
|
473
|
+
export declare enum Severity {
|
|
474
|
+
CRITICAL = "Critical",
|
|
475
|
+
HIGH = "High",
|
|
476
|
+
INFO = "Info",
|
|
477
|
+
LOW = "Low",
|
|
478
|
+
MEDIUM = "Medium",
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
export interface RecommendationSummary {
|
|
482
|
+
FilePath?: string;
|
|
483
|
+
|
|
484
|
+
RecommendationId?: string;
|
|
485
|
+
|
|
486
|
+
StartLine?: number;
|
|
487
|
+
|
|
488
|
+
EndLine?: number;
|
|
489
|
+
|
|
490
|
+
Description?: string;
|
|
491
|
+
|
|
492
|
+
RecommendationCategory?: RecommendationCategory | string;
|
|
493
|
+
|
|
494
|
+
RuleMetadata?: RuleMetadata;
|
|
495
|
+
|
|
496
|
+
Severity?: Severity | string;
|
|
497
|
+
}
|
|
498
|
+
export interface ListRecommendationsResponse {
|
|
499
|
+
RecommendationSummaries?: RecommendationSummary[];
|
|
500
|
+
|
|
501
|
+
NextToken?: string;
|
|
502
|
+
}
|
|
503
|
+
export interface ListRepositoryAssociationsRequest {
|
|
504
|
+
ProviderTypes?: (ProviderType | string)[];
|
|
505
|
+
|
|
506
|
+
States?: (RepositoryAssociationState | string)[];
|
|
507
|
+
|
|
508
|
+
Names?: string[];
|
|
509
|
+
|
|
510
|
+
Owners?: string[];
|
|
511
|
+
|
|
512
|
+
MaxResults?: number;
|
|
513
|
+
|
|
514
|
+
NextToken?: string;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
export interface RepositoryAssociationSummary {
|
|
518
|
+
AssociationArn?: string;
|
|
519
|
+
|
|
520
|
+
ConnectionArn?: string;
|
|
521
|
+
|
|
522
|
+
LastUpdatedTimeStamp?: Date;
|
|
523
|
+
|
|
524
|
+
AssociationId?: string;
|
|
525
|
+
|
|
526
|
+
Name?: string;
|
|
527
|
+
|
|
528
|
+
Owner?: string;
|
|
529
|
+
|
|
530
|
+
ProviderType?: ProviderType | string;
|
|
531
|
+
|
|
532
|
+
State?: RepositoryAssociationState | string;
|
|
533
|
+
}
|
|
534
|
+
export interface ListRepositoryAssociationsResponse {
|
|
535
|
+
RepositoryAssociationSummaries?: RepositoryAssociationSummary[];
|
|
536
|
+
|
|
537
|
+
NextToken?: string;
|
|
538
|
+
}
|
|
539
|
+
export interface ListTagsForResourceRequest {
|
|
540
|
+
resourceArn: string | undefined;
|
|
541
|
+
}
|
|
542
|
+
export interface ListTagsForResourceResponse {
|
|
543
|
+
Tags?: Record<string, string>;
|
|
544
|
+
}
|
|
545
|
+
export interface PutRecommendationFeedbackRequest {
|
|
546
|
+
CodeReviewArn: string | undefined;
|
|
547
|
+
|
|
548
|
+
RecommendationId: string | undefined;
|
|
549
|
+
|
|
550
|
+
Reactions: (Reaction | string)[] | undefined;
|
|
551
|
+
}
|
|
552
|
+
export interface PutRecommendationFeedbackResponse {}
|
|
553
|
+
export interface TagResourceRequest {
|
|
554
|
+
resourceArn: string | undefined;
|
|
555
|
+
|
|
556
|
+
Tags: Record<string, string> | undefined;
|
|
557
|
+
}
|
|
558
|
+
export interface TagResourceResponse {}
|
|
559
|
+
export interface UntagResourceRequest {
|
|
560
|
+
resourceArn: string | undefined;
|
|
561
|
+
|
|
562
|
+
TagKeys: string[] | undefined;
|
|
563
|
+
}
|
|
564
|
+
export interface UntagResourceResponse {}
|
|
565
|
+
|
|
566
|
+
export declare const KMSKeyDetailsFilterSensitiveLog: (
|
|
567
|
+
obj: KMSKeyDetails
|
|
568
|
+
) => any;
|
|
569
|
+
|
|
570
|
+
export declare const ThirdPartySourceRepositoryFilterSensitiveLog: (
|
|
571
|
+
obj: ThirdPartySourceRepository
|
|
572
|
+
) => any;
|
|
573
|
+
|
|
574
|
+
export declare const CodeCommitRepositoryFilterSensitiveLog: (
|
|
575
|
+
obj: CodeCommitRepository
|
|
576
|
+
) => any;
|
|
577
|
+
|
|
578
|
+
export declare const S3RepositoryFilterSensitiveLog: (obj: S3Repository) => any;
|
|
579
|
+
|
|
580
|
+
export declare const RepositoryFilterSensitiveLog: (obj: Repository) => any;
|
|
581
|
+
|
|
582
|
+
export declare const AssociateRepositoryRequestFilterSensitiveLog: (
|
|
583
|
+
obj: AssociateRepositoryRequest
|
|
584
|
+
) => any;
|
|
585
|
+
|
|
586
|
+
export declare const CodeArtifactsFilterSensitiveLog: (
|
|
587
|
+
obj: CodeArtifacts
|
|
588
|
+
) => any;
|
|
589
|
+
|
|
590
|
+
export declare const S3RepositoryDetailsFilterSensitiveLog: (
|
|
591
|
+
obj: S3RepositoryDetails
|
|
592
|
+
) => any;
|
|
593
|
+
|
|
594
|
+
export declare const RepositoryAssociationFilterSensitiveLog: (
|
|
595
|
+
obj: RepositoryAssociation
|
|
596
|
+
) => any;
|
|
597
|
+
|
|
598
|
+
export declare const AssociateRepositoryResponseFilterSensitiveLog: (
|
|
599
|
+
obj: AssociateRepositoryResponse
|
|
600
|
+
) => any;
|
|
601
|
+
|
|
602
|
+
export declare const RepositoryHeadSourceCodeTypeFilterSensitiveLog: (
|
|
603
|
+
obj: RepositoryHeadSourceCodeType
|
|
604
|
+
) => any;
|
|
605
|
+
|
|
606
|
+
export declare const BranchDiffSourceCodeTypeFilterSensitiveLog: (
|
|
607
|
+
obj: BranchDiffSourceCodeType
|
|
608
|
+
) => any;
|
|
609
|
+
|
|
610
|
+
export declare const CommitDiffSourceCodeTypeFilterSensitiveLog: (
|
|
611
|
+
obj: CommitDiffSourceCodeType
|
|
612
|
+
) => any;
|
|
613
|
+
|
|
614
|
+
export declare const EventInfoFilterSensitiveLog: (obj: EventInfo) => any;
|
|
615
|
+
|
|
616
|
+
export declare const RequestMetadataFilterSensitiveLog: (
|
|
617
|
+
obj: RequestMetadata
|
|
618
|
+
) => any;
|
|
619
|
+
|
|
620
|
+
export declare const S3BucketRepositoryFilterSensitiveLog: (
|
|
621
|
+
obj: S3BucketRepository
|
|
622
|
+
) => any;
|
|
623
|
+
|
|
624
|
+
export declare const SourceCodeTypeFilterSensitiveLog: (
|
|
625
|
+
obj: SourceCodeType
|
|
626
|
+
) => any;
|
|
627
|
+
|
|
628
|
+
export declare const RepositoryAnalysisFilterSensitiveLog: (
|
|
629
|
+
obj: RepositoryAnalysis
|
|
630
|
+
) => any;
|
|
631
|
+
|
|
632
|
+
export declare const CodeReviewTypeFilterSensitiveLog: (
|
|
633
|
+
obj: CodeReviewType
|
|
634
|
+
) => any;
|
|
635
|
+
|
|
636
|
+
export declare const CreateCodeReviewRequestFilterSensitiveLog: (
|
|
637
|
+
obj: CreateCodeReviewRequest
|
|
638
|
+
) => any;
|
|
639
|
+
|
|
640
|
+
export declare const MetricsFilterSensitiveLog: (obj: Metrics) => any;
|
|
641
|
+
|
|
642
|
+
export declare const CodeReviewFilterSensitiveLog: (obj: CodeReview) => any;
|
|
643
|
+
|
|
644
|
+
export declare const CreateCodeReviewResponseFilterSensitiveLog: (
|
|
645
|
+
obj: CreateCodeReviewResponse
|
|
646
|
+
) => any;
|
|
647
|
+
|
|
648
|
+
export declare const DescribeCodeReviewRequestFilterSensitiveLog: (
|
|
649
|
+
obj: DescribeCodeReviewRequest
|
|
650
|
+
) => any;
|
|
651
|
+
|
|
652
|
+
export declare const DescribeCodeReviewResponseFilterSensitiveLog: (
|
|
653
|
+
obj: DescribeCodeReviewResponse
|
|
654
|
+
) => any;
|
|
655
|
+
|
|
656
|
+
export declare const DescribeRecommendationFeedbackRequestFilterSensitiveLog: (
|
|
657
|
+
obj: DescribeRecommendationFeedbackRequest
|
|
658
|
+
) => any;
|
|
659
|
+
|
|
660
|
+
export declare const RecommendationFeedbackFilterSensitiveLog: (
|
|
661
|
+
obj: RecommendationFeedback
|
|
662
|
+
) => any;
|
|
663
|
+
|
|
664
|
+
export declare const DescribeRecommendationFeedbackResponseFilterSensitiveLog: (
|
|
665
|
+
obj: DescribeRecommendationFeedbackResponse
|
|
666
|
+
) => any;
|
|
667
|
+
|
|
668
|
+
export declare const DescribeRepositoryAssociationRequestFilterSensitiveLog: (
|
|
669
|
+
obj: DescribeRepositoryAssociationRequest
|
|
670
|
+
) => any;
|
|
671
|
+
|
|
672
|
+
export declare const DescribeRepositoryAssociationResponseFilterSensitiveLog: (
|
|
673
|
+
obj: DescribeRepositoryAssociationResponse
|
|
674
|
+
) => any;
|
|
675
|
+
|
|
676
|
+
export declare const DisassociateRepositoryRequestFilterSensitiveLog: (
|
|
677
|
+
obj: DisassociateRepositoryRequest
|
|
678
|
+
) => any;
|
|
679
|
+
|
|
680
|
+
export declare const DisassociateRepositoryResponseFilterSensitiveLog: (
|
|
681
|
+
obj: DisassociateRepositoryResponse
|
|
682
|
+
) => any;
|
|
683
|
+
|
|
684
|
+
export declare const ListCodeReviewsRequestFilterSensitiveLog: (
|
|
685
|
+
obj: ListCodeReviewsRequest
|
|
686
|
+
) => any;
|
|
687
|
+
|
|
688
|
+
export declare const MetricsSummaryFilterSensitiveLog: (
|
|
689
|
+
obj: MetricsSummary
|
|
690
|
+
) => any;
|
|
691
|
+
|
|
692
|
+
export declare const CodeReviewSummaryFilterSensitiveLog: (
|
|
693
|
+
obj: CodeReviewSummary
|
|
694
|
+
) => any;
|
|
695
|
+
|
|
696
|
+
export declare const ListCodeReviewsResponseFilterSensitiveLog: (
|
|
697
|
+
obj: ListCodeReviewsResponse
|
|
698
|
+
) => any;
|
|
699
|
+
|
|
700
|
+
export declare const ListRecommendationFeedbackRequestFilterSensitiveLog: (
|
|
701
|
+
obj: ListRecommendationFeedbackRequest
|
|
702
|
+
) => any;
|
|
703
|
+
|
|
704
|
+
export declare const RecommendationFeedbackSummaryFilterSensitiveLog: (
|
|
705
|
+
obj: RecommendationFeedbackSummary
|
|
706
|
+
) => any;
|
|
707
|
+
|
|
708
|
+
export declare const ListRecommendationFeedbackResponseFilterSensitiveLog: (
|
|
709
|
+
obj: ListRecommendationFeedbackResponse
|
|
710
|
+
) => any;
|
|
711
|
+
|
|
712
|
+
export declare const ListRecommendationsRequestFilterSensitiveLog: (
|
|
713
|
+
obj: ListRecommendationsRequest
|
|
714
|
+
) => any;
|
|
715
|
+
|
|
716
|
+
export declare const RuleMetadataFilterSensitiveLog: (obj: RuleMetadata) => any;
|
|
717
|
+
|
|
718
|
+
export declare const RecommendationSummaryFilterSensitiveLog: (
|
|
719
|
+
obj: RecommendationSummary
|
|
720
|
+
) => any;
|
|
721
|
+
|
|
722
|
+
export declare const ListRecommendationsResponseFilterSensitiveLog: (
|
|
723
|
+
obj: ListRecommendationsResponse
|
|
724
|
+
) => any;
|
|
725
|
+
|
|
726
|
+
export declare const ListRepositoryAssociationsRequestFilterSensitiveLog: (
|
|
727
|
+
obj: ListRepositoryAssociationsRequest
|
|
728
|
+
) => any;
|
|
729
|
+
|
|
730
|
+
export declare const RepositoryAssociationSummaryFilterSensitiveLog: (
|
|
731
|
+
obj: RepositoryAssociationSummary
|
|
732
|
+
) => any;
|
|
733
|
+
|
|
734
|
+
export declare const ListRepositoryAssociationsResponseFilterSensitiveLog: (
|
|
735
|
+
obj: ListRepositoryAssociationsResponse
|
|
736
|
+
) => any;
|
|
737
|
+
|
|
738
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
739
|
+
obj: ListTagsForResourceRequest
|
|
740
|
+
) => any;
|
|
741
|
+
|
|
742
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
743
|
+
obj: ListTagsForResourceResponse
|
|
744
|
+
) => any;
|
|
745
|
+
|
|
746
|
+
export declare const PutRecommendationFeedbackRequestFilterSensitiveLog: (
|
|
747
|
+
obj: PutRecommendationFeedbackRequest
|
|
748
|
+
) => any;
|
|
749
|
+
|
|
750
|
+
export declare const PutRecommendationFeedbackResponseFilterSensitiveLog: (
|
|
751
|
+
obj: PutRecommendationFeedbackResponse
|
|
752
|
+
) => any;
|
|
753
|
+
|
|
754
|
+
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
755
|
+
obj: TagResourceRequest
|
|
756
|
+
) => any;
|
|
757
|
+
|
|
758
|
+
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
759
|
+
obj: TagResourceResponse
|
|
760
|
+
) => any;
|
|
761
|
+
|
|
762
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
763
|
+
obj: UntagResourceRequest
|
|
764
|
+
) => any;
|
|
765
|
+
|
|
766
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
767
|
+
obj: UntagResourceResponse
|
|
768
|
+
) => any;
|