@aws-sdk/client-codebuild 3.295.0 → 3.297.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/dist-types/CodeBuild.d.ts +46 -0
- package/dist-types/CodeBuildClient.d.ts +24 -4
- package/dist-types/commands/BatchDeleteBuildsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetBuildBatchesCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetBuildsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetProjectsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetReportGroupsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetReportsCommand.d.ts +16 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +16 -0
- package/dist-types/commands/CreateReportGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateWebhookCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBuildBatchCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProjectCommand.d.ts +16 -0
- package/dist-types/commands/DeleteReportCommand.d.ts +16 -0
- package/dist-types/commands/DeleteReportGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSourceCredentialsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWebhookCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCodeCoveragesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTestCasesCommand.d.ts +16 -0
- package/dist-types/commands/GetReportGroupTrendCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/ImportSourceCredentialsCommand.d.ts +16 -0
- package/dist-types/commands/InvalidateProjectCacheCommand.d.ts +16 -0
- package/dist-types/commands/ListBuildBatchesCommand.d.ts +16 -0
- package/dist-types/commands/ListBuildBatchesForProjectCommand.d.ts +16 -0
- package/dist-types/commands/ListBuildsCommand.d.ts +16 -0
- package/dist-types/commands/ListBuildsForProjectCommand.d.ts +16 -0
- package/dist-types/commands/ListCuratedEnvironmentImagesCommand.d.ts +16 -0
- package/dist-types/commands/ListProjectsCommand.d.ts +16 -0
- package/dist-types/commands/ListReportGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListReportsCommand.d.ts +16 -0
- package/dist-types/commands/ListReportsForReportGroupCommand.d.ts +16 -0
- package/dist-types/commands/ListSharedProjectsCommand.d.ts +16 -0
- package/dist-types/commands/ListSharedReportGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListSourceCredentialsCommand.d.ts +16 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/RetryBuildBatchCommand.d.ts +16 -0
- package/dist-types/commands/RetryBuildCommand.d.ts +16 -0
- package/dist-types/commands/StartBuildBatchCommand.d.ts +16 -0
- package/dist-types/commands/StartBuildCommand.d.ts +16 -0
- package/dist-types/commands/StopBuildBatchCommand.d.ts +16 -0
- package/dist-types/commands/StopBuildCommand.d.ts +16 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +16 -0
- package/dist-types/commands/UpdateProjectVisibilityCommand.d.ts +16 -0
- package/dist-types/commands/UpdateReportGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWebhookCommand.d.ts +16 -0
- package/dist-types/models/CodeBuildServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +444 -2
- package/dist-types/pagination/DescribeCodeCoveragesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeTestCasesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListBuildBatchesForProjectPaginator.d.ts +3 -0
- package/dist-types/pagination/ListBuildBatchesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListBuildsForProjectPaginator.d.ts +3 -0
- package/dist-types/pagination/ListBuildsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProjectsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListReportGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListReportsForReportGroupPaginator.d.ts +3 -0
- package/dist-types/pagination/ListReportsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSharedProjectsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSharedReportGroupsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { CodeBuildServiceException as __BaseException } from "./CodeBuildServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>An Amazon Web Services service limit was exceeded for the calling Amazon Web Services account.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccountLimitExceededException extends __BaseException {
|
|
@@ -11,24 +12,39 @@ export declare class AccountLimitExceededException extends __BaseException {
|
|
|
11
12
|
*/
|
|
12
13
|
constructor(opts: __ExceptionOptionType<AccountLimitExceededException, __BaseException>);
|
|
13
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
14
18
|
export declare enum ArtifactNamespace {
|
|
15
19
|
BUILD_ID = "BUILD_ID",
|
|
16
20
|
NONE = "NONE"
|
|
17
21
|
}
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
18
25
|
export declare enum ArtifactPackaging {
|
|
19
26
|
NONE = "NONE",
|
|
20
27
|
ZIP = "ZIP"
|
|
21
28
|
}
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
22
32
|
export declare enum ArtifactsType {
|
|
23
33
|
CODEPIPELINE = "CODEPIPELINE",
|
|
24
34
|
NO_ARTIFACTS = "NO_ARTIFACTS",
|
|
25
35
|
S3 = "S3"
|
|
26
36
|
}
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
27
40
|
export declare enum AuthType {
|
|
28
41
|
BASIC_AUTH = "BASIC_AUTH",
|
|
29
42
|
OAUTH = "OAUTH",
|
|
30
43
|
PERSONAL_ACCESS_TOKEN = "PERSONAL_ACCESS_TOKEN"
|
|
31
44
|
}
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
32
48
|
export interface BatchDeleteBuildsInput {
|
|
33
49
|
/**
|
|
34
50
|
* <p>The IDs of the builds to delete.</p>
|
|
@@ -36,6 +52,7 @@ export interface BatchDeleteBuildsInput {
|
|
|
36
52
|
ids: string[] | undefined;
|
|
37
53
|
}
|
|
38
54
|
/**
|
|
55
|
+
* @public
|
|
39
56
|
* <p>Information about a build that could not be successfully deleted.</p>
|
|
40
57
|
*/
|
|
41
58
|
export interface BuildNotDeleted {
|
|
@@ -48,6 +65,9 @@ export interface BuildNotDeleted {
|
|
|
48
65
|
*/
|
|
49
66
|
statusCode?: string;
|
|
50
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
51
71
|
export interface BatchDeleteBuildsOutput {
|
|
52
72
|
/**
|
|
53
73
|
* <p>The IDs of the builds that were successfully deleted.</p>
|
|
@@ -59,6 +79,7 @@ export interface BatchDeleteBuildsOutput {
|
|
|
59
79
|
buildsNotDeleted?: BuildNotDeleted[];
|
|
60
80
|
}
|
|
61
81
|
/**
|
|
82
|
+
* @public
|
|
62
83
|
* <p>The input value that was provided is not valid.</p>
|
|
63
84
|
*/
|
|
64
85
|
export declare class InvalidInputException extends __BaseException {
|
|
@@ -69,18 +90,25 @@ export declare class InvalidInputException extends __BaseException {
|
|
|
69
90
|
*/
|
|
70
91
|
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
71
92
|
}
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
72
96
|
export interface BatchGetBuildBatchesInput {
|
|
73
97
|
/**
|
|
74
98
|
* <p>An array that contains the batch build identifiers to retrieve.</p>
|
|
75
99
|
*/
|
|
76
100
|
ids: string[] | undefined;
|
|
77
101
|
}
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
78
105
|
export declare enum BucketOwnerAccess {
|
|
79
106
|
FULL = "FULL",
|
|
80
107
|
NONE = "NONE",
|
|
81
108
|
READ_ONLY = "READ_ONLY"
|
|
82
109
|
}
|
|
83
110
|
/**
|
|
111
|
+
* @public
|
|
84
112
|
* <p>Information about build output artifacts.</p>
|
|
85
113
|
*/
|
|
86
114
|
export interface BuildArtifacts {
|
|
@@ -169,11 +197,15 @@ export interface BuildArtifacts {
|
|
|
169
197
|
*/
|
|
170
198
|
bucketOwnerAccess?: BucketOwnerAccess | string;
|
|
171
199
|
}
|
|
200
|
+
/**
|
|
201
|
+
* @public
|
|
202
|
+
*/
|
|
172
203
|
export declare enum BatchReportModeType {
|
|
173
204
|
REPORT_AGGREGATED_BATCH = "REPORT_AGGREGATED_BATCH",
|
|
174
205
|
REPORT_INDIVIDUAL_BUILDS = "REPORT_INDIVIDUAL_BUILDS"
|
|
175
206
|
}
|
|
176
207
|
/**
|
|
208
|
+
* @public
|
|
177
209
|
* <p>Specifies restrictions for the batch build.</p>
|
|
178
210
|
*/
|
|
179
211
|
export interface BatchRestrictions {
|
|
@@ -190,6 +222,7 @@ export interface BatchRestrictions {
|
|
|
190
222
|
computeTypesAllowed?: string[];
|
|
191
223
|
}
|
|
192
224
|
/**
|
|
225
|
+
* @public
|
|
193
226
|
* <p>Contains configuration information about a batch build project.</p>
|
|
194
227
|
*/
|
|
195
228
|
export interface ProjectBuildBatchConfig {
|
|
@@ -228,6 +261,9 @@ export interface ProjectBuildBatchConfig {
|
|
|
228
261
|
*/
|
|
229
262
|
batchReportMode?: BatchReportModeType | string;
|
|
230
263
|
}
|
|
264
|
+
/**
|
|
265
|
+
* @public
|
|
266
|
+
*/
|
|
231
267
|
export declare enum StatusType {
|
|
232
268
|
FAILED = "FAILED",
|
|
233
269
|
FAULT = "FAULT",
|
|
@@ -237,6 +273,7 @@ export declare enum StatusType {
|
|
|
237
273
|
TIMED_OUT = "TIMED_OUT"
|
|
238
274
|
}
|
|
239
275
|
/**
|
|
276
|
+
* @public
|
|
240
277
|
* <p>Represents a resolved build artifact. A resolved artifact is an artifact that is built and
|
|
241
278
|
* deployed to the destination, such as Amazon S3.</p>
|
|
242
279
|
*/
|
|
@@ -255,6 +292,7 @@ export interface ResolvedArtifact {
|
|
|
255
292
|
identifier?: string;
|
|
256
293
|
}
|
|
257
294
|
/**
|
|
295
|
+
* @public
|
|
258
296
|
* <p>Contains summary information about a batch build group.</p>
|
|
259
297
|
*/
|
|
260
298
|
export interface BuildSummary {
|
|
@@ -308,6 +346,7 @@ export interface BuildSummary {
|
|
|
308
346
|
secondaryArtifacts?: ResolvedArtifact[];
|
|
309
347
|
}
|
|
310
348
|
/**
|
|
349
|
+
* @public
|
|
311
350
|
* <p>Contains information about a batch build build group. Build groups are used to combine
|
|
312
351
|
* builds that can run in parallel, while still being able to set dependencies on other
|
|
313
352
|
* build groups.</p>
|
|
@@ -337,17 +376,24 @@ export interface BuildGroup {
|
|
|
337
376
|
*/
|
|
338
377
|
priorBuildSummaryList?: BuildSummary[];
|
|
339
378
|
}
|
|
379
|
+
/**
|
|
380
|
+
* @public
|
|
381
|
+
*/
|
|
340
382
|
export declare enum CacheMode {
|
|
341
383
|
LOCAL_CUSTOM_CACHE = "LOCAL_CUSTOM_CACHE",
|
|
342
384
|
LOCAL_DOCKER_LAYER_CACHE = "LOCAL_DOCKER_LAYER_CACHE",
|
|
343
385
|
LOCAL_SOURCE_CACHE = "LOCAL_SOURCE_CACHE"
|
|
344
386
|
}
|
|
387
|
+
/**
|
|
388
|
+
* @public
|
|
389
|
+
*/
|
|
345
390
|
export declare enum CacheType {
|
|
346
391
|
LOCAL = "LOCAL",
|
|
347
392
|
NO_CACHE = "NO_CACHE",
|
|
348
393
|
S3 = "S3"
|
|
349
394
|
}
|
|
350
395
|
/**
|
|
396
|
+
* @public
|
|
351
397
|
* <p>Information about the cache for the build project.</p>
|
|
352
398
|
*/
|
|
353
399
|
export interface ProjectCache {
|
|
@@ -446,18 +492,25 @@ export interface ProjectCache {
|
|
|
446
492
|
*/
|
|
447
493
|
modes?: (CacheMode | string)[];
|
|
448
494
|
}
|
|
495
|
+
/**
|
|
496
|
+
* @public
|
|
497
|
+
*/
|
|
449
498
|
export declare enum ComputeType {
|
|
450
499
|
BUILD_GENERAL1_2XLARGE = "BUILD_GENERAL1_2XLARGE",
|
|
451
500
|
BUILD_GENERAL1_LARGE = "BUILD_GENERAL1_LARGE",
|
|
452
501
|
BUILD_GENERAL1_MEDIUM = "BUILD_GENERAL1_MEDIUM",
|
|
453
502
|
BUILD_GENERAL1_SMALL = "BUILD_GENERAL1_SMALL"
|
|
454
503
|
}
|
|
504
|
+
/**
|
|
505
|
+
* @public
|
|
506
|
+
*/
|
|
455
507
|
export declare enum EnvironmentVariableType {
|
|
456
508
|
PARAMETER_STORE = "PARAMETER_STORE",
|
|
457
509
|
PLAINTEXT = "PLAINTEXT",
|
|
458
510
|
SECRETS_MANAGER = "SECRETS_MANAGER"
|
|
459
511
|
}
|
|
460
512
|
/**
|
|
513
|
+
* @public
|
|
461
514
|
* <p>Information about an environment variable for a build project or a build.</p>
|
|
462
515
|
*/
|
|
463
516
|
export interface EnvironmentVariable {
|
|
@@ -502,14 +555,21 @@ export interface EnvironmentVariable {
|
|
|
502
555
|
*/
|
|
503
556
|
type?: EnvironmentVariableType | string;
|
|
504
557
|
}
|
|
558
|
+
/**
|
|
559
|
+
* @public
|
|
560
|
+
*/
|
|
505
561
|
export declare enum ImagePullCredentialsType {
|
|
506
562
|
CODEBUILD = "CODEBUILD",
|
|
507
563
|
SERVICE_ROLE = "SERVICE_ROLE"
|
|
508
564
|
}
|
|
565
|
+
/**
|
|
566
|
+
* @public
|
|
567
|
+
*/
|
|
509
568
|
export declare enum CredentialProviderType {
|
|
510
569
|
SECRETS_MANAGER = "SECRETS_MANAGER"
|
|
511
570
|
}
|
|
512
571
|
/**
|
|
572
|
+
* @public
|
|
513
573
|
* <p> Information about credentials that provide access to a private Docker registry. When
|
|
514
574
|
* this is set: </p>
|
|
515
575
|
* <ul>
|
|
@@ -540,6 +600,9 @@ export interface RegistryCredential {
|
|
|
540
600
|
*/
|
|
541
601
|
credentialProvider: CredentialProviderType | string | undefined;
|
|
542
602
|
}
|
|
603
|
+
/**
|
|
604
|
+
* @public
|
|
605
|
+
*/
|
|
543
606
|
export declare enum EnvironmentType {
|
|
544
607
|
ARM_CONTAINER = "ARM_CONTAINER",
|
|
545
608
|
LINUX_CONTAINER = "LINUX_CONTAINER",
|
|
@@ -548,6 +611,7 @@ export declare enum EnvironmentType {
|
|
|
548
611
|
WINDOWS_SERVER_2019_CONTAINER = "WINDOWS_SERVER_2019_CONTAINER"
|
|
549
612
|
}
|
|
550
613
|
/**
|
|
614
|
+
* @public
|
|
551
615
|
* <p>Information about the build environment of the build project.</p>
|
|
552
616
|
*/
|
|
553
617
|
export interface ProjectEnvironment {
|
|
@@ -716,10 +780,14 @@ export interface ProjectEnvironment {
|
|
|
716
780
|
*/
|
|
717
781
|
imagePullCredentialsType?: ImagePullCredentialsType | string;
|
|
718
782
|
}
|
|
783
|
+
/**
|
|
784
|
+
* @public
|
|
785
|
+
*/
|
|
719
786
|
export declare enum FileSystemType {
|
|
720
787
|
EFS = "EFS"
|
|
721
788
|
}
|
|
722
789
|
/**
|
|
790
|
+
* @public
|
|
723
791
|
* <p> Information about a file system created by Amazon Elastic File System (EFS). For more
|
|
724
792
|
* information, see <a href="https://docs.aws.amazon.com/efs/latest/ug/whatisefs.html">What Is
|
|
725
793
|
* Amazon Elastic File System?</a>
|
|
@@ -765,11 +833,15 @@ export interface ProjectFileSystemLocation {
|
|
|
765
833
|
*/
|
|
766
834
|
mountOptions?: string;
|
|
767
835
|
}
|
|
836
|
+
/**
|
|
837
|
+
* @public
|
|
838
|
+
*/
|
|
768
839
|
export declare enum LogsConfigStatusType {
|
|
769
840
|
DISABLED = "DISABLED",
|
|
770
841
|
ENABLED = "ENABLED"
|
|
771
842
|
}
|
|
772
843
|
/**
|
|
844
|
+
* @public
|
|
773
845
|
* <p> Information about CloudWatch Logs for a build project. </p>
|
|
774
846
|
*/
|
|
775
847
|
export interface CloudWatchLogsConfig {
|
|
@@ -799,6 +871,7 @@ export interface CloudWatchLogsConfig {
|
|
|
799
871
|
streamName?: string;
|
|
800
872
|
}
|
|
801
873
|
/**
|
|
874
|
+
* @public
|
|
802
875
|
* <p> Information about S3 logs for a build project. </p>
|
|
803
876
|
*/
|
|
804
877
|
export interface S3LogsConfig {
|
|
@@ -876,6 +949,7 @@ export interface S3LogsConfig {
|
|
|
876
949
|
bucketOwnerAccess?: BucketOwnerAccess | string;
|
|
877
950
|
}
|
|
878
951
|
/**
|
|
952
|
+
* @public
|
|
879
953
|
* <p> Information about logs for a build project. These can be logs in CloudWatch Logs, built in a
|
|
880
954
|
* specified S3 bucket, or both. </p>
|
|
881
955
|
*/
|
|
@@ -891,6 +965,7 @@ export interface LogsConfig {
|
|
|
891
965
|
s3Logs?: S3LogsConfig;
|
|
892
966
|
}
|
|
893
967
|
/**
|
|
968
|
+
* @public
|
|
894
969
|
* <p>Additional information about a build phase that has an error. You can use this
|
|
895
970
|
* information for troubleshooting.</p>
|
|
896
971
|
*/
|
|
@@ -905,6 +980,9 @@ export interface PhaseContext {
|
|
|
905
980
|
*/
|
|
906
981
|
message?: string;
|
|
907
982
|
}
|
|
983
|
+
/**
|
|
984
|
+
* @public
|
|
985
|
+
*/
|
|
908
986
|
export declare enum BuildBatchPhaseType {
|
|
909
987
|
COMBINE_ARTIFACTS = "COMBINE_ARTIFACTS",
|
|
910
988
|
DOWNLOAD_BATCHSPEC = "DOWNLOAD_BATCHSPEC",
|
|
@@ -915,6 +993,7 @@ export declare enum BuildBatchPhaseType {
|
|
|
915
993
|
SUCCEEDED = "SUCCEEDED"
|
|
916
994
|
}
|
|
917
995
|
/**
|
|
996
|
+
* @public
|
|
918
997
|
* <p>Contains information about a stage for a batch build.</p>
|
|
919
998
|
*/
|
|
920
999
|
export interface BuildBatchPhase {
|
|
@@ -1002,10 +1081,14 @@ export interface BuildBatchPhase {
|
|
|
1002
1081
|
*/
|
|
1003
1082
|
contexts?: PhaseContext[];
|
|
1004
1083
|
}
|
|
1084
|
+
/**
|
|
1085
|
+
* @public
|
|
1086
|
+
*/
|
|
1005
1087
|
export declare enum SourceAuthType {
|
|
1006
1088
|
OAUTH = "OAUTH"
|
|
1007
1089
|
}
|
|
1008
1090
|
/**
|
|
1091
|
+
* @public
|
|
1009
1092
|
* <p>Information about the authorization settings for CodeBuild to access the source code to be
|
|
1010
1093
|
* built.</p>
|
|
1011
1094
|
* <p>This information is for the CodeBuild console's use only. Your code should not get or set
|
|
@@ -1026,6 +1109,7 @@ export interface SourceAuth {
|
|
|
1026
1109
|
resource?: string;
|
|
1027
1110
|
}
|
|
1028
1111
|
/**
|
|
1112
|
+
* @public
|
|
1029
1113
|
* <p>Contains information that defines how the CodeBuild build project reports the build status
|
|
1030
1114
|
* to the source provider. </p>
|
|
1031
1115
|
*/
|
|
@@ -1066,6 +1150,7 @@ export interface BuildStatusConfig {
|
|
|
1066
1150
|
targetUrl?: string;
|
|
1067
1151
|
}
|
|
1068
1152
|
/**
|
|
1153
|
+
* @public
|
|
1069
1154
|
* <p> Information about the Git submodules configuration for an CodeBuild build project.
|
|
1070
1155
|
* </p>
|
|
1071
1156
|
*/
|
|
@@ -1075,6 +1160,9 @@ export interface GitSubmodulesConfig {
|
|
|
1075
1160
|
*/
|
|
1076
1161
|
fetchSubmodules: boolean | undefined;
|
|
1077
1162
|
}
|
|
1163
|
+
/**
|
|
1164
|
+
* @public
|
|
1165
|
+
*/
|
|
1078
1166
|
export declare enum SourceType {
|
|
1079
1167
|
BITBUCKET = "BITBUCKET",
|
|
1080
1168
|
CODECOMMIT = "CODECOMMIT",
|
|
@@ -1085,6 +1173,7 @@ export declare enum SourceType {
|
|
|
1085
1173
|
S3 = "S3"
|
|
1086
1174
|
}
|
|
1087
1175
|
/**
|
|
1176
|
+
* @public
|
|
1088
1177
|
* <p>Information about the build input source code for the build project.</p>
|
|
1089
1178
|
*/
|
|
1090
1179
|
export interface ProjectSource {
|
|
@@ -1248,6 +1337,7 @@ export interface ProjectSource {
|
|
|
1248
1337
|
sourceIdentifier?: string;
|
|
1249
1338
|
}
|
|
1250
1339
|
/**
|
|
1340
|
+
* @public
|
|
1251
1341
|
* <p> A source identifier and its corresponding version. </p>
|
|
1252
1342
|
*/
|
|
1253
1343
|
export interface ProjectSourceVersion {
|
|
@@ -1288,6 +1378,7 @@ export interface ProjectSourceVersion {
|
|
|
1288
1378
|
sourceVersion: string | undefined;
|
|
1289
1379
|
}
|
|
1290
1380
|
/**
|
|
1381
|
+
* @public
|
|
1291
1382
|
* <p>Information about the VPC configuration that CodeBuild accesses.</p>
|
|
1292
1383
|
*/
|
|
1293
1384
|
export interface VpcConfig {
|
|
@@ -1305,6 +1396,7 @@ export interface VpcConfig {
|
|
|
1305
1396
|
securityGroupIds?: string[];
|
|
1306
1397
|
}
|
|
1307
1398
|
/**
|
|
1399
|
+
* @public
|
|
1308
1400
|
* <p>Contains information about a batch build.</p>
|
|
1309
1401
|
*/
|
|
1310
1402
|
export interface BuildBatch {
|
|
@@ -1499,6 +1591,9 @@ export interface BuildBatch {
|
|
|
1499
1591
|
*/
|
|
1500
1592
|
debugSessionEnabled?: boolean;
|
|
1501
1593
|
}
|
|
1594
|
+
/**
|
|
1595
|
+
* @public
|
|
1596
|
+
*/
|
|
1502
1597
|
export interface BatchGetBuildBatchesOutput {
|
|
1503
1598
|
/**
|
|
1504
1599
|
* <p>An array of <code>BuildBatch</code> objects that represent the retrieved batch
|
|
@@ -1510,6 +1605,9 @@ export interface BatchGetBuildBatchesOutput {
|
|
|
1510
1605
|
*/
|
|
1511
1606
|
buildBatchesNotFound?: string[];
|
|
1512
1607
|
}
|
|
1608
|
+
/**
|
|
1609
|
+
* @public
|
|
1610
|
+
*/
|
|
1513
1611
|
export interface BatchGetBuildsInput {
|
|
1514
1612
|
/**
|
|
1515
1613
|
* <p>The IDs of the builds.</p>
|
|
@@ -1517,6 +1615,7 @@ export interface BatchGetBuildsInput {
|
|
|
1517
1615
|
ids: string[] | undefined;
|
|
1518
1616
|
}
|
|
1519
1617
|
/**
|
|
1618
|
+
* @public
|
|
1520
1619
|
* <p>Contains information about the debug session for a build. For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/session-manager.html">Viewing a
|
|
1521
1620
|
* running build in Session Manager</a>.</p>
|
|
1522
1621
|
*/
|
|
@@ -1533,6 +1632,7 @@ export interface DebugSession {
|
|
|
1533
1632
|
sessionTarget?: string;
|
|
1534
1633
|
}
|
|
1535
1634
|
/**
|
|
1635
|
+
* @public
|
|
1536
1636
|
* <p>Contains information about an exported environment variable. </p>
|
|
1537
1637
|
* <p>Exported environment variables are used in conjunction with CodePipeline to export
|
|
1538
1638
|
* environment variables from the current build stage to subsequent stages in the pipeline.
|
|
@@ -1556,6 +1656,7 @@ export interface ExportedEnvironmentVariable {
|
|
|
1556
1656
|
value?: string;
|
|
1557
1657
|
}
|
|
1558
1658
|
/**
|
|
1659
|
+
* @public
|
|
1559
1660
|
* <p>Information about build logs in CloudWatch Logs.</p>
|
|
1560
1661
|
*/
|
|
1561
1662
|
export interface LogsLocation {
|
|
@@ -1577,13 +1678,13 @@ export interface LogsLocation {
|
|
|
1577
1678
|
s3DeepLink?: string;
|
|
1578
1679
|
/**
|
|
1579
1680
|
* <p> The ARN of CloudWatch Logs for a build project. Its format is
|
|
1580
|
-
* <code>arn
|
|
1681
|
+
* <code>arn:$\{Partition\}:logs:$\{Region\}:$\{Account\}:log-group:$\{LogGroupName\}:log-stream:$\{LogStreamName\}</code>.
|
|
1581
1682
|
* For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazoncloudwatchlogs.html#amazoncloudwatchlogs-resources-for-iam-policies">Resources Defined by CloudWatch Logs</a>. </p>
|
|
1582
1683
|
*/
|
|
1583
1684
|
cloudWatchLogsArn?: string;
|
|
1584
1685
|
/**
|
|
1585
1686
|
* <p> The ARN of S3 logs for a build project. Its format is
|
|
1586
|
-
* <code>arn
|
|
1687
|
+
* <code>arn:$\{Partition\}:s3:::$\{BucketName\}/$\{ObjectName\}</code>. For more
|
|
1587
1688
|
* information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazons3.html#amazons3-resources-for-iam-policies">Resources Defined by Amazon S3</a>. </p>
|
|
1588
1689
|
*/
|
|
1589
1690
|
s3LogsArn?: string;
|
|
@@ -1597,6 +1698,7 @@ export interface LogsLocation {
|
|
|
1597
1698
|
s3Logs?: S3LogsConfig;
|
|
1598
1699
|
}
|
|
1599
1700
|
/**
|
|
1701
|
+
* @public
|
|
1600
1702
|
* <p>Describes a network interface.</p>
|
|
1601
1703
|
*/
|
|
1602
1704
|
export interface NetworkInterface {
|
|
@@ -1609,6 +1711,9 @@ export interface NetworkInterface {
|
|
|
1609
1711
|
*/
|
|
1610
1712
|
networkInterfaceId?: string;
|
|
1611
1713
|
}
|
|
1714
|
+
/**
|
|
1715
|
+
* @public
|
|
1716
|
+
*/
|
|
1612
1717
|
export declare enum BuildPhaseType {
|
|
1613
1718
|
BUILD = "BUILD",
|
|
1614
1719
|
COMPLETED = "COMPLETED",
|
|
@@ -1623,6 +1728,7 @@ export declare enum BuildPhaseType {
|
|
|
1623
1728
|
UPLOAD_ARTIFACTS = "UPLOAD_ARTIFACTS"
|
|
1624
1729
|
}
|
|
1625
1730
|
/**
|
|
1731
|
+
* @public
|
|
1626
1732
|
* <p>Information about a stage for a build.</p>
|
|
1627
1733
|
*/
|
|
1628
1734
|
export interface BuildPhase {
|
|
@@ -1727,6 +1833,7 @@ export interface BuildPhase {
|
|
|
1727
1833
|
contexts?: PhaseContext[];
|
|
1728
1834
|
}
|
|
1729
1835
|
/**
|
|
1836
|
+
* @public
|
|
1730
1837
|
* <p>Information about a build.</p>
|
|
1731
1838
|
*/
|
|
1732
1839
|
export interface Build {
|
|
@@ -1960,6 +2067,9 @@ export interface Build {
|
|
|
1960
2067
|
*/
|
|
1961
2068
|
buildBatchArn?: string;
|
|
1962
2069
|
}
|
|
2070
|
+
/**
|
|
2071
|
+
* @public
|
|
2072
|
+
*/
|
|
1963
2073
|
export interface BatchGetBuildsOutput {
|
|
1964
2074
|
/**
|
|
1965
2075
|
* <p>Information about the requested builds.</p>
|
|
@@ -1970,6 +2080,9 @@ export interface BatchGetBuildsOutput {
|
|
|
1970
2080
|
*/
|
|
1971
2081
|
buildsNotFound?: string[];
|
|
1972
2082
|
}
|
|
2083
|
+
/**
|
|
2084
|
+
* @public
|
|
2085
|
+
*/
|
|
1973
2086
|
export interface BatchGetProjectsInput {
|
|
1974
2087
|
/**
|
|
1975
2088
|
* <p>The names or ARNs of the build projects. To get information about a project shared
|
|
@@ -1979,6 +2092,7 @@ export interface BatchGetProjectsInput {
|
|
|
1979
2092
|
names: string[] | undefined;
|
|
1980
2093
|
}
|
|
1981
2094
|
/**
|
|
2095
|
+
* @public
|
|
1982
2096
|
* <p>Information about the build output artifacts for the build project.</p>
|
|
1983
2097
|
*/
|
|
1984
2098
|
export interface ProjectArtifacts {
|
|
@@ -2221,6 +2335,7 @@ export interface ProjectArtifacts {
|
|
|
2221
2335
|
bucketOwnerAccess?: BucketOwnerAccess | string;
|
|
2222
2336
|
}
|
|
2223
2337
|
/**
|
|
2338
|
+
* @public
|
|
2224
2339
|
* <p>Information about the build badge for the build project.</p>
|
|
2225
2340
|
*/
|
|
2226
2341
|
export interface ProjectBadge {
|
|
@@ -2235,11 +2350,15 @@ export interface ProjectBadge {
|
|
|
2235
2350
|
*/
|
|
2236
2351
|
badgeRequestUrl?: string;
|
|
2237
2352
|
}
|
|
2353
|
+
/**
|
|
2354
|
+
* @public
|
|
2355
|
+
*/
|
|
2238
2356
|
export declare enum ProjectVisibilityType {
|
|
2239
2357
|
PRIVATE = "PRIVATE",
|
|
2240
2358
|
PUBLIC_READ = "PUBLIC_READ"
|
|
2241
2359
|
}
|
|
2242
2360
|
/**
|
|
2361
|
+
* @public
|
|
2243
2362
|
* <p>A tag, consisting of a key and a value.</p>
|
|
2244
2363
|
* <p>This tag is available for use by Amazon Web Services services that support tags in CodeBuild.</p>
|
|
2245
2364
|
*/
|
|
@@ -2253,10 +2372,16 @@ export interface Tag {
|
|
|
2253
2372
|
*/
|
|
2254
2373
|
value?: string;
|
|
2255
2374
|
}
|
|
2375
|
+
/**
|
|
2376
|
+
* @public
|
|
2377
|
+
*/
|
|
2256
2378
|
export declare enum WebhookBuildType {
|
|
2257
2379
|
BUILD = "BUILD",
|
|
2258
2380
|
BUILD_BATCH = "BUILD_BATCH"
|
|
2259
2381
|
}
|
|
2382
|
+
/**
|
|
2383
|
+
* @public
|
|
2384
|
+
*/
|
|
2260
2385
|
export declare enum WebhookFilterType {
|
|
2261
2386
|
ACTOR_ACCOUNT_ID = "ACTOR_ACCOUNT_ID",
|
|
2262
2387
|
BASE_REF = "BASE_REF",
|
|
@@ -2266,6 +2391,7 @@ export declare enum WebhookFilterType {
|
|
|
2266
2391
|
HEAD_REF = "HEAD_REF"
|
|
2267
2392
|
}
|
|
2268
2393
|
/**
|
|
2394
|
+
* @public
|
|
2269
2395
|
* <p> A filter used to determine which webhooks trigger a build. </p>
|
|
2270
2396
|
*/
|
|
2271
2397
|
export interface WebhookFilter {
|
|
@@ -2367,6 +2493,7 @@ export interface WebhookFilter {
|
|
|
2367
2493
|
excludeMatchedPattern?: boolean;
|
|
2368
2494
|
}
|
|
2369
2495
|
/**
|
|
2496
|
+
* @public
|
|
2370
2497
|
* <p>Information about a webhook that connects repository events to a build project in
|
|
2371
2498
|
* CodeBuild.</p>
|
|
2372
2499
|
*/
|
|
@@ -2416,6 +2543,7 @@ export interface Webhook {
|
|
|
2416
2543
|
lastModifiedSecret?: Date;
|
|
2417
2544
|
}
|
|
2418
2545
|
/**
|
|
2546
|
+
* @public
|
|
2419
2547
|
* <p>Information about a build project.</p>
|
|
2420
2548
|
*/
|
|
2421
2549
|
export interface Project {
|
|
@@ -2599,6 +2727,9 @@ export interface Project {
|
|
|
2599
2727
|
*/
|
|
2600
2728
|
resourceAccessRole?: string;
|
|
2601
2729
|
}
|
|
2730
|
+
/**
|
|
2731
|
+
* @public
|
|
2732
|
+
*/
|
|
2602
2733
|
export interface BatchGetProjectsOutput {
|
|
2603
2734
|
/**
|
|
2604
2735
|
* <p>Information about the requested build projects.</p>
|
|
@@ -2609,6 +2740,9 @@ export interface BatchGetProjectsOutput {
|
|
|
2609
2740
|
*/
|
|
2610
2741
|
projectsNotFound?: string[];
|
|
2611
2742
|
}
|
|
2743
|
+
/**
|
|
2744
|
+
* @public
|
|
2745
|
+
*/
|
|
2612
2746
|
export interface BatchGetReportGroupsInput {
|
|
2613
2747
|
/**
|
|
2614
2748
|
* <p>
|
|
@@ -2617,15 +2751,22 @@ export interface BatchGetReportGroupsInput {
|
|
|
2617
2751
|
*/
|
|
2618
2752
|
reportGroupArns: string[] | undefined;
|
|
2619
2753
|
}
|
|
2754
|
+
/**
|
|
2755
|
+
* @public
|
|
2756
|
+
*/
|
|
2620
2757
|
export declare enum ReportExportConfigType {
|
|
2621
2758
|
NO_EXPORT = "NO_EXPORT",
|
|
2622
2759
|
S3 = "S3"
|
|
2623
2760
|
}
|
|
2761
|
+
/**
|
|
2762
|
+
* @public
|
|
2763
|
+
*/
|
|
2624
2764
|
export declare enum ReportPackagingType {
|
|
2625
2765
|
NONE = "NONE",
|
|
2626
2766
|
ZIP = "ZIP"
|
|
2627
2767
|
}
|
|
2628
2768
|
/**
|
|
2769
|
+
* @public
|
|
2629
2770
|
* <p> Information about the S3 bucket where the raw data of a report are exported. </p>
|
|
2630
2771
|
*/
|
|
2631
2772
|
export interface S3ReportExportConfig {
|
|
@@ -2668,6 +2809,7 @@ export interface S3ReportExportConfig {
|
|
|
2668
2809
|
encryptionDisabled?: boolean;
|
|
2669
2810
|
}
|
|
2670
2811
|
/**
|
|
2812
|
+
* @public
|
|
2671
2813
|
* <p> Information about the location where the run of a report is exported. </p>
|
|
2672
2814
|
*/
|
|
2673
2815
|
export interface ReportExportConfig {
|
|
@@ -2691,15 +2833,22 @@ export interface ReportExportConfig {
|
|
|
2691
2833
|
*/
|
|
2692
2834
|
s3Destination?: S3ReportExportConfig;
|
|
2693
2835
|
}
|
|
2836
|
+
/**
|
|
2837
|
+
* @public
|
|
2838
|
+
*/
|
|
2694
2839
|
export declare enum ReportGroupStatusType {
|
|
2695
2840
|
ACTIVE = "ACTIVE",
|
|
2696
2841
|
DELETING = "DELETING"
|
|
2697
2842
|
}
|
|
2843
|
+
/**
|
|
2844
|
+
* @public
|
|
2845
|
+
*/
|
|
2698
2846
|
export declare enum ReportType {
|
|
2699
2847
|
CODE_COVERAGE = "CODE_COVERAGE",
|
|
2700
2848
|
TEST = "TEST"
|
|
2701
2849
|
}
|
|
2702
2850
|
/**
|
|
2851
|
+
* @public
|
|
2703
2852
|
* <p>A series of reports. Each report contains information about the results from running a
|
|
2704
2853
|
* series of test cases. You specify the test cases for a report group in the buildspec for
|
|
2705
2854
|
* a build project using one or more paths to the test case files. </p>
|
|
@@ -2765,6 +2914,9 @@ export interface ReportGroup {
|
|
|
2765
2914
|
*/
|
|
2766
2915
|
status?: ReportGroupStatusType | string;
|
|
2767
2916
|
}
|
|
2917
|
+
/**
|
|
2918
|
+
* @public
|
|
2919
|
+
*/
|
|
2768
2920
|
export interface BatchGetReportGroupsOutput {
|
|
2769
2921
|
/**
|
|
2770
2922
|
* <p>
|
|
@@ -2779,6 +2931,9 @@ export interface BatchGetReportGroupsOutput {
|
|
|
2779
2931
|
*/
|
|
2780
2932
|
reportGroupsNotFound?: string[];
|
|
2781
2933
|
}
|
|
2934
|
+
/**
|
|
2935
|
+
* @public
|
|
2936
|
+
*/
|
|
2782
2937
|
export interface BatchGetReportsInput {
|
|
2783
2938
|
/**
|
|
2784
2939
|
* <p>
|
|
@@ -2788,6 +2943,7 @@ export interface BatchGetReportsInput {
|
|
|
2788
2943
|
reportArns: string[] | undefined;
|
|
2789
2944
|
}
|
|
2790
2945
|
/**
|
|
2946
|
+
* @public
|
|
2791
2947
|
* <p>Contains a summary of a code coverage report.</p>
|
|
2792
2948
|
* <p>Line coverage measures how many statements your tests cover. A statement is a single
|
|
2793
2949
|
* instruction, not including comments, conditionals, etc.</p>
|
|
@@ -2820,6 +2976,9 @@ export interface CodeCoverageReportSummary {
|
|
|
2820
2976
|
*/
|
|
2821
2977
|
branchesMissed?: number;
|
|
2822
2978
|
}
|
|
2979
|
+
/**
|
|
2980
|
+
* @public
|
|
2981
|
+
*/
|
|
2823
2982
|
export declare enum ReportStatusType {
|
|
2824
2983
|
DELETING = "DELETING",
|
|
2825
2984
|
FAILED = "FAILED",
|
|
@@ -2828,6 +2987,7 @@ export declare enum ReportStatusType {
|
|
|
2828
2987
|
SUCCEEDED = "SUCCEEDED"
|
|
2829
2988
|
}
|
|
2830
2989
|
/**
|
|
2990
|
+
* @public
|
|
2831
2991
|
* <p> Information about a test report. </p>
|
|
2832
2992
|
*/
|
|
2833
2993
|
export interface TestReportSummary {
|
|
@@ -2848,6 +3008,7 @@ export interface TestReportSummary {
|
|
|
2848
3008
|
durationInNanoSeconds: number | undefined;
|
|
2849
3009
|
}
|
|
2850
3010
|
/**
|
|
3011
|
+
* @public
|
|
2851
3012
|
* <p>Information about the results from running a series of test cases during the run of a
|
|
2852
3013
|
* build project. The test cases are specified in the buildspec for the build project using
|
|
2853
3014
|
* one or more paths to the test case files. You can specify any type of tests you want,
|
|
@@ -2918,6 +3079,9 @@ export interface Report {
|
|
|
2918
3079
|
*/
|
|
2919
3080
|
codeCoverageSummary?: CodeCoverageReportSummary;
|
|
2920
3081
|
}
|
|
3082
|
+
/**
|
|
3083
|
+
* @public
|
|
3084
|
+
*/
|
|
2921
3085
|
export interface BatchGetReportsOutput {
|
|
2922
3086
|
/**
|
|
2923
3087
|
* <p>
|
|
@@ -2933,6 +3097,7 @@ export interface BatchGetReportsOutput {
|
|
|
2933
3097
|
reportsNotFound?: string[];
|
|
2934
3098
|
}
|
|
2935
3099
|
/**
|
|
3100
|
+
* @public
|
|
2936
3101
|
* <p>Specifies filters when retrieving batch builds.</p>
|
|
2937
3102
|
*/
|
|
2938
3103
|
export interface BuildBatchFilter {
|
|
@@ -2942,6 +3107,9 @@ export interface BuildBatchFilter {
|
|
|
2942
3107
|
*/
|
|
2943
3108
|
status?: StatusType | string;
|
|
2944
3109
|
}
|
|
3110
|
+
/**
|
|
3111
|
+
* @public
|
|
3112
|
+
*/
|
|
2945
3113
|
export interface CreateProjectInput {
|
|
2946
3114
|
/**
|
|
2947
3115
|
* <p>The name of the build project.</p>
|
|
@@ -3083,6 +3251,9 @@ export interface CreateProjectInput {
|
|
|
3083
3251
|
*/
|
|
3084
3252
|
concurrentBuildLimit?: number;
|
|
3085
3253
|
}
|
|
3254
|
+
/**
|
|
3255
|
+
* @public
|
|
3256
|
+
*/
|
|
3086
3257
|
export interface CreateProjectOutput {
|
|
3087
3258
|
/**
|
|
3088
3259
|
* <p>Information about the build project that was created.</p>
|
|
@@ -3090,6 +3261,7 @@ export interface CreateProjectOutput {
|
|
|
3090
3261
|
project?: Project;
|
|
3091
3262
|
}
|
|
3092
3263
|
/**
|
|
3264
|
+
* @public
|
|
3093
3265
|
* <p>The specified Amazon Web Services resource cannot be created, because an Amazon Web Services resource with the same
|
|
3094
3266
|
* settings already exists.</p>
|
|
3095
3267
|
*/
|
|
@@ -3101,6 +3273,9 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
3101
3273
|
*/
|
|
3102
3274
|
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
3103
3275
|
}
|
|
3276
|
+
/**
|
|
3277
|
+
* @public
|
|
3278
|
+
*/
|
|
3104
3279
|
export interface CreateReportGroupInput {
|
|
3105
3280
|
/**
|
|
3106
3281
|
* <p>
|
|
@@ -3129,6 +3304,9 @@ export interface CreateReportGroupInput {
|
|
|
3129
3304
|
*/
|
|
3130
3305
|
tags?: Tag[];
|
|
3131
3306
|
}
|
|
3307
|
+
/**
|
|
3308
|
+
* @public
|
|
3309
|
+
*/
|
|
3132
3310
|
export interface CreateReportGroupOutput {
|
|
3133
3311
|
/**
|
|
3134
3312
|
* <p>
|
|
@@ -3137,6 +3315,9 @@ export interface CreateReportGroupOutput {
|
|
|
3137
3315
|
*/
|
|
3138
3316
|
reportGroup?: ReportGroup;
|
|
3139
3317
|
}
|
|
3318
|
+
/**
|
|
3319
|
+
* @public
|
|
3320
|
+
*/
|
|
3140
3321
|
export interface CreateWebhookInput {
|
|
3141
3322
|
/**
|
|
3142
3323
|
* <p>The name of the CodeBuild project.</p>
|
|
@@ -3166,6 +3347,9 @@ export interface CreateWebhookInput {
|
|
|
3166
3347
|
*/
|
|
3167
3348
|
buildType?: WebhookBuildType | string;
|
|
3168
3349
|
}
|
|
3350
|
+
/**
|
|
3351
|
+
* @public
|
|
3352
|
+
*/
|
|
3169
3353
|
export interface CreateWebhookOutput {
|
|
3170
3354
|
/**
|
|
3171
3355
|
* <p>Information about a webhook that connects repository events to a build project in
|
|
@@ -3174,6 +3358,7 @@ export interface CreateWebhookOutput {
|
|
|
3174
3358
|
webhook?: Webhook;
|
|
3175
3359
|
}
|
|
3176
3360
|
/**
|
|
3361
|
+
* @public
|
|
3177
3362
|
* <p>There was a problem with the underlying OAuth provider.</p>
|
|
3178
3363
|
*/
|
|
3179
3364
|
export declare class OAuthProviderException extends __BaseException {
|
|
@@ -3185,6 +3370,7 @@ export declare class OAuthProviderException extends __BaseException {
|
|
|
3185
3370
|
constructor(opts: __ExceptionOptionType<OAuthProviderException, __BaseException>);
|
|
3186
3371
|
}
|
|
3187
3372
|
/**
|
|
3373
|
+
* @public
|
|
3188
3374
|
* <p>The specified Amazon Web Services resource cannot be found.</p>
|
|
3189
3375
|
*/
|
|
3190
3376
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -3195,12 +3381,18 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
3195
3381
|
*/
|
|
3196
3382
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
3197
3383
|
}
|
|
3384
|
+
/**
|
|
3385
|
+
* @public
|
|
3386
|
+
*/
|
|
3198
3387
|
export interface DeleteBuildBatchInput {
|
|
3199
3388
|
/**
|
|
3200
3389
|
* <p>The identifier of the batch build to delete.</p>
|
|
3201
3390
|
*/
|
|
3202
3391
|
id: string | undefined;
|
|
3203
3392
|
}
|
|
3393
|
+
/**
|
|
3394
|
+
* @public
|
|
3395
|
+
*/
|
|
3204
3396
|
export interface DeleteBuildBatchOutput {
|
|
3205
3397
|
/**
|
|
3206
3398
|
* <p>The status code.</p>
|
|
@@ -3216,14 +3408,23 @@ export interface DeleteBuildBatchOutput {
|
|
|
3216
3408
|
*/
|
|
3217
3409
|
buildsNotDeleted?: BuildNotDeleted[];
|
|
3218
3410
|
}
|
|
3411
|
+
/**
|
|
3412
|
+
* @public
|
|
3413
|
+
*/
|
|
3219
3414
|
export interface DeleteProjectInput {
|
|
3220
3415
|
/**
|
|
3221
3416
|
* <p>The name of the build project.</p>
|
|
3222
3417
|
*/
|
|
3223
3418
|
name: string | undefined;
|
|
3224
3419
|
}
|
|
3420
|
+
/**
|
|
3421
|
+
* @public
|
|
3422
|
+
*/
|
|
3225
3423
|
export interface DeleteProjectOutput {
|
|
3226
3424
|
}
|
|
3425
|
+
/**
|
|
3426
|
+
* @public
|
|
3427
|
+
*/
|
|
3227
3428
|
export interface DeleteReportInput {
|
|
3228
3429
|
/**
|
|
3229
3430
|
* <p>
|
|
@@ -3232,8 +3433,14 @@ export interface DeleteReportInput {
|
|
|
3232
3433
|
*/
|
|
3233
3434
|
arn: string | undefined;
|
|
3234
3435
|
}
|
|
3436
|
+
/**
|
|
3437
|
+
* @public
|
|
3438
|
+
*/
|
|
3235
3439
|
export interface DeleteReportOutput {
|
|
3236
3440
|
}
|
|
3441
|
+
/**
|
|
3442
|
+
* @public
|
|
3443
|
+
*/
|
|
3237
3444
|
export interface DeleteReportGroupInput {
|
|
3238
3445
|
/**
|
|
3239
3446
|
* <p>The ARN of the report group to delete. </p>
|
|
@@ -3248,44 +3455,74 @@ export interface DeleteReportGroupInput {
|
|
|
3248
3455
|
*/
|
|
3249
3456
|
deleteReports?: boolean;
|
|
3250
3457
|
}
|
|
3458
|
+
/**
|
|
3459
|
+
* @public
|
|
3460
|
+
*/
|
|
3251
3461
|
export interface DeleteReportGroupOutput {
|
|
3252
3462
|
}
|
|
3463
|
+
/**
|
|
3464
|
+
* @public
|
|
3465
|
+
*/
|
|
3253
3466
|
export interface DeleteResourcePolicyInput {
|
|
3254
3467
|
/**
|
|
3255
3468
|
* <p> The ARN of the resource that is associated with the resource policy. </p>
|
|
3256
3469
|
*/
|
|
3257
3470
|
resourceArn: string | undefined;
|
|
3258
3471
|
}
|
|
3472
|
+
/**
|
|
3473
|
+
* @public
|
|
3474
|
+
*/
|
|
3259
3475
|
export interface DeleteResourcePolicyOutput {
|
|
3260
3476
|
}
|
|
3477
|
+
/**
|
|
3478
|
+
* @public
|
|
3479
|
+
*/
|
|
3261
3480
|
export interface DeleteSourceCredentialsInput {
|
|
3262
3481
|
/**
|
|
3263
3482
|
* <p> The Amazon Resource Name (ARN) of the token.</p>
|
|
3264
3483
|
*/
|
|
3265
3484
|
arn: string | undefined;
|
|
3266
3485
|
}
|
|
3486
|
+
/**
|
|
3487
|
+
* @public
|
|
3488
|
+
*/
|
|
3267
3489
|
export interface DeleteSourceCredentialsOutput {
|
|
3268
3490
|
/**
|
|
3269
3491
|
* <p> The Amazon Resource Name (ARN) of the token. </p>
|
|
3270
3492
|
*/
|
|
3271
3493
|
arn?: string;
|
|
3272
3494
|
}
|
|
3495
|
+
/**
|
|
3496
|
+
* @public
|
|
3497
|
+
*/
|
|
3273
3498
|
export interface DeleteWebhookInput {
|
|
3274
3499
|
/**
|
|
3275
3500
|
* <p>The name of the CodeBuild project.</p>
|
|
3276
3501
|
*/
|
|
3277
3502
|
projectName: string | undefined;
|
|
3278
3503
|
}
|
|
3504
|
+
/**
|
|
3505
|
+
* @public
|
|
3506
|
+
*/
|
|
3279
3507
|
export interface DeleteWebhookOutput {
|
|
3280
3508
|
}
|
|
3509
|
+
/**
|
|
3510
|
+
* @public
|
|
3511
|
+
*/
|
|
3281
3512
|
export declare enum ReportCodeCoverageSortByType {
|
|
3282
3513
|
FILE_PATH = "FILE_PATH",
|
|
3283
3514
|
LINE_COVERAGE_PERCENTAGE = "LINE_COVERAGE_PERCENTAGE"
|
|
3284
3515
|
}
|
|
3516
|
+
/**
|
|
3517
|
+
* @public
|
|
3518
|
+
*/
|
|
3285
3519
|
export declare enum SortOrderType {
|
|
3286
3520
|
ASCENDING = "ASCENDING",
|
|
3287
3521
|
DESCENDING = "DESCENDING"
|
|
3288
3522
|
}
|
|
3523
|
+
/**
|
|
3524
|
+
* @public
|
|
3525
|
+
*/
|
|
3289
3526
|
export interface DescribeCodeCoveragesInput {
|
|
3290
3527
|
/**
|
|
3291
3528
|
* <p>
|
|
@@ -3331,6 +3568,7 @@ export interface DescribeCodeCoveragesInput {
|
|
|
3331
3568
|
maxLineCoveragePercentage?: number;
|
|
3332
3569
|
}
|
|
3333
3570
|
/**
|
|
3571
|
+
* @public
|
|
3334
3572
|
* <p>Contains code coverage report information.</p>
|
|
3335
3573
|
* <p>Line coverage measures how many statements your tests cover. A statement is a single
|
|
3336
3574
|
* instruction, not including comments, conditionals, etc.</p>
|
|
@@ -3379,6 +3617,9 @@ export interface CodeCoverage {
|
|
|
3379
3617
|
*/
|
|
3380
3618
|
expired?: Date;
|
|
3381
3619
|
}
|
|
3620
|
+
/**
|
|
3621
|
+
* @public
|
|
3622
|
+
*/
|
|
3382
3623
|
export interface DescribeCodeCoveragesOutput {
|
|
3383
3624
|
/**
|
|
3384
3625
|
* <p>If there are more items to return, this contains a token that is passed to a subsequent
|
|
@@ -3391,6 +3632,7 @@ export interface DescribeCodeCoveragesOutput {
|
|
|
3391
3632
|
codeCoverages?: CodeCoverage[];
|
|
3392
3633
|
}
|
|
3393
3634
|
/**
|
|
3635
|
+
* @public
|
|
3394
3636
|
* <p>A filter used to return specific types of test cases. In order to pass the filter, the
|
|
3395
3637
|
* report must meet all of the filter properties.</p>
|
|
3396
3638
|
*/
|
|
@@ -3434,6 +3676,9 @@ export interface TestCaseFilter {
|
|
|
3434
3676
|
*/
|
|
3435
3677
|
keyword?: string;
|
|
3436
3678
|
}
|
|
3679
|
+
/**
|
|
3680
|
+
* @public
|
|
3681
|
+
*/
|
|
3437
3682
|
export interface DescribeTestCasesInput {
|
|
3438
3683
|
/**
|
|
3439
3684
|
* <p>
|
|
@@ -3466,6 +3711,7 @@ export interface DescribeTestCasesInput {
|
|
|
3466
3711
|
filter?: TestCaseFilter;
|
|
3467
3712
|
}
|
|
3468
3713
|
/**
|
|
3714
|
+
* @public
|
|
3469
3715
|
* <p> Information about a test case created using a framework such as NUnit or Cucumber. A
|
|
3470
3716
|
* test case might be a unit test or a configuration test. </p>
|
|
3471
3717
|
*/
|
|
@@ -3508,6 +3754,9 @@ export interface TestCase {
|
|
|
3508
3754
|
*/
|
|
3509
3755
|
expired?: Date;
|
|
3510
3756
|
}
|
|
3757
|
+
/**
|
|
3758
|
+
* @public
|
|
3759
|
+
*/
|
|
3511
3760
|
export interface DescribeTestCasesOutput {
|
|
3512
3761
|
/**
|
|
3513
3762
|
* <p>
|
|
@@ -3526,6 +3775,9 @@ export interface DescribeTestCasesOutput {
|
|
|
3526
3775
|
*/
|
|
3527
3776
|
testCases?: TestCase[];
|
|
3528
3777
|
}
|
|
3778
|
+
/**
|
|
3779
|
+
* @public
|
|
3780
|
+
*/
|
|
3529
3781
|
export declare enum ReportGroupTrendFieldType {
|
|
3530
3782
|
BRANCHES_COVERED = "BRANCHES_COVERED",
|
|
3531
3783
|
BRANCHES_MISSED = "BRANCHES_MISSED",
|
|
@@ -3537,6 +3789,9 @@ export declare enum ReportGroupTrendFieldType {
|
|
|
3537
3789
|
PASS_RATE = "PASS_RATE",
|
|
3538
3790
|
TOTAL = "TOTAL"
|
|
3539
3791
|
}
|
|
3792
|
+
/**
|
|
3793
|
+
* @public
|
|
3794
|
+
*/
|
|
3540
3795
|
export interface GetReportGroupTrendInput {
|
|
3541
3796
|
/**
|
|
3542
3797
|
* <p>The ARN of the report group that contains the reports to analyze.</p>
|
|
@@ -3613,6 +3868,7 @@ export interface GetReportGroupTrendInput {
|
|
|
3613
3868
|
trendField: ReportGroupTrendFieldType | string | undefined;
|
|
3614
3869
|
}
|
|
3615
3870
|
/**
|
|
3871
|
+
* @public
|
|
3616
3872
|
* <p>Contains the unmodified data for the report. For more information, see .</p>
|
|
3617
3873
|
*/
|
|
3618
3874
|
export interface ReportWithRawData {
|
|
@@ -3626,6 +3882,7 @@ export interface ReportWithRawData {
|
|
|
3626
3882
|
data?: string;
|
|
3627
3883
|
}
|
|
3628
3884
|
/**
|
|
3885
|
+
* @public
|
|
3629
3886
|
* <p>Contains trend statistics for a set of reports. The actual values depend on the type of
|
|
3630
3887
|
* trend being collected. For more information, see .</p>
|
|
3631
3888
|
*/
|
|
@@ -3643,6 +3900,9 @@ export interface ReportGroupTrendStats {
|
|
|
3643
3900
|
*/
|
|
3644
3901
|
min?: string;
|
|
3645
3902
|
}
|
|
3903
|
+
/**
|
|
3904
|
+
* @public
|
|
3905
|
+
*/
|
|
3646
3906
|
export interface GetReportGroupTrendOutput {
|
|
3647
3907
|
/**
|
|
3648
3908
|
* <p>Contains the accumulated trend data.</p>
|
|
@@ -3653,23 +3913,35 @@ export interface GetReportGroupTrendOutput {
|
|
|
3653
3913
|
*/
|
|
3654
3914
|
rawData?: ReportWithRawData[];
|
|
3655
3915
|
}
|
|
3916
|
+
/**
|
|
3917
|
+
* @public
|
|
3918
|
+
*/
|
|
3656
3919
|
export interface GetResourcePolicyInput {
|
|
3657
3920
|
/**
|
|
3658
3921
|
* <p> The ARN of the resource that is associated with the resource policy. </p>
|
|
3659
3922
|
*/
|
|
3660
3923
|
resourceArn: string | undefined;
|
|
3661
3924
|
}
|
|
3925
|
+
/**
|
|
3926
|
+
* @public
|
|
3927
|
+
*/
|
|
3662
3928
|
export interface GetResourcePolicyOutput {
|
|
3663
3929
|
/**
|
|
3664
3930
|
* <p> The resource policy for the resource identified by the input ARN parameter. </p>
|
|
3665
3931
|
*/
|
|
3666
3932
|
policy?: string;
|
|
3667
3933
|
}
|
|
3934
|
+
/**
|
|
3935
|
+
* @public
|
|
3936
|
+
*/
|
|
3668
3937
|
export declare enum ServerType {
|
|
3669
3938
|
BITBUCKET = "BITBUCKET",
|
|
3670
3939
|
GITHUB = "GITHUB",
|
|
3671
3940
|
GITHUB_ENTERPRISE = "GITHUB_ENTERPRISE"
|
|
3672
3941
|
}
|
|
3942
|
+
/**
|
|
3943
|
+
* @public
|
|
3944
|
+
*/
|
|
3673
3945
|
export interface ImportSourceCredentialsInput {
|
|
3674
3946
|
/**
|
|
3675
3947
|
* <p> The Bitbucket username when the <code>authType</code> is BASIC_AUTH. This parameter
|
|
@@ -3698,20 +3970,32 @@ export interface ImportSourceCredentialsInput {
|
|
|
3698
3970
|
*/
|
|
3699
3971
|
shouldOverwrite?: boolean;
|
|
3700
3972
|
}
|
|
3973
|
+
/**
|
|
3974
|
+
* @public
|
|
3975
|
+
*/
|
|
3701
3976
|
export interface ImportSourceCredentialsOutput {
|
|
3702
3977
|
/**
|
|
3703
3978
|
* <p> The Amazon Resource Name (ARN) of the token. </p>
|
|
3704
3979
|
*/
|
|
3705
3980
|
arn?: string;
|
|
3706
3981
|
}
|
|
3982
|
+
/**
|
|
3983
|
+
* @public
|
|
3984
|
+
*/
|
|
3707
3985
|
export interface InvalidateProjectCacheInput {
|
|
3708
3986
|
/**
|
|
3709
3987
|
* <p>The name of the CodeBuild build project that the cache is reset for.</p>
|
|
3710
3988
|
*/
|
|
3711
3989
|
projectName: string | undefined;
|
|
3712
3990
|
}
|
|
3991
|
+
/**
|
|
3992
|
+
* @public
|
|
3993
|
+
*/
|
|
3713
3994
|
export interface InvalidateProjectCacheOutput {
|
|
3714
3995
|
}
|
|
3996
|
+
/**
|
|
3997
|
+
* @public
|
|
3998
|
+
*/
|
|
3715
3999
|
export interface ListBuildBatchesInput {
|
|
3716
4000
|
/**
|
|
3717
4001
|
* <p>A <code>BuildBatchFilter</code> object that specifies the filters for the search.</p>
|
|
@@ -3742,6 +4026,9 @@ export interface ListBuildBatchesInput {
|
|
|
3742
4026
|
*/
|
|
3743
4027
|
nextToken?: string;
|
|
3744
4028
|
}
|
|
4029
|
+
/**
|
|
4030
|
+
* @public
|
|
4031
|
+
*/
|
|
3745
4032
|
export interface ListBuildBatchesOutput {
|
|
3746
4033
|
/**
|
|
3747
4034
|
* <p>An array of strings that contains the batch build identifiers.</p>
|
|
@@ -3753,6 +4040,9 @@ export interface ListBuildBatchesOutput {
|
|
|
3753
4040
|
*/
|
|
3754
4041
|
nextToken?: string;
|
|
3755
4042
|
}
|
|
4043
|
+
/**
|
|
4044
|
+
* @public
|
|
4045
|
+
*/
|
|
3756
4046
|
export interface ListBuildBatchesForProjectInput {
|
|
3757
4047
|
/**
|
|
3758
4048
|
* <p>The name of the project.</p>
|
|
@@ -3789,6 +4079,9 @@ export interface ListBuildBatchesForProjectInput {
|
|
|
3789
4079
|
*/
|
|
3790
4080
|
nextToken?: string;
|
|
3791
4081
|
}
|
|
4082
|
+
/**
|
|
4083
|
+
* @public
|
|
4084
|
+
*/
|
|
3792
4085
|
export interface ListBuildBatchesForProjectOutput {
|
|
3793
4086
|
/**
|
|
3794
4087
|
* <p>An array of strings that contains the batch build identifiers.</p>
|
|
@@ -3801,6 +4094,9 @@ export interface ListBuildBatchesForProjectOutput {
|
|
|
3801
4094
|
*/
|
|
3802
4095
|
nextToken?: string;
|
|
3803
4096
|
}
|
|
4097
|
+
/**
|
|
4098
|
+
* @public
|
|
4099
|
+
*/
|
|
3804
4100
|
export interface ListBuildsInput {
|
|
3805
4101
|
/**
|
|
3806
4102
|
* <p>The order to list build IDs. Valid values include:</p>
|
|
@@ -3828,6 +4124,9 @@ export interface ListBuildsInput {
|
|
|
3828
4124
|
*/
|
|
3829
4125
|
nextToken?: string;
|
|
3830
4126
|
}
|
|
4127
|
+
/**
|
|
4128
|
+
* @public
|
|
4129
|
+
*/
|
|
3831
4130
|
export interface ListBuildsOutput {
|
|
3832
4131
|
/**
|
|
3833
4132
|
* <p>A list of build IDs, with each build ID representing a single build.</p>
|
|
@@ -3841,6 +4140,9 @@ export interface ListBuildsOutput {
|
|
|
3841
4140
|
*/
|
|
3842
4141
|
nextToken?: string;
|
|
3843
4142
|
}
|
|
4143
|
+
/**
|
|
4144
|
+
* @public
|
|
4145
|
+
*/
|
|
3844
4146
|
export interface ListBuildsForProjectInput {
|
|
3845
4147
|
/**
|
|
3846
4148
|
* <p>The name of the CodeBuild project.</p>
|
|
@@ -3874,6 +4176,9 @@ export interface ListBuildsForProjectInput {
|
|
|
3874
4176
|
*/
|
|
3875
4177
|
nextToken?: string;
|
|
3876
4178
|
}
|
|
4179
|
+
/**
|
|
4180
|
+
* @public
|
|
4181
|
+
*/
|
|
3877
4182
|
export interface ListBuildsForProjectOutput {
|
|
3878
4183
|
/**
|
|
3879
4184
|
* <p>A list of build identifiers for the specified build project, with each build ID representing a
|
|
@@ -3888,9 +4193,13 @@ export interface ListBuildsForProjectOutput {
|
|
|
3888
4193
|
*/
|
|
3889
4194
|
nextToken?: string;
|
|
3890
4195
|
}
|
|
4196
|
+
/**
|
|
4197
|
+
* @public
|
|
4198
|
+
*/
|
|
3891
4199
|
export interface ListCuratedEnvironmentImagesInput {
|
|
3892
4200
|
}
|
|
3893
4201
|
/**
|
|
4202
|
+
* @public
|
|
3894
4203
|
* <p>Information about a Docker image that is managed by CodeBuild.</p>
|
|
3895
4204
|
*/
|
|
3896
4205
|
export interface EnvironmentImage {
|
|
@@ -3907,6 +4216,9 @@ export interface EnvironmentImage {
|
|
|
3907
4216
|
*/
|
|
3908
4217
|
versions?: string[];
|
|
3909
4218
|
}
|
|
4219
|
+
/**
|
|
4220
|
+
* @public
|
|
4221
|
+
*/
|
|
3910
4222
|
export declare enum LanguageType {
|
|
3911
4223
|
ANDROID = "ANDROID",
|
|
3912
4224
|
BASE = "BASE",
|
|
@@ -3920,6 +4232,7 @@ export declare enum LanguageType {
|
|
|
3920
4232
|
RUBY = "RUBY"
|
|
3921
4233
|
}
|
|
3922
4234
|
/**
|
|
4235
|
+
* @public
|
|
3923
4236
|
* <p>A set of Docker images that are related by programming language and are managed by
|
|
3924
4237
|
* CodeBuild.</p>
|
|
3925
4238
|
*/
|
|
@@ -3934,6 +4247,9 @@ export interface EnvironmentLanguage {
|
|
|
3934
4247
|
*/
|
|
3935
4248
|
images?: EnvironmentImage[];
|
|
3936
4249
|
}
|
|
4250
|
+
/**
|
|
4251
|
+
* @public
|
|
4252
|
+
*/
|
|
3937
4253
|
export declare enum PlatformType {
|
|
3938
4254
|
AMAZON_LINUX = "AMAZON_LINUX",
|
|
3939
4255
|
DEBIAN = "DEBIAN",
|
|
@@ -3941,6 +4257,7 @@ export declare enum PlatformType {
|
|
|
3941
4257
|
WINDOWS_SERVER = "WINDOWS_SERVER"
|
|
3942
4258
|
}
|
|
3943
4259
|
/**
|
|
4260
|
+
* @public
|
|
3944
4261
|
* <p>A set of Docker images that are related by platform and are managed by CodeBuild.</p>
|
|
3945
4262
|
*/
|
|
3946
4263
|
export interface EnvironmentPlatform {
|
|
@@ -3954,6 +4271,9 @@ export interface EnvironmentPlatform {
|
|
|
3954
4271
|
*/
|
|
3955
4272
|
languages?: EnvironmentLanguage[];
|
|
3956
4273
|
}
|
|
4274
|
+
/**
|
|
4275
|
+
* @public
|
|
4276
|
+
*/
|
|
3957
4277
|
export interface ListCuratedEnvironmentImagesOutput {
|
|
3958
4278
|
/**
|
|
3959
4279
|
* <p>Information about supported platforms for Docker images that are managed by
|
|
@@ -3961,11 +4281,17 @@ export interface ListCuratedEnvironmentImagesOutput {
|
|
|
3961
4281
|
*/
|
|
3962
4282
|
platforms?: EnvironmentPlatform[];
|
|
3963
4283
|
}
|
|
4284
|
+
/**
|
|
4285
|
+
* @public
|
|
4286
|
+
*/
|
|
3964
4287
|
export declare enum ProjectSortByType {
|
|
3965
4288
|
CREATED_TIME = "CREATED_TIME",
|
|
3966
4289
|
LAST_MODIFIED_TIME = "LAST_MODIFIED_TIME",
|
|
3967
4290
|
NAME = "NAME"
|
|
3968
4291
|
}
|
|
4292
|
+
/**
|
|
4293
|
+
* @public
|
|
4294
|
+
*/
|
|
3969
4295
|
export interface ListProjectsInput {
|
|
3970
4296
|
/**
|
|
3971
4297
|
* <p>The criterion to be used to list build project names. Valid values include:</p>
|
|
@@ -4015,6 +4341,9 @@ export interface ListProjectsInput {
|
|
|
4015
4341
|
*/
|
|
4016
4342
|
nextToken?: string;
|
|
4017
4343
|
}
|
|
4344
|
+
/**
|
|
4345
|
+
* @public
|
|
4346
|
+
*/
|
|
4018
4347
|
export interface ListProjectsOutput {
|
|
4019
4348
|
/**
|
|
4020
4349
|
* <p>If there are more than 100 items in the list, only the first 100 items are returned,
|
|
@@ -4029,11 +4358,17 @@ export interface ListProjectsOutput {
|
|
|
4029
4358
|
*/
|
|
4030
4359
|
projects?: string[];
|
|
4031
4360
|
}
|
|
4361
|
+
/**
|
|
4362
|
+
* @public
|
|
4363
|
+
*/
|
|
4032
4364
|
export declare enum ReportGroupSortByType {
|
|
4033
4365
|
CREATED_TIME = "CREATED_TIME",
|
|
4034
4366
|
LAST_MODIFIED_TIME = "LAST_MODIFIED_TIME",
|
|
4035
4367
|
NAME = "NAME"
|
|
4036
4368
|
}
|
|
4369
|
+
/**
|
|
4370
|
+
* @public
|
|
4371
|
+
*/
|
|
4037
4372
|
export interface ListReportGroupsInput {
|
|
4038
4373
|
/**
|
|
4039
4374
|
* <p>
|
|
@@ -4081,6 +4416,9 @@ export interface ListReportGroupsInput {
|
|
|
4081
4416
|
*/
|
|
4082
4417
|
maxResults?: number;
|
|
4083
4418
|
}
|
|
4419
|
+
/**
|
|
4420
|
+
* @public
|
|
4421
|
+
*/
|
|
4084
4422
|
export interface ListReportGroupsOutput {
|
|
4085
4423
|
/**
|
|
4086
4424
|
* <p>
|
|
@@ -4100,6 +4438,7 @@ export interface ListReportGroupsOutput {
|
|
|
4100
4438
|
reportGroups?: string[];
|
|
4101
4439
|
}
|
|
4102
4440
|
/**
|
|
4441
|
+
* @public
|
|
4103
4442
|
* <p> A filter used to return reports with the status specified by the input
|
|
4104
4443
|
* <code>status</code> parameter. </p>
|
|
4105
4444
|
*/
|
|
@@ -4109,6 +4448,9 @@ export interface ReportFilter {
|
|
|
4109
4448
|
*/
|
|
4110
4449
|
status?: ReportStatusType | string;
|
|
4111
4450
|
}
|
|
4451
|
+
/**
|
|
4452
|
+
* @public
|
|
4453
|
+
*/
|
|
4112
4454
|
export interface ListReportsInput {
|
|
4113
4455
|
/**
|
|
4114
4456
|
* <p>
|
|
@@ -4152,6 +4494,9 @@ export interface ListReportsInput {
|
|
|
4152
4494
|
*/
|
|
4153
4495
|
filter?: ReportFilter;
|
|
4154
4496
|
}
|
|
4497
|
+
/**
|
|
4498
|
+
* @public
|
|
4499
|
+
*/
|
|
4155
4500
|
export interface ListReportsOutput {
|
|
4156
4501
|
/**
|
|
4157
4502
|
* <p>
|
|
@@ -4170,6 +4515,9 @@ export interface ListReportsOutput {
|
|
|
4170
4515
|
*/
|
|
4171
4516
|
reports?: string[];
|
|
4172
4517
|
}
|
|
4518
|
+
/**
|
|
4519
|
+
* @public
|
|
4520
|
+
*/
|
|
4173
4521
|
export interface ListReportsForReportGroupInput {
|
|
4174
4522
|
/**
|
|
4175
4523
|
* <p>
|
|
@@ -4207,6 +4555,9 @@ export interface ListReportsForReportGroupInput {
|
|
|
4207
4555
|
*/
|
|
4208
4556
|
filter?: ReportFilter;
|
|
4209
4557
|
}
|
|
4558
|
+
/**
|
|
4559
|
+
* @public
|
|
4560
|
+
*/
|
|
4210
4561
|
export interface ListReportsForReportGroupOutput {
|
|
4211
4562
|
/**
|
|
4212
4563
|
* <p>
|
|
@@ -4225,10 +4576,16 @@ export interface ListReportsForReportGroupOutput {
|
|
|
4225
4576
|
*/
|
|
4226
4577
|
reports?: string[];
|
|
4227
4578
|
}
|
|
4579
|
+
/**
|
|
4580
|
+
* @public
|
|
4581
|
+
*/
|
|
4228
4582
|
export declare enum SharedResourceSortByType {
|
|
4229
4583
|
ARN = "ARN",
|
|
4230
4584
|
MODIFIED_TIME = "MODIFIED_TIME"
|
|
4231
4585
|
}
|
|
4586
|
+
/**
|
|
4587
|
+
* @public
|
|
4588
|
+
*/
|
|
4232
4589
|
export interface ListSharedProjectsInput {
|
|
4233
4590
|
/**
|
|
4234
4591
|
* <p> The criterion to be used to list build projects shared with the current Amazon Web Services account
|
|
@@ -4276,6 +4633,9 @@ export interface ListSharedProjectsInput {
|
|
|
4276
4633
|
*/
|
|
4277
4634
|
nextToken?: string;
|
|
4278
4635
|
}
|
|
4636
|
+
/**
|
|
4637
|
+
* @public
|
|
4638
|
+
*/
|
|
4279
4639
|
export interface ListSharedProjectsOutput {
|
|
4280
4640
|
/**
|
|
4281
4641
|
* <p> During a previous call, the maximum number of items that can be returned is the value
|
|
@@ -4292,6 +4652,9 @@ export interface ListSharedProjectsOutput {
|
|
|
4292
4652
|
*/
|
|
4293
4653
|
projects?: string[];
|
|
4294
4654
|
}
|
|
4655
|
+
/**
|
|
4656
|
+
* @public
|
|
4657
|
+
*/
|
|
4295
4658
|
export interface ListSharedReportGroupsInput {
|
|
4296
4659
|
/**
|
|
4297
4660
|
* <p>The order in which to list shared report groups. Valid values include:</p>
|
|
@@ -4339,6 +4702,9 @@ export interface ListSharedReportGroupsInput {
|
|
|
4339
4702
|
*/
|
|
4340
4703
|
maxResults?: number;
|
|
4341
4704
|
}
|
|
4705
|
+
/**
|
|
4706
|
+
* @public
|
|
4707
|
+
*/
|
|
4342
4708
|
export interface ListSharedReportGroupsOutput {
|
|
4343
4709
|
/**
|
|
4344
4710
|
* <p> During a previous call, the maximum number of items that can be returned is the value
|
|
@@ -4355,9 +4721,13 @@ export interface ListSharedReportGroupsOutput {
|
|
|
4355
4721
|
*/
|
|
4356
4722
|
reportGroups?: string[];
|
|
4357
4723
|
}
|
|
4724
|
+
/**
|
|
4725
|
+
* @public
|
|
4726
|
+
*/
|
|
4358
4727
|
export interface ListSourceCredentialsInput {
|
|
4359
4728
|
}
|
|
4360
4729
|
/**
|
|
4730
|
+
* @public
|
|
4361
4731
|
* <p> Information about the credentials for a GitHub, GitHub Enterprise, or Bitbucket
|
|
4362
4732
|
* repository. </p>
|
|
4363
4733
|
*/
|
|
@@ -4377,6 +4747,9 @@ export interface SourceCredentialsInfo {
|
|
|
4377
4747
|
*/
|
|
4378
4748
|
authType?: AuthType | string;
|
|
4379
4749
|
}
|
|
4750
|
+
/**
|
|
4751
|
+
* @public
|
|
4752
|
+
*/
|
|
4380
4753
|
export interface ListSourceCredentialsOutput {
|
|
4381
4754
|
/**
|
|
4382
4755
|
* <p> A list of <code>SourceCredentialsInfo</code> objects. Each
|
|
@@ -4385,6 +4758,9 @@ export interface ListSourceCredentialsOutput {
|
|
|
4385
4758
|
*/
|
|
4386
4759
|
sourceCredentialsInfos?: SourceCredentialsInfo[];
|
|
4387
4760
|
}
|
|
4761
|
+
/**
|
|
4762
|
+
* @public
|
|
4763
|
+
*/
|
|
4388
4764
|
export interface PutResourcePolicyInput {
|
|
4389
4765
|
/**
|
|
4390
4766
|
* <p> A JSON-formatted resource policy. For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/project-sharing.html#project-sharing-share">Sharing
|
|
@@ -4398,6 +4774,9 @@ export interface PutResourcePolicyInput {
|
|
|
4398
4774
|
*/
|
|
4399
4775
|
resourceArn: string | undefined;
|
|
4400
4776
|
}
|
|
4777
|
+
/**
|
|
4778
|
+
* @public
|
|
4779
|
+
*/
|
|
4401
4780
|
export interface PutResourcePolicyOutput {
|
|
4402
4781
|
/**
|
|
4403
4782
|
* <p> The ARN of the <code>Project</code> or <code>ReportGroup</code> resource that is
|
|
@@ -4405,6 +4784,9 @@ export interface PutResourcePolicyOutput {
|
|
|
4405
4784
|
*/
|
|
4406
4785
|
resourceArn?: string;
|
|
4407
4786
|
}
|
|
4787
|
+
/**
|
|
4788
|
+
* @public
|
|
4789
|
+
*/
|
|
4408
4790
|
export interface RetryBuildInput {
|
|
4409
4791
|
/**
|
|
4410
4792
|
* <p>Specifies the identifier of the build to restart.</p>
|
|
@@ -4419,16 +4801,25 @@ export interface RetryBuildInput {
|
|
|
4419
4801
|
*/
|
|
4420
4802
|
idempotencyToken?: string;
|
|
4421
4803
|
}
|
|
4804
|
+
/**
|
|
4805
|
+
* @public
|
|
4806
|
+
*/
|
|
4422
4807
|
export interface RetryBuildOutput {
|
|
4423
4808
|
/**
|
|
4424
4809
|
* <p>Information about a build.</p>
|
|
4425
4810
|
*/
|
|
4426
4811
|
build?: Build;
|
|
4427
4812
|
}
|
|
4813
|
+
/**
|
|
4814
|
+
* @public
|
|
4815
|
+
*/
|
|
4428
4816
|
export declare enum RetryBuildBatchType {
|
|
4429
4817
|
RETRY_ALL_BUILDS = "RETRY_ALL_BUILDS",
|
|
4430
4818
|
RETRY_FAILED_BUILDS = "RETRY_FAILED_BUILDS"
|
|
4431
4819
|
}
|
|
4820
|
+
/**
|
|
4821
|
+
* @public
|
|
4822
|
+
*/
|
|
4432
4823
|
export interface RetryBuildBatchInput {
|
|
4433
4824
|
/**
|
|
4434
4825
|
* <p>Specifies the identifier of the batch build to restart.</p>
|
|
@@ -4447,12 +4838,18 @@ export interface RetryBuildBatchInput {
|
|
|
4447
4838
|
*/
|
|
4448
4839
|
retryType?: RetryBuildBatchType | string;
|
|
4449
4840
|
}
|
|
4841
|
+
/**
|
|
4842
|
+
* @public
|
|
4843
|
+
*/
|
|
4450
4844
|
export interface RetryBuildBatchOutput {
|
|
4451
4845
|
/**
|
|
4452
4846
|
* <p>Contains information about a batch build.</p>
|
|
4453
4847
|
*/
|
|
4454
4848
|
buildBatch?: BuildBatch;
|
|
4455
4849
|
}
|
|
4850
|
+
/**
|
|
4851
|
+
* @public
|
|
4852
|
+
*/
|
|
4456
4853
|
export interface StartBuildInput {
|
|
4457
4854
|
/**
|
|
4458
4855
|
* <p>The name of the CodeBuild build project to start running a build.</p>
|
|
@@ -4678,12 +5075,18 @@ export interface StartBuildInput {
|
|
|
4678
5075
|
*/
|
|
4679
5076
|
debugSessionEnabled?: boolean;
|
|
4680
5077
|
}
|
|
5078
|
+
/**
|
|
5079
|
+
* @public
|
|
5080
|
+
*/
|
|
4681
5081
|
export interface StartBuildOutput {
|
|
4682
5082
|
/**
|
|
4683
5083
|
* <p>Information about the build to be run.</p>
|
|
4684
5084
|
*/
|
|
4685
5085
|
build?: Build;
|
|
4686
5086
|
}
|
|
5087
|
+
/**
|
|
5088
|
+
* @public
|
|
5089
|
+
*/
|
|
4687
5090
|
export interface StartBuildBatchInput {
|
|
4688
5091
|
/**
|
|
4689
5092
|
* <p>The name of the project.</p>
|
|
@@ -4907,36 +5310,54 @@ export interface StartBuildBatchInput {
|
|
|
4907
5310
|
*/
|
|
4908
5311
|
debugSessionEnabled?: boolean;
|
|
4909
5312
|
}
|
|
5313
|
+
/**
|
|
5314
|
+
* @public
|
|
5315
|
+
*/
|
|
4910
5316
|
export interface StartBuildBatchOutput {
|
|
4911
5317
|
/**
|
|
4912
5318
|
* <p>A <code>BuildBatch</code> object that contains information about the batch build.</p>
|
|
4913
5319
|
*/
|
|
4914
5320
|
buildBatch?: BuildBatch;
|
|
4915
5321
|
}
|
|
5322
|
+
/**
|
|
5323
|
+
* @public
|
|
5324
|
+
*/
|
|
4916
5325
|
export interface StopBuildInput {
|
|
4917
5326
|
/**
|
|
4918
5327
|
* <p>The ID of the build.</p>
|
|
4919
5328
|
*/
|
|
4920
5329
|
id: string | undefined;
|
|
4921
5330
|
}
|
|
5331
|
+
/**
|
|
5332
|
+
* @public
|
|
5333
|
+
*/
|
|
4922
5334
|
export interface StopBuildOutput {
|
|
4923
5335
|
/**
|
|
4924
5336
|
* <p>Information about the build.</p>
|
|
4925
5337
|
*/
|
|
4926
5338
|
build?: Build;
|
|
4927
5339
|
}
|
|
5340
|
+
/**
|
|
5341
|
+
* @public
|
|
5342
|
+
*/
|
|
4928
5343
|
export interface StopBuildBatchInput {
|
|
4929
5344
|
/**
|
|
4930
5345
|
* <p>The identifier of the batch build to stop.</p>
|
|
4931
5346
|
*/
|
|
4932
5347
|
id: string | undefined;
|
|
4933
5348
|
}
|
|
5349
|
+
/**
|
|
5350
|
+
* @public
|
|
5351
|
+
*/
|
|
4934
5352
|
export interface StopBuildBatchOutput {
|
|
4935
5353
|
/**
|
|
4936
5354
|
* <p>Contains information about a batch build.</p>
|
|
4937
5355
|
*/
|
|
4938
5356
|
buildBatch?: BuildBatch;
|
|
4939
5357
|
}
|
|
5358
|
+
/**
|
|
5359
|
+
* @public
|
|
5360
|
+
*/
|
|
4940
5361
|
export interface UpdateProjectInput {
|
|
4941
5362
|
/**
|
|
4942
5363
|
* <p>The name of the build project.</p>
|
|
@@ -5081,12 +5502,18 @@ export interface UpdateProjectInput {
|
|
|
5081
5502
|
*/
|
|
5082
5503
|
concurrentBuildLimit?: number;
|
|
5083
5504
|
}
|
|
5505
|
+
/**
|
|
5506
|
+
* @public
|
|
5507
|
+
*/
|
|
5084
5508
|
export interface UpdateProjectOutput {
|
|
5085
5509
|
/**
|
|
5086
5510
|
* <p>Information about the build project that was changed.</p>
|
|
5087
5511
|
*/
|
|
5088
5512
|
project?: Project;
|
|
5089
5513
|
}
|
|
5514
|
+
/**
|
|
5515
|
+
* @public
|
|
5516
|
+
*/
|
|
5090
5517
|
export interface UpdateProjectVisibilityInput {
|
|
5091
5518
|
/**
|
|
5092
5519
|
* <p>The Amazon Resource Name (ARN) of the build project.</p>
|
|
@@ -5113,6 +5540,9 @@ export interface UpdateProjectVisibilityInput {
|
|
|
5113
5540
|
*/
|
|
5114
5541
|
resourceAccessRole?: string;
|
|
5115
5542
|
}
|
|
5543
|
+
/**
|
|
5544
|
+
* @public
|
|
5545
|
+
*/
|
|
5116
5546
|
export interface UpdateProjectVisibilityOutput {
|
|
5117
5547
|
/**
|
|
5118
5548
|
* <p>The Amazon Resource Name (ARN) of the build project.</p>
|
|
@@ -5138,6 +5568,9 @@ export interface UpdateProjectVisibilityOutput {
|
|
|
5138
5568
|
*/
|
|
5139
5569
|
projectVisibility?: ProjectVisibilityType | string;
|
|
5140
5570
|
}
|
|
5571
|
+
/**
|
|
5572
|
+
* @public
|
|
5573
|
+
*/
|
|
5141
5574
|
export interface UpdateReportGroupInput {
|
|
5142
5575
|
/**
|
|
5143
5576
|
* <p>
|
|
@@ -5172,6 +5605,9 @@ export interface UpdateReportGroupInput {
|
|
|
5172
5605
|
*/
|
|
5173
5606
|
tags?: Tag[];
|
|
5174
5607
|
}
|
|
5608
|
+
/**
|
|
5609
|
+
* @public
|
|
5610
|
+
*/
|
|
5175
5611
|
export interface UpdateReportGroupOutput {
|
|
5176
5612
|
/**
|
|
5177
5613
|
* <p>
|
|
@@ -5180,6 +5616,9 @@ export interface UpdateReportGroupOutput {
|
|
|
5180
5616
|
*/
|
|
5181
5617
|
reportGroup?: ReportGroup;
|
|
5182
5618
|
}
|
|
5619
|
+
/**
|
|
5620
|
+
* @public
|
|
5621
|
+
*/
|
|
5183
5622
|
export interface UpdateWebhookInput {
|
|
5184
5623
|
/**
|
|
5185
5624
|
* <p>The name of the CodeBuild project.</p>
|
|
@@ -5213,6 +5652,9 @@ export interface UpdateWebhookInput {
|
|
|
5213
5652
|
*/
|
|
5214
5653
|
buildType?: WebhookBuildType | string;
|
|
5215
5654
|
}
|
|
5655
|
+
/**
|
|
5656
|
+
* @public
|
|
5657
|
+
*/
|
|
5216
5658
|
export interface UpdateWebhookOutput {
|
|
5217
5659
|
/**
|
|
5218
5660
|
* <p> Information about a repository's webhook that is associated with a project in CodeBuild.
|