@aws-sdk/client-codeguru-reviewer 3.312.0 → 3.316.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.
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.CodeGuruReviewer = void 0;
4
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
4
5
  const CodeGuruReviewerClient_1 = require("./CodeGuruReviewerClient");
5
6
  const AssociateRepositoryCommand_1 = require("./commands/AssociateRepositoryCommand");
6
7
  const CreateCodeReviewCommand_1 = require("./commands/CreateCodeReviewCommand");
@@ -16,202 +17,23 @@ const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceComm
16
17
  const PutRecommendationFeedbackCommand_1 = require("./commands/PutRecommendationFeedbackCommand");
17
18
  const TagResourceCommand_1 = require("./commands/TagResourceCommand");
18
19
  const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
20
+ const commands = {
21
+ AssociateRepositoryCommand: AssociateRepositoryCommand_1.AssociateRepositoryCommand,
22
+ CreateCodeReviewCommand: CreateCodeReviewCommand_1.CreateCodeReviewCommand,
23
+ DescribeCodeReviewCommand: DescribeCodeReviewCommand_1.DescribeCodeReviewCommand,
24
+ DescribeRecommendationFeedbackCommand: DescribeRecommendationFeedbackCommand_1.DescribeRecommendationFeedbackCommand,
25
+ DescribeRepositoryAssociationCommand: DescribeRepositoryAssociationCommand_1.DescribeRepositoryAssociationCommand,
26
+ DisassociateRepositoryCommand: DisassociateRepositoryCommand_1.DisassociateRepositoryCommand,
27
+ ListCodeReviewsCommand: ListCodeReviewsCommand_1.ListCodeReviewsCommand,
28
+ ListRecommendationFeedbackCommand: ListRecommendationFeedbackCommand_1.ListRecommendationFeedbackCommand,
29
+ ListRecommendationsCommand: ListRecommendationsCommand_1.ListRecommendationsCommand,
30
+ ListRepositoryAssociationsCommand: ListRepositoryAssociationsCommand_1.ListRepositoryAssociationsCommand,
31
+ ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
32
+ PutRecommendationFeedbackCommand: PutRecommendationFeedbackCommand_1.PutRecommendationFeedbackCommand,
33
+ TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
34
+ UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
35
+ };
19
36
  class CodeGuruReviewer extends CodeGuruReviewerClient_1.CodeGuruReviewerClient {
20
- associateRepository(args, optionsOrCb, cb) {
21
- const command = new AssociateRepositoryCommand_1.AssociateRepositoryCommand(args);
22
- if (typeof optionsOrCb === "function") {
23
- this.send(command, optionsOrCb);
24
- }
25
- else if (typeof cb === "function") {
26
- if (typeof optionsOrCb !== "object")
27
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
28
- this.send(command, optionsOrCb || {}, cb);
29
- }
30
- else {
31
- return this.send(command, optionsOrCb);
32
- }
33
- }
34
- createCodeReview(args, optionsOrCb, cb) {
35
- const command = new CreateCodeReviewCommand_1.CreateCodeReviewCommand(args);
36
- if (typeof optionsOrCb === "function") {
37
- this.send(command, optionsOrCb);
38
- }
39
- else if (typeof cb === "function") {
40
- if (typeof optionsOrCb !== "object")
41
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
42
- this.send(command, optionsOrCb || {}, cb);
43
- }
44
- else {
45
- return this.send(command, optionsOrCb);
46
- }
47
- }
48
- describeCodeReview(args, optionsOrCb, cb) {
49
- const command = new DescribeCodeReviewCommand_1.DescribeCodeReviewCommand(args);
50
- if (typeof optionsOrCb === "function") {
51
- this.send(command, optionsOrCb);
52
- }
53
- else if (typeof cb === "function") {
54
- if (typeof optionsOrCb !== "object")
55
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
56
- this.send(command, optionsOrCb || {}, cb);
57
- }
58
- else {
59
- return this.send(command, optionsOrCb);
60
- }
61
- }
62
- describeRecommendationFeedback(args, optionsOrCb, cb) {
63
- const command = new DescribeRecommendationFeedbackCommand_1.DescribeRecommendationFeedbackCommand(args);
64
- if (typeof optionsOrCb === "function") {
65
- this.send(command, optionsOrCb);
66
- }
67
- else if (typeof cb === "function") {
68
- if (typeof optionsOrCb !== "object")
69
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
70
- this.send(command, optionsOrCb || {}, cb);
71
- }
72
- else {
73
- return this.send(command, optionsOrCb);
74
- }
75
- }
76
- describeRepositoryAssociation(args, optionsOrCb, cb) {
77
- const command = new DescribeRepositoryAssociationCommand_1.DescribeRepositoryAssociationCommand(args);
78
- if (typeof optionsOrCb === "function") {
79
- this.send(command, optionsOrCb);
80
- }
81
- else if (typeof cb === "function") {
82
- if (typeof optionsOrCb !== "object")
83
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
84
- this.send(command, optionsOrCb || {}, cb);
85
- }
86
- else {
87
- return this.send(command, optionsOrCb);
88
- }
89
- }
90
- disassociateRepository(args, optionsOrCb, cb) {
91
- const command = new DisassociateRepositoryCommand_1.DisassociateRepositoryCommand(args);
92
- if (typeof optionsOrCb === "function") {
93
- this.send(command, optionsOrCb);
94
- }
95
- else if (typeof cb === "function") {
96
- if (typeof optionsOrCb !== "object")
97
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
98
- this.send(command, optionsOrCb || {}, cb);
99
- }
100
- else {
101
- return this.send(command, optionsOrCb);
102
- }
103
- }
104
- listCodeReviews(args, optionsOrCb, cb) {
105
- const command = new ListCodeReviewsCommand_1.ListCodeReviewsCommand(args);
106
- if (typeof optionsOrCb === "function") {
107
- this.send(command, optionsOrCb);
108
- }
109
- else if (typeof cb === "function") {
110
- if (typeof optionsOrCb !== "object")
111
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
112
- this.send(command, optionsOrCb || {}, cb);
113
- }
114
- else {
115
- return this.send(command, optionsOrCb);
116
- }
117
- }
118
- listRecommendationFeedback(args, optionsOrCb, cb) {
119
- const command = new ListRecommendationFeedbackCommand_1.ListRecommendationFeedbackCommand(args);
120
- if (typeof optionsOrCb === "function") {
121
- this.send(command, optionsOrCb);
122
- }
123
- else if (typeof cb === "function") {
124
- if (typeof optionsOrCb !== "object")
125
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
126
- this.send(command, optionsOrCb || {}, cb);
127
- }
128
- else {
129
- return this.send(command, optionsOrCb);
130
- }
131
- }
132
- listRecommendations(args, optionsOrCb, cb) {
133
- const command = new ListRecommendationsCommand_1.ListRecommendationsCommand(args);
134
- if (typeof optionsOrCb === "function") {
135
- this.send(command, optionsOrCb);
136
- }
137
- else if (typeof cb === "function") {
138
- if (typeof optionsOrCb !== "object")
139
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
140
- this.send(command, optionsOrCb || {}, cb);
141
- }
142
- else {
143
- return this.send(command, optionsOrCb);
144
- }
145
- }
146
- listRepositoryAssociations(args, optionsOrCb, cb) {
147
- const command = new ListRepositoryAssociationsCommand_1.ListRepositoryAssociationsCommand(args);
148
- if (typeof optionsOrCb === "function") {
149
- this.send(command, optionsOrCb);
150
- }
151
- else if (typeof cb === "function") {
152
- if (typeof optionsOrCb !== "object")
153
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
154
- this.send(command, optionsOrCb || {}, cb);
155
- }
156
- else {
157
- return this.send(command, optionsOrCb);
158
- }
159
- }
160
- listTagsForResource(args, optionsOrCb, cb) {
161
- const command = new ListTagsForResourceCommand_1.ListTagsForResourceCommand(args);
162
- if (typeof optionsOrCb === "function") {
163
- this.send(command, optionsOrCb);
164
- }
165
- else if (typeof cb === "function") {
166
- if (typeof optionsOrCb !== "object")
167
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
168
- this.send(command, optionsOrCb || {}, cb);
169
- }
170
- else {
171
- return this.send(command, optionsOrCb);
172
- }
173
- }
174
- putRecommendationFeedback(args, optionsOrCb, cb) {
175
- const command = new PutRecommendationFeedbackCommand_1.PutRecommendationFeedbackCommand(args);
176
- if (typeof optionsOrCb === "function") {
177
- this.send(command, optionsOrCb);
178
- }
179
- else if (typeof cb === "function") {
180
- if (typeof optionsOrCb !== "object")
181
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
182
- this.send(command, optionsOrCb || {}, cb);
183
- }
184
- else {
185
- return this.send(command, optionsOrCb);
186
- }
187
- }
188
- tagResource(args, optionsOrCb, cb) {
189
- const command = new TagResourceCommand_1.TagResourceCommand(args);
190
- if (typeof optionsOrCb === "function") {
191
- this.send(command, optionsOrCb);
192
- }
193
- else if (typeof cb === "function") {
194
- if (typeof optionsOrCb !== "object")
195
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
196
- this.send(command, optionsOrCb || {}, cb);
197
- }
198
- else {
199
- return this.send(command, optionsOrCb);
200
- }
201
- }
202
- untagResource(args, optionsOrCb, cb) {
203
- const command = new UntagResourceCommand_1.UntagResourceCommand(args);
204
- if (typeof optionsOrCb === "function") {
205
- this.send(command, optionsOrCb);
206
- }
207
- else if (typeof cb === "function") {
208
- if (typeof optionsOrCb !== "object")
209
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
210
- this.send(command, optionsOrCb || {}, cb);
211
- }
212
- else {
213
- return this.send(command, optionsOrCb);
214
- }
215
- }
216
37
  }
217
38
  exports.CodeGuruReviewer = CodeGuruReviewer;
39
+ (0, smithy_client_1.createAggregatedClient)(commands, CodeGuruReviewer);