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