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