@aws-sdk/client-codebuild 3.781.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.
- package/README.md +72 -0
- package/dist-cjs/index.js +558 -1
- package/dist-es/CodeBuild.js +18 -0
- package/dist-es/commands/BatchGetCommandExecutionsCommand.js +23 -0
- package/dist-es/commands/BatchGetSandboxesCommand.js +22 -0
- package/dist-es/commands/ListCommandExecutionsForSandboxCommand.js +23 -0
- package/dist-es/commands/ListSandboxesCommand.js +22 -0
- package/dist-es/commands/ListSandboxesForProjectCommand.js +23 -0
- package/dist-es/commands/StartCommandExecutionCommand.js +23 -0
- package/dist-es/commands/StartSandboxCommand.js +23 -0
- package/dist-es/commands/StartSandboxConnectionCommand.js +22 -0
- package/dist-es/commands/StopSandboxCommand.js +22 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +53 -0
- package/dist-es/pagination/ListCommandExecutionsForSandboxPaginator.js +4 -0
- package/dist-es/pagination/ListSandboxesForProjectPaginator.js +4 -0
- package/dist-es/pagination/ListSandboxesPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_json1_1.js +305 -1
- package/dist-types/CodeBuild.d.ts +65 -0
- package/dist-types/CodeBuildClient.d.ts +11 -2
- package/dist-types/commands/BatchGetCommandExecutionsCommand.d.ts +115 -0
- package/dist-types/commands/BatchGetSandboxesCommand.d.ts +248 -0
- package/dist-types/commands/ListCommandExecutionsForSandboxCommand.d.ts +116 -0
- package/dist-types/commands/ListSandboxesCommand.d.ts +80 -0
- package/dist-types/commands/ListSandboxesForProjectCommand.d.ts +84 -0
- package/dist-types/commands/StartCommandExecutionCommand.d.ts +112 -0
- package/dist-types/commands/StartSandboxCommand.d.ts +248 -0
- package/dist-types/commands/StartSandboxConnectionCommand.d.ts +82 -0
- package/dist-types/commands/StopSandboxCommand.d.ts +244 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +639 -0
- package/dist-types/pagination/ListCommandExecutionsForSandboxPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSandboxesForProjectPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSandboxesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +81 -0
- package/dist-types/ts3.4/CodeBuild.d.ts +155 -0
- package/dist-types/ts3.4/CodeBuildClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/BatchGetCommandExecutionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchGetSandboxesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListCommandExecutionsForSandboxCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListSandboxesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListSandboxesForProjectCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartCommandExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartSandboxCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/StartSandboxConnectionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopSandboxCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +167 -0
- package/dist-types/ts3.4/pagination/ListCommandExecutionsForSandboxPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSandboxesForProjectPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSandboxesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +108 -0
- package/package.json +5 -5
|
@@ -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.
|
|
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",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.775.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.782.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.782.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
30
30
|
"@aws-sdk/types": "3.775.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.782.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.782.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.0",
|
|
35
35
|
"@smithy/core": "^3.2.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.2",
|