@aws-sdk/client-codebuild 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.CodeBuild = void 0;
4
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
4
5
  const CodeBuildClient_1 = require("./CodeBuildClient");
5
6
  const BatchDeleteBuildsCommand_1 = require("./commands/BatchDeleteBuildsCommand");
6
7
  const BatchGetBuildBatchesCommand_1 = require("./commands/BatchGetBuildBatchesCommand");
@@ -47,636 +48,54 @@ const UpdateProjectCommand_1 = require("./commands/UpdateProjectCommand");
47
48
  const UpdateProjectVisibilityCommand_1 = require("./commands/UpdateProjectVisibilityCommand");
48
49
  const UpdateReportGroupCommand_1 = require("./commands/UpdateReportGroupCommand");
49
50
  const UpdateWebhookCommand_1 = require("./commands/UpdateWebhookCommand");
51
+ const commands = {
52
+ BatchDeleteBuildsCommand: BatchDeleteBuildsCommand_1.BatchDeleteBuildsCommand,
53
+ BatchGetBuildBatchesCommand: BatchGetBuildBatchesCommand_1.BatchGetBuildBatchesCommand,
54
+ BatchGetBuildsCommand: BatchGetBuildsCommand_1.BatchGetBuildsCommand,
55
+ BatchGetProjectsCommand: BatchGetProjectsCommand_1.BatchGetProjectsCommand,
56
+ BatchGetReportGroupsCommand: BatchGetReportGroupsCommand_1.BatchGetReportGroupsCommand,
57
+ BatchGetReportsCommand: BatchGetReportsCommand_1.BatchGetReportsCommand,
58
+ CreateProjectCommand: CreateProjectCommand_1.CreateProjectCommand,
59
+ CreateReportGroupCommand: CreateReportGroupCommand_1.CreateReportGroupCommand,
60
+ CreateWebhookCommand: CreateWebhookCommand_1.CreateWebhookCommand,
61
+ DeleteBuildBatchCommand: DeleteBuildBatchCommand_1.DeleteBuildBatchCommand,
62
+ DeleteProjectCommand: DeleteProjectCommand_1.DeleteProjectCommand,
63
+ DeleteReportCommand: DeleteReportCommand_1.DeleteReportCommand,
64
+ DeleteReportGroupCommand: DeleteReportGroupCommand_1.DeleteReportGroupCommand,
65
+ DeleteResourcePolicyCommand: DeleteResourcePolicyCommand_1.DeleteResourcePolicyCommand,
66
+ DeleteSourceCredentialsCommand: DeleteSourceCredentialsCommand_1.DeleteSourceCredentialsCommand,
67
+ DeleteWebhookCommand: DeleteWebhookCommand_1.DeleteWebhookCommand,
68
+ DescribeCodeCoveragesCommand: DescribeCodeCoveragesCommand_1.DescribeCodeCoveragesCommand,
69
+ DescribeTestCasesCommand: DescribeTestCasesCommand_1.DescribeTestCasesCommand,
70
+ GetReportGroupTrendCommand: GetReportGroupTrendCommand_1.GetReportGroupTrendCommand,
71
+ GetResourcePolicyCommand: GetResourcePolicyCommand_1.GetResourcePolicyCommand,
72
+ ImportSourceCredentialsCommand: ImportSourceCredentialsCommand_1.ImportSourceCredentialsCommand,
73
+ InvalidateProjectCacheCommand: InvalidateProjectCacheCommand_1.InvalidateProjectCacheCommand,
74
+ ListBuildBatchesCommand: ListBuildBatchesCommand_1.ListBuildBatchesCommand,
75
+ ListBuildBatchesForProjectCommand: ListBuildBatchesForProjectCommand_1.ListBuildBatchesForProjectCommand,
76
+ ListBuildsCommand: ListBuildsCommand_1.ListBuildsCommand,
77
+ ListBuildsForProjectCommand: ListBuildsForProjectCommand_1.ListBuildsForProjectCommand,
78
+ ListCuratedEnvironmentImagesCommand: ListCuratedEnvironmentImagesCommand_1.ListCuratedEnvironmentImagesCommand,
79
+ ListProjectsCommand: ListProjectsCommand_1.ListProjectsCommand,
80
+ ListReportGroupsCommand: ListReportGroupsCommand_1.ListReportGroupsCommand,
81
+ ListReportsCommand: ListReportsCommand_1.ListReportsCommand,
82
+ ListReportsForReportGroupCommand: ListReportsForReportGroupCommand_1.ListReportsForReportGroupCommand,
83
+ ListSharedProjectsCommand: ListSharedProjectsCommand_1.ListSharedProjectsCommand,
84
+ ListSharedReportGroupsCommand: ListSharedReportGroupsCommand_1.ListSharedReportGroupsCommand,
85
+ ListSourceCredentialsCommand: ListSourceCredentialsCommand_1.ListSourceCredentialsCommand,
86
+ PutResourcePolicyCommand: PutResourcePolicyCommand_1.PutResourcePolicyCommand,
87
+ RetryBuildCommand: RetryBuildCommand_1.RetryBuildCommand,
88
+ RetryBuildBatchCommand: RetryBuildBatchCommand_1.RetryBuildBatchCommand,
89
+ StartBuildCommand: StartBuildCommand_1.StartBuildCommand,
90
+ StartBuildBatchCommand: StartBuildBatchCommand_1.StartBuildBatchCommand,
91
+ StopBuildCommand: StopBuildCommand_1.StopBuildCommand,
92
+ StopBuildBatchCommand: StopBuildBatchCommand_1.StopBuildBatchCommand,
93
+ UpdateProjectCommand: UpdateProjectCommand_1.UpdateProjectCommand,
94
+ UpdateProjectVisibilityCommand: UpdateProjectVisibilityCommand_1.UpdateProjectVisibilityCommand,
95
+ UpdateReportGroupCommand: UpdateReportGroupCommand_1.UpdateReportGroupCommand,
96
+ UpdateWebhookCommand: UpdateWebhookCommand_1.UpdateWebhookCommand,
97
+ };
50
98
  class CodeBuild extends CodeBuildClient_1.CodeBuildClient {
51
- batchDeleteBuilds(args, optionsOrCb, cb) {
52
- const command = new BatchDeleteBuildsCommand_1.BatchDeleteBuildsCommand(args);
53
- if (typeof optionsOrCb === "function") {
54
- this.send(command, optionsOrCb);
55
- }
56
- else if (typeof cb === "function") {
57
- if (typeof optionsOrCb !== "object")
58
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
59
- this.send(command, optionsOrCb || {}, cb);
60
- }
61
- else {
62
- return this.send(command, optionsOrCb);
63
- }
64
- }
65
- batchGetBuildBatches(args, optionsOrCb, cb) {
66
- const command = new BatchGetBuildBatchesCommand_1.BatchGetBuildBatchesCommand(args);
67
- if (typeof optionsOrCb === "function") {
68
- this.send(command, optionsOrCb);
69
- }
70
- else if (typeof cb === "function") {
71
- if (typeof optionsOrCb !== "object")
72
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
73
- this.send(command, optionsOrCb || {}, cb);
74
- }
75
- else {
76
- return this.send(command, optionsOrCb);
77
- }
78
- }
79
- batchGetBuilds(args, optionsOrCb, cb) {
80
- const command = new BatchGetBuildsCommand_1.BatchGetBuildsCommand(args);
81
- if (typeof optionsOrCb === "function") {
82
- this.send(command, optionsOrCb);
83
- }
84
- else if (typeof cb === "function") {
85
- if (typeof optionsOrCb !== "object")
86
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
87
- this.send(command, optionsOrCb || {}, cb);
88
- }
89
- else {
90
- return this.send(command, optionsOrCb);
91
- }
92
- }
93
- batchGetProjects(args, optionsOrCb, cb) {
94
- const command = new BatchGetProjectsCommand_1.BatchGetProjectsCommand(args);
95
- if (typeof optionsOrCb === "function") {
96
- this.send(command, optionsOrCb);
97
- }
98
- else if (typeof cb === "function") {
99
- if (typeof optionsOrCb !== "object")
100
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
101
- this.send(command, optionsOrCb || {}, cb);
102
- }
103
- else {
104
- return this.send(command, optionsOrCb);
105
- }
106
- }
107
- batchGetReportGroups(args, optionsOrCb, cb) {
108
- const command = new BatchGetReportGroupsCommand_1.BatchGetReportGroupsCommand(args);
109
- if (typeof optionsOrCb === "function") {
110
- this.send(command, optionsOrCb);
111
- }
112
- else if (typeof cb === "function") {
113
- if (typeof optionsOrCb !== "object")
114
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
115
- this.send(command, optionsOrCb || {}, cb);
116
- }
117
- else {
118
- return this.send(command, optionsOrCb);
119
- }
120
- }
121
- batchGetReports(args, optionsOrCb, cb) {
122
- const command = new BatchGetReportsCommand_1.BatchGetReportsCommand(args);
123
- if (typeof optionsOrCb === "function") {
124
- this.send(command, optionsOrCb);
125
- }
126
- else if (typeof cb === "function") {
127
- if (typeof optionsOrCb !== "object")
128
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
129
- this.send(command, optionsOrCb || {}, cb);
130
- }
131
- else {
132
- return this.send(command, optionsOrCb);
133
- }
134
- }
135
- createProject(args, optionsOrCb, cb) {
136
- const command = new CreateProjectCommand_1.CreateProjectCommand(args);
137
- if (typeof optionsOrCb === "function") {
138
- this.send(command, optionsOrCb);
139
- }
140
- else if (typeof cb === "function") {
141
- if (typeof optionsOrCb !== "object")
142
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
143
- this.send(command, optionsOrCb || {}, cb);
144
- }
145
- else {
146
- return this.send(command, optionsOrCb);
147
- }
148
- }
149
- createReportGroup(args, optionsOrCb, cb) {
150
- const command = new CreateReportGroupCommand_1.CreateReportGroupCommand(args);
151
- if (typeof optionsOrCb === "function") {
152
- this.send(command, optionsOrCb);
153
- }
154
- else if (typeof cb === "function") {
155
- if (typeof optionsOrCb !== "object")
156
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
157
- this.send(command, optionsOrCb || {}, cb);
158
- }
159
- else {
160
- return this.send(command, optionsOrCb);
161
- }
162
- }
163
- createWebhook(args, optionsOrCb, cb) {
164
- const command = new CreateWebhookCommand_1.CreateWebhookCommand(args);
165
- if (typeof optionsOrCb === "function") {
166
- this.send(command, optionsOrCb);
167
- }
168
- else if (typeof cb === "function") {
169
- if (typeof optionsOrCb !== "object")
170
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
171
- this.send(command, optionsOrCb || {}, cb);
172
- }
173
- else {
174
- return this.send(command, optionsOrCb);
175
- }
176
- }
177
- deleteBuildBatch(args, optionsOrCb, cb) {
178
- const command = new DeleteBuildBatchCommand_1.DeleteBuildBatchCommand(args);
179
- if (typeof optionsOrCb === "function") {
180
- this.send(command, optionsOrCb);
181
- }
182
- else if (typeof cb === "function") {
183
- if (typeof optionsOrCb !== "object")
184
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
185
- this.send(command, optionsOrCb || {}, cb);
186
- }
187
- else {
188
- return this.send(command, optionsOrCb);
189
- }
190
- }
191
- deleteProject(args, optionsOrCb, cb) {
192
- const command = new DeleteProjectCommand_1.DeleteProjectCommand(args);
193
- if (typeof optionsOrCb === "function") {
194
- this.send(command, optionsOrCb);
195
- }
196
- else if (typeof cb === "function") {
197
- if (typeof optionsOrCb !== "object")
198
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
199
- this.send(command, optionsOrCb || {}, cb);
200
- }
201
- else {
202
- return this.send(command, optionsOrCb);
203
- }
204
- }
205
- deleteReport(args, optionsOrCb, cb) {
206
- const command = new DeleteReportCommand_1.DeleteReportCommand(args);
207
- if (typeof optionsOrCb === "function") {
208
- this.send(command, optionsOrCb);
209
- }
210
- else if (typeof cb === "function") {
211
- if (typeof optionsOrCb !== "object")
212
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
213
- this.send(command, optionsOrCb || {}, cb);
214
- }
215
- else {
216
- return this.send(command, optionsOrCb);
217
- }
218
- }
219
- deleteReportGroup(args, optionsOrCb, cb) {
220
- const command = new DeleteReportGroupCommand_1.DeleteReportGroupCommand(args);
221
- if (typeof optionsOrCb === "function") {
222
- this.send(command, optionsOrCb);
223
- }
224
- else if (typeof cb === "function") {
225
- if (typeof optionsOrCb !== "object")
226
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
227
- this.send(command, optionsOrCb || {}, cb);
228
- }
229
- else {
230
- return this.send(command, optionsOrCb);
231
- }
232
- }
233
- deleteResourcePolicy(args, optionsOrCb, cb) {
234
- const command = new DeleteResourcePolicyCommand_1.DeleteResourcePolicyCommand(args);
235
- if (typeof optionsOrCb === "function") {
236
- this.send(command, optionsOrCb);
237
- }
238
- else if (typeof cb === "function") {
239
- if (typeof optionsOrCb !== "object")
240
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
241
- this.send(command, optionsOrCb || {}, cb);
242
- }
243
- else {
244
- return this.send(command, optionsOrCb);
245
- }
246
- }
247
- deleteSourceCredentials(args, optionsOrCb, cb) {
248
- const command = new DeleteSourceCredentialsCommand_1.DeleteSourceCredentialsCommand(args);
249
- if (typeof optionsOrCb === "function") {
250
- this.send(command, optionsOrCb);
251
- }
252
- else if (typeof cb === "function") {
253
- if (typeof optionsOrCb !== "object")
254
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
255
- this.send(command, optionsOrCb || {}, cb);
256
- }
257
- else {
258
- return this.send(command, optionsOrCb);
259
- }
260
- }
261
- deleteWebhook(args, optionsOrCb, cb) {
262
- const command = new DeleteWebhookCommand_1.DeleteWebhookCommand(args);
263
- if (typeof optionsOrCb === "function") {
264
- this.send(command, optionsOrCb);
265
- }
266
- else if (typeof cb === "function") {
267
- if (typeof optionsOrCb !== "object")
268
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
269
- this.send(command, optionsOrCb || {}, cb);
270
- }
271
- else {
272
- return this.send(command, optionsOrCb);
273
- }
274
- }
275
- describeCodeCoverages(args, optionsOrCb, cb) {
276
- const command = new DescribeCodeCoveragesCommand_1.DescribeCodeCoveragesCommand(args);
277
- if (typeof optionsOrCb === "function") {
278
- this.send(command, optionsOrCb);
279
- }
280
- else if (typeof cb === "function") {
281
- if (typeof optionsOrCb !== "object")
282
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
283
- this.send(command, optionsOrCb || {}, cb);
284
- }
285
- else {
286
- return this.send(command, optionsOrCb);
287
- }
288
- }
289
- describeTestCases(args, optionsOrCb, cb) {
290
- const command = new DescribeTestCasesCommand_1.DescribeTestCasesCommand(args);
291
- if (typeof optionsOrCb === "function") {
292
- this.send(command, optionsOrCb);
293
- }
294
- else if (typeof cb === "function") {
295
- if (typeof optionsOrCb !== "object")
296
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
297
- this.send(command, optionsOrCb || {}, cb);
298
- }
299
- else {
300
- return this.send(command, optionsOrCb);
301
- }
302
- }
303
- getReportGroupTrend(args, optionsOrCb, cb) {
304
- const command = new GetReportGroupTrendCommand_1.GetReportGroupTrendCommand(args);
305
- if (typeof optionsOrCb === "function") {
306
- this.send(command, optionsOrCb);
307
- }
308
- else if (typeof cb === "function") {
309
- if (typeof optionsOrCb !== "object")
310
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
311
- this.send(command, optionsOrCb || {}, cb);
312
- }
313
- else {
314
- return this.send(command, optionsOrCb);
315
- }
316
- }
317
- getResourcePolicy(args, optionsOrCb, cb) {
318
- const command = new GetResourcePolicyCommand_1.GetResourcePolicyCommand(args);
319
- if (typeof optionsOrCb === "function") {
320
- this.send(command, optionsOrCb);
321
- }
322
- else if (typeof cb === "function") {
323
- if (typeof optionsOrCb !== "object")
324
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
325
- this.send(command, optionsOrCb || {}, cb);
326
- }
327
- else {
328
- return this.send(command, optionsOrCb);
329
- }
330
- }
331
- importSourceCredentials(args, optionsOrCb, cb) {
332
- const command = new ImportSourceCredentialsCommand_1.ImportSourceCredentialsCommand(args);
333
- if (typeof optionsOrCb === "function") {
334
- this.send(command, optionsOrCb);
335
- }
336
- else if (typeof cb === "function") {
337
- if (typeof optionsOrCb !== "object")
338
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
339
- this.send(command, optionsOrCb || {}, cb);
340
- }
341
- else {
342
- return this.send(command, optionsOrCb);
343
- }
344
- }
345
- invalidateProjectCache(args, optionsOrCb, cb) {
346
- const command = new InvalidateProjectCacheCommand_1.InvalidateProjectCacheCommand(args);
347
- if (typeof optionsOrCb === "function") {
348
- this.send(command, optionsOrCb);
349
- }
350
- else if (typeof cb === "function") {
351
- if (typeof optionsOrCb !== "object")
352
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
353
- this.send(command, optionsOrCb || {}, cb);
354
- }
355
- else {
356
- return this.send(command, optionsOrCb);
357
- }
358
- }
359
- listBuildBatches(args, optionsOrCb, cb) {
360
- const command = new ListBuildBatchesCommand_1.ListBuildBatchesCommand(args);
361
- if (typeof optionsOrCb === "function") {
362
- this.send(command, optionsOrCb);
363
- }
364
- else if (typeof cb === "function") {
365
- if (typeof optionsOrCb !== "object")
366
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
367
- this.send(command, optionsOrCb || {}, cb);
368
- }
369
- else {
370
- return this.send(command, optionsOrCb);
371
- }
372
- }
373
- listBuildBatchesForProject(args, optionsOrCb, cb) {
374
- const command = new ListBuildBatchesForProjectCommand_1.ListBuildBatchesForProjectCommand(args);
375
- if (typeof optionsOrCb === "function") {
376
- this.send(command, optionsOrCb);
377
- }
378
- else if (typeof cb === "function") {
379
- if (typeof optionsOrCb !== "object")
380
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
381
- this.send(command, optionsOrCb || {}, cb);
382
- }
383
- else {
384
- return this.send(command, optionsOrCb);
385
- }
386
- }
387
- listBuilds(args, optionsOrCb, cb) {
388
- const command = new ListBuildsCommand_1.ListBuildsCommand(args);
389
- if (typeof optionsOrCb === "function") {
390
- this.send(command, optionsOrCb);
391
- }
392
- else if (typeof cb === "function") {
393
- if (typeof optionsOrCb !== "object")
394
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
395
- this.send(command, optionsOrCb || {}, cb);
396
- }
397
- else {
398
- return this.send(command, optionsOrCb);
399
- }
400
- }
401
- listBuildsForProject(args, optionsOrCb, cb) {
402
- const command = new ListBuildsForProjectCommand_1.ListBuildsForProjectCommand(args);
403
- if (typeof optionsOrCb === "function") {
404
- this.send(command, optionsOrCb);
405
- }
406
- else if (typeof cb === "function") {
407
- if (typeof optionsOrCb !== "object")
408
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
409
- this.send(command, optionsOrCb || {}, cb);
410
- }
411
- else {
412
- return this.send(command, optionsOrCb);
413
- }
414
- }
415
- listCuratedEnvironmentImages(args, optionsOrCb, cb) {
416
- const command = new ListCuratedEnvironmentImagesCommand_1.ListCuratedEnvironmentImagesCommand(args);
417
- if (typeof optionsOrCb === "function") {
418
- this.send(command, optionsOrCb);
419
- }
420
- else if (typeof cb === "function") {
421
- if (typeof optionsOrCb !== "object")
422
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
423
- this.send(command, optionsOrCb || {}, cb);
424
- }
425
- else {
426
- return this.send(command, optionsOrCb);
427
- }
428
- }
429
- listProjects(args, optionsOrCb, cb) {
430
- const command = new ListProjectsCommand_1.ListProjectsCommand(args);
431
- if (typeof optionsOrCb === "function") {
432
- this.send(command, optionsOrCb);
433
- }
434
- else if (typeof cb === "function") {
435
- if (typeof optionsOrCb !== "object")
436
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
437
- this.send(command, optionsOrCb || {}, cb);
438
- }
439
- else {
440
- return this.send(command, optionsOrCb);
441
- }
442
- }
443
- listReportGroups(args, optionsOrCb, cb) {
444
- const command = new ListReportGroupsCommand_1.ListReportGroupsCommand(args);
445
- if (typeof optionsOrCb === "function") {
446
- this.send(command, optionsOrCb);
447
- }
448
- else if (typeof cb === "function") {
449
- if (typeof optionsOrCb !== "object")
450
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
451
- this.send(command, optionsOrCb || {}, cb);
452
- }
453
- else {
454
- return this.send(command, optionsOrCb);
455
- }
456
- }
457
- listReports(args, optionsOrCb, cb) {
458
- const command = new ListReportsCommand_1.ListReportsCommand(args);
459
- if (typeof optionsOrCb === "function") {
460
- this.send(command, optionsOrCb);
461
- }
462
- else if (typeof cb === "function") {
463
- if (typeof optionsOrCb !== "object")
464
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
465
- this.send(command, optionsOrCb || {}, cb);
466
- }
467
- else {
468
- return this.send(command, optionsOrCb);
469
- }
470
- }
471
- listReportsForReportGroup(args, optionsOrCb, cb) {
472
- const command = new ListReportsForReportGroupCommand_1.ListReportsForReportGroupCommand(args);
473
- if (typeof optionsOrCb === "function") {
474
- this.send(command, optionsOrCb);
475
- }
476
- else if (typeof cb === "function") {
477
- if (typeof optionsOrCb !== "object")
478
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
479
- this.send(command, optionsOrCb || {}, cb);
480
- }
481
- else {
482
- return this.send(command, optionsOrCb);
483
- }
484
- }
485
- listSharedProjects(args, optionsOrCb, cb) {
486
- const command = new ListSharedProjectsCommand_1.ListSharedProjectsCommand(args);
487
- if (typeof optionsOrCb === "function") {
488
- this.send(command, optionsOrCb);
489
- }
490
- else if (typeof cb === "function") {
491
- if (typeof optionsOrCb !== "object")
492
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
493
- this.send(command, optionsOrCb || {}, cb);
494
- }
495
- else {
496
- return this.send(command, optionsOrCb);
497
- }
498
- }
499
- listSharedReportGroups(args, optionsOrCb, cb) {
500
- const command = new ListSharedReportGroupsCommand_1.ListSharedReportGroupsCommand(args);
501
- if (typeof optionsOrCb === "function") {
502
- this.send(command, optionsOrCb);
503
- }
504
- else if (typeof cb === "function") {
505
- if (typeof optionsOrCb !== "object")
506
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
507
- this.send(command, optionsOrCb || {}, cb);
508
- }
509
- else {
510
- return this.send(command, optionsOrCb);
511
- }
512
- }
513
- listSourceCredentials(args, optionsOrCb, cb) {
514
- const command = new ListSourceCredentialsCommand_1.ListSourceCredentialsCommand(args);
515
- if (typeof optionsOrCb === "function") {
516
- this.send(command, optionsOrCb);
517
- }
518
- else if (typeof cb === "function") {
519
- if (typeof optionsOrCb !== "object")
520
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
521
- this.send(command, optionsOrCb || {}, cb);
522
- }
523
- else {
524
- return this.send(command, optionsOrCb);
525
- }
526
- }
527
- putResourcePolicy(args, optionsOrCb, cb) {
528
- const command = new PutResourcePolicyCommand_1.PutResourcePolicyCommand(args);
529
- if (typeof optionsOrCb === "function") {
530
- this.send(command, optionsOrCb);
531
- }
532
- else if (typeof cb === "function") {
533
- if (typeof optionsOrCb !== "object")
534
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
535
- this.send(command, optionsOrCb || {}, cb);
536
- }
537
- else {
538
- return this.send(command, optionsOrCb);
539
- }
540
- }
541
- retryBuild(args, optionsOrCb, cb) {
542
- const command = new RetryBuildCommand_1.RetryBuildCommand(args);
543
- if (typeof optionsOrCb === "function") {
544
- this.send(command, optionsOrCb);
545
- }
546
- else if (typeof cb === "function") {
547
- if (typeof optionsOrCb !== "object")
548
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
549
- this.send(command, optionsOrCb || {}, cb);
550
- }
551
- else {
552
- return this.send(command, optionsOrCb);
553
- }
554
- }
555
- retryBuildBatch(args, optionsOrCb, cb) {
556
- const command = new RetryBuildBatchCommand_1.RetryBuildBatchCommand(args);
557
- if (typeof optionsOrCb === "function") {
558
- this.send(command, optionsOrCb);
559
- }
560
- else if (typeof cb === "function") {
561
- if (typeof optionsOrCb !== "object")
562
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
563
- this.send(command, optionsOrCb || {}, cb);
564
- }
565
- else {
566
- return this.send(command, optionsOrCb);
567
- }
568
- }
569
- startBuild(args, optionsOrCb, cb) {
570
- const command = new StartBuildCommand_1.StartBuildCommand(args);
571
- if (typeof optionsOrCb === "function") {
572
- this.send(command, optionsOrCb);
573
- }
574
- else if (typeof cb === "function") {
575
- if (typeof optionsOrCb !== "object")
576
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
577
- this.send(command, optionsOrCb || {}, cb);
578
- }
579
- else {
580
- return this.send(command, optionsOrCb);
581
- }
582
- }
583
- startBuildBatch(args, optionsOrCb, cb) {
584
- const command = new StartBuildBatchCommand_1.StartBuildBatchCommand(args);
585
- if (typeof optionsOrCb === "function") {
586
- this.send(command, optionsOrCb);
587
- }
588
- else if (typeof cb === "function") {
589
- if (typeof optionsOrCb !== "object")
590
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
591
- this.send(command, optionsOrCb || {}, cb);
592
- }
593
- else {
594
- return this.send(command, optionsOrCb);
595
- }
596
- }
597
- stopBuild(args, optionsOrCb, cb) {
598
- const command = new StopBuildCommand_1.StopBuildCommand(args);
599
- if (typeof optionsOrCb === "function") {
600
- this.send(command, optionsOrCb);
601
- }
602
- else if (typeof cb === "function") {
603
- if (typeof optionsOrCb !== "object")
604
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
605
- this.send(command, optionsOrCb || {}, cb);
606
- }
607
- else {
608
- return this.send(command, optionsOrCb);
609
- }
610
- }
611
- stopBuildBatch(args, optionsOrCb, cb) {
612
- const command = new StopBuildBatchCommand_1.StopBuildBatchCommand(args);
613
- if (typeof optionsOrCb === "function") {
614
- this.send(command, optionsOrCb);
615
- }
616
- else if (typeof cb === "function") {
617
- if (typeof optionsOrCb !== "object")
618
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
619
- this.send(command, optionsOrCb || {}, cb);
620
- }
621
- else {
622
- return this.send(command, optionsOrCb);
623
- }
624
- }
625
- updateProject(args, optionsOrCb, cb) {
626
- const command = new UpdateProjectCommand_1.UpdateProjectCommand(args);
627
- if (typeof optionsOrCb === "function") {
628
- this.send(command, optionsOrCb);
629
- }
630
- else if (typeof cb === "function") {
631
- if (typeof optionsOrCb !== "object")
632
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
633
- this.send(command, optionsOrCb || {}, cb);
634
- }
635
- else {
636
- return this.send(command, optionsOrCb);
637
- }
638
- }
639
- updateProjectVisibility(args, optionsOrCb, cb) {
640
- const command = new UpdateProjectVisibilityCommand_1.UpdateProjectVisibilityCommand(args);
641
- if (typeof optionsOrCb === "function") {
642
- this.send(command, optionsOrCb);
643
- }
644
- else if (typeof cb === "function") {
645
- if (typeof optionsOrCb !== "object")
646
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
647
- this.send(command, optionsOrCb || {}, cb);
648
- }
649
- else {
650
- return this.send(command, optionsOrCb);
651
- }
652
- }
653
- updateReportGroup(args, optionsOrCb, cb) {
654
- const command = new UpdateReportGroupCommand_1.UpdateReportGroupCommand(args);
655
- if (typeof optionsOrCb === "function") {
656
- this.send(command, optionsOrCb);
657
- }
658
- else if (typeof cb === "function") {
659
- if (typeof optionsOrCb !== "object")
660
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
661
- this.send(command, optionsOrCb || {}, cb);
662
- }
663
- else {
664
- return this.send(command, optionsOrCb);
665
- }
666
- }
667
- updateWebhook(args, optionsOrCb, cb) {
668
- const command = new UpdateWebhookCommand_1.UpdateWebhookCommand(args);
669
- if (typeof optionsOrCb === "function") {
670
- this.send(command, optionsOrCb);
671
- }
672
- else if (typeof cb === "function") {
673
- if (typeof optionsOrCb !== "object")
674
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
675
- this.send(command, optionsOrCb || {}, cb);
676
- }
677
- else {
678
- return this.send(command, optionsOrCb);
679
- }
680
- }
681
99
  }
682
100
  exports.CodeBuild = CodeBuild;
101
+ (0, smithy_client_1.createAggregatedClient)(commands, CodeBuild);