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