@aws-sdk/client-codeguru-reviewer 3.987.0 → 3.988.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/dist-cjs/index.js +33 -731
- package/dist-cjs/models/CodeGuruReviewerServiceException.js +12 -0
- package/dist-cjs/models/errors.js +109 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +552 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +47 -41
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,7 +15,10 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
18
19
|
var utilWaiter = require('@smithy/util-waiter');
|
|
20
|
+
var errors = require('./models/errors');
|
|
21
|
+
var CodeGuruReviewerServiceException = require('./models/CodeGuruReviewerServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -111,639 +114,6 @@ class CodeGuruReviewerClient extends smithyClient.Client {
|
|
|
111
114
|
}
|
|
112
115
|
}
|
|
113
116
|
|
|
114
|
-
class CodeGuruReviewerServiceException extends smithyClient.ServiceException {
|
|
115
|
-
constructor(options) {
|
|
116
|
-
super(options);
|
|
117
|
-
Object.setPrototypeOf(this, CodeGuruReviewerServiceException.prototype);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
class AccessDeniedException extends CodeGuruReviewerServiceException {
|
|
122
|
-
name = "AccessDeniedException";
|
|
123
|
-
$fault = "client";
|
|
124
|
-
Message;
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "AccessDeniedException",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
|
-
this.Message = opts.Message;
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
class ConflictException extends CodeGuruReviewerServiceException {
|
|
136
|
-
name = "ConflictException";
|
|
137
|
-
$fault = "client";
|
|
138
|
-
Message;
|
|
139
|
-
constructor(opts) {
|
|
140
|
-
super({
|
|
141
|
-
name: "ConflictException",
|
|
142
|
-
$fault: "client",
|
|
143
|
-
...opts,
|
|
144
|
-
});
|
|
145
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
146
|
-
this.Message = opts.Message;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
class InternalServerException extends CodeGuruReviewerServiceException {
|
|
150
|
-
name = "InternalServerException";
|
|
151
|
-
$fault = "server";
|
|
152
|
-
Message;
|
|
153
|
-
constructor(opts) {
|
|
154
|
-
super({
|
|
155
|
-
name: "InternalServerException",
|
|
156
|
-
$fault: "server",
|
|
157
|
-
...opts,
|
|
158
|
-
});
|
|
159
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
160
|
-
this.Message = opts.Message;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
class ThrottlingException extends CodeGuruReviewerServiceException {
|
|
164
|
-
name = "ThrottlingException";
|
|
165
|
-
$fault = "client";
|
|
166
|
-
Message;
|
|
167
|
-
constructor(opts) {
|
|
168
|
-
super({
|
|
169
|
-
name: "ThrottlingException",
|
|
170
|
-
$fault: "client",
|
|
171
|
-
...opts,
|
|
172
|
-
});
|
|
173
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
174
|
-
this.Message = opts.Message;
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
class ValidationException extends CodeGuruReviewerServiceException {
|
|
178
|
-
name = "ValidationException";
|
|
179
|
-
$fault = "client";
|
|
180
|
-
Message;
|
|
181
|
-
constructor(opts) {
|
|
182
|
-
super({
|
|
183
|
-
name: "ValidationException",
|
|
184
|
-
$fault: "client",
|
|
185
|
-
...opts,
|
|
186
|
-
});
|
|
187
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
188
|
-
this.Message = opts.Message;
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
class ResourceNotFoundException extends CodeGuruReviewerServiceException {
|
|
192
|
-
name = "ResourceNotFoundException";
|
|
193
|
-
$fault = "client";
|
|
194
|
-
Message;
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "ResourceNotFoundException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
202
|
-
this.Message = opts.Message;
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
class NotFoundException extends CodeGuruReviewerServiceException {
|
|
206
|
-
name = "NotFoundException";
|
|
207
|
-
$fault = "client";
|
|
208
|
-
Message;
|
|
209
|
-
constructor(opts) {
|
|
210
|
-
super({
|
|
211
|
-
name: "NotFoundException",
|
|
212
|
-
$fault: "client",
|
|
213
|
-
...opts,
|
|
214
|
-
});
|
|
215
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
216
|
-
this.Message = opts.Message;
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
const _AA = "AssociationArn";
|
|
221
|
-
const _ADE = "AccessDeniedException";
|
|
222
|
-
const _AI = "AssociationId";
|
|
223
|
-
const _AR = "AssociateRepository";
|
|
224
|
-
const _ARR = "AssociateRepositoryRequest";
|
|
225
|
-
const _ARRs = "AssociateRepositoryResponse";
|
|
226
|
-
const _AT = "AnalysisTypes";
|
|
227
|
-
const _B = "Bitbucket";
|
|
228
|
-
const _BAOK = "BuildArtifactsObjectKey";
|
|
229
|
-
const _BD = "BranchDiff";
|
|
230
|
-
const _BDSCT = "BranchDiffSourceCodeType";
|
|
231
|
-
const _BN = "BranchName";
|
|
232
|
-
const _BNu = "BucketName";
|
|
233
|
-
const _CA = "CodeArtifacts";
|
|
234
|
-
const _CAo = "ConnectionArn";
|
|
235
|
-
const _CC = "CodeCommit";
|
|
236
|
-
const _CCR = "CodeCommitRepository";
|
|
237
|
-
const _CCRR = "CreateCodeReviewRequest";
|
|
238
|
-
const _CCRRr = "CreateCodeReviewResponse";
|
|
239
|
-
const _CCRr = "CreateCodeReview";
|
|
240
|
-
const _CD = "CommitDiff";
|
|
241
|
-
const _CDSCT = "CommitDiffSourceCodeType";
|
|
242
|
-
const _CE = "ConflictException";
|
|
243
|
-
const _CFS = "ConfigFileState";
|
|
244
|
-
const _CR = "CodeReview";
|
|
245
|
-
const _CRA = "CodeReviewArn";
|
|
246
|
-
const _CRS = "CodeReviewSummary";
|
|
247
|
-
const _CRSo = "CodeReviewSummaries";
|
|
248
|
-
const _CRT = "ClientRequestToken";
|
|
249
|
-
const _CRTo = "CodeReviewType";
|
|
250
|
-
const _CTS = "CreatedTimeStamp";
|
|
251
|
-
const _D = "Description";
|
|
252
|
-
const _DBN = "DestinationBranchName";
|
|
253
|
-
const _DC = "DestinationCommit";
|
|
254
|
-
const _DCR = "DescribeCodeReview";
|
|
255
|
-
const _DCRR = "DescribeCodeReviewRequest";
|
|
256
|
-
const _DCRRe = "DescribeCodeReviewResponse";
|
|
257
|
-
const _DR = "DisassociateRepository";
|
|
258
|
-
const _DRA = "DescribeRepositoryAssociation";
|
|
259
|
-
const _DRAR = "DescribeRepositoryAssociationRequest";
|
|
260
|
-
const _DRARe = "DescribeRepositoryAssociationResponse";
|
|
261
|
-
const _DRF = "DescribeRecommendationFeedback";
|
|
262
|
-
const _DRFR = "DescribeRecommendationFeedbackRequest";
|
|
263
|
-
const _DRFRe = "DescribeRecommendationFeedbackResponse";
|
|
264
|
-
const _DRR = "DisassociateRepositoryRequest";
|
|
265
|
-
const _DRRi = "DisassociateRepositoryResponse";
|
|
266
|
-
const _De = "Details";
|
|
267
|
-
const _EI = "EventInfo";
|
|
268
|
-
const _EL = "EndLine";
|
|
269
|
-
const _EO = "EncryptionOption";
|
|
270
|
-
const _FC = "FindingsCount";
|
|
271
|
-
const _FP = "FilePath";
|
|
272
|
-
const _GHES = "GitHubEnterpriseServer";
|
|
273
|
-
const _ISE = "InternalServerException";
|
|
274
|
-
const _KMSKD = "KMSKeyDetails";
|
|
275
|
-
const _KMSKI = "KMSKeyId";
|
|
276
|
-
const _LCR = "ListCodeReviews";
|
|
277
|
-
const _LCRR = "ListCodeReviewsRequest";
|
|
278
|
-
const _LCRRi = "ListCodeReviewsResponse";
|
|
279
|
-
const _LD = "LongDescription";
|
|
280
|
-
const _LR = "ListRecommendations";
|
|
281
|
-
const _LRA = "ListRepositoryAssociations";
|
|
282
|
-
const _LRAR = "ListRepositoryAssociationsRequest";
|
|
283
|
-
const _LRARi = "ListRepositoryAssociationsResponse";
|
|
284
|
-
const _LRF = "ListRecommendationFeedback";
|
|
285
|
-
const _LRFR = "ListRecommendationFeedbackRequest";
|
|
286
|
-
const _LRFRi = "ListRecommendationFeedbackResponse";
|
|
287
|
-
const _LRR = "ListRecommendationsRequest";
|
|
288
|
-
const _LRRi = "ListRecommendationsResponse";
|
|
289
|
-
const _LTFR = "ListTagsForResource";
|
|
290
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
291
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
292
|
-
const _LUTS = "LastUpdatedTimeStamp";
|
|
293
|
-
const _M = "Message";
|
|
294
|
-
const _MBC = "MergeBaseCommit";
|
|
295
|
-
const _MLOCC = "MeteredLinesOfCodeCount";
|
|
296
|
-
const _MR = "MaxResults";
|
|
297
|
-
const _MS = "MetricsSummary";
|
|
298
|
-
const _Me = "Metrics";
|
|
299
|
-
const _N = "Name";
|
|
300
|
-
const _NFE = "NotFoundException";
|
|
301
|
-
const _NT = "NextToken";
|
|
302
|
-
const _Na = "Names";
|
|
303
|
-
const _O = "Owner";
|
|
304
|
-
const _Ow = "Owners";
|
|
305
|
-
const _PRF = "PutRecommendationFeedback";
|
|
306
|
-
const _PRFR = "PutRecommendationFeedbackRequest";
|
|
307
|
-
const _PRFRu = "PutRecommendationFeedbackResponse";
|
|
308
|
-
const _PRI = "PullRequestId";
|
|
309
|
-
const _PT = "ProviderType";
|
|
310
|
-
const _PTr = "ProviderTypes";
|
|
311
|
-
const _R = "Repository";
|
|
312
|
-
const _RA = "RepositoryAssociation";
|
|
313
|
-
const _RAA = "RepositoryAssociationArn";
|
|
314
|
-
const _RAS = "RepositoryAssociationSummaries";
|
|
315
|
-
const _RASe = "RepositoryAssociationSummary";
|
|
316
|
-
const _RAe = "RepositoryAnalysis";
|
|
317
|
-
const _RC = "RecommendationCategory";
|
|
318
|
-
const _RF = "RecommendationFeedback";
|
|
319
|
-
const _RFS = "RecommendationFeedbackSummaries";
|
|
320
|
-
const _RFSe = "RecommendationFeedbackSummary";
|
|
321
|
-
const _RH = "RepositoryHead";
|
|
322
|
-
const _RHSCT = "RepositoryHeadSourceCodeType";
|
|
323
|
-
const _RI = "RecommendationId";
|
|
324
|
-
const _RIe = "RecommendationIds";
|
|
325
|
-
const _RIeq = "RequestId";
|
|
326
|
-
const _RIu = "RuleId";
|
|
327
|
-
const _RM = "RuleMetadata";
|
|
328
|
-
const _RMe = "RequestMetadata";
|
|
329
|
-
const _RN = "RepositoryName";
|
|
330
|
-
const _RNFE = "ResourceNotFoundException";
|
|
331
|
-
const _RNe = "RepositoryNames";
|
|
332
|
-
const _RNu = "RuleName";
|
|
333
|
-
const _RS = "RecommendationSummaries";
|
|
334
|
-
const _RSe = "RecommendationSummary";
|
|
335
|
-
const _RT = "RuleTags";
|
|
336
|
-
const _Re = "Reactions";
|
|
337
|
-
const _Req = "Requester";
|
|
338
|
-
const _S = "State";
|
|
339
|
-
const _SB = "S3Bucket";
|
|
340
|
-
const _SBN = "SourceBranchName";
|
|
341
|
-
const _SBR = "S3BucketRepository";
|
|
342
|
-
const _SC = "SourceCommit";
|
|
343
|
-
const _SCAOK = "SourceCodeArtifactsObjectKey";
|
|
344
|
-
const _SCT = "SourceCodeType";
|
|
345
|
-
const _SD = "ShortDescription";
|
|
346
|
-
const _SL = "StartLine";
|
|
347
|
-
const _SLOCC = "SuppressedLinesOfCodeCount";
|
|
348
|
-
const _SR = "StateReason";
|
|
349
|
-
const _SRD = "S3RepositoryDetails";
|
|
350
|
-
const _SRe = "S3Repository";
|
|
351
|
-
const _Se = "Severity";
|
|
352
|
-
const _St = "States";
|
|
353
|
-
const _T = "Tags";
|
|
354
|
-
const _TE = "ThrottlingException";
|
|
355
|
-
const _TK = "TagKeys";
|
|
356
|
-
const _TPSR = "ThirdPartySourceRepository";
|
|
357
|
-
const _TR = "TagResource";
|
|
358
|
-
const _TRR = "TagResourceRequest";
|
|
359
|
-
const _TRRa = "TagResourceResponse";
|
|
360
|
-
const _Ty = "Type";
|
|
361
|
-
const _UI = "UserId";
|
|
362
|
-
const _UIs = "UserIds";
|
|
363
|
-
const _UR = "UntagResource";
|
|
364
|
-
const _URR = "UntagResourceRequest";
|
|
365
|
-
const _URRn = "UntagResourceResponse";
|
|
366
|
-
const _VE = "ValidationException";
|
|
367
|
-
const _VN = "VendorName";
|
|
368
|
-
const _c = "client";
|
|
369
|
-
const _e = "error";
|
|
370
|
-
const _h = "http";
|
|
371
|
-
const _hE = "httpError";
|
|
372
|
-
const _hQ = "httpQuery";
|
|
373
|
-
const _rA = "resourceArn";
|
|
374
|
-
const _s = "server";
|
|
375
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.codegurureviewer";
|
|
376
|
-
const _tK = "tagKeys";
|
|
377
|
-
const n0 = "com.amazonaws.codegurureviewer";
|
|
378
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
379
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
380
|
-
[_M],
|
|
381
|
-
[0]
|
|
382
|
-
];
|
|
383
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
384
|
-
var AssociateRepositoryRequest$ = [3, n0, _ARR,
|
|
385
|
-
0,
|
|
386
|
-
[_R, _CRT, _T, _KMSKD],
|
|
387
|
-
[() => Repository$, [0, 4], 128 | 0, () => KMSKeyDetails$], 1
|
|
388
|
-
];
|
|
389
|
-
var AssociateRepositoryResponse$ = [3, n0, _ARRs,
|
|
390
|
-
0,
|
|
391
|
-
[_RA, _T],
|
|
392
|
-
[() => RepositoryAssociation$, 128 | 0]
|
|
393
|
-
];
|
|
394
|
-
var BranchDiffSourceCodeType$ = [3, n0, _BDSCT,
|
|
395
|
-
0,
|
|
396
|
-
[_SBN, _DBN],
|
|
397
|
-
[0, 0], 2
|
|
398
|
-
];
|
|
399
|
-
var CodeArtifacts$ = [3, n0, _CA,
|
|
400
|
-
0,
|
|
401
|
-
[_SCAOK, _BAOK],
|
|
402
|
-
[0, 0], 1
|
|
403
|
-
];
|
|
404
|
-
var CodeCommitRepository$ = [3, n0, _CCR,
|
|
405
|
-
0,
|
|
406
|
-
[_N],
|
|
407
|
-
[0], 1
|
|
408
|
-
];
|
|
409
|
-
var CodeReview$ = [3, n0, _CR,
|
|
410
|
-
0,
|
|
411
|
-
[_N, _CRA, _RN, _O, _PT, _S, _SR, _CTS, _LUTS, _Ty, _PRI, _SCT, _AA, _Me, _AT, _CFS],
|
|
412
|
-
[0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, () => SourceCodeType$, 0, () => Metrics$, 64 | 0, 0]
|
|
413
|
-
];
|
|
414
|
-
var CodeReviewSummary$ = [3, n0, _CRS,
|
|
415
|
-
0,
|
|
416
|
-
[_N, _CRA, _RN, _O, _PT, _S, _CTS, _LUTS, _Ty, _PRI, _MS, _SCT],
|
|
417
|
-
[0, 0, 0, 0, 0, 0, 4, 4, 0, 0, () => MetricsSummary$, () => SourceCodeType$]
|
|
418
|
-
];
|
|
419
|
-
var CodeReviewType$ = [3, n0, _CRTo,
|
|
420
|
-
0,
|
|
421
|
-
[_RAe, _AT],
|
|
422
|
-
[() => RepositoryAnalysis$, 64 | 0], 1
|
|
423
|
-
];
|
|
424
|
-
var CommitDiffSourceCodeType$ = [3, n0, _CDSCT,
|
|
425
|
-
0,
|
|
426
|
-
[_SC, _DC, _MBC],
|
|
427
|
-
[0, 0, 0]
|
|
428
|
-
];
|
|
429
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
430
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
431
|
-
[_M],
|
|
432
|
-
[0]
|
|
433
|
-
];
|
|
434
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
435
|
-
var CreateCodeReviewRequest$ = [3, n0, _CCRR,
|
|
436
|
-
0,
|
|
437
|
-
[_N, _RAA, _Ty, _CRT],
|
|
438
|
-
[0, 0, () => CodeReviewType$, [0, 4]], 3
|
|
439
|
-
];
|
|
440
|
-
var CreateCodeReviewResponse$ = [3, n0, _CCRRr,
|
|
441
|
-
0,
|
|
442
|
-
[_CR],
|
|
443
|
-
[() => CodeReview$]
|
|
444
|
-
];
|
|
445
|
-
var DescribeCodeReviewRequest$ = [3, n0, _DCRR,
|
|
446
|
-
0,
|
|
447
|
-
[_CRA],
|
|
448
|
-
[[0, 1]], 1
|
|
449
|
-
];
|
|
450
|
-
var DescribeCodeReviewResponse$ = [3, n0, _DCRRe,
|
|
451
|
-
0,
|
|
452
|
-
[_CR],
|
|
453
|
-
[() => CodeReview$]
|
|
454
|
-
];
|
|
455
|
-
var DescribeRecommendationFeedbackRequest$ = [3, n0, _DRFR,
|
|
456
|
-
0,
|
|
457
|
-
[_CRA, _RI, _UI],
|
|
458
|
-
[[0, 1], [0, { [_hQ]: _RI }], [0, { [_hQ]: _UI }]], 2
|
|
459
|
-
];
|
|
460
|
-
var DescribeRecommendationFeedbackResponse$ = [3, n0, _DRFRe,
|
|
461
|
-
0,
|
|
462
|
-
[_RF],
|
|
463
|
-
[() => RecommendationFeedback$]
|
|
464
|
-
];
|
|
465
|
-
var DescribeRepositoryAssociationRequest$ = [3, n0, _DRAR,
|
|
466
|
-
0,
|
|
467
|
-
[_AA],
|
|
468
|
-
[[0, 1]], 1
|
|
469
|
-
];
|
|
470
|
-
var DescribeRepositoryAssociationResponse$ = [3, n0, _DRARe,
|
|
471
|
-
0,
|
|
472
|
-
[_RA, _T],
|
|
473
|
-
[() => RepositoryAssociation$, 128 | 0]
|
|
474
|
-
];
|
|
475
|
-
var DisassociateRepositoryRequest$ = [3, n0, _DRR,
|
|
476
|
-
0,
|
|
477
|
-
[_AA],
|
|
478
|
-
[[0, 1]], 1
|
|
479
|
-
];
|
|
480
|
-
var DisassociateRepositoryResponse$ = [3, n0, _DRRi,
|
|
481
|
-
0,
|
|
482
|
-
[_RA, _T],
|
|
483
|
-
[() => RepositoryAssociation$, 128 | 0]
|
|
484
|
-
];
|
|
485
|
-
var EventInfo$ = [3, n0, _EI,
|
|
486
|
-
0,
|
|
487
|
-
[_N, _S],
|
|
488
|
-
[0, 0]
|
|
489
|
-
];
|
|
490
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
491
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
492
|
-
[_M],
|
|
493
|
-
[0]
|
|
494
|
-
];
|
|
495
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
496
|
-
var KMSKeyDetails$ = [3, n0, _KMSKD,
|
|
497
|
-
0,
|
|
498
|
-
[_KMSKI, _EO],
|
|
499
|
-
[0, 0]
|
|
500
|
-
];
|
|
501
|
-
var ListCodeReviewsRequest$ = [3, n0, _LCRR,
|
|
502
|
-
0,
|
|
503
|
-
[_Ty, _PTr, _St, _RNe, _MR, _NT],
|
|
504
|
-
[[0, { [_hQ]: _Ty }], [64 | 0, { [_hQ]: _PTr }], [64 | 0, { [_hQ]: _St }], [64 | 0, { [_hQ]: _RNe }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
505
|
-
];
|
|
506
|
-
var ListCodeReviewsResponse$ = [3, n0, _LCRRi,
|
|
507
|
-
0,
|
|
508
|
-
[_CRSo, _NT],
|
|
509
|
-
[() => CodeReviewSummaries, 0]
|
|
510
|
-
];
|
|
511
|
-
var ListRecommendationFeedbackRequest$ = [3, n0, _LRFR,
|
|
512
|
-
0,
|
|
513
|
-
[_CRA, _NT, _MR, _UIs, _RIe],
|
|
514
|
-
[[0, 1], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [64 | 0, { [_hQ]: _UIs }], [64 | 0, { [_hQ]: _RIe }]], 1
|
|
515
|
-
];
|
|
516
|
-
var ListRecommendationFeedbackResponse$ = [3, n0, _LRFRi,
|
|
517
|
-
0,
|
|
518
|
-
[_RFS, _NT],
|
|
519
|
-
[() => RecommendationFeedbackSummaries, 0]
|
|
520
|
-
];
|
|
521
|
-
var ListRecommendationsRequest$ = [3, n0, _LRR,
|
|
522
|
-
0,
|
|
523
|
-
[_CRA, _NT, _MR],
|
|
524
|
-
[[0, 1], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
|
|
525
|
-
];
|
|
526
|
-
var ListRecommendationsResponse$ = [3, n0, _LRRi,
|
|
527
|
-
0,
|
|
528
|
-
[_RS, _NT],
|
|
529
|
-
[() => RecommendationSummaries, 0]
|
|
530
|
-
];
|
|
531
|
-
var ListRepositoryAssociationsRequest$ = [3, n0, _LRAR,
|
|
532
|
-
0,
|
|
533
|
-
[_PTr, _St, _Na, _Ow, _MR, _NT],
|
|
534
|
-
[[64 | 0, { [_hQ]: _PT }], [64 | 0, { [_hQ]: _S }], [64 | 0, { [_hQ]: _N }], [64 | 0, { [_hQ]: _O }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
535
|
-
];
|
|
536
|
-
var ListRepositoryAssociationsResponse$ = [3, n0, _LRARi,
|
|
537
|
-
0,
|
|
538
|
-
[_RAS, _NT],
|
|
539
|
-
[() => RepositoryAssociationSummaries, 0]
|
|
540
|
-
];
|
|
541
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
542
|
-
0,
|
|
543
|
-
[_rA],
|
|
544
|
-
[[0, 1]], 1
|
|
545
|
-
];
|
|
546
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
547
|
-
0,
|
|
548
|
-
[_T],
|
|
549
|
-
[128 | 0]
|
|
550
|
-
];
|
|
551
|
-
var Metrics$ = [3, n0, _Me,
|
|
552
|
-
0,
|
|
553
|
-
[_MLOCC, _SLOCC, _FC],
|
|
554
|
-
[1, 1, 1]
|
|
555
|
-
];
|
|
556
|
-
var MetricsSummary$ = [3, n0, _MS,
|
|
557
|
-
0,
|
|
558
|
-
[_MLOCC, _SLOCC, _FC],
|
|
559
|
-
[1, 1, 1]
|
|
560
|
-
];
|
|
561
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
562
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
563
|
-
[_M],
|
|
564
|
-
[0]
|
|
565
|
-
];
|
|
566
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
567
|
-
var PutRecommendationFeedbackRequest$ = [3, n0, _PRFR,
|
|
568
|
-
0,
|
|
569
|
-
[_CRA, _RI, _Re],
|
|
570
|
-
[0, 0, 64 | 0], 3
|
|
571
|
-
];
|
|
572
|
-
var PutRecommendationFeedbackResponse$ = [3, n0, _PRFRu,
|
|
573
|
-
0,
|
|
574
|
-
[],
|
|
575
|
-
[]
|
|
576
|
-
];
|
|
577
|
-
var RecommendationFeedback$ = [3, n0, _RF,
|
|
578
|
-
0,
|
|
579
|
-
[_CRA, _RI, _Re, _UI, _CTS, _LUTS],
|
|
580
|
-
[0, 0, 64 | 0, 0, 4, 4]
|
|
581
|
-
];
|
|
582
|
-
var RecommendationFeedbackSummary$ = [3, n0, _RFSe,
|
|
583
|
-
0,
|
|
584
|
-
[_RI, _Re, _UI],
|
|
585
|
-
[0, 64 | 0, 0]
|
|
586
|
-
];
|
|
587
|
-
var RecommendationSummary$ = [3, n0, _RSe,
|
|
588
|
-
0,
|
|
589
|
-
[_FP, _RI, _SL, _EL, _D, _RC, _RM, _Se],
|
|
590
|
-
[0, 0, 1, 1, 0, 0, () => RuleMetadata$, 0]
|
|
591
|
-
];
|
|
592
|
-
var Repository$ = [3, n0, _R,
|
|
593
|
-
0,
|
|
594
|
-
[_CC, _B, _GHES, _SB],
|
|
595
|
-
[() => CodeCommitRepository$, () => ThirdPartySourceRepository$, () => ThirdPartySourceRepository$, () => S3Repository$]
|
|
596
|
-
];
|
|
597
|
-
var RepositoryAnalysis$ = [3, n0, _RAe,
|
|
598
|
-
0,
|
|
599
|
-
[_RH, _SCT],
|
|
600
|
-
[() => RepositoryHeadSourceCodeType$, () => SourceCodeType$]
|
|
601
|
-
];
|
|
602
|
-
var RepositoryAssociation$ = [3, n0, _RA,
|
|
603
|
-
0,
|
|
604
|
-
[_AI, _AA, _CAo, _N, _O, _PT, _S, _SR, _LUTS, _CTS, _KMSKD, _SRD],
|
|
605
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 4, 4, () => KMSKeyDetails$, () => S3RepositoryDetails$]
|
|
606
|
-
];
|
|
607
|
-
var RepositoryAssociationSummary$ = [3, n0, _RASe,
|
|
608
|
-
0,
|
|
609
|
-
[_AA, _CAo, _LUTS, _AI, _N, _O, _PT, _S],
|
|
610
|
-
[0, 0, 4, 0, 0, 0, 0, 0]
|
|
611
|
-
];
|
|
612
|
-
var RepositoryHeadSourceCodeType$ = [3, n0, _RHSCT,
|
|
613
|
-
0,
|
|
614
|
-
[_BN],
|
|
615
|
-
[0], 1
|
|
616
|
-
];
|
|
617
|
-
var RequestMetadata$ = [3, n0, _RMe,
|
|
618
|
-
0,
|
|
619
|
-
[_RIeq, _Req, _EI, _VN],
|
|
620
|
-
[0, 0, () => EventInfo$, 0]
|
|
621
|
-
];
|
|
622
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
623
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
624
|
-
[_M],
|
|
625
|
-
[0]
|
|
626
|
-
];
|
|
627
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
628
|
-
var RuleMetadata$ = [3, n0, _RM,
|
|
629
|
-
0,
|
|
630
|
-
[_RIu, _RNu, _SD, _LD, _RT],
|
|
631
|
-
[0, 0, 0, 0, 64 | 0]
|
|
632
|
-
];
|
|
633
|
-
var S3BucketRepository$ = [3, n0, _SBR,
|
|
634
|
-
0,
|
|
635
|
-
[_N, _De],
|
|
636
|
-
[0, () => S3RepositoryDetails$], 1
|
|
637
|
-
];
|
|
638
|
-
var S3Repository$ = [3, n0, _SRe,
|
|
639
|
-
0,
|
|
640
|
-
[_N, _BNu],
|
|
641
|
-
[0, 0], 2
|
|
642
|
-
];
|
|
643
|
-
var S3RepositoryDetails$ = [3, n0, _SRD,
|
|
644
|
-
0,
|
|
645
|
-
[_BNu, _CA],
|
|
646
|
-
[0, () => CodeArtifacts$]
|
|
647
|
-
];
|
|
648
|
-
var SourceCodeType$ = [3, n0, _SCT,
|
|
649
|
-
0,
|
|
650
|
-
[_CD, _RH, _BD, _SBR, _RMe],
|
|
651
|
-
[() => CommitDiffSourceCodeType$, () => RepositoryHeadSourceCodeType$, () => BranchDiffSourceCodeType$, () => S3BucketRepository$, () => RequestMetadata$]
|
|
652
|
-
];
|
|
653
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
654
|
-
0,
|
|
655
|
-
[_rA, _T],
|
|
656
|
-
[[0, 1], 128 | 0], 2
|
|
657
|
-
];
|
|
658
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
659
|
-
0,
|
|
660
|
-
[],
|
|
661
|
-
[]
|
|
662
|
-
];
|
|
663
|
-
var ThirdPartySourceRepository$ = [3, n0, _TPSR,
|
|
664
|
-
0,
|
|
665
|
-
[_N, _CAo, _O],
|
|
666
|
-
[0, 0, 0], 3
|
|
667
|
-
];
|
|
668
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
669
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
670
|
-
[_M],
|
|
671
|
-
[0]
|
|
672
|
-
];
|
|
673
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
674
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
675
|
-
0,
|
|
676
|
-
[_rA, _TK],
|
|
677
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
678
|
-
];
|
|
679
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
680
|
-
0,
|
|
681
|
-
[],
|
|
682
|
-
[]
|
|
683
|
-
];
|
|
684
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
685
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
686
|
-
[_M],
|
|
687
|
-
[0]
|
|
688
|
-
];
|
|
689
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
690
|
-
var CodeGuruReviewerServiceException$ = [-3, _sm, "CodeGuruReviewerServiceException", 0, [], []];
|
|
691
|
-
schema.TypeRegistry.for(_sm).registerError(CodeGuruReviewerServiceException$, CodeGuruReviewerServiceException);
|
|
692
|
-
var CodeReviewSummaries = [1, n0, _CRSo,
|
|
693
|
-
0, () => CodeReviewSummary$
|
|
694
|
-
];
|
|
695
|
-
var RecommendationFeedbackSummaries = [1, n0, _RFS,
|
|
696
|
-
0, () => RecommendationFeedbackSummary$
|
|
697
|
-
];
|
|
698
|
-
var RecommendationSummaries = [1, n0, _RS,
|
|
699
|
-
0, () => RecommendationSummary$
|
|
700
|
-
];
|
|
701
|
-
var RepositoryAssociationSummaries = [1, n0, _RAS,
|
|
702
|
-
0, () => RepositoryAssociationSummary$
|
|
703
|
-
];
|
|
704
|
-
var AssociateRepository$ = [9, n0, _AR,
|
|
705
|
-
{ [_h]: ["POST", "/associations", 200] }, () => AssociateRepositoryRequest$, () => AssociateRepositoryResponse$
|
|
706
|
-
];
|
|
707
|
-
var CreateCodeReview$ = [9, n0, _CCRr,
|
|
708
|
-
{ [_h]: ["POST", "/codereviews", 200] }, () => CreateCodeReviewRequest$, () => CreateCodeReviewResponse$
|
|
709
|
-
];
|
|
710
|
-
var DescribeCodeReview$ = [9, n0, _DCR,
|
|
711
|
-
{ [_h]: ["GET", "/codereviews/{CodeReviewArn}", 200] }, () => DescribeCodeReviewRequest$, () => DescribeCodeReviewResponse$
|
|
712
|
-
];
|
|
713
|
-
var DescribeRecommendationFeedback$ = [9, n0, _DRF,
|
|
714
|
-
{ [_h]: ["GET", "/feedback/{CodeReviewArn}", 200] }, () => DescribeRecommendationFeedbackRequest$, () => DescribeRecommendationFeedbackResponse$
|
|
715
|
-
];
|
|
716
|
-
var DescribeRepositoryAssociation$ = [9, n0, _DRA,
|
|
717
|
-
{ [_h]: ["GET", "/associations/{AssociationArn}", 200] }, () => DescribeRepositoryAssociationRequest$, () => DescribeRepositoryAssociationResponse$
|
|
718
|
-
];
|
|
719
|
-
var DisassociateRepository$ = [9, n0, _DR,
|
|
720
|
-
{ [_h]: ["DELETE", "/associations/{AssociationArn}", 200] }, () => DisassociateRepositoryRequest$, () => DisassociateRepositoryResponse$
|
|
721
|
-
];
|
|
722
|
-
var ListCodeReviews$ = [9, n0, _LCR,
|
|
723
|
-
{ [_h]: ["GET", "/codereviews", 200] }, () => ListCodeReviewsRequest$, () => ListCodeReviewsResponse$
|
|
724
|
-
];
|
|
725
|
-
var ListRecommendationFeedback$ = [9, n0, _LRF,
|
|
726
|
-
{ [_h]: ["GET", "/feedback/{CodeReviewArn}/RecommendationFeedback", 200] }, () => ListRecommendationFeedbackRequest$, () => ListRecommendationFeedbackResponse$
|
|
727
|
-
];
|
|
728
|
-
var ListRecommendations$ = [9, n0, _LR,
|
|
729
|
-
{ [_h]: ["GET", "/codereviews/{CodeReviewArn}/Recommendations", 200] }, () => ListRecommendationsRequest$, () => ListRecommendationsResponse$
|
|
730
|
-
];
|
|
731
|
-
var ListRepositoryAssociations$ = [9, n0, _LRA,
|
|
732
|
-
{ [_h]: ["GET", "/associations", 200] }, () => ListRepositoryAssociationsRequest$, () => ListRepositoryAssociationsResponse$
|
|
733
|
-
];
|
|
734
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
735
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
736
|
-
];
|
|
737
|
-
var PutRecommendationFeedback$ = [9, n0, _PRF,
|
|
738
|
-
{ [_h]: ["PUT", "/feedback", 200] }, () => PutRecommendationFeedbackRequest$, () => PutRecommendationFeedbackResponse$
|
|
739
|
-
];
|
|
740
|
-
var TagResource$ = [9, n0, _TR,
|
|
741
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
742
|
-
];
|
|
743
|
-
var UntagResource$ = [9, n0, _UR,
|
|
744
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
745
|
-
];
|
|
746
|
-
|
|
747
117
|
class AssociateRepositoryCommand extends smithyClient.Command
|
|
748
118
|
.classBuilder()
|
|
749
119
|
.ep(commonParams)
|
|
@@ -752,7 +122,7 @@ class AssociateRepositoryCommand extends smithyClient.Command
|
|
|
752
122
|
})
|
|
753
123
|
.s("AWSGuruFrontendService", "AssociateRepository", {})
|
|
754
124
|
.n("CodeGuruReviewerClient", "AssociateRepositoryCommand")
|
|
755
|
-
.sc(AssociateRepository$)
|
|
125
|
+
.sc(schemas_0.AssociateRepository$)
|
|
756
126
|
.build() {
|
|
757
127
|
}
|
|
758
128
|
|
|
@@ -764,7 +134,7 @@ class CreateCodeReviewCommand extends smithyClient.Command
|
|
|
764
134
|
})
|
|
765
135
|
.s("AWSGuruFrontendService", "CreateCodeReview", {})
|
|
766
136
|
.n("CodeGuruReviewerClient", "CreateCodeReviewCommand")
|
|
767
|
-
.sc(CreateCodeReview$)
|
|
137
|
+
.sc(schemas_0.CreateCodeReview$)
|
|
768
138
|
.build() {
|
|
769
139
|
}
|
|
770
140
|
|
|
@@ -776,7 +146,7 @@ class DescribeCodeReviewCommand extends smithyClient.Command
|
|
|
776
146
|
})
|
|
777
147
|
.s("AWSGuruFrontendService", "DescribeCodeReview", {})
|
|
778
148
|
.n("CodeGuruReviewerClient", "DescribeCodeReviewCommand")
|
|
779
|
-
.sc(DescribeCodeReview$)
|
|
149
|
+
.sc(schemas_0.DescribeCodeReview$)
|
|
780
150
|
.build() {
|
|
781
151
|
}
|
|
782
152
|
|
|
@@ -788,7 +158,7 @@ class DescribeRecommendationFeedbackCommand extends smithyClient.Command
|
|
|
788
158
|
})
|
|
789
159
|
.s("AWSGuruFrontendService", "DescribeRecommendationFeedback", {})
|
|
790
160
|
.n("CodeGuruReviewerClient", "DescribeRecommendationFeedbackCommand")
|
|
791
|
-
.sc(DescribeRecommendationFeedback$)
|
|
161
|
+
.sc(schemas_0.DescribeRecommendationFeedback$)
|
|
792
162
|
.build() {
|
|
793
163
|
}
|
|
794
164
|
|
|
@@ -800,7 +170,7 @@ class DescribeRepositoryAssociationCommand extends smithyClient.Command
|
|
|
800
170
|
})
|
|
801
171
|
.s("AWSGuruFrontendService", "DescribeRepositoryAssociation", {})
|
|
802
172
|
.n("CodeGuruReviewerClient", "DescribeRepositoryAssociationCommand")
|
|
803
|
-
.sc(DescribeRepositoryAssociation$)
|
|
173
|
+
.sc(schemas_0.DescribeRepositoryAssociation$)
|
|
804
174
|
.build() {
|
|
805
175
|
}
|
|
806
176
|
|
|
@@ -812,7 +182,7 @@ class DisassociateRepositoryCommand extends smithyClient.Command
|
|
|
812
182
|
})
|
|
813
183
|
.s("AWSGuruFrontendService", "DisassociateRepository", {})
|
|
814
184
|
.n("CodeGuruReviewerClient", "DisassociateRepositoryCommand")
|
|
815
|
-
.sc(DisassociateRepository$)
|
|
185
|
+
.sc(schemas_0.DisassociateRepository$)
|
|
816
186
|
.build() {
|
|
817
187
|
}
|
|
818
188
|
|
|
@@ -824,7 +194,7 @@ class ListCodeReviewsCommand extends smithyClient.Command
|
|
|
824
194
|
})
|
|
825
195
|
.s("AWSGuruFrontendService", "ListCodeReviews", {})
|
|
826
196
|
.n("CodeGuruReviewerClient", "ListCodeReviewsCommand")
|
|
827
|
-
.sc(ListCodeReviews$)
|
|
197
|
+
.sc(schemas_0.ListCodeReviews$)
|
|
828
198
|
.build() {
|
|
829
199
|
}
|
|
830
200
|
|
|
@@ -836,7 +206,7 @@ class ListRecommendationFeedbackCommand extends smithyClient.Command
|
|
|
836
206
|
})
|
|
837
207
|
.s("AWSGuruFrontendService", "ListRecommendationFeedback", {})
|
|
838
208
|
.n("CodeGuruReviewerClient", "ListRecommendationFeedbackCommand")
|
|
839
|
-
.sc(ListRecommendationFeedback$)
|
|
209
|
+
.sc(schemas_0.ListRecommendationFeedback$)
|
|
840
210
|
.build() {
|
|
841
211
|
}
|
|
842
212
|
|
|
@@ -848,7 +218,7 @@ class ListRecommendationsCommand extends smithyClient.Command
|
|
|
848
218
|
})
|
|
849
219
|
.s("AWSGuruFrontendService", "ListRecommendations", {})
|
|
850
220
|
.n("CodeGuruReviewerClient", "ListRecommendationsCommand")
|
|
851
|
-
.sc(ListRecommendations$)
|
|
221
|
+
.sc(schemas_0.ListRecommendations$)
|
|
852
222
|
.build() {
|
|
853
223
|
}
|
|
854
224
|
|
|
@@ -860,7 +230,7 @@ class ListRepositoryAssociationsCommand extends smithyClient.Command
|
|
|
860
230
|
})
|
|
861
231
|
.s("AWSGuruFrontendService", "ListRepositoryAssociations", {})
|
|
862
232
|
.n("CodeGuruReviewerClient", "ListRepositoryAssociationsCommand")
|
|
863
|
-
.sc(ListRepositoryAssociations$)
|
|
233
|
+
.sc(schemas_0.ListRepositoryAssociations$)
|
|
864
234
|
.build() {
|
|
865
235
|
}
|
|
866
236
|
|
|
@@ -872,7 +242,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
872
242
|
})
|
|
873
243
|
.s("AWSGuruFrontendService", "ListTagsForResource", {})
|
|
874
244
|
.n("CodeGuruReviewerClient", "ListTagsForResourceCommand")
|
|
875
|
-
.sc(ListTagsForResource$)
|
|
245
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
876
246
|
.build() {
|
|
877
247
|
}
|
|
878
248
|
|
|
@@ -884,7 +254,7 @@ class PutRecommendationFeedbackCommand extends smithyClient.Command
|
|
|
884
254
|
})
|
|
885
255
|
.s("AWSGuruFrontendService", "PutRecommendationFeedback", {})
|
|
886
256
|
.n("CodeGuruReviewerClient", "PutRecommendationFeedbackCommand")
|
|
887
|
-
.sc(PutRecommendationFeedback$)
|
|
257
|
+
.sc(schemas_0.PutRecommendationFeedback$)
|
|
888
258
|
.build() {
|
|
889
259
|
}
|
|
890
260
|
|
|
@@ -896,7 +266,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
896
266
|
})
|
|
897
267
|
.s("AWSGuruFrontendService", "TagResource", {})
|
|
898
268
|
.n("CodeGuruReviewerClient", "TagResourceCommand")
|
|
899
|
-
.sc(TagResource$)
|
|
269
|
+
.sc(schemas_0.TagResource$)
|
|
900
270
|
.build() {
|
|
901
271
|
}
|
|
902
272
|
|
|
@@ -908,7 +278,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
908
278
|
})
|
|
909
279
|
.s("AWSGuruFrontendService", "UntagResource", {})
|
|
910
280
|
.n("CodeGuruReviewerClient", "UntagResourceCommand")
|
|
911
|
-
.sc(UntagResource$)
|
|
281
|
+
.sc(schemas_0.UntagResource$)
|
|
912
282
|
.build() {
|
|
913
283
|
}
|
|
914
284
|
|
|
@@ -1121,116 +491,36 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1121
491
|
enumerable: true,
|
|
1122
492
|
get: function () { return smithyClient.Client; }
|
|
1123
493
|
});
|
|
1124
|
-
exports
|
|
1125
|
-
|
|
494
|
+
Object.defineProperty(exports, "CodeGuruReviewerServiceException", {
|
|
495
|
+
enumerable: true,
|
|
496
|
+
get: function () { return CodeGuruReviewerServiceException.CodeGuruReviewerServiceException; }
|
|
497
|
+
});
|
|
1126
498
|
exports.AnalysisType = AnalysisType;
|
|
1127
|
-
exports.AssociateRepository$ = AssociateRepository$;
|
|
1128
499
|
exports.AssociateRepositoryCommand = AssociateRepositoryCommand;
|
|
1129
|
-
exports.AssociateRepositoryRequest$ = AssociateRepositoryRequest$;
|
|
1130
|
-
exports.AssociateRepositoryResponse$ = AssociateRepositoryResponse$;
|
|
1131
|
-
exports.BranchDiffSourceCodeType$ = BranchDiffSourceCodeType$;
|
|
1132
|
-
exports.CodeArtifacts$ = CodeArtifacts$;
|
|
1133
|
-
exports.CodeCommitRepository$ = CodeCommitRepository$;
|
|
1134
500
|
exports.CodeGuruReviewer = CodeGuruReviewer;
|
|
1135
501
|
exports.CodeGuruReviewerClient = CodeGuruReviewerClient;
|
|
1136
|
-
exports.CodeGuruReviewerServiceException = CodeGuruReviewerServiceException;
|
|
1137
|
-
exports.CodeGuruReviewerServiceException$ = CodeGuruReviewerServiceException$;
|
|
1138
|
-
exports.CodeReview$ = CodeReview$;
|
|
1139
|
-
exports.CodeReviewSummary$ = CodeReviewSummary$;
|
|
1140
|
-
exports.CodeReviewType$ = CodeReviewType$;
|
|
1141
|
-
exports.CommitDiffSourceCodeType$ = CommitDiffSourceCodeType$;
|
|
1142
502
|
exports.ConfigFileState = ConfigFileState;
|
|
1143
|
-
exports.ConflictException = ConflictException;
|
|
1144
|
-
exports.ConflictException$ = ConflictException$;
|
|
1145
|
-
exports.CreateCodeReview$ = CreateCodeReview$;
|
|
1146
503
|
exports.CreateCodeReviewCommand = CreateCodeReviewCommand;
|
|
1147
|
-
exports.CreateCodeReviewRequest$ = CreateCodeReviewRequest$;
|
|
1148
|
-
exports.CreateCodeReviewResponse$ = CreateCodeReviewResponse$;
|
|
1149
|
-
exports.DescribeCodeReview$ = DescribeCodeReview$;
|
|
1150
504
|
exports.DescribeCodeReviewCommand = DescribeCodeReviewCommand;
|
|
1151
|
-
exports.DescribeCodeReviewRequest$ = DescribeCodeReviewRequest$;
|
|
1152
|
-
exports.DescribeCodeReviewResponse$ = DescribeCodeReviewResponse$;
|
|
1153
|
-
exports.DescribeRecommendationFeedback$ = DescribeRecommendationFeedback$;
|
|
1154
505
|
exports.DescribeRecommendationFeedbackCommand = DescribeRecommendationFeedbackCommand;
|
|
1155
|
-
exports.DescribeRecommendationFeedbackRequest$ = DescribeRecommendationFeedbackRequest$;
|
|
1156
|
-
exports.DescribeRecommendationFeedbackResponse$ = DescribeRecommendationFeedbackResponse$;
|
|
1157
|
-
exports.DescribeRepositoryAssociation$ = DescribeRepositoryAssociation$;
|
|
1158
506
|
exports.DescribeRepositoryAssociationCommand = DescribeRepositoryAssociationCommand;
|
|
1159
|
-
exports.DescribeRepositoryAssociationRequest$ = DescribeRepositoryAssociationRequest$;
|
|
1160
|
-
exports.DescribeRepositoryAssociationResponse$ = DescribeRepositoryAssociationResponse$;
|
|
1161
|
-
exports.DisassociateRepository$ = DisassociateRepository$;
|
|
1162
507
|
exports.DisassociateRepositoryCommand = DisassociateRepositoryCommand;
|
|
1163
|
-
exports.DisassociateRepositoryRequest$ = DisassociateRepositoryRequest$;
|
|
1164
|
-
exports.DisassociateRepositoryResponse$ = DisassociateRepositoryResponse$;
|
|
1165
508
|
exports.EncryptionOption = EncryptionOption;
|
|
1166
|
-
exports.EventInfo$ = EventInfo$;
|
|
1167
|
-
exports.InternalServerException = InternalServerException;
|
|
1168
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1169
509
|
exports.JobState = JobState;
|
|
1170
|
-
exports.KMSKeyDetails$ = KMSKeyDetails$;
|
|
1171
|
-
exports.ListCodeReviews$ = ListCodeReviews$;
|
|
1172
510
|
exports.ListCodeReviewsCommand = ListCodeReviewsCommand;
|
|
1173
|
-
exports.ListCodeReviewsRequest$ = ListCodeReviewsRequest$;
|
|
1174
|
-
exports.ListCodeReviewsResponse$ = ListCodeReviewsResponse$;
|
|
1175
|
-
exports.ListRecommendationFeedback$ = ListRecommendationFeedback$;
|
|
1176
511
|
exports.ListRecommendationFeedbackCommand = ListRecommendationFeedbackCommand;
|
|
1177
|
-
exports.ListRecommendationFeedbackRequest$ = ListRecommendationFeedbackRequest$;
|
|
1178
|
-
exports.ListRecommendationFeedbackResponse$ = ListRecommendationFeedbackResponse$;
|
|
1179
|
-
exports.ListRecommendations$ = ListRecommendations$;
|
|
1180
512
|
exports.ListRecommendationsCommand = ListRecommendationsCommand;
|
|
1181
|
-
exports.ListRecommendationsRequest$ = ListRecommendationsRequest$;
|
|
1182
|
-
exports.ListRecommendationsResponse$ = ListRecommendationsResponse$;
|
|
1183
|
-
exports.ListRepositoryAssociations$ = ListRepositoryAssociations$;
|
|
1184
513
|
exports.ListRepositoryAssociationsCommand = ListRepositoryAssociationsCommand;
|
|
1185
|
-
exports.ListRepositoryAssociationsRequest$ = ListRepositoryAssociationsRequest$;
|
|
1186
|
-
exports.ListRepositoryAssociationsResponse$ = ListRepositoryAssociationsResponse$;
|
|
1187
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1188
514
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1189
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1190
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1191
|
-
exports.Metrics$ = Metrics$;
|
|
1192
|
-
exports.MetricsSummary$ = MetricsSummary$;
|
|
1193
|
-
exports.NotFoundException = NotFoundException;
|
|
1194
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
1195
515
|
exports.ProviderType = ProviderType;
|
|
1196
|
-
exports.PutRecommendationFeedback$ = PutRecommendationFeedback$;
|
|
1197
516
|
exports.PutRecommendationFeedbackCommand = PutRecommendationFeedbackCommand;
|
|
1198
|
-
exports.PutRecommendationFeedbackRequest$ = PutRecommendationFeedbackRequest$;
|
|
1199
|
-
exports.PutRecommendationFeedbackResponse$ = PutRecommendationFeedbackResponse$;
|
|
1200
517
|
exports.Reaction = Reaction;
|
|
1201
518
|
exports.RecommendationCategory = RecommendationCategory;
|
|
1202
|
-
exports.RecommendationFeedback$ = RecommendationFeedback$;
|
|
1203
|
-
exports.RecommendationFeedbackSummary$ = RecommendationFeedbackSummary$;
|
|
1204
|
-
exports.RecommendationSummary$ = RecommendationSummary$;
|
|
1205
|
-
exports.Repository$ = Repository$;
|
|
1206
|
-
exports.RepositoryAnalysis$ = RepositoryAnalysis$;
|
|
1207
|
-
exports.RepositoryAssociation$ = RepositoryAssociation$;
|
|
1208
519
|
exports.RepositoryAssociationState = RepositoryAssociationState;
|
|
1209
|
-
exports.RepositoryAssociationSummary$ = RepositoryAssociationSummary$;
|
|
1210
|
-
exports.RepositoryHeadSourceCodeType$ = RepositoryHeadSourceCodeType$;
|
|
1211
|
-
exports.RequestMetadata$ = RequestMetadata$;
|
|
1212
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1213
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1214
|
-
exports.RuleMetadata$ = RuleMetadata$;
|
|
1215
|
-
exports.S3BucketRepository$ = S3BucketRepository$;
|
|
1216
|
-
exports.S3Repository$ = S3Repository$;
|
|
1217
|
-
exports.S3RepositoryDetails$ = S3RepositoryDetails$;
|
|
1218
520
|
exports.Severity = Severity;
|
|
1219
|
-
exports.SourceCodeType$ = SourceCodeType$;
|
|
1220
|
-
exports.TagResource$ = TagResource$;
|
|
1221
521
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1222
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1223
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1224
|
-
exports.ThirdPartySourceRepository$ = ThirdPartySourceRepository$;
|
|
1225
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1226
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1227
522
|
exports.Type = Type;
|
|
1228
|
-
exports.UntagResource$ = UntagResource$;
|
|
1229
523
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1230
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1231
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1232
|
-
exports.ValidationException = ValidationException;
|
|
1233
|
-
exports.ValidationException$ = ValidationException$;
|
|
1234
524
|
exports.VendorName = VendorName;
|
|
1235
525
|
exports.paginateListCodeReviews = paginateListCodeReviews;
|
|
1236
526
|
exports.paginateListRecommendationFeedback = paginateListRecommendationFeedback;
|
|
@@ -1240,3 +530,15 @@ exports.waitForCodeReviewCompleted = waitForCodeReviewCompleted;
|
|
|
1240
530
|
exports.waitForRepositoryAssociationSucceeded = waitForRepositoryAssociationSucceeded;
|
|
1241
531
|
exports.waitUntilCodeReviewCompleted = waitUntilCodeReviewCompleted;
|
|
1242
532
|
exports.waitUntilRepositoryAssociationSucceeded = waitUntilRepositoryAssociationSucceeded;
|
|
533
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
534
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
535
|
+
enumerable: true,
|
|
536
|
+
get: function () { return schemas_0[k]; }
|
|
537
|
+
});
|
|
538
|
+
});
|
|
539
|
+
Object.keys(errors).forEach(function (k) {
|
|
540
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
541
|
+
enumerable: true,
|
|
542
|
+
get: function () { return errors[k]; }
|
|
543
|
+
});
|
|
544
|
+
});
|