@aws-sdk/client-codeguru-reviewer 3.168.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.
Files changed (38) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/CodeGuruReviewer.d.ts +256 -75
  3. package/dist-types/ts3.4/CodeGuruReviewerClient.d.ts +214 -87
  4. package/dist-types/ts3.4/commands/AssociateRepositoryCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateCodeReviewCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/DescribeCodeReviewCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/DescribeRecommendationFeedbackCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DescribeRepositoryAssociationCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DisassociateRepositoryCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/ListCodeReviewsCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/ListRecommendationFeedbackCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/ListRepositoryAssociationsCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/PutRecommendationFeedbackCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/index.d.ts +14 -14
  19. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  20. package/dist-types/ts3.4/index.d.ts +7 -7
  21. package/dist-types/ts3.4/models/CodeGuruReviewerServiceException.d.ts +8 -6
  22. package/dist-types/ts3.4/models/index.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +768 -716
  24. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  25. package/dist-types/ts3.4/pagination/ListCodeReviewsPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/ListRecommendationFeedbackPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -4
  28. package/dist-types/ts3.4/pagination/ListRepositoryAssociationsPaginator.d.ts +11 -4
  29. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  30. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  35. package/dist-types/ts3.4/waiters/index.d.ts +2 -2
  36. package/dist-types/ts3.4/waiters/waitForCodeReviewCompleted.d.ts +13 -7
  37. package/dist-types/ts3.4/waiters/waitForRepositoryAssociationSucceeded.d.ts +13 -7
  38. package/package.json +35 -35
@@ -1,87 +1,214 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { AssociateRepositoryCommandInput, AssociateRepositoryCommandOutput } from "./commands/AssociateRepositoryCommand";
10
- import { CreateCodeReviewCommandInput, CreateCodeReviewCommandOutput } from "./commands/CreateCodeReviewCommand";
11
- import { DescribeCodeReviewCommandInput, DescribeCodeReviewCommandOutput } from "./commands/DescribeCodeReviewCommand";
12
- import { DescribeRecommendationFeedbackCommandInput, DescribeRecommendationFeedbackCommandOutput } from "./commands/DescribeRecommendationFeedbackCommand";
13
- import { DescribeRepositoryAssociationCommandInput, DescribeRepositoryAssociationCommandOutput } from "./commands/DescribeRepositoryAssociationCommand";
14
- import { DisassociateRepositoryCommandInput, DisassociateRepositoryCommandOutput } from "./commands/DisassociateRepositoryCommand";
15
- import { ListCodeReviewsCommandInput, ListCodeReviewsCommandOutput } from "./commands/ListCodeReviewsCommand";
16
- import { ListRecommendationFeedbackCommandInput, ListRecommendationFeedbackCommandOutput } from "./commands/ListRecommendationFeedbackCommand";
17
- import { ListRecommendationsCommandInput, ListRecommendationsCommandOutput } from "./commands/ListRecommendationsCommand";
18
- import { ListRepositoryAssociationsCommandInput, ListRepositoryAssociationsCommandOutput } from "./commands/ListRepositoryAssociationsCommand";
19
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
20
- import { PutRecommendationFeedbackCommandInput, PutRecommendationFeedbackCommandOutput } from "./commands/PutRecommendationFeedbackCommand";
21
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
22
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
23
- export declare type ServiceInputTypes = AssociateRepositoryCommandInput | CreateCodeReviewCommandInput | DescribeCodeReviewCommandInput | DescribeRecommendationFeedbackCommandInput | DescribeRepositoryAssociationCommandInput | DisassociateRepositoryCommandInput | ListCodeReviewsCommandInput | ListRecommendationFeedbackCommandInput | ListRecommendationsCommandInput | ListRepositoryAssociationsCommandInput | ListTagsForResourceCommandInput | PutRecommendationFeedbackCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
24
- export declare type ServiceOutputTypes = AssociateRepositoryCommandOutput | CreateCodeReviewCommandOutput | DescribeCodeReviewCommandOutput | DescribeRecommendationFeedbackCommandOutput | DescribeRepositoryAssociationCommandOutput | DisassociateRepositoryCommandOutput | ListCodeReviewsCommandOutput | ListRecommendationFeedbackCommandOutput | ListRecommendationsCommandOutput | ListRepositoryAssociationsCommandOutput | ListTagsForResourceCommandOutput | PutRecommendationFeedbackCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
25
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
26
-
27
- requestHandler?: __HttpHandler;
28
-
29
- sha256?: __HashConstructor;
30
-
31
- urlParser?: __UrlParser;
32
-
33
- bodyLengthChecker?: __BodyLengthCalculator;
34
-
35
- streamCollector?: __StreamCollector;
36
-
37
- base64Decoder?: __Decoder;
38
-
39
- base64Encoder?: __Encoder;
40
-
41
- utf8Decoder?: __Decoder;
42
-
43
- utf8Encoder?: __Encoder;
44
-
45
- runtime?: string;
46
-
47
- disableHostPrefix?: boolean;
48
-
49
- maxAttempts?: number | __Provider<number>;
50
-
51
- retryMode?: string | __Provider<string>;
52
-
53
- logger?: __Logger;
54
-
55
- useDualstackEndpoint?: boolean | __Provider<boolean>;
56
-
57
- useFipsEndpoint?: boolean | __Provider<boolean>;
58
-
59
- serviceId?: string;
60
-
61
- region?: string | __Provider<string>;
62
-
63
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
64
-
65
- regionInfoProvider?: RegionInfoProvider;
66
-
67
- defaultUserAgentProvider?: Provider<__UserAgent>;
68
-
69
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
70
- }
71
- declare type CodeGuruReviewerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
72
-
73
- export interface CodeGuruReviewerClientConfig extends CodeGuruReviewerClientConfigType {
74
- }
75
- declare type CodeGuruReviewerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
76
-
77
- export interface CodeGuruReviewerClientResolvedConfig extends CodeGuruReviewerClientResolvedConfigType {
78
- }
79
-
80
- export declare class CodeGuruReviewerClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CodeGuruReviewerClientResolvedConfig> {
81
-
82
- readonly config: CodeGuruReviewerClientResolvedConfig;
83
- constructor(configuration: CodeGuruReviewerClientConfig);
84
-
85
- destroy(): void;
86
- }
87
- export {};
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 {};
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
4
- import { AssociateRepositoryRequest, AssociateRepositoryResponse } from "../models/models_0";
5
- export interface AssociateRepositoryCommandInput extends AssociateRepositoryRequest {
6
- }
7
- export interface AssociateRepositoryCommandOutput extends AssociateRepositoryResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class AssociateRepositoryCommand extends $Command<AssociateRepositoryCommandInput, AssociateRepositoryCommandOutput, CodeGuruReviewerClientResolvedConfig> {
11
- readonly input: AssociateRepositoryCommandInput;
12
- constructor(input: AssociateRepositoryCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateRepositoryCommandInput, AssociateRepositoryCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruReviewerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruReviewerClient";
13
+ import {
14
+ AssociateRepositoryRequest,
15
+ AssociateRepositoryResponse,
16
+ } from "../models/models_0";
17
+ export interface AssociateRepositoryCommandInput
18
+ extends AssociateRepositoryRequest {}
19
+ export interface AssociateRepositoryCommandOutput
20
+ extends AssociateRepositoryResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class AssociateRepositoryCommand extends $Command<
24
+ AssociateRepositoryCommandInput,
25
+ AssociateRepositoryCommandOutput,
26
+ CodeGuruReviewerClientResolvedConfig
27
+ > {
28
+ readonly input: AssociateRepositoryCommandInput;
29
+ constructor(input: AssociateRepositoryCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruReviewerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<AssociateRepositoryCommandInput, AssociateRepositoryCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
4
- import { CreateCodeReviewRequest, CreateCodeReviewResponse } from "../models/models_0";
5
- export interface CreateCodeReviewCommandInput extends CreateCodeReviewRequest {
6
- }
7
- export interface CreateCodeReviewCommandOutput extends CreateCodeReviewResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateCodeReviewCommand extends $Command<CreateCodeReviewCommandInput, CreateCodeReviewCommandOutput, CodeGuruReviewerClientResolvedConfig> {
11
- readonly input: CreateCodeReviewCommandInput;
12
- constructor(input: CreateCodeReviewCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCodeReviewCommandInput, CreateCodeReviewCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruReviewerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruReviewerClient";
13
+ import {
14
+ CreateCodeReviewRequest,
15
+ CreateCodeReviewResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateCodeReviewCommandInput extends CreateCodeReviewRequest {}
18
+ export interface CreateCodeReviewCommandOutput
19
+ extends CreateCodeReviewResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class CreateCodeReviewCommand extends $Command<
23
+ CreateCodeReviewCommandInput,
24
+ CreateCodeReviewCommandOutput,
25
+ CodeGuruReviewerClientResolvedConfig
26
+ > {
27
+ readonly input: CreateCodeReviewCommandInput;
28
+ constructor(input: CreateCodeReviewCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CodeGuruReviewerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateCodeReviewCommandInput, CreateCodeReviewCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
4
- import { DescribeCodeReviewRequest, DescribeCodeReviewResponse } from "../models/models_0";
5
- export interface DescribeCodeReviewCommandInput extends DescribeCodeReviewRequest {
6
- }
7
- export interface DescribeCodeReviewCommandOutput extends DescribeCodeReviewResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeCodeReviewCommand extends $Command<DescribeCodeReviewCommandInput, DescribeCodeReviewCommandOutput, CodeGuruReviewerClientResolvedConfig> {
11
- readonly input: DescribeCodeReviewCommandInput;
12
- constructor(input: DescribeCodeReviewCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeCodeReviewCommandInput, DescribeCodeReviewCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruReviewerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruReviewerClient";
13
+ import {
14
+ DescribeCodeReviewRequest,
15
+ DescribeCodeReviewResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeCodeReviewCommandInput
18
+ extends DescribeCodeReviewRequest {}
19
+ export interface DescribeCodeReviewCommandOutput
20
+ extends DescribeCodeReviewResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeCodeReviewCommand extends $Command<
24
+ DescribeCodeReviewCommandInput,
25
+ DescribeCodeReviewCommandOutput,
26
+ CodeGuruReviewerClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeCodeReviewCommandInput;
29
+ constructor(input: DescribeCodeReviewCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruReviewerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeCodeReviewCommandInput, DescribeCodeReviewCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
4
- import { DescribeRecommendationFeedbackRequest, DescribeRecommendationFeedbackResponse } from "../models/models_0";
5
- export interface DescribeRecommendationFeedbackCommandInput extends DescribeRecommendationFeedbackRequest {
6
- }
7
- export interface DescribeRecommendationFeedbackCommandOutput extends DescribeRecommendationFeedbackResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeRecommendationFeedbackCommand extends $Command<DescribeRecommendationFeedbackCommandInput, DescribeRecommendationFeedbackCommandOutput, CodeGuruReviewerClientResolvedConfig> {
11
- readonly input: DescribeRecommendationFeedbackCommandInput;
12
- constructor(input: DescribeRecommendationFeedbackCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRecommendationFeedbackCommandInput, DescribeRecommendationFeedbackCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruReviewerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruReviewerClient";
13
+ import {
14
+ DescribeRecommendationFeedbackRequest,
15
+ DescribeRecommendationFeedbackResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeRecommendationFeedbackCommandInput
18
+ extends DescribeRecommendationFeedbackRequest {}
19
+ export interface DescribeRecommendationFeedbackCommandOutput
20
+ extends DescribeRecommendationFeedbackResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeRecommendationFeedbackCommand extends $Command<
24
+ DescribeRecommendationFeedbackCommandInput,
25
+ DescribeRecommendationFeedbackCommandOutput,
26
+ CodeGuruReviewerClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeRecommendationFeedbackCommandInput;
29
+ constructor(input: DescribeRecommendationFeedbackCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruReviewerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeRecommendationFeedbackCommandInput,
37
+ DescribeRecommendationFeedbackCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
4
- import { DescribeRepositoryAssociationRequest, DescribeRepositoryAssociationResponse } from "../models/models_0";
5
- export interface DescribeRepositoryAssociationCommandInput extends DescribeRepositoryAssociationRequest {
6
- }
7
- export interface DescribeRepositoryAssociationCommandOutput extends DescribeRepositoryAssociationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeRepositoryAssociationCommand extends $Command<DescribeRepositoryAssociationCommandInput, DescribeRepositoryAssociationCommandOutput, CodeGuruReviewerClientResolvedConfig> {
11
- readonly input: DescribeRepositoryAssociationCommandInput;
12
- constructor(input: DescribeRepositoryAssociationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRepositoryAssociationCommandInput, DescribeRepositoryAssociationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruReviewerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruReviewerClient";
13
+ import {
14
+ DescribeRepositoryAssociationRequest,
15
+ DescribeRepositoryAssociationResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeRepositoryAssociationCommandInput
18
+ extends DescribeRepositoryAssociationRequest {}
19
+ export interface DescribeRepositoryAssociationCommandOutput
20
+ extends DescribeRepositoryAssociationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeRepositoryAssociationCommand extends $Command<
24
+ DescribeRepositoryAssociationCommandInput,
25
+ DescribeRepositoryAssociationCommandOutput,
26
+ CodeGuruReviewerClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeRepositoryAssociationCommandInput;
29
+ constructor(input: DescribeRepositoryAssociationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruReviewerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeRepositoryAssociationCommandInput,
37
+ DescribeRepositoryAssociationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient";
4
- import { DisassociateRepositoryRequest, DisassociateRepositoryResponse } from "../models/models_0";
5
- export interface DisassociateRepositoryCommandInput extends DisassociateRepositoryRequest {
6
- }
7
- export interface DisassociateRepositoryCommandOutput extends DisassociateRepositoryResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DisassociateRepositoryCommand extends $Command<DisassociateRepositoryCommandInput, DisassociateRepositoryCommandOutput, CodeGuruReviewerClientResolvedConfig> {
11
- readonly input: DisassociateRepositoryCommandInput;
12
- constructor(input: DisassociateRepositoryCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruReviewerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateRepositoryCommandInput, DisassociateRepositoryCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeGuruReviewerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeGuruReviewerClient";
13
+ import {
14
+ DisassociateRepositoryRequest,
15
+ DisassociateRepositoryResponse,
16
+ } from "../models/models_0";
17
+ export interface DisassociateRepositoryCommandInput
18
+ extends DisassociateRepositoryRequest {}
19
+ export interface DisassociateRepositoryCommandOutput
20
+ extends DisassociateRepositoryResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DisassociateRepositoryCommand extends $Command<
24
+ DisassociateRepositoryCommandInput,
25
+ DisassociateRepositoryCommandOutput,
26
+ CodeGuruReviewerClientResolvedConfig
27
+ > {
28
+ readonly input: DisassociateRepositoryCommandInput;
29
+ constructor(input: DisassociateRepositoryCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodeGuruReviewerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DisassociateRepositoryCommandInput,
37
+ DisassociateRepositoryCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }