@aws-sdk/client-codebuild 3.782.0 → 3.784.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 (56) hide show
  1. package/README.md +72 -0
  2. package/dist-cjs/index.js +558 -1
  3. package/dist-es/CodeBuild.js +18 -0
  4. package/dist-es/commands/BatchGetCommandExecutionsCommand.js +23 -0
  5. package/dist-es/commands/BatchGetSandboxesCommand.js +22 -0
  6. package/dist-es/commands/ListCommandExecutionsForSandboxCommand.js +23 -0
  7. package/dist-es/commands/ListSandboxesCommand.js +22 -0
  8. package/dist-es/commands/ListSandboxesForProjectCommand.js +23 -0
  9. package/dist-es/commands/StartCommandExecutionCommand.js +23 -0
  10. package/dist-es/commands/StartSandboxCommand.js +23 -0
  11. package/dist-es/commands/StartSandboxConnectionCommand.js +22 -0
  12. package/dist-es/commands/StopSandboxCommand.js +22 -0
  13. package/dist-es/commands/index.js +9 -0
  14. package/dist-es/models/models_0.js +53 -0
  15. package/dist-es/pagination/ListCommandExecutionsForSandboxPaginator.js +4 -0
  16. package/dist-es/pagination/ListSandboxesForProjectPaginator.js +4 -0
  17. package/dist-es/pagination/ListSandboxesPaginator.js +4 -0
  18. package/dist-es/pagination/index.js +3 -0
  19. package/dist-es/protocols/Aws_json1_1.js +305 -1
  20. package/dist-types/CodeBuild.d.ts +65 -0
  21. package/dist-types/CodeBuildClient.d.ts +11 -2
  22. package/dist-types/commands/BatchGetCommandExecutionsCommand.d.ts +115 -0
  23. package/dist-types/commands/BatchGetSandboxesCommand.d.ts +248 -0
  24. package/dist-types/commands/ListCommandExecutionsForSandboxCommand.d.ts +116 -0
  25. package/dist-types/commands/ListSandboxesCommand.d.ts +80 -0
  26. package/dist-types/commands/ListSandboxesForProjectCommand.d.ts +84 -0
  27. package/dist-types/commands/StartCommandExecutionCommand.d.ts +112 -0
  28. package/dist-types/commands/StartSandboxCommand.d.ts +248 -0
  29. package/dist-types/commands/StartSandboxConnectionCommand.d.ts +82 -0
  30. package/dist-types/commands/StopSandboxCommand.d.ts +244 -0
  31. package/dist-types/commands/index.d.ts +9 -0
  32. package/dist-types/models/models_0.d.ts +639 -0
  33. package/dist-types/pagination/ListCommandExecutionsForSandboxPaginator.d.ts +7 -0
  34. package/dist-types/pagination/ListSandboxesForProjectPaginator.d.ts +7 -0
  35. package/dist-types/pagination/ListSandboxesPaginator.d.ts +7 -0
  36. package/dist-types/pagination/index.d.ts +3 -0
  37. package/dist-types/protocols/Aws_json1_1.d.ts +81 -0
  38. package/dist-types/ts3.4/CodeBuild.d.ts +155 -0
  39. package/dist-types/ts3.4/CodeBuildClient.d.ts +54 -0
  40. package/dist-types/ts3.4/commands/BatchGetCommandExecutionsCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/BatchGetSandboxesCommand.d.ts +50 -0
  42. package/dist-types/ts3.4/commands/ListCommandExecutionsForSandboxCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/ListSandboxesCommand.d.ts +47 -0
  44. package/dist-types/ts3.4/commands/ListSandboxesForProjectCommand.d.ts +51 -0
  45. package/dist-types/ts3.4/commands/StartCommandExecutionCommand.d.ts +51 -0
  46. package/dist-types/ts3.4/commands/StartSandboxCommand.d.ts +47 -0
  47. package/dist-types/ts3.4/commands/StartSandboxConnectionCommand.d.ts +51 -0
  48. package/dist-types/ts3.4/commands/StopSandboxCommand.d.ts +47 -0
  49. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  50. package/dist-types/ts3.4/models/models_0.d.ts +167 -0
  51. package/dist-types/ts3.4/pagination/ListCommandExecutionsForSandboxPaginator.d.ts +11 -0
  52. package/dist-types/ts3.4/pagination/ListSandboxesForProjectPaginator.d.ts +11 -0
  53. package/dist-types/ts3.4/pagination/ListSandboxesPaginator.d.ts +11 -0
  54. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  55. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +108 -0
  56. package/package.json +1 -1
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListSandboxesCommandInput,
4
+ ListSandboxesCommandOutput,
5
+ } from "../commands/ListSandboxesCommand";
6
+ import { CodeBuildPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListSandboxes: (
8
+ config: CodeBuildPaginationConfiguration,
9
+ input: ListSandboxesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListSandboxesCommandOutput>;
@@ -5,10 +5,13 @@ export * from "./ListBuildBatchesForProjectPaginator";
5
5
  export * from "./ListBuildBatchesPaginator";
6
6
  export * from "./ListBuildsForProjectPaginator";
7
7
  export * from "./ListBuildsPaginator";
8
+ export * from "./ListCommandExecutionsForSandboxPaginator";
8
9
  export * from "./ListFleetsPaginator";
9
10
  export * from "./ListProjectsPaginator";
10
11
  export * from "./ListReportGroupsPaginator";
11
12
  export * from "./ListReportsForReportGroupPaginator";
12
13
  export * from "./ListReportsPaginator";
14
+ export * from "./ListSandboxesForProjectPaginator";
15
+ export * from "./ListSandboxesPaginator";
13
16
  export * from "./ListSharedProjectsPaginator";
14
17
  export * from "./ListSharedReportGroupsPaginator";
@@ -15,6 +15,10 @@ import {
15
15
  BatchGetBuildsCommandInput,
16
16
  BatchGetBuildsCommandOutput,
17
17
  } from "../commands/BatchGetBuildsCommand";
18
+ import {
19
+ BatchGetCommandExecutionsCommandInput,
20
+ BatchGetCommandExecutionsCommandOutput,
21
+ } from "../commands/BatchGetCommandExecutionsCommand";
18
22
  import {
19
23
  BatchGetFleetsCommandInput,
20
24
  BatchGetFleetsCommandOutput,
@@ -31,6 +35,10 @@ import {
31
35
  BatchGetReportsCommandInput,
32
36
  BatchGetReportsCommandOutput,
33
37
  } from "../commands/BatchGetReportsCommand";
38
+ import {
39
+ BatchGetSandboxesCommandInput,
40
+ BatchGetSandboxesCommandOutput,
41
+ } from "../commands/BatchGetSandboxesCommand";
34
42
  import {
35
43
  CreateFleetCommandInput,
36
44
  CreateFleetCommandOutput,
@@ -119,6 +127,10 @@ import {
119
127
  ListBuildsForProjectCommandInput,
120
128
  ListBuildsForProjectCommandOutput,
121
129
  } from "../commands/ListBuildsForProjectCommand";
130
+ import {
131
+ ListCommandExecutionsForSandboxCommandInput,
132
+ ListCommandExecutionsForSandboxCommandOutput,
133
+ } from "../commands/ListCommandExecutionsForSandboxCommand";
122
134
  import {
123
135
  ListCuratedEnvironmentImagesCommandInput,
124
136
  ListCuratedEnvironmentImagesCommandOutput,
@@ -143,6 +155,14 @@ import {
143
155
  ListReportsForReportGroupCommandInput,
144
156
  ListReportsForReportGroupCommandOutput,
145
157
  } from "../commands/ListReportsForReportGroupCommand";
158
+ import {
159
+ ListSandboxesCommandInput,
160
+ ListSandboxesCommandOutput,
161
+ } from "../commands/ListSandboxesCommand";
162
+ import {
163
+ ListSandboxesForProjectCommandInput,
164
+ ListSandboxesForProjectCommandOutput,
165
+ } from "../commands/ListSandboxesForProjectCommand";
146
166
  import {
147
167
  ListSharedProjectsCommandInput,
148
168
  ListSharedProjectsCommandOutput,
@@ -175,6 +195,18 @@ import {
175
195
  StartBuildCommandInput,
176
196
  StartBuildCommandOutput,
177
197
  } from "../commands/StartBuildCommand";
198
+ import {
199
+ StartCommandExecutionCommandInput,
200
+ StartCommandExecutionCommandOutput,
201
+ } from "../commands/StartCommandExecutionCommand";
202
+ import {
203
+ StartSandboxCommandInput,
204
+ StartSandboxCommandOutput,
205
+ } from "../commands/StartSandboxCommand";
206
+ import {
207
+ StartSandboxConnectionCommandInput,
208
+ StartSandboxConnectionCommandOutput,
209
+ } from "../commands/StartSandboxConnectionCommand";
178
210
  import {
179
211
  StopBuildBatchCommandInput,
180
212
  StopBuildBatchCommandOutput,
@@ -183,6 +215,10 @@ import {
183
215
  StopBuildCommandInput,
184
216
  StopBuildCommandOutput,
185
217
  } from "../commands/StopBuildCommand";
218
+ import {
219
+ StopSandboxCommandInput,
220
+ StopSandboxCommandOutput,
221
+ } from "../commands/StopSandboxCommand";
186
222
  import {
187
223
  UpdateFleetCommandInput,
188
224
  UpdateFleetCommandOutput,
@@ -215,6 +251,10 @@ export declare const se_BatchGetBuildsCommand: (
215
251
  input: BatchGetBuildsCommandInput,
216
252
  context: __SerdeContext
217
253
  ) => Promise<__HttpRequest>;
254
+ export declare const se_BatchGetCommandExecutionsCommand: (
255
+ input: BatchGetCommandExecutionsCommandInput,
256
+ context: __SerdeContext
257
+ ) => Promise<__HttpRequest>;
218
258
  export declare const se_BatchGetFleetsCommand: (
219
259
  input: BatchGetFleetsCommandInput,
220
260
  context: __SerdeContext
@@ -231,6 +271,10 @@ export declare const se_BatchGetReportsCommand: (
231
271
  input: BatchGetReportsCommandInput,
232
272
  context: __SerdeContext
233
273
  ) => Promise<__HttpRequest>;
274
+ export declare const se_BatchGetSandboxesCommand: (
275
+ input: BatchGetSandboxesCommandInput,
276
+ context: __SerdeContext
277
+ ) => Promise<__HttpRequest>;
234
278
  export declare const se_CreateFleetCommand: (
235
279
  input: CreateFleetCommandInput,
236
280
  context: __SerdeContext
@@ -319,6 +363,10 @@ export declare const se_ListBuildsForProjectCommand: (
319
363
  input: ListBuildsForProjectCommandInput,
320
364
  context: __SerdeContext
321
365
  ) => Promise<__HttpRequest>;
366
+ export declare const se_ListCommandExecutionsForSandboxCommand: (
367
+ input: ListCommandExecutionsForSandboxCommandInput,
368
+ context: __SerdeContext
369
+ ) => Promise<__HttpRequest>;
322
370
  export declare const se_ListCuratedEnvironmentImagesCommand: (
323
371
  input: ListCuratedEnvironmentImagesCommandInput,
324
372
  context: __SerdeContext
@@ -343,6 +391,14 @@ export declare const se_ListReportsForReportGroupCommand: (
343
391
  input: ListReportsForReportGroupCommandInput,
344
392
  context: __SerdeContext
345
393
  ) => Promise<__HttpRequest>;
394
+ export declare const se_ListSandboxesCommand: (
395
+ input: ListSandboxesCommandInput,
396
+ context: __SerdeContext
397
+ ) => Promise<__HttpRequest>;
398
+ export declare const se_ListSandboxesForProjectCommand: (
399
+ input: ListSandboxesForProjectCommandInput,
400
+ context: __SerdeContext
401
+ ) => Promise<__HttpRequest>;
346
402
  export declare const se_ListSharedProjectsCommand: (
347
403
  input: ListSharedProjectsCommandInput,
348
404
  context: __SerdeContext
@@ -375,6 +431,18 @@ export declare const se_StartBuildBatchCommand: (
375
431
  input: StartBuildBatchCommandInput,
376
432
  context: __SerdeContext
377
433
  ) => Promise<__HttpRequest>;
434
+ export declare const se_StartCommandExecutionCommand: (
435
+ input: StartCommandExecutionCommandInput,
436
+ context: __SerdeContext
437
+ ) => Promise<__HttpRequest>;
438
+ export declare const se_StartSandboxCommand: (
439
+ input: StartSandboxCommandInput,
440
+ context: __SerdeContext
441
+ ) => Promise<__HttpRequest>;
442
+ export declare const se_StartSandboxConnectionCommand: (
443
+ input: StartSandboxConnectionCommandInput,
444
+ context: __SerdeContext
445
+ ) => Promise<__HttpRequest>;
378
446
  export declare const se_StopBuildCommand: (
379
447
  input: StopBuildCommandInput,
380
448
  context: __SerdeContext
@@ -383,6 +451,10 @@ export declare const se_StopBuildBatchCommand: (
383
451
  input: StopBuildBatchCommandInput,
384
452
  context: __SerdeContext
385
453
  ) => Promise<__HttpRequest>;
454
+ export declare const se_StopSandboxCommand: (
455
+ input: StopSandboxCommandInput,
456
+ context: __SerdeContext
457
+ ) => Promise<__HttpRequest>;
386
458
  export declare const se_UpdateFleetCommand: (
387
459
  input: UpdateFleetCommandInput,
388
460
  context: __SerdeContext
@@ -415,6 +487,10 @@ export declare const de_BatchGetBuildsCommand: (
415
487
  output: __HttpResponse,
416
488
  context: __SerdeContext
417
489
  ) => Promise<BatchGetBuildsCommandOutput>;
490
+ export declare const de_BatchGetCommandExecutionsCommand: (
491
+ output: __HttpResponse,
492
+ context: __SerdeContext
493
+ ) => Promise<BatchGetCommandExecutionsCommandOutput>;
418
494
  export declare const de_BatchGetFleetsCommand: (
419
495
  output: __HttpResponse,
420
496
  context: __SerdeContext
@@ -431,6 +507,10 @@ export declare const de_BatchGetReportsCommand: (
431
507
  output: __HttpResponse,
432
508
  context: __SerdeContext
433
509
  ) => Promise<BatchGetReportsCommandOutput>;
510
+ export declare const de_BatchGetSandboxesCommand: (
511
+ output: __HttpResponse,
512
+ context: __SerdeContext
513
+ ) => Promise<BatchGetSandboxesCommandOutput>;
434
514
  export declare const de_CreateFleetCommand: (
435
515
  output: __HttpResponse,
436
516
  context: __SerdeContext
@@ -519,6 +599,10 @@ export declare const de_ListBuildsForProjectCommand: (
519
599
  output: __HttpResponse,
520
600
  context: __SerdeContext
521
601
  ) => Promise<ListBuildsForProjectCommandOutput>;
602
+ export declare const de_ListCommandExecutionsForSandboxCommand: (
603
+ output: __HttpResponse,
604
+ context: __SerdeContext
605
+ ) => Promise<ListCommandExecutionsForSandboxCommandOutput>;
522
606
  export declare const de_ListCuratedEnvironmentImagesCommand: (
523
607
  output: __HttpResponse,
524
608
  context: __SerdeContext
@@ -543,6 +627,14 @@ export declare const de_ListReportsForReportGroupCommand: (
543
627
  output: __HttpResponse,
544
628
  context: __SerdeContext
545
629
  ) => Promise<ListReportsForReportGroupCommandOutput>;
630
+ export declare const de_ListSandboxesCommand: (
631
+ output: __HttpResponse,
632
+ context: __SerdeContext
633
+ ) => Promise<ListSandboxesCommandOutput>;
634
+ export declare const de_ListSandboxesForProjectCommand: (
635
+ output: __HttpResponse,
636
+ context: __SerdeContext
637
+ ) => Promise<ListSandboxesForProjectCommandOutput>;
546
638
  export declare const de_ListSharedProjectsCommand: (
547
639
  output: __HttpResponse,
548
640
  context: __SerdeContext
@@ -575,6 +667,18 @@ export declare const de_StartBuildBatchCommand: (
575
667
  output: __HttpResponse,
576
668
  context: __SerdeContext
577
669
  ) => Promise<StartBuildBatchCommandOutput>;
670
+ export declare const de_StartCommandExecutionCommand: (
671
+ output: __HttpResponse,
672
+ context: __SerdeContext
673
+ ) => Promise<StartCommandExecutionCommandOutput>;
674
+ export declare const de_StartSandboxCommand: (
675
+ output: __HttpResponse,
676
+ context: __SerdeContext
677
+ ) => Promise<StartSandboxCommandOutput>;
678
+ export declare const de_StartSandboxConnectionCommand: (
679
+ output: __HttpResponse,
680
+ context: __SerdeContext
681
+ ) => Promise<StartSandboxConnectionCommandOutput>;
578
682
  export declare const de_StopBuildCommand: (
579
683
  output: __HttpResponse,
580
684
  context: __SerdeContext
@@ -583,6 +687,10 @@ export declare const de_StopBuildBatchCommand: (
583
687
  output: __HttpResponse,
584
688
  context: __SerdeContext
585
689
  ) => Promise<StopBuildBatchCommandOutput>;
690
+ export declare const de_StopSandboxCommand: (
691
+ output: __HttpResponse,
692
+ context: __SerdeContext
693
+ ) => Promise<StopSandboxCommandOutput>;
586
694
  export declare const de_UpdateFleetCommand: (
587
695
  output: __HttpResponse,
588
696
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codebuild",
3
3
  "description": "AWS SDK for JavaScript Codebuild Client for Node.js, Browser and React Native",
4
- "version": "3.782.0",
4
+ "version": "3.784.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-codebuild",