@aws-sdk/client-codeguru-reviewer 3.1087.0 → 3.1088.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/CodeGuruReviewer.d.ts +50 -55
- package/dist-types/ts3.4/CodeGuruReviewerClient.d.ts +6 -19
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AssociateRepositoryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateCodeReviewCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeCodeReviewCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeRecommendationFeedbackCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeRepositoryAssociationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DisassociateRepositoryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListCodeReviewsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListRecommendationFeedbackCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListRepositoryAssociationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutRecommendationFeedbackCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/dist-types/ts3.4/waiters/waitForCodeReviewCompleted.d.ts +3 -7
- package/dist-types/ts3.4/waiters/waitForRepositoryAssociationSucceeded.d.ts +3 -6
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -54,10 +54,7 @@ import {
|
|
|
54
54
|
PutRecommendationFeedbackCommandInput,
|
|
55
55
|
PutRecommendationFeedbackCommandOutput,
|
|
56
56
|
} from "./commands/PutRecommendationFeedbackCommand";
|
|
57
|
-
import {
|
|
58
|
-
TagResourceCommandInput,
|
|
59
|
-
TagResourceCommandOutput,
|
|
60
|
-
} from "./commands/TagResourceCommand";
|
|
57
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
61
58
|
import {
|
|
62
59
|
UntagResourceCommandInput,
|
|
63
60
|
UntagResourceCommandOutput,
|
|
@@ -65,214 +62,214 @@ import {
|
|
|
65
62
|
export interface CodeGuruReviewer {
|
|
66
63
|
associateRepository(
|
|
67
64
|
args: AssociateRepositoryCommandInput,
|
|
68
|
-
options?: __HttpHandlerOptions
|
|
65
|
+
options?: __HttpHandlerOptions,
|
|
69
66
|
): Promise<AssociateRepositoryCommandOutput>;
|
|
70
67
|
associateRepository(
|
|
71
68
|
args: AssociateRepositoryCommandInput,
|
|
72
|
-
cb: (err: any, data?: AssociateRepositoryCommandOutput) => void
|
|
69
|
+
cb: (err: any, data?: AssociateRepositoryCommandOutput) => void,
|
|
73
70
|
): void;
|
|
74
71
|
associateRepository(
|
|
75
72
|
args: AssociateRepositoryCommandInput,
|
|
76
73
|
options: __HttpHandlerOptions,
|
|
77
|
-
cb: (err: any, data?: AssociateRepositoryCommandOutput) => void
|
|
74
|
+
cb: (err: any, data?: AssociateRepositoryCommandOutput) => void,
|
|
78
75
|
): void;
|
|
79
76
|
createCodeReview(
|
|
80
77
|
args: CreateCodeReviewCommandInput,
|
|
81
|
-
options?: __HttpHandlerOptions
|
|
78
|
+
options?: __HttpHandlerOptions,
|
|
82
79
|
): Promise<CreateCodeReviewCommandOutput>;
|
|
83
80
|
createCodeReview(
|
|
84
81
|
args: CreateCodeReviewCommandInput,
|
|
85
|
-
cb: (err: any, data?: CreateCodeReviewCommandOutput) => void
|
|
82
|
+
cb: (err: any, data?: CreateCodeReviewCommandOutput) => void,
|
|
86
83
|
): void;
|
|
87
84
|
createCodeReview(
|
|
88
85
|
args: CreateCodeReviewCommandInput,
|
|
89
86
|
options: __HttpHandlerOptions,
|
|
90
|
-
cb: (err: any, data?: CreateCodeReviewCommandOutput) => void
|
|
87
|
+
cb: (err: any, data?: CreateCodeReviewCommandOutput) => void,
|
|
91
88
|
): void;
|
|
92
89
|
describeCodeReview(
|
|
93
90
|
args: DescribeCodeReviewCommandInput,
|
|
94
|
-
options?: __HttpHandlerOptions
|
|
91
|
+
options?: __HttpHandlerOptions,
|
|
95
92
|
): Promise<DescribeCodeReviewCommandOutput>;
|
|
96
93
|
describeCodeReview(
|
|
97
94
|
args: DescribeCodeReviewCommandInput,
|
|
98
|
-
cb: (err: any, data?: DescribeCodeReviewCommandOutput) => void
|
|
95
|
+
cb: (err: any, data?: DescribeCodeReviewCommandOutput) => void,
|
|
99
96
|
): void;
|
|
100
97
|
describeCodeReview(
|
|
101
98
|
args: DescribeCodeReviewCommandInput,
|
|
102
99
|
options: __HttpHandlerOptions,
|
|
103
|
-
cb: (err: any, data?: DescribeCodeReviewCommandOutput) => void
|
|
100
|
+
cb: (err: any, data?: DescribeCodeReviewCommandOutput) => void,
|
|
104
101
|
): void;
|
|
105
102
|
describeRecommendationFeedback(
|
|
106
103
|
args: DescribeRecommendationFeedbackCommandInput,
|
|
107
|
-
options?: __HttpHandlerOptions
|
|
104
|
+
options?: __HttpHandlerOptions,
|
|
108
105
|
): Promise<DescribeRecommendationFeedbackCommandOutput>;
|
|
109
106
|
describeRecommendationFeedback(
|
|
110
107
|
args: DescribeRecommendationFeedbackCommandInput,
|
|
111
|
-
cb: (err: any, data?: DescribeRecommendationFeedbackCommandOutput) => void
|
|
108
|
+
cb: (err: any, data?: DescribeRecommendationFeedbackCommandOutput) => void,
|
|
112
109
|
): void;
|
|
113
110
|
describeRecommendationFeedback(
|
|
114
111
|
args: DescribeRecommendationFeedbackCommandInput,
|
|
115
112
|
options: __HttpHandlerOptions,
|
|
116
|
-
cb: (err: any, data?: DescribeRecommendationFeedbackCommandOutput) => void
|
|
113
|
+
cb: (err: any, data?: DescribeRecommendationFeedbackCommandOutput) => void,
|
|
117
114
|
): void;
|
|
118
115
|
describeRepositoryAssociation(
|
|
119
116
|
args: DescribeRepositoryAssociationCommandInput,
|
|
120
|
-
options?: __HttpHandlerOptions
|
|
117
|
+
options?: __HttpHandlerOptions,
|
|
121
118
|
): Promise<DescribeRepositoryAssociationCommandOutput>;
|
|
122
119
|
describeRepositoryAssociation(
|
|
123
120
|
args: DescribeRepositoryAssociationCommandInput,
|
|
124
|
-
cb: (err: any, data?: DescribeRepositoryAssociationCommandOutput) => void
|
|
121
|
+
cb: (err: any, data?: DescribeRepositoryAssociationCommandOutput) => void,
|
|
125
122
|
): void;
|
|
126
123
|
describeRepositoryAssociation(
|
|
127
124
|
args: DescribeRepositoryAssociationCommandInput,
|
|
128
125
|
options: __HttpHandlerOptions,
|
|
129
|
-
cb: (err: any, data?: DescribeRepositoryAssociationCommandOutput) => void
|
|
126
|
+
cb: (err: any, data?: DescribeRepositoryAssociationCommandOutput) => void,
|
|
130
127
|
): void;
|
|
131
128
|
disassociateRepository(
|
|
132
129
|
args: DisassociateRepositoryCommandInput,
|
|
133
|
-
options?: __HttpHandlerOptions
|
|
130
|
+
options?: __HttpHandlerOptions,
|
|
134
131
|
): Promise<DisassociateRepositoryCommandOutput>;
|
|
135
132
|
disassociateRepository(
|
|
136
133
|
args: DisassociateRepositoryCommandInput,
|
|
137
|
-
cb: (err: any, data?: DisassociateRepositoryCommandOutput) => void
|
|
134
|
+
cb: (err: any, data?: DisassociateRepositoryCommandOutput) => void,
|
|
138
135
|
): void;
|
|
139
136
|
disassociateRepository(
|
|
140
137
|
args: DisassociateRepositoryCommandInput,
|
|
141
138
|
options: __HttpHandlerOptions,
|
|
142
|
-
cb: (err: any, data?: DisassociateRepositoryCommandOutput) => void
|
|
139
|
+
cb: (err: any, data?: DisassociateRepositoryCommandOutput) => void,
|
|
143
140
|
): void;
|
|
144
141
|
listCodeReviews(
|
|
145
142
|
args: ListCodeReviewsCommandInput,
|
|
146
|
-
options?: __HttpHandlerOptions
|
|
143
|
+
options?: __HttpHandlerOptions,
|
|
147
144
|
): Promise<ListCodeReviewsCommandOutput>;
|
|
148
145
|
listCodeReviews(
|
|
149
146
|
args: ListCodeReviewsCommandInput,
|
|
150
|
-
cb: (err: any, data?: ListCodeReviewsCommandOutput) => void
|
|
147
|
+
cb: (err: any, data?: ListCodeReviewsCommandOutput) => void,
|
|
151
148
|
): void;
|
|
152
149
|
listCodeReviews(
|
|
153
150
|
args: ListCodeReviewsCommandInput,
|
|
154
151
|
options: __HttpHandlerOptions,
|
|
155
|
-
cb: (err: any, data?: ListCodeReviewsCommandOutput) => void
|
|
152
|
+
cb: (err: any, data?: ListCodeReviewsCommandOutput) => void,
|
|
156
153
|
): void;
|
|
157
154
|
listRecommendationFeedback(
|
|
158
155
|
args: ListRecommendationFeedbackCommandInput,
|
|
159
|
-
options?: __HttpHandlerOptions
|
|
156
|
+
options?: __HttpHandlerOptions,
|
|
160
157
|
): Promise<ListRecommendationFeedbackCommandOutput>;
|
|
161
158
|
listRecommendationFeedback(
|
|
162
159
|
args: ListRecommendationFeedbackCommandInput,
|
|
163
|
-
cb: (err: any, data?: ListRecommendationFeedbackCommandOutput) => void
|
|
160
|
+
cb: (err: any, data?: ListRecommendationFeedbackCommandOutput) => void,
|
|
164
161
|
): void;
|
|
165
162
|
listRecommendationFeedback(
|
|
166
163
|
args: ListRecommendationFeedbackCommandInput,
|
|
167
164
|
options: __HttpHandlerOptions,
|
|
168
|
-
cb: (err: any, data?: ListRecommendationFeedbackCommandOutput) => void
|
|
165
|
+
cb: (err: any, data?: ListRecommendationFeedbackCommandOutput) => void,
|
|
169
166
|
): void;
|
|
170
167
|
listRecommendations(
|
|
171
168
|
args: ListRecommendationsCommandInput,
|
|
172
|
-
options?: __HttpHandlerOptions
|
|
169
|
+
options?: __HttpHandlerOptions,
|
|
173
170
|
): Promise<ListRecommendationsCommandOutput>;
|
|
174
171
|
listRecommendations(
|
|
175
172
|
args: ListRecommendationsCommandInput,
|
|
176
|
-
cb: (err: any, data?: ListRecommendationsCommandOutput) => void
|
|
173
|
+
cb: (err: any, data?: ListRecommendationsCommandOutput) => void,
|
|
177
174
|
): void;
|
|
178
175
|
listRecommendations(
|
|
179
176
|
args: ListRecommendationsCommandInput,
|
|
180
177
|
options: __HttpHandlerOptions,
|
|
181
|
-
cb: (err: any, data?: ListRecommendationsCommandOutput) => void
|
|
178
|
+
cb: (err: any, data?: ListRecommendationsCommandOutput) => void,
|
|
182
179
|
): void;
|
|
183
180
|
listRepositoryAssociations(): Promise<ListRepositoryAssociationsCommandOutput>;
|
|
184
181
|
listRepositoryAssociations(
|
|
185
182
|
args: ListRepositoryAssociationsCommandInput,
|
|
186
|
-
options?: __HttpHandlerOptions
|
|
183
|
+
options?: __HttpHandlerOptions,
|
|
187
184
|
): Promise<ListRepositoryAssociationsCommandOutput>;
|
|
188
185
|
listRepositoryAssociations(
|
|
189
186
|
args: ListRepositoryAssociationsCommandInput,
|
|
190
|
-
cb: (err: any, data?: ListRepositoryAssociationsCommandOutput) => void
|
|
187
|
+
cb: (err: any, data?: ListRepositoryAssociationsCommandOutput) => void,
|
|
191
188
|
): void;
|
|
192
189
|
listRepositoryAssociations(
|
|
193
190
|
args: ListRepositoryAssociationsCommandInput,
|
|
194
191
|
options: __HttpHandlerOptions,
|
|
195
|
-
cb: (err: any, data?: ListRepositoryAssociationsCommandOutput) => void
|
|
192
|
+
cb: (err: any, data?: ListRepositoryAssociationsCommandOutput) => void,
|
|
196
193
|
): void;
|
|
197
194
|
listTagsForResource(
|
|
198
195
|
args: ListTagsForResourceCommandInput,
|
|
199
|
-
options?: __HttpHandlerOptions
|
|
196
|
+
options?: __HttpHandlerOptions,
|
|
200
197
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
201
198
|
listTagsForResource(
|
|
202
199
|
args: ListTagsForResourceCommandInput,
|
|
203
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
200
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
204
201
|
): void;
|
|
205
202
|
listTagsForResource(
|
|
206
203
|
args: ListTagsForResourceCommandInput,
|
|
207
204
|
options: __HttpHandlerOptions,
|
|
208
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
205
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
209
206
|
): void;
|
|
210
207
|
putRecommendationFeedback(
|
|
211
208
|
args: PutRecommendationFeedbackCommandInput,
|
|
212
|
-
options?: __HttpHandlerOptions
|
|
209
|
+
options?: __HttpHandlerOptions,
|
|
213
210
|
): Promise<PutRecommendationFeedbackCommandOutput>;
|
|
214
211
|
putRecommendationFeedback(
|
|
215
212
|
args: PutRecommendationFeedbackCommandInput,
|
|
216
|
-
cb: (err: any, data?: PutRecommendationFeedbackCommandOutput) => void
|
|
213
|
+
cb: (err: any, data?: PutRecommendationFeedbackCommandOutput) => void,
|
|
217
214
|
): void;
|
|
218
215
|
putRecommendationFeedback(
|
|
219
216
|
args: PutRecommendationFeedbackCommandInput,
|
|
220
217
|
options: __HttpHandlerOptions,
|
|
221
|
-
cb: (err: any, data?: PutRecommendationFeedbackCommandOutput) => void
|
|
218
|
+
cb: (err: any, data?: PutRecommendationFeedbackCommandOutput) => void,
|
|
222
219
|
): void;
|
|
223
220
|
tagResource(
|
|
224
221
|
args: TagResourceCommandInput,
|
|
225
|
-
options?: __HttpHandlerOptions
|
|
222
|
+
options?: __HttpHandlerOptions,
|
|
226
223
|
): Promise<TagResourceCommandOutput>;
|
|
227
224
|
tagResource(
|
|
228
225
|
args: TagResourceCommandInput,
|
|
229
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
226
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
230
227
|
): void;
|
|
231
228
|
tagResource(
|
|
232
229
|
args: TagResourceCommandInput,
|
|
233
230
|
options: __HttpHandlerOptions,
|
|
234
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
231
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
235
232
|
): void;
|
|
236
233
|
untagResource(
|
|
237
234
|
args: UntagResourceCommandInput,
|
|
238
|
-
options?: __HttpHandlerOptions
|
|
235
|
+
options?: __HttpHandlerOptions,
|
|
239
236
|
): Promise<UntagResourceCommandOutput>;
|
|
240
237
|
untagResource(
|
|
241
238
|
args: UntagResourceCommandInput,
|
|
242
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
239
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
243
240
|
): void;
|
|
244
241
|
untagResource(
|
|
245
242
|
args: UntagResourceCommandInput,
|
|
246
243
|
options: __HttpHandlerOptions,
|
|
247
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
244
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
248
245
|
): void;
|
|
249
246
|
paginateListCodeReviews(
|
|
250
247
|
args: ListCodeReviewsCommandInput,
|
|
251
248
|
paginationConfig?: Pick<
|
|
252
249
|
PaginationConfiguration,
|
|
253
250
|
Exclude<keyof PaginationConfiguration, "client">
|
|
254
|
-
|
|
251
|
+
>,
|
|
255
252
|
): Paginator<ListCodeReviewsCommandOutput>;
|
|
256
253
|
paginateListRecommendationFeedback(
|
|
257
254
|
args: ListRecommendationFeedbackCommandInput,
|
|
258
255
|
paginationConfig?: Pick<
|
|
259
256
|
PaginationConfiguration,
|
|
260
257
|
Exclude<keyof PaginationConfiguration, "client">
|
|
261
|
-
|
|
258
|
+
>,
|
|
262
259
|
): Paginator<ListRecommendationFeedbackCommandOutput>;
|
|
263
260
|
paginateListRecommendations(
|
|
264
261
|
args: ListRecommendationsCommandInput,
|
|
265
262
|
paginationConfig?: Pick<
|
|
266
263
|
PaginationConfiguration,
|
|
267
264
|
Exclude<keyof PaginationConfiguration, "client">
|
|
268
|
-
|
|
265
|
+
>,
|
|
269
266
|
): Paginator<ListRecommendationsCommandOutput>;
|
|
270
267
|
paginateListRepositoryAssociations(
|
|
271
268
|
args?: ListRepositoryAssociationsCommandInput,
|
|
272
269
|
paginationConfig?: Pick<
|
|
273
270
|
PaginationConfiguration,
|
|
274
271
|
Exclude<keyof PaginationConfiguration, "client">
|
|
275
|
-
|
|
272
|
+
>,
|
|
276
273
|
): Paginator<ListRepositoryAssociationsCommandOutput>;
|
|
277
274
|
waitUntilCodeReviewCompleted(
|
|
278
275
|
args: DescribeCodeReviewCommandInput,
|
|
@@ -281,7 +278,7 @@ export interface CodeGuruReviewer {
|
|
|
281
278
|
| Pick<
|
|
282
279
|
WaiterConfiguration<CodeGuruReviewer>,
|
|
283
280
|
Exclude<keyof WaiterConfiguration<CodeGuruReviewer>, "client">
|
|
284
|
-
|
|
281
|
+
>,
|
|
285
282
|
): Promise<WaiterResult<DescribeCodeReviewCommandOutput>>;
|
|
286
283
|
waitUntilRepositoryAssociationSucceeded(
|
|
287
284
|
args: DescribeRepositoryAssociationCommandInput,
|
|
@@ -290,9 +287,7 @@ export interface CodeGuruReviewer {
|
|
|
290
287
|
| Pick<
|
|
291
288
|
WaiterConfiguration<CodeGuruReviewer>,
|
|
292
289
|
Exclude<keyof WaiterConfiguration<CodeGuruReviewer>, "client">
|
|
293
|
-
|
|
290
|
+
>,
|
|
294
291
|
): Promise<WaiterResult<DescribeRepositoryAssociationCommandOutput>>;
|
|
295
292
|
}
|
|
296
|
-
export declare class CodeGuruReviewer
|
|
297
|
-
extends CodeGuruReviewerClient
|
|
298
|
-
implements CodeGuruReviewer {}
|
|
293
|
+
export declare class CodeGuruReviewer extends CodeGuruReviewerClient implements CodeGuruReviewer {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -84,10 +81,7 @@ import {
|
|
|
84
81
|
PutRecommendationFeedbackCommandInput,
|
|
85
82
|
PutRecommendationFeedbackCommandOutput,
|
|
86
83
|
} from "./commands/PutRecommendationFeedbackCommand";
|
|
87
|
-
import {
|
|
88
|
-
TagResourceCommandInput,
|
|
89
|
-
TagResourceCommandOutput,
|
|
90
|
-
} from "./commands/TagResourceCommand";
|
|
84
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
91
85
|
import {
|
|
92
86
|
UntagResourceCommandInput,
|
|
93
87
|
UntagResourceCommandOutput,
|
|
@@ -129,8 +123,7 @@ export type ServiceOutputTypes =
|
|
|
129
123
|
| PutRecommendationFeedbackCommandOutput
|
|
130
124
|
| TagResourceCommandOutput
|
|
131
125
|
| UntagResourceCommandOutput;
|
|
132
|
-
export interface ClientDefaults
|
|
133
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
126
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
134
127
|
requestHandler?: __HttpHandlerUserInput;
|
|
135
128
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
136
129
|
urlParser?: __UrlParser;
|
|
@@ -166,8 +159,7 @@ export type CodeGuruReviewerClientConfigType = Partial<
|
|
|
166
159
|
EndpointInputConfig<EndpointParameters> &
|
|
167
160
|
HttpAuthSchemeInputConfig &
|
|
168
161
|
ClientInputEndpointParameters;
|
|
169
|
-
export interface CodeGuruReviewerClientConfig
|
|
170
|
-
extends CodeGuruReviewerClientConfigType {}
|
|
162
|
+
export interface CodeGuruReviewerClientConfig extends CodeGuruReviewerClientConfigType {}
|
|
171
163
|
export type CodeGuruReviewerClientResolvedConfigType =
|
|
172
164
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
173
165
|
Required<ClientDefaults> &
|
|
@@ -179,8 +171,7 @@ export type CodeGuruReviewerClientResolvedConfigType =
|
|
|
179
171
|
EndpointResolvedConfig<EndpointParameters> &
|
|
180
172
|
HttpAuthSchemeResolvedConfig &
|
|
181
173
|
ClientResolvedEndpointParameters;
|
|
182
|
-
export interface CodeGuruReviewerClientResolvedConfig
|
|
183
|
-
extends CodeGuruReviewerClientResolvedConfigType {}
|
|
174
|
+
export interface CodeGuruReviewerClientResolvedConfig extends CodeGuruReviewerClientResolvedConfigType {}
|
|
184
175
|
export declare class CodeGuruReviewerClient extends __Client<
|
|
185
176
|
__HttpHandlerOptions,
|
|
186
177
|
ServiceInputTypes,
|
|
@@ -188,10 +179,6 @@ export declare class CodeGuruReviewerClient extends __Client<
|
|
|
188
179
|
CodeGuruReviewerClientResolvedConfig
|
|
189
180
|
> {
|
|
190
181
|
readonly config: CodeGuruReviewerClientResolvedConfig;
|
|
191
|
-
constructor(
|
|
192
|
-
...[
|
|
193
|
-
configuration,
|
|
194
|
-
]: __CheckOptionalClientConfig<CodeGuruReviewerClientConfig>
|
|
195
|
-
);
|
|
182
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<CodeGuruReviewerClientConfig>);
|
|
196
183
|
destroy(): void;
|
|
197
184
|
}
|
|
@@ -7,17 +7,10 @@ import { CodeGuruReviewerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: CodeGuruReviewerHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: CodeGuruReviewerHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): CodeGuruReviewerHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { CodeGuruReviewerClientResolvedConfig } from "../CodeGuruReviewerClient";
|
|
15
|
-
export interface CodeGuruReviewerHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface CodeGuruReviewerHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface CodeGuruReviewerHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface CodeGuruReviewerHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
CodeGuruReviewerClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
CodeGuruReviewerHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultCodeGuruReviewerHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: CodeGuruReviewerClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<CodeGuruReviewerHttpAuthSchemeParameters>;
|
|
31
|
-
export interface CodeGuruReviewerHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<CodeGuruReviewerHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface CodeGuruReviewerHttpAuthSchemeProvider extends HttpAuthSchemeProvider<CodeGuruReviewerHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultCodeGuruReviewerHttpAuthSchemeProvider: CodeGuruReviewerHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: CodeGuruReviewerHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: CodeGuruReviewerHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./CodeGuruReviewerClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
CodeGuruReviewerClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
AssociateRepositoryRequest,
|
|
4
|
-
AssociateRepositoryResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { AssociateRepositoryRequest, AssociateRepositoryResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface AssociateRepositoryCommandInput
|
|
8
|
-
extends AssociateRepositoryRequest {}
|
|
4
|
+
export interface AssociateRepositoryCommandInput extends AssociateRepositoryRequest {}
|
|
9
5
|
export interface AssociateRepositoryCommandOutput
|
|
10
|
-
extends AssociateRepositoryResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends AssociateRepositoryResponse, __MetadataBearer {}
|
|
12
7
|
declare const AssociateRepositoryCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: AssociateRepositoryCommandInput
|
|
9
|
+
input: AssociateRepositoryCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
AssociateRepositoryCommandInput,
|
|
17
12
|
AssociateRepositoryCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const AssociateRepositoryCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: AssociateRepositoryCommandInput
|
|
18
|
+
input: AssociateRepositoryCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
AssociateRepositoryCommandInput,
|
|
26
21
|
AssociateRepositoryCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateCodeReviewRequest,
|
|
4
|
-
CreateCodeReviewResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateCodeReviewRequest, CreateCodeReviewResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateCodeReviewCommandInput extends CreateCodeReviewRequest {}
|
|
8
|
-
export interface CreateCodeReviewCommandOutput
|
|
9
|
-
extends CreateCodeReviewResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateCodeReviewCommandOutput extends CreateCodeReviewResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateCodeReviewCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateCodeReviewCommandInput
|
|
8
|
+
input: CreateCodeReviewCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateCodeReviewCommandInput,
|
|
16
11
|
CreateCodeReviewCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateCodeReviewCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateCodeReviewCommandInput
|
|
17
|
+
input: CreateCodeReviewCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateCodeReviewCommandInput,
|
|
25
20
|
CreateCodeReviewCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeCodeReviewRequest,
|
|
4
|
-
DescribeCodeReviewResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeCodeReviewRequest, DescribeCodeReviewResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeCodeReviewCommandInput
|
|
8
|
-
extends DescribeCodeReviewRequest {}
|
|
4
|
+
export interface DescribeCodeReviewCommandInput extends DescribeCodeReviewRequest {}
|
|
9
5
|
export interface DescribeCodeReviewCommandOutput
|
|
10
|
-
extends DescribeCodeReviewResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeCodeReviewResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeCodeReviewCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeCodeReviewCommandInput
|
|
9
|
+
input: DescribeCodeReviewCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeCodeReviewCommandInput,
|
|
17
12
|
DescribeCodeReviewCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeCodeReviewCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeCodeReviewCommandInput
|
|
18
|
+
input: DescribeCodeReviewCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeCodeReviewCommandInput,
|
|
26
21
|
DescribeCodeReviewCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeRecommendationFeedbackResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeRecommendationFeedbackCommandInput
|
|
8
|
-
extends DescribeRecommendationFeedbackRequest {}
|
|
7
|
+
export interface DescribeRecommendationFeedbackCommandInput extends DescribeRecommendationFeedbackRequest {}
|
|
9
8
|
export interface DescribeRecommendationFeedbackCommandOutput
|
|
10
|
-
extends DescribeRecommendationFeedbackResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeRecommendationFeedbackResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeRecommendationFeedbackCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeRecommendationFeedbackCommandInput
|
|
12
|
+
input: DescribeRecommendationFeedbackCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeRecommendationFeedbackCommandInput,
|
|
17
15
|
DescribeRecommendationFeedbackCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeRecommendationFeedbackCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeRecommendationFeedbackCommandInput
|
|
21
|
+
input: DescribeRecommendationFeedbackCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeRecommendationFeedbackCommandInput,
|
|
26
24
|
DescribeRecommendationFeedbackCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeRepositoryAssociationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeRepositoryAssociationCommandInput
|
|
8
|
-
extends DescribeRepositoryAssociationRequest {}
|
|
7
|
+
export interface DescribeRepositoryAssociationCommandInput extends DescribeRepositoryAssociationRequest {}
|
|
9
8
|
export interface DescribeRepositoryAssociationCommandOutput
|
|
10
|
-
extends DescribeRepositoryAssociationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeRepositoryAssociationResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeRepositoryAssociationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeRepositoryAssociationCommandInput
|
|
12
|
+
input: DescribeRepositoryAssociationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeRepositoryAssociationCommandInput,
|
|
17
15
|
DescribeRepositoryAssociationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeRepositoryAssociationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeRepositoryAssociationCommandInput
|
|
21
|
+
input: DescribeRepositoryAssociationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeRepositoryAssociationCommandInput,
|
|
26
24
|
DescribeRepositoryAssociationCommandOutput,
|