@aws-sdk/client-codebuild 3.301.0 → 3.303.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-cjs/models/models_0.js +210 -248
- package/dist-es/models/models_0.js +210 -248
- package/dist-types/models/models_0.d.ts +400 -210
- package/dist-types/ts3.4/models/models_0.d.ts +274 -210
- package/package.json +34 -34
|
@@ -14,34 +14,54 @@ export declare class AccountLimitExceededException extends __BaseException {
|
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
16
|
* @public
|
|
17
|
+
* @enum
|
|
17
18
|
*/
|
|
18
|
-
export declare
|
|
19
|
-
BUILD_ID
|
|
20
|
-
NONE
|
|
21
|
-
}
|
|
19
|
+
export declare const ArtifactNamespace: {
|
|
20
|
+
readonly BUILD_ID: "BUILD_ID";
|
|
21
|
+
readonly NONE: "NONE";
|
|
22
|
+
};
|
|
22
23
|
/**
|
|
23
24
|
* @public
|
|
24
25
|
*/
|
|
25
|
-
export
|
|
26
|
-
NONE = "NONE",
|
|
27
|
-
ZIP = "ZIP"
|
|
28
|
-
}
|
|
26
|
+
export type ArtifactNamespace = (typeof ArtifactNamespace)[keyof typeof ArtifactNamespace];
|
|
29
27
|
/**
|
|
30
28
|
* @public
|
|
29
|
+
* @enum
|
|
31
30
|
*/
|
|
32
|
-
export declare
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
31
|
+
export declare const ArtifactPackaging: {
|
|
32
|
+
readonly NONE: "NONE";
|
|
33
|
+
readonly ZIP: "ZIP";
|
|
34
|
+
};
|
|
37
35
|
/**
|
|
38
36
|
* @public
|
|
39
37
|
*/
|
|
40
|
-
export
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
38
|
+
export type ArtifactPackaging = (typeof ArtifactPackaging)[keyof typeof ArtifactPackaging];
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
* @enum
|
|
42
|
+
*/
|
|
43
|
+
export declare const ArtifactsType: {
|
|
44
|
+
readonly CODEPIPELINE: "CODEPIPELINE";
|
|
45
|
+
readonly NO_ARTIFACTS: "NO_ARTIFACTS";
|
|
46
|
+
readonly S3: "S3";
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
export type ArtifactsType = (typeof ArtifactsType)[keyof typeof ArtifactsType];
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
* @enum
|
|
55
|
+
*/
|
|
56
|
+
export declare const AuthType: {
|
|
57
|
+
readonly BASIC_AUTH: "BASIC_AUTH";
|
|
58
|
+
readonly OAUTH: "OAUTH";
|
|
59
|
+
readonly PERSONAL_ACCESS_TOKEN: "PERSONAL_ACCESS_TOKEN";
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
export type AuthType = (typeof AuthType)[keyof typeof AuthType];
|
|
45
65
|
/**
|
|
46
66
|
* @public
|
|
47
67
|
*/
|
|
@@ -101,12 +121,17 @@ export interface BatchGetBuildBatchesInput {
|
|
|
101
121
|
}
|
|
102
122
|
/**
|
|
103
123
|
* @public
|
|
124
|
+
* @enum
|
|
104
125
|
*/
|
|
105
|
-
export declare
|
|
106
|
-
FULL
|
|
107
|
-
NONE
|
|
108
|
-
READ_ONLY
|
|
109
|
-
}
|
|
126
|
+
export declare const BucketOwnerAccess: {
|
|
127
|
+
readonly FULL: "FULL";
|
|
128
|
+
readonly NONE: "NONE";
|
|
129
|
+
readonly READ_ONLY: "READ_ONLY";
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
export type BucketOwnerAccess = (typeof BucketOwnerAccess)[keyof typeof BucketOwnerAccess];
|
|
110
135
|
/**
|
|
111
136
|
* @public
|
|
112
137
|
* <p>Information about build output artifacts.</p>
|
|
@@ -199,11 +224,16 @@ export interface BuildArtifacts {
|
|
|
199
224
|
}
|
|
200
225
|
/**
|
|
201
226
|
* @public
|
|
227
|
+
* @enum
|
|
202
228
|
*/
|
|
203
|
-
export declare
|
|
204
|
-
REPORT_AGGREGATED_BATCH
|
|
205
|
-
REPORT_INDIVIDUAL_BUILDS
|
|
206
|
-
}
|
|
229
|
+
export declare const BatchReportModeType: {
|
|
230
|
+
readonly REPORT_AGGREGATED_BATCH: "REPORT_AGGREGATED_BATCH";
|
|
231
|
+
readonly REPORT_INDIVIDUAL_BUILDS: "REPORT_INDIVIDUAL_BUILDS";
|
|
232
|
+
};
|
|
233
|
+
/**
|
|
234
|
+
* @public
|
|
235
|
+
*/
|
|
236
|
+
export type BatchReportModeType = (typeof BatchReportModeType)[keyof typeof BatchReportModeType];
|
|
207
237
|
/**
|
|
208
238
|
* @public
|
|
209
239
|
* <p>Specifies restrictions for the batch build.</p>
|
|
@@ -263,15 +293,20 @@ export interface ProjectBuildBatchConfig {
|
|
|
263
293
|
}
|
|
264
294
|
/**
|
|
265
295
|
* @public
|
|
296
|
+
* @enum
|
|
266
297
|
*/
|
|
267
|
-
export declare
|
|
268
|
-
FAILED
|
|
269
|
-
FAULT
|
|
270
|
-
IN_PROGRESS
|
|
271
|
-
STOPPED
|
|
272
|
-
SUCCEEDED
|
|
273
|
-
TIMED_OUT
|
|
274
|
-
}
|
|
298
|
+
export declare const StatusType: {
|
|
299
|
+
readonly FAILED: "FAILED";
|
|
300
|
+
readonly FAULT: "FAULT";
|
|
301
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
302
|
+
readonly STOPPED: "STOPPED";
|
|
303
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
304
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
305
|
+
};
|
|
306
|
+
/**
|
|
307
|
+
* @public
|
|
308
|
+
*/
|
|
309
|
+
export type StatusType = (typeof StatusType)[keyof typeof StatusType];
|
|
275
310
|
/**
|
|
276
311
|
* @public
|
|
277
312
|
* <p>Represents a resolved build artifact. A resolved artifact is an artifact that is built and
|
|
@@ -378,20 +413,30 @@ export interface BuildGroup {
|
|
|
378
413
|
}
|
|
379
414
|
/**
|
|
380
415
|
* @public
|
|
416
|
+
* @enum
|
|
381
417
|
*/
|
|
382
|
-
export declare
|
|
383
|
-
LOCAL_CUSTOM_CACHE
|
|
384
|
-
LOCAL_DOCKER_LAYER_CACHE
|
|
385
|
-
LOCAL_SOURCE_CACHE
|
|
386
|
-
}
|
|
418
|
+
export declare const CacheMode: {
|
|
419
|
+
readonly LOCAL_CUSTOM_CACHE: "LOCAL_CUSTOM_CACHE";
|
|
420
|
+
readonly LOCAL_DOCKER_LAYER_CACHE: "LOCAL_DOCKER_LAYER_CACHE";
|
|
421
|
+
readonly LOCAL_SOURCE_CACHE: "LOCAL_SOURCE_CACHE";
|
|
422
|
+
};
|
|
387
423
|
/**
|
|
388
424
|
* @public
|
|
389
425
|
*/
|
|
390
|
-
export
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
426
|
+
export type CacheMode = (typeof CacheMode)[keyof typeof CacheMode];
|
|
427
|
+
/**
|
|
428
|
+
* @public
|
|
429
|
+
* @enum
|
|
430
|
+
*/
|
|
431
|
+
export declare const CacheType: {
|
|
432
|
+
readonly LOCAL: "LOCAL";
|
|
433
|
+
readonly NO_CACHE: "NO_CACHE";
|
|
434
|
+
readonly S3: "S3";
|
|
435
|
+
};
|
|
436
|
+
/**
|
|
437
|
+
* @public
|
|
438
|
+
*/
|
|
439
|
+
export type CacheType = (typeof CacheType)[keyof typeof CacheType];
|
|
395
440
|
/**
|
|
396
441
|
* @public
|
|
397
442
|
* <p>Information about the cache for the build project.</p>
|
|
@@ -494,21 +539,31 @@ export interface ProjectCache {
|
|
|
494
539
|
}
|
|
495
540
|
/**
|
|
496
541
|
* @public
|
|
542
|
+
* @enum
|
|
497
543
|
*/
|
|
498
|
-
export declare
|
|
499
|
-
BUILD_GENERAL1_2XLARGE
|
|
500
|
-
BUILD_GENERAL1_LARGE
|
|
501
|
-
BUILD_GENERAL1_MEDIUM
|
|
502
|
-
BUILD_GENERAL1_SMALL
|
|
503
|
-
}
|
|
544
|
+
export declare const ComputeType: {
|
|
545
|
+
readonly BUILD_GENERAL1_2XLARGE: "BUILD_GENERAL1_2XLARGE";
|
|
546
|
+
readonly BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE";
|
|
547
|
+
readonly BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM";
|
|
548
|
+
readonly BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL";
|
|
549
|
+
};
|
|
504
550
|
/**
|
|
505
551
|
* @public
|
|
506
552
|
*/
|
|
507
|
-
export
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
553
|
+
export type ComputeType = (typeof ComputeType)[keyof typeof ComputeType];
|
|
554
|
+
/**
|
|
555
|
+
* @public
|
|
556
|
+
* @enum
|
|
557
|
+
*/
|
|
558
|
+
export declare const EnvironmentVariableType: {
|
|
559
|
+
readonly PARAMETER_STORE: "PARAMETER_STORE";
|
|
560
|
+
readonly PLAINTEXT: "PLAINTEXT";
|
|
561
|
+
readonly SECRETS_MANAGER: "SECRETS_MANAGER";
|
|
562
|
+
};
|
|
563
|
+
/**
|
|
564
|
+
* @public
|
|
565
|
+
*/
|
|
566
|
+
export type EnvironmentVariableType = (typeof EnvironmentVariableType)[keyof typeof EnvironmentVariableType];
|
|
512
567
|
/**
|
|
513
568
|
* @public
|
|
514
569
|
* <p>Information about an environment variable for a build project or a build.</p>
|
|
@@ -557,17 +612,27 @@ export interface EnvironmentVariable {
|
|
|
557
612
|
}
|
|
558
613
|
/**
|
|
559
614
|
* @public
|
|
615
|
+
* @enum
|
|
560
616
|
*/
|
|
561
|
-
export declare
|
|
562
|
-
CODEBUILD
|
|
563
|
-
SERVICE_ROLE
|
|
564
|
-
}
|
|
617
|
+
export declare const ImagePullCredentialsType: {
|
|
618
|
+
readonly CODEBUILD: "CODEBUILD";
|
|
619
|
+
readonly SERVICE_ROLE: "SERVICE_ROLE";
|
|
620
|
+
};
|
|
565
621
|
/**
|
|
566
622
|
* @public
|
|
567
623
|
*/
|
|
568
|
-
export
|
|
569
|
-
|
|
570
|
-
|
|
624
|
+
export type ImagePullCredentialsType = (typeof ImagePullCredentialsType)[keyof typeof ImagePullCredentialsType];
|
|
625
|
+
/**
|
|
626
|
+
* @public
|
|
627
|
+
* @enum
|
|
628
|
+
*/
|
|
629
|
+
export declare const CredentialProviderType: {
|
|
630
|
+
readonly SECRETS_MANAGER: "SECRETS_MANAGER";
|
|
631
|
+
};
|
|
632
|
+
/**
|
|
633
|
+
* @public
|
|
634
|
+
*/
|
|
635
|
+
export type CredentialProviderType = (typeof CredentialProviderType)[keyof typeof CredentialProviderType];
|
|
571
636
|
/**
|
|
572
637
|
* @public
|
|
573
638
|
* <p> Information about credentials that provide access to a private Docker registry. When
|
|
@@ -602,14 +667,19 @@ export interface RegistryCredential {
|
|
|
602
667
|
}
|
|
603
668
|
/**
|
|
604
669
|
* @public
|
|
670
|
+
* @enum
|
|
605
671
|
*/
|
|
606
|
-
export declare
|
|
607
|
-
ARM_CONTAINER
|
|
608
|
-
LINUX_CONTAINER
|
|
609
|
-
LINUX_GPU_CONTAINER
|
|
610
|
-
WINDOWS_CONTAINER
|
|
611
|
-
WINDOWS_SERVER_2019_CONTAINER
|
|
612
|
-
}
|
|
672
|
+
export declare const EnvironmentType: {
|
|
673
|
+
readonly ARM_CONTAINER: "ARM_CONTAINER";
|
|
674
|
+
readonly LINUX_CONTAINER: "LINUX_CONTAINER";
|
|
675
|
+
readonly LINUX_GPU_CONTAINER: "LINUX_GPU_CONTAINER";
|
|
676
|
+
readonly WINDOWS_CONTAINER: "WINDOWS_CONTAINER";
|
|
677
|
+
readonly WINDOWS_SERVER_2019_CONTAINER: "WINDOWS_SERVER_2019_CONTAINER";
|
|
678
|
+
};
|
|
679
|
+
/**
|
|
680
|
+
* @public
|
|
681
|
+
*/
|
|
682
|
+
export type EnvironmentType = (typeof EnvironmentType)[keyof typeof EnvironmentType];
|
|
613
683
|
/**
|
|
614
684
|
* @public
|
|
615
685
|
* <p>Information about the build environment of the build project.</p>
|
|
@@ -782,10 +852,15 @@ export interface ProjectEnvironment {
|
|
|
782
852
|
}
|
|
783
853
|
/**
|
|
784
854
|
* @public
|
|
855
|
+
* @enum
|
|
785
856
|
*/
|
|
786
|
-
export declare
|
|
787
|
-
EFS
|
|
788
|
-
}
|
|
857
|
+
export declare const FileSystemType: {
|
|
858
|
+
readonly EFS: "EFS";
|
|
859
|
+
};
|
|
860
|
+
/**
|
|
861
|
+
* @public
|
|
862
|
+
*/
|
|
863
|
+
export type FileSystemType = (typeof FileSystemType)[keyof typeof FileSystemType];
|
|
789
864
|
/**
|
|
790
865
|
* @public
|
|
791
866
|
* <p> Information about a file system created by Amazon Elastic File System (EFS). For more
|
|
@@ -835,11 +910,16 @@ export interface ProjectFileSystemLocation {
|
|
|
835
910
|
}
|
|
836
911
|
/**
|
|
837
912
|
* @public
|
|
913
|
+
* @enum
|
|
838
914
|
*/
|
|
839
|
-
export declare
|
|
840
|
-
DISABLED
|
|
841
|
-
ENABLED
|
|
842
|
-
}
|
|
915
|
+
export declare const LogsConfigStatusType: {
|
|
916
|
+
readonly DISABLED: "DISABLED";
|
|
917
|
+
readonly ENABLED: "ENABLED";
|
|
918
|
+
};
|
|
919
|
+
/**
|
|
920
|
+
* @public
|
|
921
|
+
*/
|
|
922
|
+
export type LogsConfigStatusType = (typeof LogsConfigStatusType)[keyof typeof LogsConfigStatusType];
|
|
843
923
|
/**
|
|
844
924
|
* @public
|
|
845
925
|
* <p> Information about CloudWatch Logs for a build project. </p>
|
|
@@ -982,16 +1062,21 @@ export interface PhaseContext {
|
|
|
982
1062
|
}
|
|
983
1063
|
/**
|
|
984
1064
|
* @public
|
|
1065
|
+
* @enum
|
|
985
1066
|
*/
|
|
986
|
-
export declare
|
|
987
|
-
COMBINE_ARTIFACTS
|
|
988
|
-
DOWNLOAD_BATCHSPEC
|
|
989
|
-
FAILED
|
|
990
|
-
IN_PROGRESS
|
|
991
|
-
STOPPED
|
|
992
|
-
SUBMITTED
|
|
993
|
-
SUCCEEDED
|
|
994
|
-
}
|
|
1067
|
+
export declare const BuildBatchPhaseType: {
|
|
1068
|
+
readonly COMBINE_ARTIFACTS: "COMBINE_ARTIFACTS";
|
|
1069
|
+
readonly DOWNLOAD_BATCHSPEC: "DOWNLOAD_BATCHSPEC";
|
|
1070
|
+
readonly FAILED: "FAILED";
|
|
1071
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1072
|
+
readonly STOPPED: "STOPPED";
|
|
1073
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
1074
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
1075
|
+
};
|
|
1076
|
+
/**
|
|
1077
|
+
* @public
|
|
1078
|
+
*/
|
|
1079
|
+
export type BuildBatchPhaseType = (typeof BuildBatchPhaseType)[keyof typeof BuildBatchPhaseType];
|
|
995
1080
|
/**
|
|
996
1081
|
* @public
|
|
997
1082
|
* <p>Contains information about a stage for a batch build.</p>
|
|
@@ -1083,10 +1168,15 @@ export interface BuildBatchPhase {
|
|
|
1083
1168
|
}
|
|
1084
1169
|
/**
|
|
1085
1170
|
* @public
|
|
1171
|
+
* @enum
|
|
1086
1172
|
*/
|
|
1087
|
-
export declare
|
|
1088
|
-
OAUTH
|
|
1089
|
-
}
|
|
1173
|
+
export declare const SourceAuthType: {
|
|
1174
|
+
readonly OAUTH: "OAUTH";
|
|
1175
|
+
};
|
|
1176
|
+
/**
|
|
1177
|
+
* @public
|
|
1178
|
+
*/
|
|
1179
|
+
export type SourceAuthType = (typeof SourceAuthType)[keyof typeof SourceAuthType];
|
|
1090
1180
|
/**
|
|
1091
1181
|
* @public
|
|
1092
1182
|
* <p>Information about the authorization settings for CodeBuild to access the source code to be
|
|
@@ -1162,16 +1252,21 @@ export interface GitSubmodulesConfig {
|
|
|
1162
1252
|
}
|
|
1163
1253
|
/**
|
|
1164
1254
|
* @public
|
|
1255
|
+
* @enum
|
|
1165
1256
|
*/
|
|
1166
|
-
export declare
|
|
1167
|
-
BITBUCKET
|
|
1168
|
-
CODECOMMIT
|
|
1169
|
-
CODEPIPELINE
|
|
1170
|
-
GITHUB
|
|
1171
|
-
GITHUB_ENTERPRISE
|
|
1172
|
-
NO_SOURCE
|
|
1173
|
-
S3
|
|
1174
|
-
}
|
|
1257
|
+
export declare const SourceType: {
|
|
1258
|
+
readonly BITBUCKET: "BITBUCKET";
|
|
1259
|
+
readonly CODECOMMIT: "CODECOMMIT";
|
|
1260
|
+
readonly CODEPIPELINE: "CODEPIPELINE";
|
|
1261
|
+
readonly GITHUB: "GITHUB";
|
|
1262
|
+
readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
|
|
1263
|
+
readonly NO_SOURCE: "NO_SOURCE";
|
|
1264
|
+
readonly S3: "S3";
|
|
1265
|
+
};
|
|
1266
|
+
/**
|
|
1267
|
+
* @public
|
|
1268
|
+
*/
|
|
1269
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
1175
1270
|
/**
|
|
1176
1271
|
* @public
|
|
1177
1272
|
* <p>Information about the build input source code for the build project.</p>
|
|
@@ -1713,20 +1808,25 @@ export interface NetworkInterface {
|
|
|
1713
1808
|
}
|
|
1714
1809
|
/**
|
|
1715
1810
|
* @public
|
|
1811
|
+
* @enum
|
|
1716
1812
|
*/
|
|
1717
|
-
export declare
|
|
1718
|
-
BUILD
|
|
1719
|
-
COMPLETED
|
|
1720
|
-
DOWNLOAD_SOURCE
|
|
1721
|
-
FINALIZING
|
|
1722
|
-
INSTALL
|
|
1723
|
-
POST_BUILD
|
|
1724
|
-
PRE_BUILD
|
|
1725
|
-
PROVISIONING
|
|
1726
|
-
QUEUED
|
|
1727
|
-
SUBMITTED
|
|
1728
|
-
UPLOAD_ARTIFACTS
|
|
1729
|
-
}
|
|
1813
|
+
export declare const BuildPhaseType: {
|
|
1814
|
+
readonly BUILD: "BUILD";
|
|
1815
|
+
readonly COMPLETED: "COMPLETED";
|
|
1816
|
+
readonly DOWNLOAD_SOURCE: "DOWNLOAD_SOURCE";
|
|
1817
|
+
readonly FINALIZING: "FINALIZING";
|
|
1818
|
+
readonly INSTALL: "INSTALL";
|
|
1819
|
+
readonly POST_BUILD: "POST_BUILD";
|
|
1820
|
+
readonly PRE_BUILD: "PRE_BUILD";
|
|
1821
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
1822
|
+
readonly QUEUED: "QUEUED";
|
|
1823
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
1824
|
+
readonly UPLOAD_ARTIFACTS: "UPLOAD_ARTIFACTS";
|
|
1825
|
+
};
|
|
1826
|
+
/**
|
|
1827
|
+
* @public
|
|
1828
|
+
*/
|
|
1829
|
+
export type BuildPhaseType = (typeof BuildPhaseType)[keyof typeof BuildPhaseType];
|
|
1730
1830
|
/**
|
|
1731
1831
|
* @public
|
|
1732
1832
|
* <p>Information about a stage for a build.</p>
|
|
@@ -2352,11 +2452,16 @@ export interface ProjectBadge {
|
|
|
2352
2452
|
}
|
|
2353
2453
|
/**
|
|
2354
2454
|
* @public
|
|
2455
|
+
* @enum
|
|
2355
2456
|
*/
|
|
2356
|
-
export declare
|
|
2357
|
-
PRIVATE
|
|
2358
|
-
PUBLIC_READ
|
|
2359
|
-
}
|
|
2457
|
+
export declare const ProjectVisibilityType: {
|
|
2458
|
+
readonly PRIVATE: "PRIVATE";
|
|
2459
|
+
readonly PUBLIC_READ: "PUBLIC_READ";
|
|
2460
|
+
};
|
|
2461
|
+
/**
|
|
2462
|
+
* @public
|
|
2463
|
+
*/
|
|
2464
|
+
export type ProjectVisibilityType = (typeof ProjectVisibilityType)[keyof typeof ProjectVisibilityType];
|
|
2360
2465
|
/**
|
|
2361
2466
|
* @public
|
|
2362
2467
|
* <p>A tag, consisting of a key and a value.</p>
|
|
@@ -2374,22 +2479,32 @@ export interface Tag {
|
|
|
2374
2479
|
}
|
|
2375
2480
|
/**
|
|
2376
2481
|
* @public
|
|
2482
|
+
* @enum
|
|
2377
2483
|
*/
|
|
2378
|
-
export declare
|
|
2379
|
-
BUILD
|
|
2380
|
-
BUILD_BATCH
|
|
2381
|
-
}
|
|
2484
|
+
export declare const WebhookBuildType: {
|
|
2485
|
+
readonly BUILD: "BUILD";
|
|
2486
|
+
readonly BUILD_BATCH: "BUILD_BATCH";
|
|
2487
|
+
};
|
|
2382
2488
|
/**
|
|
2383
2489
|
* @public
|
|
2384
2490
|
*/
|
|
2385
|
-
export
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2491
|
+
export type WebhookBuildType = (typeof WebhookBuildType)[keyof typeof WebhookBuildType];
|
|
2492
|
+
/**
|
|
2493
|
+
* @public
|
|
2494
|
+
* @enum
|
|
2495
|
+
*/
|
|
2496
|
+
export declare const WebhookFilterType: {
|
|
2497
|
+
readonly ACTOR_ACCOUNT_ID: "ACTOR_ACCOUNT_ID";
|
|
2498
|
+
readonly BASE_REF: "BASE_REF";
|
|
2499
|
+
readonly COMMIT_MESSAGE: "COMMIT_MESSAGE";
|
|
2500
|
+
readonly EVENT: "EVENT";
|
|
2501
|
+
readonly FILE_PATH: "FILE_PATH";
|
|
2502
|
+
readonly HEAD_REF: "HEAD_REF";
|
|
2503
|
+
};
|
|
2504
|
+
/**
|
|
2505
|
+
* @public
|
|
2506
|
+
*/
|
|
2507
|
+
export type WebhookFilterType = (typeof WebhookFilterType)[keyof typeof WebhookFilterType];
|
|
2393
2508
|
/**
|
|
2394
2509
|
* @public
|
|
2395
2510
|
* <p> A filter used to determine which webhooks trigger a build. </p>
|
|
@@ -2753,18 +2868,28 @@ export interface BatchGetReportGroupsInput {
|
|
|
2753
2868
|
}
|
|
2754
2869
|
/**
|
|
2755
2870
|
* @public
|
|
2871
|
+
* @enum
|
|
2756
2872
|
*/
|
|
2757
|
-
export declare
|
|
2758
|
-
NO_EXPORT
|
|
2759
|
-
S3
|
|
2760
|
-
}
|
|
2873
|
+
export declare const ReportExportConfigType: {
|
|
2874
|
+
readonly NO_EXPORT: "NO_EXPORT";
|
|
2875
|
+
readonly S3: "S3";
|
|
2876
|
+
};
|
|
2761
2877
|
/**
|
|
2762
2878
|
* @public
|
|
2763
2879
|
*/
|
|
2764
|
-
export
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2880
|
+
export type ReportExportConfigType = (typeof ReportExportConfigType)[keyof typeof ReportExportConfigType];
|
|
2881
|
+
/**
|
|
2882
|
+
* @public
|
|
2883
|
+
* @enum
|
|
2884
|
+
*/
|
|
2885
|
+
export declare const ReportPackagingType: {
|
|
2886
|
+
readonly NONE: "NONE";
|
|
2887
|
+
readonly ZIP: "ZIP";
|
|
2888
|
+
};
|
|
2889
|
+
/**
|
|
2890
|
+
* @public
|
|
2891
|
+
*/
|
|
2892
|
+
export type ReportPackagingType = (typeof ReportPackagingType)[keyof typeof ReportPackagingType];
|
|
2768
2893
|
/**
|
|
2769
2894
|
* @public
|
|
2770
2895
|
* <p> Information about the S3 bucket where the raw data of a report are exported. </p>
|
|
@@ -2835,18 +2960,28 @@ export interface ReportExportConfig {
|
|
|
2835
2960
|
}
|
|
2836
2961
|
/**
|
|
2837
2962
|
* @public
|
|
2963
|
+
* @enum
|
|
2838
2964
|
*/
|
|
2839
|
-
export declare
|
|
2840
|
-
ACTIVE
|
|
2841
|
-
DELETING
|
|
2842
|
-
}
|
|
2965
|
+
export declare const ReportGroupStatusType: {
|
|
2966
|
+
readonly ACTIVE: "ACTIVE";
|
|
2967
|
+
readonly DELETING: "DELETING";
|
|
2968
|
+
};
|
|
2843
2969
|
/**
|
|
2844
2970
|
* @public
|
|
2845
2971
|
*/
|
|
2846
|
-
export
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2972
|
+
export type ReportGroupStatusType = (typeof ReportGroupStatusType)[keyof typeof ReportGroupStatusType];
|
|
2973
|
+
/**
|
|
2974
|
+
* @public
|
|
2975
|
+
* @enum
|
|
2976
|
+
*/
|
|
2977
|
+
export declare const ReportType: {
|
|
2978
|
+
readonly CODE_COVERAGE: "CODE_COVERAGE";
|
|
2979
|
+
readonly TEST: "TEST";
|
|
2980
|
+
};
|
|
2981
|
+
/**
|
|
2982
|
+
* @public
|
|
2983
|
+
*/
|
|
2984
|
+
export type ReportType = (typeof ReportType)[keyof typeof ReportType];
|
|
2850
2985
|
/**
|
|
2851
2986
|
* @public
|
|
2852
2987
|
* <p>A series of reports. Each report contains information about the results from running a
|
|
@@ -2978,14 +3113,19 @@ export interface CodeCoverageReportSummary {
|
|
|
2978
3113
|
}
|
|
2979
3114
|
/**
|
|
2980
3115
|
* @public
|
|
3116
|
+
* @enum
|
|
2981
3117
|
*/
|
|
2982
|
-
export declare
|
|
2983
|
-
DELETING
|
|
2984
|
-
FAILED
|
|
2985
|
-
GENERATING
|
|
2986
|
-
INCOMPLETE
|
|
2987
|
-
SUCCEEDED
|
|
2988
|
-
}
|
|
3118
|
+
export declare const ReportStatusType: {
|
|
3119
|
+
readonly DELETING: "DELETING";
|
|
3120
|
+
readonly FAILED: "FAILED";
|
|
3121
|
+
readonly GENERATING: "GENERATING";
|
|
3122
|
+
readonly INCOMPLETE: "INCOMPLETE";
|
|
3123
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
3124
|
+
};
|
|
3125
|
+
/**
|
|
3126
|
+
* @public
|
|
3127
|
+
*/
|
|
3128
|
+
export type ReportStatusType = (typeof ReportStatusType)[keyof typeof ReportStatusType];
|
|
2989
3129
|
/**
|
|
2990
3130
|
* @public
|
|
2991
3131
|
* <p> Information about a test report. </p>
|
|
@@ -3508,18 +3648,28 @@ export interface DeleteWebhookOutput {
|
|
|
3508
3648
|
}
|
|
3509
3649
|
/**
|
|
3510
3650
|
* @public
|
|
3651
|
+
* @enum
|
|
3511
3652
|
*/
|
|
3512
|
-
export declare
|
|
3513
|
-
FILE_PATH
|
|
3514
|
-
LINE_COVERAGE_PERCENTAGE
|
|
3515
|
-
}
|
|
3653
|
+
export declare const ReportCodeCoverageSortByType: {
|
|
3654
|
+
readonly FILE_PATH: "FILE_PATH";
|
|
3655
|
+
readonly LINE_COVERAGE_PERCENTAGE: "LINE_COVERAGE_PERCENTAGE";
|
|
3656
|
+
};
|
|
3516
3657
|
/**
|
|
3517
3658
|
* @public
|
|
3518
3659
|
*/
|
|
3519
|
-
export
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3660
|
+
export type ReportCodeCoverageSortByType = (typeof ReportCodeCoverageSortByType)[keyof typeof ReportCodeCoverageSortByType];
|
|
3661
|
+
/**
|
|
3662
|
+
* @public
|
|
3663
|
+
* @enum
|
|
3664
|
+
*/
|
|
3665
|
+
export declare const SortOrderType: {
|
|
3666
|
+
readonly ASCENDING: "ASCENDING";
|
|
3667
|
+
readonly DESCENDING: "DESCENDING";
|
|
3668
|
+
};
|
|
3669
|
+
/**
|
|
3670
|
+
* @public
|
|
3671
|
+
*/
|
|
3672
|
+
export type SortOrderType = (typeof SortOrderType)[keyof typeof SortOrderType];
|
|
3523
3673
|
/**
|
|
3524
3674
|
* @public
|
|
3525
3675
|
*/
|
|
@@ -3777,18 +3927,23 @@ export interface DescribeTestCasesOutput {
|
|
|
3777
3927
|
}
|
|
3778
3928
|
/**
|
|
3779
3929
|
* @public
|
|
3930
|
+
* @enum
|
|
3780
3931
|
*/
|
|
3781
|
-
export declare
|
|
3782
|
-
BRANCHES_COVERED
|
|
3783
|
-
BRANCHES_MISSED
|
|
3784
|
-
BRANCH_COVERAGE
|
|
3785
|
-
DURATION
|
|
3786
|
-
LINES_COVERED
|
|
3787
|
-
LINES_MISSED
|
|
3788
|
-
LINE_COVERAGE
|
|
3789
|
-
PASS_RATE
|
|
3790
|
-
TOTAL
|
|
3791
|
-
}
|
|
3932
|
+
export declare const ReportGroupTrendFieldType: {
|
|
3933
|
+
readonly BRANCHES_COVERED: "BRANCHES_COVERED";
|
|
3934
|
+
readonly BRANCHES_MISSED: "BRANCHES_MISSED";
|
|
3935
|
+
readonly BRANCH_COVERAGE: "BRANCH_COVERAGE";
|
|
3936
|
+
readonly DURATION: "DURATION";
|
|
3937
|
+
readonly LINES_COVERED: "LINES_COVERED";
|
|
3938
|
+
readonly LINES_MISSED: "LINES_MISSED";
|
|
3939
|
+
readonly LINE_COVERAGE: "LINE_COVERAGE";
|
|
3940
|
+
readonly PASS_RATE: "PASS_RATE";
|
|
3941
|
+
readonly TOTAL: "TOTAL";
|
|
3942
|
+
};
|
|
3943
|
+
/**
|
|
3944
|
+
* @public
|
|
3945
|
+
*/
|
|
3946
|
+
export type ReportGroupTrendFieldType = (typeof ReportGroupTrendFieldType)[keyof typeof ReportGroupTrendFieldType];
|
|
3792
3947
|
/**
|
|
3793
3948
|
* @public
|
|
3794
3949
|
*/
|
|
@@ -3933,12 +4088,17 @@ export interface GetResourcePolicyOutput {
|
|
|
3933
4088
|
}
|
|
3934
4089
|
/**
|
|
3935
4090
|
* @public
|
|
4091
|
+
* @enum
|
|
3936
4092
|
*/
|
|
3937
|
-
export declare
|
|
3938
|
-
BITBUCKET
|
|
3939
|
-
GITHUB
|
|
3940
|
-
GITHUB_ENTERPRISE
|
|
3941
|
-
}
|
|
4093
|
+
export declare const ServerType: {
|
|
4094
|
+
readonly BITBUCKET: "BITBUCKET";
|
|
4095
|
+
readonly GITHUB: "GITHUB";
|
|
4096
|
+
readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
|
|
4097
|
+
};
|
|
4098
|
+
/**
|
|
4099
|
+
* @public
|
|
4100
|
+
*/
|
|
4101
|
+
export type ServerType = (typeof ServerType)[keyof typeof ServerType];
|
|
3942
4102
|
/**
|
|
3943
4103
|
* @public
|
|
3944
4104
|
*/
|
|
@@ -4218,19 +4378,24 @@ export interface EnvironmentImage {
|
|
|
4218
4378
|
}
|
|
4219
4379
|
/**
|
|
4220
4380
|
* @public
|
|
4381
|
+
* @enum
|
|
4221
4382
|
*/
|
|
4222
|
-
export declare
|
|
4223
|
-
ANDROID
|
|
4224
|
-
BASE
|
|
4225
|
-
DOCKER
|
|
4226
|
-
DOTNET
|
|
4227
|
-
GOLANG
|
|
4228
|
-
JAVA
|
|
4229
|
-
NODE_JS
|
|
4230
|
-
PHP
|
|
4231
|
-
PYTHON
|
|
4232
|
-
RUBY
|
|
4233
|
-
}
|
|
4383
|
+
export declare const LanguageType: {
|
|
4384
|
+
readonly ANDROID: "ANDROID";
|
|
4385
|
+
readonly BASE: "BASE";
|
|
4386
|
+
readonly DOCKER: "DOCKER";
|
|
4387
|
+
readonly DOTNET: "DOTNET";
|
|
4388
|
+
readonly GOLANG: "GOLANG";
|
|
4389
|
+
readonly JAVA: "JAVA";
|
|
4390
|
+
readonly NODE_JS: "NODE_JS";
|
|
4391
|
+
readonly PHP: "PHP";
|
|
4392
|
+
readonly PYTHON: "PYTHON";
|
|
4393
|
+
readonly RUBY: "RUBY";
|
|
4394
|
+
};
|
|
4395
|
+
/**
|
|
4396
|
+
* @public
|
|
4397
|
+
*/
|
|
4398
|
+
export type LanguageType = (typeof LanguageType)[keyof typeof LanguageType];
|
|
4234
4399
|
/**
|
|
4235
4400
|
* @public
|
|
4236
4401
|
* <p>A set of Docker images that are related by programming language and are managed by
|
|
@@ -4249,13 +4414,18 @@ export interface EnvironmentLanguage {
|
|
|
4249
4414
|
}
|
|
4250
4415
|
/**
|
|
4251
4416
|
* @public
|
|
4417
|
+
* @enum
|
|
4252
4418
|
*/
|
|
4253
|
-
export declare
|
|
4254
|
-
AMAZON_LINUX
|
|
4255
|
-
DEBIAN
|
|
4256
|
-
UBUNTU
|
|
4257
|
-
WINDOWS_SERVER
|
|
4258
|
-
}
|
|
4419
|
+
export declare const PlatformType: {
|
|
4420
|
+
readonly AMAZON_LINUX: "AMAZON_LINUX";
|
|
4421
|
+
readonly DEBIAN: "DEBIAN";
|
|
4422
|
+
readonly UBUNTU: "UBUNTU";
|
|
4423
|
+
readonly WINDOWS_SERVER: "WINDOWS_SERVER";
|
|
4424
|
+
};
|
|
4425
|
+
/**
|
|
4426
|
+
* @public
|
|
4427
|
+
*/
|
|
4428
|
+
export type PlatformType = (typeof PlatformType)[keyof typeof PlatformType];
|
|
4259
4429
|
/**
|
|
4260
4430
|
* @public
|
|
4261
4431
|
* <p>A set of Docker images that are related by platform and are managed by CodeBuild.</p>
|
|
@@ -4283,12 +4453,17 @@ export interface ListCuratedEnvironmentImagesOutput {
|
|
|
4283
4453
|
}
|
|
4284
4454
|
/**
|
|
4285
4455
|
* @public
|
|
4456
|
+
* @enum
|
|
4286
4457
|
*/
|
|
4287
|
-
export declare
|
|
4288
|
-
CREATED_TIME
|
|
4289
|
-
LAST_MODIFIED_TIME
|
|
4290
|
-
NAME
|
|
4291
|
-
}
|
|
4458
|
+
export declare const ProjectSortByType: {
|
|
4459
|
+
readonly CREATED_TIME: "CREATED_TIME";
|
|
4460
|
+
readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
|
|
4461
|
+
readonly NAME: "NAME";
|
|
4462
|
+
};
|
|
4463
|
+
/**
|
|
4464
|
+
* @public
|
|
4465
|
+
*/
|
|
4466
|
+
export type ProjectSortByType = (typeof ProjectSortByType)[keyof typeof ProjectSortByType];
|
|
4292
4467
|
/**
|
|
4293
4468
|
* @public
|
|
4294
4469
|
*/
|
|
@@ -4360,12 +4535,17 @@ export interface ListProjectsOutput {
|
|
|
4360
4535
|
}
|
|
4361
4536
|
/**
|
|
4362
4537
|
* @public
|
|
4538
|
+
* @enum
|
|
4363
4539
|
*/
|
|
4364
|
-
export declare
|
|
4365
|
-
CREATED_TIME
|
|
4366
|
-
LAST_MODIFIED_TIME
|
|
4367
|
-
NAME
|
|
4368
|
-
}
|
|
4540
|
+
export declare const ReportGroupSortByType: {
|
|
4541
|
+
readonly CREATED_TIME: "CREATED_TIME";
|
|
4542
|
+
readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
|
|
4543
|
+
readonly NAME: "NAME";
|
|
4544
|
+
};
|
|
4545
|
+
/**
|
|
4546
|
+
* @public
|
|
4547
|
+
*/
|
|
4548
|
+
export type ReportGroupSortByType = (typeof ReportGroupSortByType)[keyof typeof ReportGroupSortByType];
|
|
4369
4549
|
/**
|
|
4370
4550
|
* @public
|
|
4371
4551
|
*/
|
|
@@ -4578,11 +4758,16 @@ export interface ListReportsForReportGroupOutput {
|
|
|
4578
4758
|
}
|
|
4579
4759
|
/**
|
|
4580
4760
|
* @public
|
|
4761
|
+
* @enum
|
|
4581
4762
|
*/
|
|
4582
|
-
export declare
|
|
4583
|
-
ARN
|
|
4584
|
-
MODIFIED_TIME
|
|
4585
|
-
}
|
|
4763
|
+
export declare const SharedResourceSortByType: {
|
|
4764
|
+
readonly ARN: "ARN";
|
|
4765
|
+
readonly MODIFIED_TIME: "MODIFIED_TIME";
|
|
4766
|
+
};
|
|
4767
|
+
/**
|
|
4768
|
+
* @public
|
|
4769
|
+
*/
|
|
4770
|
+
export type SharedResourceSortByType = (typeof SharedResourceSortByType)[keyof typeof SharedResourceSortByType];
|
|
4586
4771
|
/**
|
|
4587
4772
|
* @public
|
|
4588
4773
|
*/
|
|
@@ -4812,11 +4997,16 @@ export interface RetryBuildOutput {
|
|
|
4812
4997
|
}
|
|
4813
4998
|
/**
|
|
4814
4999
|
* @public
|
|
5000
|
+
* @enum
|
|
4815
5001
|
*/
|
|
4816
|
-
export declare
|
|
4817
|
-
RETRY_ALL_BUILDS
|
|
4818
|
-
RETRY_FAILED_BUILDS
|
|
4819
|
-
}
|
|
5002
|
+
export declare const RetryBuildBatchType: {
|
|
5003
|
+
readonly RETRY_ALL_BUILDS: "RETRY_ALL_BUILDS";
|
|
5004
|
+
readonly RETRY_FAILED_BUILDS: "RETRY_FAILED_BUILDS";
|
|
5005
|
+
};
|
|
5006
|
+
/**
|
|
5007
|
+
* @public
|
|
5008
|
+
*/
|
|
5009
|
+
export type RetryBuildBatchType = (typeof RetryBuildBatchType)[keyof typeof RetryBuildBatchType];
|
|
4820
5010
|
/**
|
|
4821
5011
|
* @public
|
|
4822
5012
|
*/
|