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