@aws-sdk/client-codeguru-reviewer 3.169.0 → 3.170.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/CodeGuruReviewer.d.ts +256 -75
- package/dist-types/ts3.4/CodeGuruReviewerClient.d.ts +214 -87
- package/dist-types/ts3.4/commands/AssociateRepositoryCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateCodeReviewCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeCodeReviewCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeRecommendationFeedbackCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeRepositoryAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisassociateRepositoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListCodeReviewsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListRecommendationFeedbackCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListRepositoryAssociationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutRecommendationFeedbackCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +14 -14
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/CodeGuruReviewerServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +768 -716
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListCodeReviewsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRecommendationFeedbackPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRepositoryAssociationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/dist-types/ts3.4/waiters/index.d.ts +2 -2
- package/dist-types/ts3.4/waiters/waitForCodeReviewCompleted.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForRepositoryAssociationSucceeded.d.ts +13 -7
- package/package.json +35 -35
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-codeguru-reviewer
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-codeguru-reviewer
|
|
@@ -1,75 +1,256 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { CodeGuruReviewerClient } from "./CodeGuruReviewerClient";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CodeGuruReviewerClient } from "./CodeGuruReviewerClient";
|
|
3
|
+
import {
|
|
4
|
+
AssociateRepositoryCommandInput,
|
|
5
|
+
AssociateRepositoryCommandOutput,
|
|
6
|
+
} from "./commands/AssociateRepositoryCommand";
|
|
7
|
+
import {
|
|
8
|
+
CreateCodeReviewCommandInput,
|
|
9
|
+
CreateCodeReviewCommandOutput,
|
|
10
|
+
} from "./commands/CreateCodeReviewCommand";
|
|
11
|
+
import {
|
|
12
|
+
DescribeCodeReviewCommandInput,
|
|
13
|
+
DescribeCodeReviewCommandOutput,
|
|
14
|
+
} from "./commands/DescribeCodeReviewCommand";
|
|
15
|
+
import {
|
|
16
|
+
DescribeRecommendationFeedbackCommandInput,
|
|
17
|
+
DescribeRecommendationFeedbackCommandOutput,
|
|
18
|
+
} from "./commands/DescribeRecommendationFeedbackCommand";
|
|
19
|
+
import {
|
|
20
|
+
DescribeRepositoryAssociationCommandInput,
|
|
21
|
+
DescribeRepositoryAssociationCommandOutput,
|
|
22
|
+
} from "./commands/DescribeRepositoryAssociationCommand";
|
|
23
|
+
import {
|
|
24
|
+
DisassociateRepositoryCommandInput,
|
|
25
|
+
DisassociateRepositoryCommandOutput,
|
|
26
|
+
} from "./commands/DisassociateRepositoryCommand";
|
|
27
|
+
import {
|
|
28
|
+
ListCodeReviewsCommandInput,
|
|
29
|
+
ListCodeReviewsCommandOutput,
|
|
30
|
+
} from "./commands/ListCodeReviewsCommand";
|
|
31
|
+
import {
|
|
32
|
+
ListRecommendationFeedbackCommandInput,
|
|
33
|
+
ListRecommendationFeedbackCommandOutput,
|
|
34
|
+
} from "./commands/ListRecommendationFeedbackCommand";
|
|
35
|
+
import {
|
|
36
|
+
ListRecommendationsCommandInput,
|
|
37
|
+
ListRecommendationsCommandOutput,
|
|
38
|
+
} from "./commands/ListRecommendationsCommand";
|
|
39
|
+
import {
|
|
40
|
+
ListRepositoryAssociationsCommandInput,
|
|
41
|
+
ListRepositoryAssociationsCommandOutput,
|
|
42
|
+
} from "./commands/ListRepositoryAssociationsCommand";
|
|
43
|
+
import {
|
|
44
|
+
ListTagsForResourceCommandInput,
|
|
45
|
+
ListTagsForResourceCommandOutput,
|
|
46
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
47
|
+
import {
|
|
48
|
+
PutRecommendationFeedbackCommandInput,
|
|
49
|
+
PutRecommendationFeedbackCommandOutput,
|
|
50
|
+
} from "./commands/PutRecommendationFeedbackCommand";
|
|
51
|
+
import {
|
|
52
|
+
TagResourceCommandInput,
|
|
53
|
+
TagResourceCommandOutput,
|
|
54
|
+
} from "./commands/TagResourceCommand";
|
|
55
|
+
import {
|
|
56
|
+
UntagResourceCommandInput,
|
|
57
|
+
UntagResourceCommandOutput,
|
|
58
|
+
} from "./commands/UntagResourceCommand";
|
|
59
|
+
|
|
60
|
+
export declare class CodeGuruReviewer extends CodeGuruReviewerClient {
|
|
61
|
+
associateRepository(
|
|
62
|
+
args: AssociateRepositoryCommandInput,
|
|
63
|
+
options?: __HttpHandlerOptions
|
|
64
|
+
): Promise<AssociateRepositoryCommandOutput>;
|
|
65
|
+
associateRepository(
|
|
66
|
+
args: AssociateRepositoryCommandInput,
|
|
67
|
+
cb: (err: any, data?: AssociateRepositoryCommandOutput) => void
|
|
68
|
+
): void;
|
|
69
|
+
associateRepository(
|
|
70
|
+
args: AssociateRepositoryCommandInput,
|
|
71
|
+
options: __HttpHandlerOptions,
|
|
72
|
+
cb: (err: any, data?: AssociateRepositoryCommandOutput) => void
|
|
73
|
+
): void;
|
|
74
|
+
|
|
75
|
+
createCodeReview(
|
|
76
|
+
args: CreateCodeReviewCommandInput,
|
|
77
|
+
options?: __HttpHandlerOptions
|
|
78
|
+
): Promise<CreateCodeReviewCommandOutput>;
|
|
79
|
+
createCodeReview(
|
|
80
|
+
args: CreateCodeReviewCommandInput,
|
|
81
|
+
cb: (err: any, data?: CreateCodeReviewCommandOutput) => void
|
|
82
|
+
): void;
|
|
83
|
+
createCodeReview(
|
|
84
|
+
args: CreateCodeReviewCommandInput,
|
|
85
|
+
options: __HttpHandlerOptions,
|
|
86
|
+
cb: (err: any, data?: CreateCodeReviewCommandOutput) => void
|
|
87
|
+
): void;
|
|
88
|
+
|
|
89
|
+
describeCodeReview(
|
|
90
|
+
args: DescribeCodeReviewCommandInput,
|
|
91
|
+
options?: __HttpHandlerOptions
|
|
92
|
+
): Promise<DescribeCodeReviewCommandOutput>;
|
|
93
|
+
describeCodeReview(
|
|
94
|
+
args: DescribeCodeReviewCommandInput,
|
|
95
|
+
cb: (err: any, data?: DescribeCodeReviewCommandOutput) => void
|
|
96
|
+
): void;
|
|
97
|
+
describeCodeReview(
|
|
98
|
+
args: DescribeCodeReviewCommandInput,
|
|
99
|
+
options: __HttpHandlerOptions,
|
|
100
|
+
cb: (err: any, data?: DescribeCodeReviewCommandOutput) => void
|
|
101
|
+
): void;
|
|
102
|
+
|
|
103
|
+
describeRecommendationFeedback(
|
|
104
|
+
args: DescribeRecommendationFeedbackCommandInput,
|
|
105
|
+
options?: __HttpHandlerOptions
|
|
106
|
+
): Promise<DescribeRecommendationFeedbackCommandOutput>;
|
|
107
|
+
describeRecommendationFeedback(
|
|
108
|
+
args: DescribeRecommendationFeedbackCommandInput,
|
|
109
|
+
cb: (err: any, data?: DescribeRecommendationFeedbackCommandOutput) => void
|
|
110
|
+
): void;
|
|
111
|
+
describeRecommendationFeedback(
|
|
112
|
+
args: DescribeRecommendationFeedbackCommandInput,
|
|
113
|
+
options: __HttpHandlerOptions,
|
|
114
|
+
cb: (err: any, data?: DescribeRecommendationFeedbackCommandOutput) => void
|
|
115
|
+
): void;
|
|
116
|
+
|
|
117
|
+
describeRepositoryAssociation(
|
|
118
|
+
args: DescribeRepositoryAssociationCommandInput,
|
|
119
|
+
options?: __HttpHandlerOptions
|
|
120
|
+
): Promise<DescribeRepositoryAssociationCommandOutput>;
|
|
121
|
+
describeRepositoryAssociation(
|
|
122
|
+
args: DescribeRepositoryAssociationCommandInput,
|
|
123
|
+
cb: (err: any, data?: DescribeRepositoryAssociationCommandOutput) => void
|
|
124
|
+
): void;
|
|
125
|
+
describeRepositoryAssociation(
|
|
126
|
+
args: DescribeRepositoryAssociationCommandInput,
|
|
127
|
+
options: __HttpHandlerOptions,
|
|
128
|
+
cb: (err: any, data?: DescribeRepositoryAssociationCommandOutput) => void
|
|
129
|
+
): void;
|
|
130
|
+
|
|
131
|
+
disassociateRepository(
|
|
132
|
+
args: DisassociateRepositoryCommandInput,
|
|
133
|
+
options?: __HttpHandlerOptions
|
|
134
|
+
): Promise<DisassociateRepositoryCommandOutput>;
|
|
135
|
+
disassociateRepository(
|
|
136
|
+
args: DisassociateRepositoryCommandInput,
|
|
137
|
+
cb: (err: any, data?: DisassociateRepositoryCommandOutput) => void
|
|
138
|
+
): void;
|
|
139
|
+
disassociateRepository(
|
|
140
|
+
args: DisassociateRepositoryCommandInput,
|
|
141
|
+
options: __HttpHandlerOptions,
|
|
142
|
+
cb: (err: any, data?: DisassociateRepositoryCommandOutput) => void
|
|
143
|
+
): void;
|
|
144
|
+
|
|
145
|
+
listCodeReviews(
|
|
146
|
+
args: ListCodeReviewsCommandInput,
|
|
147
|
+
options?: __HttpHandlerOptions
|
|
148
|
+
): Promise<ListCodeReviewsCommandOutput>;
|
|
149
|
+
listCodeReviews(
|
|
150
|
+
args: ListCodeReviewsCommandInput,
|
|
151
|
+
cb: (err: any, data?: ListCodeReviewsCommandOutput) => void
|
|
152
|
+
): void;
|
|
153
|
+
listCodeReviews(
|
|
154
|
+
args: ListCodeReviewsCommandInput,
|
|
155
|
+
options: __HttpHandlerOptions,
|
|
156
|
+
cb: (err: any, data?: ListCodeReviewsCommandOutput) => void
|
|
157
|
+
): void;
|
|
158
|
+
|
|
159
|
+
listRecommendationFeedback(
|
|
160
|
+
args: ListRecommendationFeedbackCommandInput,
|
|
161
|
+
options?: __HttpHandlerOptions
|
|
162
|
+
): Promise<ListRecommendationFeedbackCommandOutput>;
|
|
163
|
+
listRecommendationFeedback(
|
|
164
|
+
args: ListRecommendationFeedbackCommandInput,
|
|
165
|
+
cb: (err: any, data?: ListRecommendationFeedbackCommandOutput) => void
|
|
166
|
+
): void;
|
|
167
|
+
listRecommendationFeedback(
|
|
168
|
+
args: ListRecommendationFeedbackCommandInput,
|
|
169
|
+
options: __HttpHandlerOptions,
|
|
170
|
+
cb: (err: any, data?: ListRecommendationFeedbackCommandOutput) => void
|
|
171
|
+
): void;
|
|
172
|
+
|
|
173
|
+
listRecommendations(
|
|
174
|
+
args: ListRecommendationsCommandInput,
|
|
175
|
+
options?: __HttpHandlerOptions
|
|
176
|
+
): Promise<ListRecommendationsCommandOutput>;
|
|
177
|
+
listRecommendations(
|
|
178
|
+
args: ListRecommendationsCommandInput,
|
|
179
|
+
cb: (err: any, data?: ListRecommendationsCommandOutput) => void
|
|
180
|
+
): void;
|
|
181
|
+
listRecommendations(
|
|
182
|
+
args: ListRecommendationsCommandInput,
|
|
183
|
+
options: __HttpHandlerOptions,
|
|
184
|
+
cb: (err: any, data?: ListRecommendationsCommandOutput) => void
|
|
185
|
+
): void;
|
|
186
|
+
|
|
187
|
+
listRepositoryAssociations(
|
|
188
|
+
args: ListRepositoryAssociationsCommandInput,
|
|
189
|
+
options?: __HttpHandlerOptions
|
|
190
|
+
): Promise<ListRepositoryAssociationsCommandOutput>;
|
|
191
|
+
listRepositoryAssociations(
|
|
192
|
+
args: ListRepositoryAssociationsCommandInput,
|
|
193
|
+
cb: (err: any, data?: ListRepositoryAssociationsCommandOutput) => void
|
|
194
|
+
): void;
|
|
195
|
+
listRepositoryAssociations(
|
|
196
|
+
args: ListRepositoryAssociationsCommandInput,
|
|
197
|
+
options: __HttpHandlerOptions,
|
|
198
|
+
cb: (err: any, data?: ListRepositoryAssociationsCommandOutput) => void
|
|
199
|
+
): void;
|
|
200
|
+
|
|
201
|
+
listTagsForResource(
|
|
202
|
+
args: ListTagsForResourceCommandInput,
|
|
203
|
+
options?: __HttpHandlerOptions
|
|
204
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
205
|
+
listTagsForResource(
|
|
206
|
+
args: ListTagsForResourceCommandInput,
|
|
207
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
208
|
+
): void;
|
|
209
|
+
listTagsForResource(
|
|
210
|
+
args: ListTagsForResourceCommandInput,
|
|
211
|
+
options: __HttpHandlerOptions,
|
|
212
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
213
|
+
): void;
|
|
214
|
+
|
|
215
|
+
putRecommendationFeedback(
|
|
216
|
+
args: PutRecommendationFeedbackCommandInput,
|
|
217
|
+
options?: __HttpHandlerOptions
|
|
218
|
+
): Promise<PutRecommendationFeedbackCommandOutput>;
|
|
219
|
+
putRecommendationFeedback(
|
|
220
|
+
args: PutRecommendationFeedbackCommandInput,
|
|
221
|
+
cb: (err: any, data?: PutRecommendationFeedbackCommandOutput) => void
|
|
222
|
+
): void;
|
|
223
|
+
putRecommendationFeedback(
|
|
224
|
+
args: PutRecommendationFeedbackCommandInput,
|
|
225
|
+
options: __HttpHandlerOptions,
|
|
226
|
+
cb: (err: any, data?: PutRecommendationFeedbackCommandOutput) => void
|
|
227
|
+
): void;
|
|
228
|
+
|
|
229
|
+
tagResource(
|
|
230
|
+
args: TagResourceCommandInput,
|
|
231
|
+
options?: __HttpHandlerOptions
|
|
232
|
+
): Promise<TagResourceCommandOutput>;
|
|
233
|
+
tagResource(
|
|
234
|
+
args: TagResourceCommandInput,
|
|
235
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
236
|
+
): void;
|
|
237
|
+
tagResource(
|
|
238
|
+
args: TagResourceCommandInput,
|
|
239
|
+
options: __HttpHandlerOptions,
|
|
240
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
241
|
+
): void;
|
|
242
|
+
|
|
243
|
+
untagResource(
|
|
244
|
+
args: UntagResourceCommandInput,
|
|
245
|
+
options?: __HttpHandlerOptions
|
|
246
|
+
): Promise<UntagResourceCommandOutput>;
|
|
247
|
+
untagResource(
|
|
248
|
+
args: UntagResourceCommandInput,
|
|
249
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
250
|
+
): void;
|
|
251
|
+
untagResource(
|
|
252
|
+
args: UntagResourceCommandInput,
|
|
253
|
+
options: __HttpHandlerOptions,
|
|
254
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
255
|
+
): void;
|
|
256
|
+
}
|
|
@@ -1,87 +1,214 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
AssociateRepositoryCommandInput,
|
|
47
|
+
AssociateRepositoryCommandOutput,
|
|
48
|
+
} from "./commands/AssociateRepositoryCommand";
|
|
49
|
+
import {
|
|
50
|
+
CreateCodeReviewCommandInput,
|
|
51
|
+
CreateCodeReviewCommandOutput,
|
|
52
|
+
} from "./commands/CreateCodeReviewCommand";
|
|
53
|
+
import {
|
|
54
|
+
DescribeCodeReviewCommandInput,
|
|
55
|
+
DescribeCodeReviewCommandOutput,
|
|
56
|
+
} from "./commands/DescribeCodeReviewCommand";
|
|
57
|
+
import {
|
|
58
|
+
DescribeRecommendationFeedbackCommandInput,
|
|
59
|
+
DescribeRecommendationFeedbackCommandOutput,
|
|
60
|
+
} from "./commands/DescribeRecommendationFeedbackCommand";
|
|
61
|
+
import {
|
|
62
|
+
DescribeRepositoryAssociationCommandInput,
|
|
63
|
+
DescribeRepositoryAssociationCommandOutput,
|
|
64
|
+
} from "./commands/DescribeRepositoryAssociationCommand";
|
|
65
|
+
import {
|
|
66
|
+
DisassociateRepositoryCommandInput,
|
|
67
|
+
DisassociateRepositoryCommandOutput,
|
|
68
|
+
} from "./commands/DisassociateRepositoryCommand";
|
|
69
|
+
import {
|
|
70
|
+
ListCodeReviewsCommandInput,
|
|
71
|
+
ListCodeReviewsCommandOutput,
|
|
72
|
+
} from "./commands/ListCodeReviewsCommand";
|
|
73
|
+
import {
|
|
74
|
+
ListRecommendationFeedbackCommandInput,
|
|
75
|
+
ListRecommendationFeedbackCommandOutput,
|
|
76
|
+
} from "./commands/ListRecommendationFeedbackCommand";
|
|
77
|
+
import {
|
|
78
|
+
ListRecommendationsCommandInput,
|
|
79
|
+
ListRecommendationsCommandOutput,
|
|
80
|
+
} from "./commands/ListRecommendationsCommand";
|
|
81
|
+
import {
|
|
82
|
+
ListRepositoryAssociationsCommandInput,
|
|
83
|
+
ListRepositoryAssociationsCommandOutput,
|
|
84
|
+
} from "./commands/ListRepositoryAssociationsCommand";
|
|
85
|
+
import {
|
|
86
|
+
ListTagsForResourceCommandInput,
|
|
87
|
+
ListTagsForResourceCommandOutput,
|
|
88
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
89
|
+
import {
|
|
90
|
+
PutRecommendationFeedbackCommandInput,
|
|
91
|
+
PutRecommendationFeedbackCommandOutput,
|
|
92
|
+
} from "./commands/PutRecommendationFeedbackCommand";
|
|
93
|
+
import {
|
|
94
|
+
TagResourceCommandInput,
|
|
95
|
+
TagResourceCommandOutput,
|
|
96
|
+
} from "./commands/TagResourceCommand";
|
|
97
|
+
import {
|
|
98
|
+
UntagResourceCommandInput,
|
|
99
|
+
UntagResourceCommandOutput,
|
|
100
|
+
} from "./commands/UntagResourceCommand";
|
|
101
|
+
export declare type ServiceInputTypes =
|
|
102
|
+
| AssociateRepositoryCommandInput
|
|
103
|
+
| CreateCodeReviewCommandInput
|
|
104
|
+
| DescribeCodeReviewCommandInput
|
|
105
|
+
| DescribeRecommendationFeedbackCommandInput
|
|
106
|
+
| DescribeRepositoryAssociationCommandInput
|
|
107
|
+
| DisassociateRepositoryCommandInput
|
|
108
|
+
| ListCodeReviewsCommandInput
|
|
109
|
+
| ListRecommendationFeedbackCommandInput
|
|
110
|
+
| ListRecommendationsCommandInput
|
|
111
|
+
| ListRepositoryAssociationsCommandInput
|
|
112
|
+
| ListTagsForResourceCommandInput
|
|
113
|
+
| PutRecommendationFeedbackCommandInput
|
|
114
|
+
| TagResourceCommandInput
|
|
115
|
+
| UntagResourceCommandInput;
|
|
116
|
+
export declare type ServiceOutputTypes =
|
|
117
|
+
| AssociateRepositoryCommandOutput
|
|
118
|
+
| CreateCodeReviewCommandOutput
|
|
119
|
+
| DescribeCodeReviewCommandOutput
|
|
120
|
+
| DescribeRecommendationFeedbackCommandOutput
|
|
121
|
+
| DescribeRepositoryAssociationCommandOutput
|
|
122
|
+
| DisassociateRepositoryCommandOutput
|
|
123
|
+
| ListCodeReviewsCommandOutput
|
|
124
|
+
| ListRecommendationFeedbackCommandOutput
|
|
125
|
+
| ListRecommendationsCommandOutput
|
|
126
|
+
| ListRepositoryAssociationsCommandOutput
|
|
127
|
+
| ListTagsForResourceCommandOutput
|
|
128
|
+
| PutRecommendationFeedbackCommandOutput
|
|
129
|
+
| TagResourceCommandOutput
|
|
130
|
+
| UntagResourceCommandOutput;
|
|
131
|
+
export interface ClientDefaults
|
|
132
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
133
|
+
requestHandler?: __HttpHandler;
|
|
134
|
+
|
|
135
|
+
sha256?: __HashConstructor;
|
|
136
|
+
|
|
137
|
+
urlParser?: __UrlParser;
|
|
138
|
+
|
|
139
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
140
|
+
|
|
141
|
+
streamCollector?: __StreamCollector;
|
|
142
|
+
|
|
143
|
+
base64Decoder?: __Decoder;
|
|
144
|
+
|
|
145
|
+
base64Encoder?: __Encoder;
|
|
146
|
+
|
|
147
|
+
utf8Decoder?: __Decoder;
|
|
148
|
+
|
|
149
|
+
utf8Encoder?: __Encoder;
|
|
150
|
+
|
|
151
|
+
runtime?: string;
|
|
152
|
+
|
|
153
|
+
disableHostPrefix?: boolean;
|
|
154
|
+
|
|
155
|
+
maxAttempts?: number | __Provider<number>;
|
|
156
|
+
|
|
157
|
+
retryMode?: string | __Provider<string>;
|
|
158
|
+
|
|
159
|
+
logger?: __Logger;
|
|
160
|
+
|
|
161
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
162
|
+
|
|
163
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
164
|
+
|
|
165
|
+
serviceId?: string;
|
|
166
|
+
|
|
167
|
+
region?: string | __Provider<string>;
|
|
168
|
+
|
|
169
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
170
|
+
|
|
171
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
172
|
+
|
|
173
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
174
|
+
|
|
175
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
176
|
+
}
|
|
177
|
+
declare type CodeGuruReviewerClientConfigType = Partial<
|
|
178
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
179
|
+
> &
|
|
180
|
+
ClientDefaults &
|
|
181
|
+
RegionInputConfig &
|
|
182
|
+
EndpointsInputConfig &
|
|
183
|
+
RetryInputConfig &
|
|
184
|
+
HostHeaderInputConfig &
|
|
185
|
+
AwsAuthInputConfig &
|
|
186
|
+
UserAgentInputConfig;
|
|
187
|
+
|
|
188
|
+
export interface CodeGuruReviewerClientConfig
|
|
189
|
+
extends CodeGuruReviewerClientConfigType {}
|
|
190
|
+
declare type CodeGuruReviewerClientResolvedConfigType =
|
|
191
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
192
|
+
Required<ClientDefaults> &
|
|
193
|
+
RegionResolvedConfig &
|
|
194
|
+
EndpointsResolvedConfig &
|
|
195
|
+
RetryResolvedConfig &
|
|
196
|
+
HostHeaderResolvedConfig &
|
|
197
|
+
AwsAuthResolvedConfig &
|
|
198
|
+
UserAgentResolvedConfig;
|
|
199
|
+
|
|
200
|
+
export interface CodeGuruReviewerClientResolvedConfig
|
|
201
|
+
extends CodeGuruReviewerClientResolvedConfigType {}
|
|
202
|
+
|
|
203
|
+
export declare class CodeGuruReviewerClient extends __Client<
|
|
204
|
+
__HttpHandlerOptions,
|
|
205
|
+
ServiceInputTypes,
|
|
206
|
+
ServiceOutputTypes,
|
|
207
|
+
CodeGuruReviewerClientResolvedConfig
|
|
208
|
+
> {
|
|
209
|
+
readonly config: CodeGuruReviewerClientResolvedConfig;
|
|
210
|
+
constructor(configuration: CodeGuruReviewerClientConfig);
|
|
211
|
+
|
|
212
|
+
destroy(): void;
|
|
213
|
+
}
|
|
214
|
+
export {};
|