@aws-sdk/client-codebuild 3.495.0 → 3.499.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 +40 -0
- package/dist-cjs/commands/BatchGetFleetsCommand.js +1 -0
- package/dist-cjs/commands/CreateFleetCommand.js +1 -0
- package/dist-cjs/commands/DeleteFleetCommand.js +1 -0
- package/dist-cjs/commands/ListFleetsCommand.js +1 -0
- package/dist-cjs/commands/UpdateFleetCommand.js +1 -0
- package/dist-cjs/index.js +498 -52
- package/dist-cjs/pagination/ListFleetsPaginator.js +1 -0
- package/dist-es/CodeBuild.js +10 -0
- package/dist-es/commands/BatchGetFleetsCommand.js +24 -0
- package/dist-es/commands/CreateFleetCommand.js +24 -0
- package/dist-es/commands/DeleteFleetCommand.js +24 -0
- package/dist-es/commands/ListFleetsCommand.js +25 -0
- package/dist-es/commands/UpdateFleetCommand.js +24 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +28 -0
- package/dist-es/pagination/ListFleetsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +303 -0
- package/dist-types/CodeBuild.d.ts +35 -0
- package/dist-types/CodeBuildClient.d.ts +7 -2
- package/dist-types/commands/BatchGetBuildBatchesCommand.d.ts +3 -0
- package/dist-types/commands/BatchGetBuildsCommand.d.ts +3 -0
- package/dist-types/commands/BatchGetFleetsCommand.d.ts +99 -0
- package/dist-types/commands/BatchGetProjectsCommand.d.ts +3 -0
- package/dist-types/commands/CreateFleetCommand.d.ts +118 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +6 -0
- package/dist-types/commands/DeleteFleetCommand.d.ts +59 -0
- package/dist-types/commands/ListFleetsCommand.d.ts +67 -0
- package/dist-types/commands/RetryBuildBatchCommand.d.ts +3 -0
- package/dist-types/commands/RetryBuildCommand.d.ts +3 -0
- package/dist-types/commands/StartBuildBatchCommand.d.ts +3 -0
- package/dist-types/commands/StartBuildCommand.d.ts +6 -0
- package/dist-types/commands/StopBuildBatchCommand.d.ts +3 -0
- package/dist-types/commands/StopBuildCommand.d.ts +3 -0
- package/dist-types/commands/UpdateFleetCommand.d.ts +117 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +843 -57
- package/dist-types/pagination/ListFleetsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
- package/dist-types/ts3.4/CodeBuild.d.ts +85 -0
- package/dist-types/ts3.4/CodeBuildClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/BatchGetFleetsCommand.d.ts +26 -0
- package/dist-types/ts3.4/commands/CreateFleetCommand.d.ts +26 -0
- package/dist-types/ts3.4/commands/DeleteFleetCommand.d.ts +26 -0
- package/dist-types/ts3.4/commands/ListFleetsCommand.d.ts +26 -0
- package/dist-types/ts3.4/commands/UpdateFleetCommand.d.ts +26 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +129 -11
- package/dist-types/ts3.4/pagination/ListFleetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
- package/package.json +39 -39
|
@@ -155,6 +155,9 @@ export interface EnvironmentVariable {
|
|
|
155
155
|
value: string | undefined;
|
|
156
156
|
type?: EnvironmentVariableType;
|
|
157
157
|
}
|
|
158
|
+
export interface ProjectFleet {
|
|
159
|
+
fleetArn?: string;
|
|
160
|
+
}
|
|
158
161
|
export declare const ImagePullCredentialsType: {
|
|
159
162
|
readonly CODEBUILD: "CODEBUILD";
|
|
160
163
|
readonly SERVICE_ROLE: "SERVICE_ROLE";
|
|
@@ -185,6 +188,7 @@ export interface ProjectEnvironment {
|
|
|
185
188
|
type: EnvironmentType | undefined;
|
|
186
189
|
image: string | undefined;
|
|
187
190
|
computeType: ComputeType | undefined;
|
|
191
|
+
fleet?: ProjectFleet;
|
|
188
192
|
environmentVariables?: EnvironmentVariable[];
|
|
189
193
|
privilegedMode?: boolean;
|
|
190
194
|
certificate?: string;
|
|
@@ -416,6 +420,72 @@ export interface BatchGetBuildsOutput {
|
|
|
416
420
|
builds?: Build[];
|
|
417
421
|
buildsNotFound?: string[];
|
|
418
422
|
}
|
|
423
|
+
export interface BatchGetFleetsInput {
|
|
424
|
+
names: string[] | undefined;
|
|
425
|
+
}
|
|
426
|
+
export declare const FleetScalingType: {
|
|
427
|
+
readonly TARGET_TRACKING_SCALING: "TARGET_TRACKING_SCALING";
|
|
428
|
+
};
|
|
429
|
+
export type FleetScalingType =
|
|
430
|
+
(typeof FleetScalingType)[keyof typeof FleetScalingType];
|
|
431
|
+
export declare const FleetScalingMetricType: {
|
|
432
|
+
readonly FLEET_UTILIZATION_RATE: "FLEET_UTILIZATION_RATE";
|
|
433
|
+
};
|
|
434
|
+
export type FleetScalingMetricType =
|
|
435
|
+
(typeof FleetScalingMetricType)[keyof typeof FleetScalingMetricType];
|
|
436
|
+
export interface TargetTrackingScalingConfiguration {
|
|
437
|
+
metricType?: FleetScalingMetricType;
|
|
438
|
+
targetValue?: number;
|
|
439
|
+
}
|
|
440
|
+
export interface ScalingConfigurationOutput {
|
|
441
|
+
scalingType?: FleetScalingType;
|
|
442
|
+
targetTrackingScalingConfigs?: TargetTrackingScalingConfiguration[];
|
|
443
|
+
maxCapacity?: number;
|
|
444
|
+
desiredCapacity?: number;
|
|
445
|
+
}
|
|
446
|
+
export declare const FleetContextCode: {
|
|
447
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
448
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
449
|
+
};
|
|
450
|
+
export type FleetContextCode =
|
|
451
|
+
(typeof FleetContextCode)[keyof typeof FleetContextCode];
|
|
452
|
+
export declare const FleetStatusCode: {
|
|
453
|
+
readonly ACTIVE: "ACTIVE";
|
|
454
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
455
|
+
readonly CREATING: "CREATING";
|
|
456
|
+
readonly DELETING: "DELETING";
|
|
457
|
+
readonly ROTATING: "ROTATING";
|
|
458
|
+
readonly UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED";
|
|
459
|
+
readonly UPDATING: "UPDATING";
|
|
460
|
+
};
|
|
461
|
+
export type FleetStatusCode =
|
|
462
|
+
(typeof FleetStatusCode)[keyof typeof FleetStatusCode];
|
|
463
|
+
export interface FleetStatus {
|
|
464
|
+
statusCode?: FleetStatusCode;
|
|
465
|
+
context?: FleetContextCode;
|
|
466
|
+
message?: string;
|
|
467
|
+
}
|
|
468
|
+
export interface Tag {
|
|
469
|
+
key?: string;
|
|
470
|
+
value?: string;
|
|
471
|
+
}
|
|
472
|
+
export interface Fleet {
|
|
473
|
+
arn?: string;
|
|
474
|
+
name?: string;
|
|
475
|
+
id?: string;
|
|
476
|
+
created?: Date;
|
|
477
|
+
lastModified?: Date;
|
|
478
|
+
status?: FleetStatus;
|
|
479
|
+
baseCapacity?: number;
|
|
480
|
+
environmentType?: EnvironmentType;
|
|
481
|
+
computeType?: ComputeType;
|
|
482
|
+
scalingConfiguration?: ScalingConfigurationOutput;
|
|
483
|
+
tags?: Tag[];
|
|
484
|
+
}
|
|
485
|
+
export interface BatchGetFleetsOutput {
|
|
486
|
+
fleets?: Fleet[];
|
|
487
|
+
fleetsNotFound?: string[];
|
|
488
|
+
}
|
|
419
489
|
export interface BatchGetProjectsInput {
|
|
420
490
|
names: string[] | undefined;
|
|
421
491
|
}
|
|
@@ -441,10 +511,6 @@ export declare const ProjectVisibilityType: {
|
|
|
441
511
|
};
|
|
442
512
|
export type ProjectVisibilityType =
|
|
443
513
|
(typeof ProjectVisibilityType)[keyof typeof ProjectVisibilityType];
|
|
444
|
-
export interface Tag {
|
|
445
|
-
key?: string;
|
|
446
|
-
value?: string;
|
|
447
|
-
}
|
|
448
514
|
export declare const WebhookBuildType: {
|
|
449
515
|
readonly BUILD: "BUILD";
|
|
450
516
|
readonly BUILD_BATCH: "BUILD_BATCH";
|
|
@@ -607,6 +673,29 @@ export interface BatchGetReportsOutput {
|
|
|
607
673
|
export interface BuildBatchFilter {
|
|
608
674
|
status?: StatusType;
|
|
609
675
|
}
|
|
676
|
+
export interface ScalingConfigurationInput {
|
|
677
|
+
scalingType?: FleetScalingType;
|
|
678
|
+
targetTrackingScalingConfigs?: TargetTrackingScalingConfiguration[];
|
|
679
|
+
maxCapacity?: number;
|
|
680
|
+
}
|
|
681
|
+
export interface CreateFleetInput {
|
|
682
|
+
name: string | undefined;
|
|
683
|
+
baseCapacity: number | undefined;
|
|
684
|
+
environmentType: EnvironmentType | undefined;
|
|
685
|
+
computeType: ComputeType | undefined;
|
|
686
|
+
scalingConfiguration?: ScalingConfigurationInput;
|
|
687
|
+
tags?: Tag[];
|
|
688
|
+
}
|
|
689
|
+
export interface CreateFleetOutput {
|
|
690
|
+
fleet?: Fleet;
|
|
691
|
+
}
|
|
692
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
693
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
694
|
+
readonly $fault: "client";
|
|
695
|
+
constructor(
|
|
696
|
+
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
697
|
+
);
|
|
698
|
+
}
|
|
610
699
|
export interface CreateProjectInput {
|
|
611
700
|
name: string | undefined;
|
|
612
701
|
description?: string;
|
|
@@ -633,13 +722,6 @@ export interface CreateProjectInput {
|
|
|
633
722
|
export interface CreateProjectOutput {
|
|
634
723
|
project?: Project;
|
|
635
724
|
}
|
|
636
|
-
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
637
|
-
readonly name: "ResourceAlreadyExistsException";
|
|
638
|
-
readonly $fault: "client";
|
|
639
|
-
constructor(
|
|
640
|
-
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
641
|
-
);
|
|
642
|
-
}
|
|
643
725
|
export interface CreateReportGroupInput {
|
|
644
726
|
name: string | undefined;
|
|
645
727
|
type: ReportType | undefined;
|
|
@@ -680,6 +762,10 @@ export interface DeleteBuildBatchOutput {
|
|
|
680
762
|
buildsDeleted?: string[];
|
|
681
763
|
buildsNotDeleted?: BuildNotDeleted[];
|
|
682
764
|
}
|
|
765
|
+
export interface DeleteFleetInput {
|
|
766
|
+
arn: string | undefined;
|
|
767
|
+
}
|
|
768
|
+
export interface DeleteFleetOutput {}
|
|
683
769
|
export interface DeleteProjectInput {
|
|
684
770
|
name: string | undefined;
|
|
685
771
|
}
|
|
@@ -899,6 +985,23 @@ export interface EnvironmentPlatform {
|
|
|
899
985
|
export interface ListCuratedEnvironmentImagesOutput {
|
|
900
986
|
platforms?: EnvironmentPlatform[];
|
|
901
987
|
}
|
|
988
|
+
export declare const FleetSortByType: {
|
|
989
|
+
readonly CREATED_TIME: "CREATED_TIME";
|
|
990
|
+
readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
|
|
991
|
+
readonly NAME: "NAME";
|
|
992
|
+
};
|
|
993
|
+
export type FleetSortByType =
|
|
994
|
+
(typeof FleetSortByType)[keyof typeof FleetSortByType];
|
|
995
|
+
export interface ListFleetsInput {
|
|
996
|
+
nextToken?: string;
|
|
997
|
+
maxResults?: number;
|
|
998
|
+
sortOrder?: SortOrderType;
|
|
999
|
+
sortBy?: FleetSortByType;
|
|
1000
|
+
}
|
|
1001
|
+
export interface ListFleetsOutput {
|
|
1002
|
+
nextToken?: string;
|
|
1003
|
+
fleets?: string[];
|
|
1004
|
+
}
|
|
902
1005
|
export declare const ProjectSortByType: {
|
|
903
1006
|
readonly CREATED_TIME: "CREATED_TIME";
|
|
904
1007
|
readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
|
|
@@ -1051,6 +1154,7 @@ export interface StartBuildInput {
|
|
|
1051
1154
|
registryCredentialOverride?: RegistryCredential;
|
|
1052
1155
|
imagePullCredentialsTypeOverride?: ImagePullCredentialsType;
|
|
1053
1156
|
debugSessionEnabled?: boolean;
|
|
1157
|
+
fleetOverride?: ProjectFleet;
|
|
1054
1158
|
}
|
|
1055
1159
|
export interface StartBuildOutput {
|
|
1056
1160
|
build?: Build;
|
|
@@ -1103,6 +1207,17 @@ export interface StopBuildBatchInput {
|
|
|
1103
1207
|
export interface StopBuildBatchOutput {
|
|
1104
1208
|
buildBatch?: BuildBatch;
|
|
1105
1209
|
}
|
|
1210
|
+
export interface UpdateFleetInput {
|
|
1211
|
+
arn: string | undefined;
|
|
1212
|
+
baseCapacity?: number;
|
|
1213
|
+
environmentType?: EnvironmentType;
|
|
1214
|
+
computeType?: ComputeType;
|
|
1215
|
+
scalingConfiguration?: ScalingConfigurationInput;
|
|
1216
|
+
tags?: Tag[];
|
|
1217
|
+
}
|
|
1218
|
+
export interface UpdateFleetOutput {
|
|
1219
|
+
fleet?: Fleet;
|
|
1220
|
+
}
|
|
1106
1221
|
export interface UpdateProjectInput {
|
|
1107
1222
|
name: string | undefined;
|
|
1108
1223
|
description?: string;
|
|
@@ -1160,3 +1275,6 @@ export interface UpdateWebhookOutput {
|
|
|
1160
1275
|
export declare const ImportSourceCredentialsInputFilterSensitiveLog: (
|
|
1161
1276
|
obj: ImportSourceCredentialsInput
|
|
1162
1277
|
) => any;
|
|
1278
|
+
export declare const ListFleetsInputFilterSensitiveLog: (
|
|
1279
|
+
obj: ListFleetsInput
|
|
1280
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFleetsCommandInput,
|
|
4
|
+
ListFleetsCommandOutput,
|
|
5
|
+
} from "../commands/ListFleetsCommand";
|
|
6
|
+
import { CodeBuildPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListFleets: (
|
|
8
|
+
config: CodeBuildPaginationConfiguration,
|
|
9
|
+
input: ListFleetsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListFleetsCommandOutput>;
|
|
@@ -5,6 +5,7 @@ export * from "./ListBuildBatchesForProjectPaginator";
|
|
|
5
5
|
export * from "./ListBuildBatchesPaginator";
|
|
6
6
|
export * from "./ListBuildsForProjectPaginator";
|
|
7
7
|
export * from "./ListBuildsPaginator";
|
|
8
|
+
export * from "./ListFleetsPaginator";
|
|
8
9
|
export * from "./ListProjectsPaginator";
|
|
9
10
|
export * from "./ListReportGroupsPaginator";
|
|
10
11
|
export * from "./ListReportsForReportGroupPaginator";
|
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
BatchGetBuildsCommandInput,
|
|
16
16
|
BatchGetBuildsCommandOutput,
|
|
17
17
|
} from "../commands/BatchGetBuildsCommand";
|
|
18
|
+
import {
|
|
19
|
+
BatchGetFleetsCommandInput,
|
|
20
|
+
BatchGetFleetsCommandOutput,
|
|
21
|
+
} from "../commands/BatchGetFleetsCommand";
|
|
18
22
|
import {
|
|
19
23
|
BatchGetProjectsCommandInput,
|
|
20
24
|
BatchGetProjectsCommandOutput,
|
|
@@ -27,6 +31,10 @@ import {
|
|
|
27
31
|
BatchGetReportsCommandInput,
|
|
28
32
|
BatchGetReportsCommandOutput,
|
|
29
33
|
} from "../commands/BatchGetReportsCommand";
|
|
34
|
+
import {
|
|
35
|
+
CreateFleetCommandInput,
|
|
36
|
+
CreateFleetCommandOutput,
|
|
37
|
+
} from "../commands/CreateFleetCommand";
|
|
30
38
|
import {
|
|
31
39
|
CreateProjectCommandInput,
|
|
32
40
|
CreateProjectCommandOutput,
|
|
@@ -43,6 +51,10 @@ import {
|
|
|
43
51
|
DeleteBuildBatchCommandInput,
|
|
44
52
|
DeleteBuildBatchCommandOutput,
|
|
45
53
|
} from "../commands/DeleteBuildBatchCommand";
|
|
54
|
+
import {
|
|
55
|
+
DeleteFleetCommandInput,
|
|
56
|
+
DeleteFleetCommandOutput,
|
|
57
|
+
} from "../commands/DeleteFleetCommand";
|
|
46
58
|
import {
|
|
47
59
|
DeleteProjectCommandInput,
|
|
48
60
|
DeleteProjectCommandOutput,
|
|
@@ -111,6 +123,10 @@ import {
|
|
|
111
123
|
ListCuratedEnvironmentImagesCommandInput,
|
|
112
124
|
ListCuratedEnvironmentImagesCommandOutput,
|
|
113
125
|
} from "../commands/ListCuratedEnvironmentImagesCommand";
|
|
126
|
+
import {
|
|
127
|
+
ListFleetsCommandInput,
|
|
128
|
+
ListFleetsCommandOutput,
|
|
129
|
+
} from "../commands/ListFleetsCommand";
|
|
114
130
|
import {
|
|
115
131
|
ListProjectsCommandInput,
|
|
116
132
|
ListProjectsCommandOutput,
|
|
@@ -167,6 +183,10 @@ import {
|
|
|
167
183
|
StopBuildCommandInput,
|
|
168
184
|
StopBuildCommandOutput,
|
|
169
185
|
} from "../commands/StopBuildCommand";
|
|
186
|
+
import {
|
|
187
|
+
UpdateFleetCommandInput,
|
|
188
|
+
UpdateFleetCommandOutput,
|
|
189
|
+
} from "../commands/UpdateFleetCommand";
|
|
170
190
|
import {
|
|
171
191
|
UpdateProjectCommandInput,
|
|
172
192
|
UpdateProjectCommandOutput,
|
|
@@ -195,6 +215,10 @@ export declare const se_BatchGetBuildsCommand: (
|
|
|
195
215
|
input: BatchGetBuildsCommandInput,
|
|
196
216
|
context: __SerdeContext
|
|
197
217
|
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const se_BatchGetFleetsCommand: (
|
|
219
|
+
input: BatchGetFleetsCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
198
222
|
export declare const se_BatchGetProjectsCommand: (
|
|
199
223
|
input: BatchGetProjectsCommandInput,
|
|
200
224
|
context: __SerdeContext
|
|
@@ -207,6 +231,10 @@ export declare const se_BatchGetReportsCommand: (
|
|
|
207
231
|
input: BatchGetReportsCommandInput,
|
|
208
232
|
context: __SerdeContext
|
|
209
233
|
) => Promise<__HttpRequest>;
|
|
234
|
+
export declare const se_CreateFleetCommand: (
|
|
235
|
+
input: CreateFleetCommandInput,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<__HttpRequest>;
|
|
210
238
|
export declare const se_CreateProjectCommand: (
|
|
211
239
|
input: CreateProjectCommandInput,
|
|
212
240
|
context: __SerdeContext
|
|
@@ -223,6 +251,10 @@ export declare const se_DeleteBuildBatchCommand: (
|
|
|
223
251
|
input: DeleteBuildBatchCommandInput,
|
|
224
252
|
context: __SerdeContext
|
|
225
253
|
) => Promise<__HttpRequest>;
|
|
254
|
+
export declare const se_DeleteFleetCommand: (
|
|
255
|
+
input: DeleteFleetCommandInput,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<__HttpRequest>;
|
|
226
258
|
export declare const se_DeleteProjectCommand: (
|
|
227
259
|
input: DeleteProjectCommandInput,
|
|
228
260
|
context: __SerdeContext
|
|
@@ -291,6 +323,10 @@ export declare const se_ListCuratedEnvironmentImagesCommand: (
|
|
|
291
323
|
input: ListCuratedEnvironmentImagesCommandInput,
|
|
292
324
|
context: __SerdeContext
|
|
293
325
|
) => Promise<__HttpRequest>;
|
|
326
|
+
export declare const se_ListFleetsCommand: (
|
|
327
|
+
input: ListFleetsCommandInput,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<__HttpRequest>;
|
|
294
330
|
export declare const se_ListProjectsCommand: (
|
|
295
331
|
input: ListProjectsCommandInput,
|
|
296
332
|
context: __SerdeContext
|
|
@@ -347,6 +383,10 @@ export declare const se_StopBuildBatchCommand: (
|
|
|
347
383
|
input: StopBuildBatchCommandInput,
|
|
348
384
|
context: __SerdeContext
|
|
349
385
|
) => Promise<__HttpRequest>;
|
|
386
|
+
export declare const se_UpdateFleetCommand: (
|
|
387
|
+
input: UpdateFleetCommandInput,
|
|
388
|
+
context: __SerdeContext
|
|
389
|
+
) => Promise<__HttpRequest>;
|
|
350
390
|
export declare const se_UpdateProjectCommand: (
|
|
351
391
|
input: UpdateProjectCommandInput,
|
|
352
392
|
context: __SerdeContext
|
|
@@ -375,6 +415,10 @@ export declare const de_BatchGetBuildsCommand: (
|
|
|
375
415
|
output: __HttpResponse,
|
|
376
416
|
context: __SerdeContext
|
|
377
417
|
) => Promise<BatchGetBuildsCommandOutput>;
|
|
418
|
+
export declare const de_BatchGetFleetsCommand: (
|
|
419
|
+
output: __HttpResponse,
|
|
420
|
+
context: __SerdeContext
|
|
421
|
+
) => Promise<BatchGetFleetsCommandOutput>;
|
|
378
422
|
export declare const de_BatchGetProjectsCommand: (
|
|
379
423
|
output: __HttpResponse,
|
|
380
424
|
context: __SerdeContext
|
|
@@ -387,6 +431,10 @@ export declare const de_BatchGetReportsCommand: (
|
|
|
387
431
|
output: __HttpResponse,
|
|
388
432
|
context: __SerdeContext
|
|
389
433
|
) => Promise<BatchGetReportsCommandOutput>;
|
|
434
|
+
export declare const de_CreateFleetCommand: (
|
|
435
|
+
output: __HttpResponse,
|
|
436
|
+
context: __SerdeContext
|
|
437
|
+
) => Promise<CreateFleetCommandOutput>;
|
|
390
438
|
export declare const de_CreateProjectCommand: (
|
|
391
439
|
output: __HttpResponse,
|
|
392
440
|
context: __SerdeContext
|
|
@@ -403,6 +451,10 @@ export declare const de_DeleteBuildBatchCommand: (
|
|
|
403
451
|
output: __HttpResponse,
|
|
404
452
|
context: __SerdeContext
|
|
405
453
|
) => Promise<DeleteBuildBatchCommandOutput>;
|
|
454
|
+
export declare const de_DeleteFleetCommand: (
|
|
455
|
+
output: __HttpResponse,
|
|
456
|
+
context: __SerdeContext
|
|
457
|
+
) => Promise<DeleteFleetCommandOutput>;
|
|
406
458
|
export declare const de_DeleteProjectCommand: (
|
|
407
459
|
output: __HttpResponse,
|
|
408
460
|
context: __SerdeContext
|
|
@@ -471,6 +523,10 @@ export declare const de_ListCuratedEnvironmentImagesCommand: (
|
|
|
471
523
|
output: __HttpResponse,
|
|
472
524
|
context: __SerdeContext
|
|
473
525
|
) => Promise<ListCuratedEnvironmentImagesCommandOutput>;
|
|
526
|
+
export declare const de_ListFleetsCommand: (
|
|
527
|
+
output: __HttpResponse,
|
|
528
|
+
context: __SerdeContext
|
|
529
|
+
) => Promise<ListFleetsCommandOutput>;
|
|
474
530
|
export declare const de_ListProjectsCommand: (
|
|
475
531
|
output: __HttpResponse,
|
|
476
532
|
context: __SerdeContext
|
|
@@ -527,6 +583,10 @@ export declare const de_StopBuildBatchCommand: (
|
|
|
527
583
|
output: __HttpResponse,
|
|
528
584
|
context: __SerdeContext
|
|
529
585
|
) => Promise<StopBuildBatchCommandOutput>;
|
|
586
|
+
export declare const de_UpdateFleetCommand: (
|
|
587
|
+
output: __HttpResponse,
|
|
588
|
+
context: __SerdeContext
|
|
589
|
+
) => Promise<UpdateFleetCommandOutput>;
|
|
530
590
|
export declare const de_UpdateProjectCommand: (
|
|
531
591
|
output: __HttpResponse,
|
|
532
592
|
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.499.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",
|
|
@@ -20,47 +20,47 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.1.
|
|
37
|
-
"@smithy/core": "^1.3.
|
|
38
|
-
"@smithy/fetch-http-handler": "^2.4.
|
|
39
|
-
"@smithy/hash-node": "^2.1.
|
|
40
|
-
"@smithy/invalid-dependency": "^2.1.
|
|
41
|
-
"@smithy/middleware-content-length": "^2.1.
|
|
42
|
-
"@smithy/middleware-endpoint": "^2.4.
|
|
43
|
-
"@smithy/middleware-retry": "^2.1.
|
|
44
|
-
"@smithy/middleware-serde": "^2.1.
|
|
45
|
-
"@smithy/middleware-stack": "^2.1.
|
|
46
|
-
"@smithy/node-config-provider": "^2.2.
|
|
47
|
-
"@smithy/node-http-handler": "^2.3.
|
|
48
|
-
"@smithy/protocol-http": "^3.1.
|
|
49
|
-
"@smithy/smithy-client": "^2.3.
|
|
50
|
-
"@smithy/types": "^2.9.
|
|
51
|
-
"@smithy/url-parser": "^2.1.
|
|
52
|
-
"@smithy/util-base64": "^2.1.
|
|
53
|
-
"@smithy/util-body-length-browser": "^2.1.
|
|
54
|
-
"@smithy/util-body-length-node": "^2.2.
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^2.1.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^2.1.
|
|
57
|
-
"@smithy/util-endpoints": "^1.1.
|
|
58
|
-
"@smithy/util-retry": "^2.1.
|
|
59
|
-
"@smithy/util-utf8": "^2.1.
|
|
23
|
+
"@aws-sdk/client-sts": "3.499.0",
|
|
24
|
+
"@aws-sdk/core": "3.496.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.499.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.496.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.496.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.496.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.496.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.496.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.496.0",
|
|
32
|
+
"@aws-sdk/types": "3.496.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.496.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.496.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.496.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.1.1",
|
|
37
|
+
"@smithy/core": "^1.3.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^2.4.1",
|
|
39
|
+
"@smithy/hash-node": "^2.1.1",
|
|
40
|
+
"@smithy/invalid-dependency": "^2.1.1",
|
|
41
|
+
"@smithy/middleware-content-length": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-endpoint": "^2.4.1",
|
|
43
|
+
"@smithy/middleware-retry": "^2.1.1",
|
|
44
|
+
"@smithy/middleware-serde": "^2.1.1",
|
|
45
|
+
"@smithy/middleware-stack": "^2.1.1",
|
|
46
|
+
"@smithy/node-config-provider": "^2.2.1",
|
|
47
|
+
"@smithy/node-http-handler": "^2.3.1",
|
|
48
|
+
"@smithy/protocol-http": "^3.1.1",
|
|
49
|
+
"@smithy/smithy-client": "^2.3.1",
|
|
50
|
+
"@smithy/types": "^2.9.1",
|
|
51
|
+
"@smithy/url-parser": "^2.1.1",
|
|
52
|
+
"@smithy/util-base64": "^2.1.1",
|
|
53
|
+
"@smithy/util-body-length-browser": "^2.1.1",
|
|
54
|
+
"@smithy/util-body-length-node": "^2.2.1",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^2.1.1",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^2.1.1",
|
|
57
|
+
"@smithy/util-endpoints": "^1.1.1",
|
|
58
|
+
"@smithy/util-retry": "^2.1.1",
|
|
59
|
+
"@smithy/util-utf8": "^2.1.1",
|
|
60
60
|
"tslib": "^2.5.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@smithy/service-client-documentation-generator": "^2.1.
|
|
63
|
+
"@smithy/service-client-documentation-generator": "^2.1.1",
|
|
64
64
|
"@tsconfig/node14": "1.0.3",
|
|
65
65
|
"@types/node": "^14.14.31",
|
|
66
66
|
"concurrently": "7.0.0",
|