@aws-sdk/client-codeguru-reviewer 3.296.0 → 3.298.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/commands/AssociateRepositoryCommand.js +2 -3
- package/dist-cjs/commands/CreateCodeReviewCommand.js +2 -3
- package/dist-cjs/commands/DescribeCodeReviewCommand.js +2 -3
- package/dist-cjs/commands/DescribeRecommendationFeedbackCommand.js +2 -3
- package/dist-cjs/commands/DescribeRepositoryAssociationCommand.js +2 -3
- package/dist-cjs/commands/DisassociateRepositoryCommand.js +2 -3
- package/dist-cjs/commands/ListCodeReviewsCommand.js +2 -3
- package/dist-cjs/commands/ListRecommendationFeedbackCommand.js +2 -3
- package/dist-cjs/commands/ListRecommendationsCommand.js +2 -3
- package/dist-cjs/commands/ListRepositoryAssociationsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/PutRecommendationFeedbackCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -218
- package/dist-es/commands/AssociateRepositoryCommand.js +2 -3
- package/dist-es/commands/CreateCodeReviewCommand.js +2 -3
- package/dist-es/commands/DescribeCodeReviewCommand.js +2 -3
- package/dist-es/commands/DescribeRecommendationFeedbackCommand.js +2 -3
- package/dist-es/commands/DescribeRepositoryAssociationCommand.js +2 -3
- package/dist-es/commands/DisassociateRepositoryCommand.js +2 -3
- package/dist-es/commands/ListCodeReviewsCommand.js +2 -3
- package/dist-es/commands/ListRecommendationFeedbackCommand.js +2 -3
- package/dist-es/commands/ListRecommendationsCommand.js +2 -3
- package/dist-es/commands/ListRepositoryAssociationsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/PutRecommendationFeedbackCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -162
- package/dist-types/CodeGuruReviewer.d.ts +15 -0
- package/dist-types/CodeGuruReviewerClient.d.ts +24 -4
- package/dist-types/commands/AssociateRepositoryCommand.d.ts +16 -0
- package/dist-types/commands/CreateCodeReviewCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCodeReviewCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRecommendationFeedbackCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRepositoryAssociationCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateRepositoryCommand.d.ts +16 -0
- package/dist-types/commands/ListCodeReviewsCommand.d.ts +16 -0
- package/dist-types/commands/ListRecommendationFeedbackCommand.d.ts +16 -0
- package/dist-types/commands/ListRecommendationsCommand.d.ts +16 -0
- package/dist-types/commands/ListRepositoryAssociationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutRecommendationFeedbackCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/CodeGuruReviewerServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +150 -216
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListCodeReviewsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRecommendationFeedbackPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRecommendationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRepositoryAssociationsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -150
- package/package.json +4 -3
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListCodeReviewsRequestFilterSensitiveLog, ListCodeReviewsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListCodeReviewsCommand, serializeAws_restJson1ListCodeReviewsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListCodeReviewsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListCodeReviewsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListRecommendationFeedbackRequestFilterSensitiveLog, ListRecommendationFeedbackResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListRecommendationFeedbackCommand, serializeAws_restJson1ListRecommendationFeedbackCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListRecommendationFeedbackCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListRecommendationFeedbackCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListRecommendationsRequestFilterSensitiveLog, ListRecommendationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListRecommendationsCommand, serializeAws_restJson1ListRecommendationsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListRecommendationsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListRecommendationsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListRepositoryAssociationsRequestFilterSensitiveLog, ListRepositoryAssociationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListRepositoryAssociationsCommand, serializeAws_restJson1ListRepositoryAssociationsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListRepositoryAssociationsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListRepositoryAssociationsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListTagsForResourceCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListTagsForResourceCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { PutRecommendationFeedbackRequestFilterSensitiveLog, PutRecommendationFeedbackResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1PutRecommendationFeedbackCommand, serializeAws_restJson1PutRecommendationFeedbackCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class PutRecommendationFeedbackCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class PutRecommendationFeedbackCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class TagResourceCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class TagResourceCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UntagResourceCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UntagResourceCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -167,165 +167,3 @@ export var Severity;
|
|
|
167
167
|
Severity["LOW"] = "Low";
|
|
168
168
|
Severity["MEDIUM"] = "Medium";
|
|
169
169
|
})(Severity || (Severity = {}));
|
|
170
|
-
export const KMSKeyDetailsFilterSensitiveLog = (obj) => ({
|
|
171
|
-
...obj,
|
|
172
|
-
});
|
|
173
|
-
export const ThirdPartySourceRepositoryFilterSensitiveLog = (obj) => ({
|
|
174
|
-
...obj,
|
|
175
|
-
});
|
|
176
|
-
export const CodeCommitRepositoryFilterSensitiveLog = (obj) => ({
|
|
177
|
-
...obj,
|
|
178
|
-
});
|
|
179
|
-
export const S3RepositoryFilterSensitiveLog = (obj) => ({
|
|
180
|
-
...obj,
|
|
181
|
-
});
|
|
182
|
-
export const RepositoryFilterSensitiveLog = (obj) => ({
|
|
183
|
-
...obj,
|
|
184
|
-
});
|
|
185
|
-
export const AssociateRepositoryRequestFilterSensitiveLog = (obj) => ({
|
|
186
|
-
...obj,
|
|
187
|
-
});
|
|
188
|
-
export const CodeArtifactsFilterSensitiveLog = (obj) => ({
|
|
189
|
-
...obj,
|
|
190
|
-
});
|
|
191
|
-
export const S3RepositoryDetailsFilterSensitiveLog = (obj) => ({
|
|
192
|
-
...obj,
|
|
193
|
-
});
|
|
194
|
-
export const RepositoryAssociationFilterSensitiveLog = (obj) => ({
|
|
195
|
-
...obj,
|
|
196
|
-
});
|
|
197
|
-
export const AssociateRepositoryResponseFilterSensitiveLog = (obj) => ({
|
|
198
|
-
...obj,
|
|
199
|
-
});
|
|
200
|
-
export const RepositoryHeadSourceCodeTypeFilterSensitiveLog = (obj) => ({
|
|
201
|
-
...obj,
|
|
202
|
-
});
|
|
203
|
-
export const BranchDiffSourceCodeTypeFilterSensitiveLog = (obj) => ({
|
|
204
|
-
...obj,
|
|
205
|
-
});
|
|
206
|
-
export const CommitDiffSourceCodeTypeFilterSensitiveLog = (obj) => ({
|
|
207
|
-
...obj,
|
|
208
|
-
});
|
|
209
|
-
export const EventInfoFilterSensitiveLog = (obj) => ({
|
|
210
|
-
...obj,
|
|
211
|
-
});
|
|
212
|
-
export const RequestMetadataFilterSensitiveLog = (obj) => ({
|
|
213
|
-
...obj,
|
|
214
|
-
});
|
|
215
|
-
export const S3BucketRepositoryFilterSensitiveLog = (obj) => ({
|
|
216
|
-
...obj,
|
|
217
|
-
});
|
|
218
|
-
export const SourceCodeTypeFilterSensitiveLog = (obj) => ({
|
|
219
|
-
...obj,
|
|
220
|
-
});
|
|
221
|
-
export const RepositoryAnalysisFilterSensitiveLog = (obj) => ({
|
|
222
|
-
...obj,
|
|
223
|
-
});
|
|
224
|
-
export const CodeReviewTypeFilterSensitiveLog = (obj) => ({
|
|
225
|
-
...obj,
|
|
226
|
-
});
|
|
227
|
-
export const CreateCodeReviewRequestFilterSensitiveLog = (obj) => ({
|
|
228
|
-
...obj,
|
|
229
|
-
});
|
|
230
|
-
export const MetricsFilterSensitiveLog = (obj) => ({
|
|
231
|
-
...obj,
|
|
232
|
-
});
|
|
233
|
-
export const CodeReviewFilterSensitiveLog = (obj) => ({
|
|
234
|
-
...obj,
|
|
235
|
-
});
|
|
236
|
-
export const CreateCodeReviewResponseFilterSensitiveLog = (obj) => ({
|
|
237
|
-
...obj,
|
|
238
|
-
});
|
|
239
|
-
export const DescribeCodeReviewRequestFilterSensitiveLog = (obj) => ({
|
|
240
|
-
...obj,
|
|
241
|
-
});
|
|
242
|
-
export const DescribeCodeReviewResponseFilterSensitiveLog = (obj) => ({
|
|
243
|
-
...obj,
|
|
244
|
-
});
|
|
245
|
-
export const DescribeRecommendationFeedbackRequestFilterSensitiveLog = (obj) => ({
|
|
246
|
-
...obj,
|
|
247
|
-
});
|
|
248
|
-
export const RecommendationFeedbackFilterSensitiveLog = (obj) => ({
|
|
249
|
-
...obj,
|
|
250
|
-
});
|
|
251
|
-
export const DescribeRecommendationFeedbackResponseFilterSensitiveLog = (obj) => ({
|
|
252
|
-
...obj,
|
|
253
|
-
});
|
|
254
|
-
export const DescribeRepositoryAssociationRequestFilterSensitiveLog = (obj) => ({
|
|
255
|
-
...obj,
|
|
256
|
-
});
|
|
257
|
-
export const DescribeRepositoryAssociationResponseFilterSensitiveLog = (obj) => ({
|
|
258
|
-
...obj,
|
|
259
|
-
});
|
|
260
|
-
export const DisassociateRepositoryRequestFilterSensitiveLog = (obj) => ({
|
|
261
|
-
...obj,
|
|
262
|
-
});
|
|
263
|
-
export const DisassociateRepositoryResponseFilterSensitiveLog = (obj) => ({
|
|
264
|
-
...obj,
|
|
265
|
-
});
|
|
266
|
-
export const ListCodeReviewsRequestFilterSensitiveLog = (obj) => ({
|
|
267
|
-
...obj,
|
|
268
|
-
});
|
|
269
|
-
export const MetricsSummaryFilterSensitiveLog = (obj) => ({
|
|
270
|
-
...obj,
|
|
271
|
-
});
|
|
272
|
-
export const CodeReviewSummaryFilterSensitiveLog = (obj) => ({
|
|
273
|
-
...obj,
|
|
274
|
-
});
|
|
275
|
-
export const ListCodeReviewsResponseFilterSensitiveLog = (obj) => ({
|
|
276
|
-
...obj,
|
|
277
|
-
});
|
|
278
|
-
export const ListRecommendationFeedbackRequestFilterSensitiveLog = (obj) => ({
|
|
279
|
-
...obj,
|
|
280
|
-
});
|
|
281
|
-
export const RecommendationFeedbackSummaryFilterSensitiveLog = (obj) => ({
|
|
282
|
-
...obj,
|
|
283
|
-
});
|
|
284
|
-
export const ListRecommendationFeedbackResponseFilterSensitiveLog = (obj) => ({
|
|
285
|
-
...obj,
|
|
286
|
-
});
|
|
287
|
-
export const ListRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
288
|
-
...obj,
|
|
289
|
-
});
|
|
290
|
-
export const RuleMetadataFilterSensitiveLog = (obj) => ({
|
|
291
|
-
...obj,
|
|
292
|
-
});
|
|
293
|
-
export const RecommendationSummaryFilterSensitiveLog = (obj) => ({
|
|
294
|
-
...obj,
|
|
295
|
-
});
|
|
296
|
-
export const ListRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
297
|
-
...obj,
|
|
298
|
-
});
|
|
299
|
-
export const ListRepositoryAssociationsRequestFilterSensitiveLog = (obj) => ({
|
|
300
|
-
...obj,
|
|
301
|
-
});
|
|
302
|
-
export const RepositoryAssociationSummaryFilterSensitiveLog = (obj) => ({
|
|
303
|
-
...obj,
|
|
304
|
-
});
|
|
305
|
-
export const ListRepositoryAssociationsResponseFilterSensitiveLog = (obj) => ({
|
|
306
|
-
...obj,
|
|
307
|
-
});
|
|
308
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
309
|
-
...obj,
|
|
310
|
-
});
|
|
311
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
312
|
-
...obj,
|
|
313
|
-
});
|
|
314
|
-
export const PutRecommendationFeedbackRequestFilterSensitiveLog = (obj) => ({
|
|
315
|
-
...obj,
|
|
316
|
-
});
|
|
317
|
-
export const PutRecommendationFeedbackResponseFilterSensitiveLog = (obj) => ({
|
|
318
|
-
...obj,
|
|
319
|
-
});
|
|
320
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
321
|
-
...obj,
|
|
322
|
-
});
|
|
323
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
324
|
-
...obj,
|
|
325
|
-
});
|
|
326
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
327
|
-
...obj,
|
|
328
|
-
});
|
|
329
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
330
|
-
...obj,
|
|
331
|
-
});
|
|
@@ -15,6 +15,7 @@ import { PutRecommendationFeedbackCommandInput, PutRecommendationFeedbackCommand
|
|
|
15
15
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
16
16
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
17
17
|
/**
|
|
18
|
+
* @public
|
|
18
19
|
* <p>This section provides documentation for the Amazon CodeGuru Reviewer API operations. CodeGuru Reviewer is a
|
|
19
20
|
* service that uses program analysis and machine learning to detect potential defects that
|
|
20
21
|
* are difficult for developers to find and recommends fixes in your Java and Python
|
|
@@ -35,6 +36,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
35
36
|
*/
|
|
36
37
|
export declare class CodeGuruReviewer extends CodeGuruReviewerClient {
|
|
37
38
|
/**
|
|
39
|
+
* @public
|
|
38
40
|
* <p>Use to associate an Amazon Web Services CodeCommit repository or a repository managed by Amazon Web Services
|
|
39
41
|
* CodeStar Connections with Amazon CodeGuru Reviewer. When you associate a repository, CodeGuru Reviewer reviews
|
|
40
42
|
* source code changes in the repository's pull requests and provides automatic
|
|
@@ -63,6 +65,7 @@ export declare class CodeGuruReviewer extends CodeGuruReviewerClient {
|
|
|
63
65
|
associateRepository(args: AssociateRepositoryCommandInput, cb: (err: any, data?: AssociateRepositoryCommandOutput) => void): void;
|
|
64
66
|
associateRepository(args: AssociateRepositoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateRepositoryCommandOutput) => void): void;
|
|
65
67
|
/**
|
|
68
|
+
* @public
|
|
66
69
|
* <p>Use to create a code review with a <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_CodeReviewType.html">CodeReviewType</a> of
|
|
67
70
|
* <code>RepositoryAnalysis</code>. This type of code review analyzes all code under a
|
|
68
71
|
* specified branch in an associated repository. <code>PullRequest</code> code reviews are
|
|
@@ -72,18 +75,21 @@ export declare class CodeGuruReviewer extends CodeGuruReviewerClient {
|
|
|
72
75
|
createCodeReview(args: CreateCodeReviewCommandInput, cb: (err: any, data?: CreateCodeReviewCommandOutput) => void): void;
|
|
73
76
|
createCodeReview(args: CreateCodeReviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCodeReviewCommandOutput) => void): void;
|
|
74
77
|
/**
|
|
78
|
+
* @public
|
|
75
79
|
* <p>Returns the metadata associated with the code review along with its status.</p>
|
|
76
80
|
*/
|
|
77
81
|
describeCodeReview(args: DescribeCodeReviewCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCodeReviewCommandOutput>;
|
|
78
82
|
describeCodeReview(args: DescribeCodeReviewCommandInput, cb: (err: any, data?: DescribeCodeReviewCommandOutput) => void): void;
|
|
79
83
|
describeCodeReview(args: DescribeCodeReviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCodeReviewCommandOutput) => void): void;
|
|
80
84
|
/**
|
|
85
|
+
* @public
|
|
81
86
|
* <p>Describes the customer feedback for a CodeGuru Reviewer recommendation.</p>
|
|
82
87
|
*/
|
|
83
88
|
describeRecommendationFeedback(args: DescribeRecommendationFeedbackCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRecommendationFeedbackCommandOutput>;
|
|
84
89
|
describeRecommendationFeedback(args: DescribeRecommendationFeedbackCommandInput, cb: (err: any, data?: DescribeRecommendationFeedbackCommandOutput) => void): void;
|
|
85
90
|
describeRecommendationFeedback(args: DescribeRecommendationFeedbackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecommendationFeedbackCommandOutput) => void): void;
|
|
86
91
|
/**
|
|
92
|
+
* @public
|
|
87
93
|
* <p>Returns a <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RepositoryAssociation.html">RepositoryAssociation</a> object that contains information about the requested
|
|
88
94
|
* repository association.</p>
|
|
89
95
|
*/
|
|
@@ -91,18 +97,21 @@ export declare class CodeGuruReviewer extends CodeGuruReviewerClient {
|
|
|
91
97
|
describeRepositoryAssociation(args: DescribeRepositoryAssociationCommandInput, cb: (err: any, data?: DescribeRepositoryAssociationCommandOutput) => void): void;
|
|
92
98
|
describeRepositoryAssociation(args: DescribeRepositoryAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRepositoryAssociationCommandOutput) => void): void;
|
|
93
99
|
/**
|
|
100
|
+
* @public
|
|
94
101
|
* <p>Removes the association between Amazon CodeGuru Reviewer and a repository.</p>
|
|
95
102
|
*/
|
|
96
103
|
disassociateRepository(args: DisassociateRepositoryCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateRepositoryCommandOutput>;
|
|
97
104
|
disassociateRepository(args: DisassociateRepositoryCommandInput, cb: (err: any, data?: DisassociateRepositoryCommandOutput) => void): void;
|
|
98
105
|
disassociateRepository(args: DisassociateRepositoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateRepositoryCommandOutput) => void): void;
|
|
99
106
|
/**
|
|
107
|
+
* @public
|
|
100
108
|
* <p>Lists all the code reviews that the customer has created in the past 90 days.</p>
|
|
101
109
|
*/
|
|
102
110
|
listCodeReviews(args: ListCodeReviewsCommandInput, options?: __HttpHandlerOptions): Promise<ListCodeReviewsCommandOutput>;
|
|
103
111
|
listCodeReviews(args: ListCodeReviewsCommandInput, cb: (err: any, data?: ListCodeReviewsCommandOutput) => void): void;
|
|
104
112
|
listCodeReviews(args: ListCodeReviewsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCodeReviewsCommandOutput) => void): void;
|
|
105
113
|
/**
|
|
114
|
+
* @public
|
|
106
115
|
* <p>Returns a list of <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RecommendationFeedbackSummary.html">RecommendationFeedbackSummary</a> objects that contain customer recommendation
|
|
107
116
|
* feedback for all CodeGuru Reviewer users.</p>
|
|
108
117
|
*/
|
|
@@ -110,12 +119,14 @@ export declare class CodeGuruReviewer extends CodeGuruReviewerClient {
|
|
|
110
119
|
listRecommendationFeedback(args: ListRecommendationFeedbackCommandInput, cb: (err: any, data?: ListRecommendationFeedbackCommandOutput) => void): void;
|
|
111
120
|
listRecommendationFeedback(args: ListRecommendationFeedbackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecommendationFeedbackCommandOutput) => void): void;
|
|
112
121
|
/**
|
|
122
|
+
* @public
|
|
113
123
|
* <p>Returns the list of all recommendations for a completed code review.</p>
|
|
114
124
|
*/
|
|
115
125
|
listRecommendations(args: ListRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<ListRecommendationsCommandOutput>;
|
|
116
126
|
listRecommendations(args: ListRecommendationsCommandInput, cb: (err: any, data?: ListRecommendationsCommandOutput) => void): void;
|
|
117
127
|
listRecommendations(args: ListRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecommendationsCommandOutput) => void): void;
|
|
118
128
|
/**
|
|
129
|
+
* @public
|
|
119
130
|
* <p>Returns a list of <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RepositoryAssociationSummary.html">RepositoryAssociationSummary</a> objects that contain summary information about a
|
|
120
131
|
* repository association. You can filter the returned list by <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RepositoryAssociationSummary.html#reviewer-Type-RepositoryAssociationSummary-ProviderType">ProviderType</a>, <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RepositoryAssociationSummary.html#reviewer-Type-RepositoryAssociationSummary-Name">Name</a>, <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RepositoryAssociationSummary.html#reviewer-Type-RepositoryAssociationSummary-State">State</a>, and <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RepositoryAssociationSummary.html#reviewer-Type-RepositoryAssociationSummary-Owner">Owner</a>.</p>
|
|
121
132
|
*/
|
|
@@ -123,12 +134,14 @@ export declare class CodeGuruReviewer extends CodeGuruReviewerClient {
|
|
|
123
134
|
listRepositoryAssociations(args: ListRepositoryAssociationsCommandInput, cb: (err: any, data?: ListRepositoryAssociationsCommandOutput) => void): void;
|
|
124
135
|
listRepositoryAssociations(args: ListRepositoryAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRepositoryAssociationsCommandOutput) => void): void;
|
|
125
136
|
/**
|
|
137
|
+
* @public
|
|
126
138
|
* <p>Returns the list of tags associated with an associated repository resource.</p>
|
|
127
139
|
*/
|
|
128
140
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
129
141
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
130
142
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
131
143
|
/**
|
|
144
|
+
* @public
|
|
132
145
|
* <p>Stores customer feedback for a CodeGuru Reviewer recommendation. When this API is called again with
|
|
133
146
|
* different reactions the previous feedback is overwritten.</p>
|
|
134
147
|
*/
|
|
@@ -136,12 +149,14 @@ export declare class CodeGuruReviewer extends CodeGuruReviewerClient {
|
|
|
136
149
|
putRecommendationFeedback(args: PutRecommendationFeedbackCommandInput, cb: (err: any, data?: PutRecommendationFeedbackCommandOutput) => void): void;
|
|
137
150
|
putRecommendationFeedback(args: PutRecommendationFeedbackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutRecommendationFeedbackCommandOutput) => void): void;
|
|
138
151
|
/**
|
|
152
|
+
* @public
|
|
139
153
|
* <p>Adds one or more tags to an associated repository.</p>
|
|
140
154
|
*/
|
|
141
155
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
142
156
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
143
157
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
144
158
|
/**
|
|
159
|
+
* @public
|
|
145
160
|
* <p>Removes a tag from an associated repository.</p>
|
|
146
161
|
*/
|
|
147
162
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
@@ -22,15 +22,24 @@ import { PutRecommendationFeedbackCommandInput, PutRecommendationFeedbackCommand
|
|
|
22
22
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
23
23
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
24
24
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
25
28
|
export type ServiceInputTypes = AssociateRepositoryCommandInput | CreateCodeReviewCommandInput | DescribeCodeReviewCommandInput | DescribeRecommendationFeedbackCommandInput | DescribeRepositoryAssociationCommandInput | DisassociateRepositoryCommandInput | ListCodeReviewsCommandInput | ListRecommendationFeedbackCommandInput | ListRecommendationsCommandInput | ListRepositoryAssociationsCommandInput | ListTagsForResourceCommandInput | PutRecommendationFeedbackCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
26
32
|
export type ServiceOutputTypes = AssociateRepositoryCommandOutput | CreateCodeReviewCommandOutput | DescribeCodeReviewCommandOutput | DescribeRecommendationFeedbackCommandOutput | DescribeRepositoryAssociationCommandOutput | DisassociateRepositoryCommandOutput | ListCodeReviewsCommandOutput | ListRecommendationFeedbackCommandOutput | ListRecommendationsCommandOutput | ListRepositoryAssociationsCommandOutput | ListTagsForResourceCommandOutput | PutRecommendationFeedbackCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
27
36
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
28
37
|
/**
|
|
29
38
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
30
39
|
*/
|
|
31
40
|
requestHandler?: __HttpHandler;
|
|
32
41
|
/**
|
|
33
|
-
* A constructor for a class implementing the {@link
|
|
42
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
34
43
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
35
44
|
* @internal
|
|
36
45
|
*/
|
|
@@ -120,23 +129,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
120
129
|
*/
|
|
121
130
|
logger?: __Logger;
|
|
122
131
|
/**
|
|
123
|
-
* The {@link
|
|
132
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
124
133
|
*/
|
|
125
134
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
126
135
|
}
|
|
136
|
+
/**
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
127
139
|
type CodeGuruReviewerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
128
140
|
/**
|
|
129
|
-
*
|
|
141
|
+
* @public
|
|
142
|
+
*
|
|
143
|
+
* The configuration interface of CodeGuruReviewerClient class constructor that set the region, credentials and other options.
|
|
130
144
|
*/
|
|
131
145
|
export interface CodeGuruReviewerClientConfig extends CodeGuruReviewerClientConfigType {
|
|
132
146
|
}
|
|
147
|
+
/**
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
133
150
|
type CodeGuruReviewerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
134
151
|
/**
|
|
135
|
-
*
|
|
152
|
+
* @public
|
|
153
|
+
*
|
|
154
|
+
* The resolved configuration interface of CodeGuruReviewerClient class. This is resolved and normalized from the {@link CodeGuruReviewerClientConfig | constructor configuration interface}.
|
|
136
155
|
*/
|
|
137
156
|
export interface CodeGuruReviewerClientResolvedConfig extends CodeGuruReviewerClientResolvedConfigType {
|
|
138
157
|
}
|
|
139
158
|
/**
|
|
159
|
+
* @public
|
|
140
160
|
* <p>This section provides documentation for the Amazon CodeGuru Reviewer API operations. CodeGuru Reviewer is a
|
|
141
161
|
* service that uses program analysis and machine learning to detect potential defects that
|
|
142
162
|
* are difficult for developers to find and recommends fixes in your Java and Python
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
|
|
5
5
|
import { AssociateRepositoryRequest, AssociateRepositoryResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AssociateRepositoryCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AssociateRepositoryCommandInput extends AssociateRepositoryRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AssociateRepositoryCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AssociateRepositoryCommandOutput extends AssociateRepositoryResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Use to associate an Amazon Web Services CodeCommit repository or a repository managed by Amazon Web Services
|
|
18
23
|
* CodeStar Connections with Amazon CodeGuru Reviewer. When you associate a repository, CodeGuru Reviewer reviews
|
|
19
24
|
* source code changes in the repository's pull requests and provides automatic
|
|
@@ -47,6 +52,8 @@ export interface AssociateRepositoryCommandOutput extends AssociateRepositoryRes
|
|
|
47
52
|
* const response = await client.send(command);
|
|
48
53
|
* ```
|
|
49
54
|
*
|
|
55
|
+
* @param AssociateRepositoryCommandInput - {@link AssociateRepositoryCommandInput}
|
|
56
|
+
* @returns {@link AssociateRepositoryCommandOutput}
|
|
50
57
|
* @see {@link AssociateRepositoryCommandInput} for command's `input` shape.
|
|
51
58
|
* @see {@link AssociateRepositoryCommandOutput} for command's `response` shape.
|
|
52
59
|
* @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
|
|
@@ -73,11 +80,20 @@ export interface AssociateRepositoryCommandOutput extends AssociateRepositoryRes
|
|
|
73
80
|
export declare class AssociateRepositoryCommand extends $Command<AssociateRepositoryCommandInput, AssociateRepositoryCommandOutput, CodeGuruReviewerClientResolvedConfig> {
|
|
74
81
|
readonly input: AssociateRepositoryCommandInput;
|
|
75
82
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
76
86
|
constructor(input: AssociateRepositoryCommandInput);
|
|
77
87
|
/**
|
|
78
88
|
* @internal
|
|
79
89
|
*/
|
|
80
90
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateRepositoryCommandInput, AssociateRepositoryCommandOutput>;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
81
94
|
private serialize;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
82
98
|
private deserialize;
|
|
83
99
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
|
|
5
5
|
import { CreateCodeReviewRequest, CreateCodeReviewResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateCodeReviewCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateCodeReviewCommandInput extends CreateCodeReviewRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateCodeReviewCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateCodeReviewCommandOutput extends CreateCodeReviewResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Use to create a code review with a <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_CodeReviewType.html">CodeReviewType</a> of
|
|
18
23
|
* <code>RepositoryAnalysis</code>. This type of code review analyzes all code under a
|
|
19
24
|
* specified branch in an associated repository. <code>PullRequest</code> code reviews are
|
|
@@ -28,6 +33,8 @@ export interface CreateCodeReviewCommandOutput extends CreateCodeReviewResponse,
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param CreateCodeReviewCommandInput - {@link CreateCodeReviewCommandInput}
|
|
37
|
+
* @returns {@link CreateCodeReviewCommandOutput}
|
|
31
38
|
* @see {@link CreateCodeReviewCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link CreateCodeReviewCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface CreateCodeReviewCommandOutput extends CreateCodeReviewResponse,
|
|
|
57
64
|
export declare class CreateCodeReviewCommand extends $Command<CreateCodeReviewCommandInput, CreateCodeReviewCommandOutput, CodeGuruReviewerClientResolvedConfig> {
|
|
58
65
|
readonly input: CreateCodeReviewCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: CreateCodeReviewCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCodeReviewCommandInput, CreateCodeReviewCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|