@aws-sdk/client-codeguru-reviewer 3.296.0 → 3.297.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-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 -0
- 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/package.json +3 -3
|
@@ -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
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
|
|
5
5
|
import { DescribeCodeReviewRequest, DescribeCodeReviewResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeCodeReviewCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeCodeReviewCommandInput extends DescribeCodeReviewRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeCodeReviewCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeCodeReviewCommandOutput extends DescribeCodeReviewResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the metadata associated with the code review along with its status.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeCodeReviewCommandOutput extends DescribeCodeReviewRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeCodeReviewCommandInput - {@link DescribeCodeReviewCommandInput}
|
|
34
|
+
* @returns {@link DescribeCodeReviewCommandOutput}
|
|
28
35
|
* @see {@link DescribeCodeReviewCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeCodeReviewCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DescribeCodeReviewCommandOutput extends DescribeCodeReviewRespo
|
|
|
49
56
|
export declare class DescribeCodeReviewCommand extends $Command<DescribeCodeReviewCommandInput, DescribeCodeReviewCommandOutput, CodeGuruReviewerClientResolvedConfig> {
|
|
50
57
|
readonly input: DescribeCodeReviewCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DescribeCodeReviewCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCodeReviewCommandInput, DescribeCodeReviewCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
|
|
5
5
|
import { DescribeRecommendationFeedbackRequest, DescribeRecommendationFeedbackResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeRecommendationFeedbackCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeRecommendationFeedbackCommandInput extends DescribeRecommendationFeedbackRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeRecommendationFeedbackCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeRecommendationFeedbackCommandOutput extends DescribeRecommendationFeedbackResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the customer feedback for a CodeGuru Reviewer recommendation.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeRecommendationFeedbackCommandOutput extends DescribeRec
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeRecommendationFeedbackCommandInput - {@link DescribeRecommendationFeedbackCommandInput}
|
|
34
|
+
* @returns {@link DescribeRecommendationFeedbackCommandOutput}
|
|
28
35
|
* @see {@link DescribeRecommendationFeedbackCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeRecommendationFeedbackCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DescribeRecommendationFeedbackCommandOutput extends DescribeRec
|
|
|
49
56
|
export declare class DescribeRecommendationFeedbackCommand extends $Command<DescribeRecommendationFeedbackCommandInput, DescribeRecommendationFeedbackCommandOutput, CodeGuruReviewerClientResolvedConfig> {
|
|
50
57
|
readonly input: DescribeRecommendationFeedbackCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DescribeRecommendationFeedbackCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRecommendationFeedbackCommandInput, DescribeRecommendationFeedbackCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
|
|
5
5
|
import { DescribeRepositoryAssociationRequest, DescribeRepositoryAssociationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeRepositoryAssociationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeRepositoryAssociationCommandInput extends DescribeRepositoryAssociationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeRepositoryAssociationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeRepositoryAssociationCommandOutput extends DescribeRepositoryAssociationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <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
|
|
18
23
|
* repository association.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeRepositoryAssociationCommandOutput extends DescribeRepo
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeRepositoryAssociationCommandInput - {@link DescribeRepositoryAssociationCommandInput}
|
|
35
|
+
* @returns {@link DescribeRepositoryAssociationCommandOutput}
|
|
29
36
|
* @see {@link DescribeRepositoryAssociationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeRepositoryAssociationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface DescribeRepositoryAssociationCommandOutput extends DescribeRepo
|
|
|
50
57
|
export declare class DescribeRepositoryAssociationCommand extends $Command<DescribeRepositoryAssociationCommandInput, DescribeRepositoryAssociationCommandOutput, CodeGuruReviewerClientResolvedConfig> {
|
|
51
58
|
readonly input: DescribeRepositoryAssociationCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: DescribeRepositoryAssociationCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRepositoryAssociationCommandInput, DescribeRepositoryAssociationCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
|
|
5
5
|
import { DisassociateRepositoryRequest, DisassociateRepositoryResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateRepositoryCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateRepositoryCommandInput extends DisassociateRepositoryRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateRepositoryCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateRepositoryCommandOutput extends DisassociateRepositoryResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the association between Amazon CodeGuru Reviewer and a repository.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DisassociateRepositoryCommandOutput extends DisassociateReposit
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DisassociateRepositoryCommandInput - {@link DisassociateRepositoryCommandInput}
|
|
34
|
+
* @returns {@link DisassociateRepositoryCommandOutput}
|
|
28
35
|
* @see {@link DisassociateRepositoryCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DisassociateRepositoryCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DisassociateRepositoryCommandOutput extends DisassociateReposit
|
|
|
54
61
|
export declare class DisassociateRepositoryCommand extends $Command<DisassociateRepositoryCommandInput, DisassociateRepositoryCommandOutput, CodeGuruReviewerClientResolvedConfig> {
|
|
55
62
|
readonly input: DisassociateRepositoryCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DisassociateRepositoryCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateRepositoryCommandInput, DisassociateRepositoryCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
|
|
5
5
|
import { ListCodeReviewsRequest, ListCodeReviewsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCodeReviewsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCodeReviewsCommandInput extends ListCodeReviewsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCodeReviewsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCodeReviewsCommandOutput extends ListCodeReviewsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all the code reviews that the customer has created in the past 90 days.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListCodeReviewsCommandOutput extends ListCodeReviewsResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListCodeReviewsCommandInput - {@link ListCodeReviewsCommandInput}
|
|
34
|
+
* @returns {@link ListCodeReviewsCommandOutput}
|
|
28
35
|
* @see {@link ListCodeReviewsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListCodeReviewsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListCodeReviewsCommandOutput extends ListCodeReviewsResponse, _
|
|
|
46
53
|
export declare class ListCodeReviewsCommand extends $Command<ListCodeReviewsCommandInput, ListCodeReviewsCommandOutput, CodeGuruReviewerClientResolvedConfig> {
|
|
47
54
|
readonly input: ListCodeReviewsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListCodeReviewsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCodeReviewsCommandInput, ListCodeReviewsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
|
|
5
5
|
import { ListRecommendationFeedbackRequest, ListRecommendationFeedbackResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListRecommendationFeedbackCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListRecommendationFeedbackCommandInput extends ListRecommendationFeedbackRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListRecommendationFeedbackCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListRecommendationFeedbackCommandOutput extends ListRecommendationFeedbackResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <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
|
|
18
23
|
* feedback for all CodeGuru Reviewer users.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListRecommendationFeedbackCommandOutput extends ListRecommendat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListRecommendationFeedbackCommandInput - {@link ListRecommendationFeedbackCommandInput}
|
|
35
|
+
* @returns {@link ListRecommendationFeedbackCommandOutput}
|
|
29
36
|
* @see {@link ListRecommendationFeedbackCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListRecommendationFeedbackCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListRecommendationFeedbackCommandOutput extends ListRecommendat
|
|
|
50
57
|
export declare class ListRecommendationFeedbackCommand extends $Command<ListRecommendationFeedbackCommandInput, ListRecommendationFeedbackCommandOutput, CodeGuruReviewerClientResolvedConfig> {
|
|
51
58
|
readonly input: ListRecommendationFeedbackCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListRecommendationFeedbackCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRecommendationFeedbackCommandInput, ListRecommendationFeedbackCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
|
|
5
5
|
import { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListRecommendationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListRecommendationsCommandInput extends ListRecommendationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListRecommendationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListRecommendationsCommandOutput extends ListRecommendationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the list of all recommendations for a completed code review.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListRecommendationsCommandInput - {@link ListRecommendationsCommandInput}
|
|
34
|
+
* @returns {@link ListRecommendationsCommandOutput}
|
|
28
35
|
* @see {@link ListRecommendationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListRecommendationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeGuruReviewerClientResolvedConfig | config} for CodeGuruReviewerClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes
|
|
|
49
56
|
export declare class ListRecommendationsCommand extends $Command<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, CodeGuruReviewerClientResolvedConfig> {
|
|
50
57
|
readonly input: ListRecommendationsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListRecommendationsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRecommendationsCommandInput, ListRecommendationsCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|