@aws-sdk/client-codebuild 3.933.0 → 3.935.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.
@@ -0,0 +1,746 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ArtifactNamespace: {
6
+ readonly BUILD_ID: "BUILD_ID";
7
+ readonly NONE: "NONE";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type ArtifactNamespace = (typeof ArtifactNamespace)[keyof typeof ArtifactNamespace];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const ArtifactPackaging: {
18
+ readonly NONE: "NONE";
19
+ readonly ZIP: "ZIP";
20
+ };
21
+ /**
22
+ * @public
23
+ */
24
+ export type ArtifactPackaging = (typeof ArtifactPackaging)[keyof typeof ArtifactPackaging];
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const ArtifactsType: {
30
+ readonly CODEPIPELINE: "CODEPIPELINE";
31
+ readonly NO_ARTIFACTS: "NO_ARTIFACTS";
32
+ readonly S3: "S3";
33
+ };
34
+ /**
35
+ * @public
36
+ */
37
+ export type ArtifactsType = (typeof ArtifactsType)[keyof typeof ArtifactsType];
38
+ /**
39
+ * @public
40
+ * @enum
41
+ */
42
+ export declare const AuthType: {
43
+ readonly BASIC_AUTH: "BASIC_AUTH";
44
+ readonly CODECONNECTIONS: "CODECONNECTIONS";
45
+ readonly OAUTH: "OAUTH";
46
+ readonly PERSONAL_ACCESS_TOKEN: "PERSONAL_ACCESS_TOKEN";
47
+ readonly SECRETS_MANAGER: "SECRETS_MANAGER";
48
+ };
49
+ /**
50
+ * @public
51
+ */
52
+ export type AuthType = (typeof AuthType)[keyof typeof AuthType];
53
+ /**
54
+ * @public
55
+ * @enum
56
+ */
57
+ export declare const BucketOwnerAccess: {
58
+ readonly FULL: "FULL";
59
+ readonly NONE: "NONE";
60
+ readonly READ_ONLY: "READ_ONLY";
61
+ };
62
+ /**
63
+ * @public
64
+ */
65
+ export type BucketOwnerAccess = (typeof BucketOwnerAccess)[keyof typeof BucketOwnerAccess];
66
+ /**
67
+ * @public
68
+ * @enum
69
+ */
70
+ export declare const BatchReportModeType: {
71
+ readonly REPORT_AGGREGATED_BATCH: "REPORT_AGGREGATED_BATCH";
72
+ readonly REPORT_INDIVIDUAL_BUILDS: "REPORT_INDIVIDUAL_BUILDS";
73
+ };
74
+ /**
75
+ * @public
76
+ */
77
+ export type BatchReportModeType = (typeof BatchReportModeType)[keyof typeof BatchReportModeType];
78
+ /**
79
+ * @public
80
+ * @enum
81
+ */
82
+ export declare const StatusType: {
83
+ readonly FAILED: "FAILED";
84
+ readonly FAULT: "FAULT";
85
+ readonly IN_PROGRESS: "IN_PROGRESS";
86
+ readonly STOPPED: "STOPPED";
87
+ readonly SUCCEEDED: "SUCCEEDED";
88
+ readonly TIMED_OUT: "TIMED_OUT";
89
+ };
90
+ /**
91
+ * @public
92
+ */
93
+ export type StatusType = (typeof StatusType)[keyof typeof StatusType];
94
+ /**
95
+ * @public
96
+ * @enum
97
+ */
98
+ export declare const CacheMode: {
99
+ readonly LOCAL_CUSTOM_CACHE: "LOCAL_CUSTOM_CACHE";
100
+ readonly LOCAL_DOCKER_LAYER_CACHE: "LOCAL_DOCKER_LAYER_CACHE";
101
+ readonly LOCAL_SOURCE_CACHE: "LOCAL_SOURCE_CACHE";
102
+ };
103
+ /**
104
+ * @public
105
+ */
106
+ export type CacheMode = (typeof CacheMode)[keyof typeof CacheMode];
107
+ /**
108
+ * @public
109
+ * @enum
110
+ */
111
+ export declare const CacheType: {
112
+ readonly LOCAL: "LOCAL";
113
+ readonly NO_CACHE: "NO_CACHE";
114
+ readonly S3: "S3";
115
+ };
116
+ /**
117
+ * @public
118
+ */
119
+ export type CacheType = (typeof CacheType)[keyof typeof CacheType];
120
+ /**
121
+ * @public
122
+ * @enum
123
+ */
124
+ export declare const MachineType: {
125
+ readonly GENERAL: "GENERAL";
126
+ readonly NVME: "NVME";
127
+ };
128
+ /**
129
+ * @public
130
+ */
131
+ export type MachineType = (typeof MachineType)[keyof typeof MachineType];
132
+ /**
133
+ * @public
134
+ * @enum
135
+ */
136
+ export declare const ComputeType: {
137
+ readonly ATTRIBUTE_BASED_COMPUTE: "ATTRIBUTE_BASED_COMPUTE";
138
+ readonly BUILD_GENERAL1_2XLARGE: "BUILD_GENERAL1_2XLARGE";
139
+ readonly BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE";
140
+ readonly BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM";
141
+ readonly BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL";
142
+ readonly BUILD_GENERAL1_XLARGE: "BUILD_GENERAL1_XLARGE";
143
+ readonly BUILD_LAMBDA_10GB: "BUILD_LAMBDA_10GB";
144
+ readonly BUILD_LAMBDA_1GB: "BUILD_LAMBDA_1GB";
145
+ readonly BUILD_LAMBDA_2GB: "BUILD_LAMBDA_2GB";
146
+ readonly BUILD_LAMBDA_4GB: "BUILD_LAMBDA_4GB";
147
+ readonly BUILD_LAMBDA_8GB: "BUILD_LAMBDA_8GB";
148
+ readonly CUSTOM_INSTANCE_TYPE: "CUSTOM_INSTANCE_TYPE";
149
+ };
150
+ /**
151
+ * @public
152
+ */
153
+ export type ComputeType = (typeof ComputeType)[keyof typeof ComputeType];
154
+ /**
155
+ * @public
156
+ * @enum
157
+ */
158
+ export declare const EnvironmentVariableType: {
159
+ readonly PARAMETER_STORE: "PARAMETER_STORE";
160
+ readonly PLAINTEXT: "PLAINTEXT";
161
+ readonly SECRETS_MANAGER: "SECRETS_MANAGER";
162
+ };
163
+ /**
164
+ * @public
165
+ */
166
+ export type EnvironmentVariableType = (typeof EnvironmentVariableType)[keyof typeof EnvironmentVariableType];
167
+ /**
168
+ * @public
169
+ * @enum
170
+ */
171
+ export declare const ImagePullCredentialsType: {
172
+ readonly CODEBUILD: "CODEBUILD";
173
+ readonly SERVICE_ROLE: "SERVICE_ROLE";
174
+ };
175
+ /**
176
+ * @public
177
+ */
178
+ export type ImagePullCredentialsType = (typeof ImagePullCredentialsType)[keyof typeof ImagePullCredentialsType];
179
+ /**
180
+ * @public
181
+ * @enum
182
+ */
183
+ export declare const CredentialProviderType: {
184
+ readonly SECRETS_MANAGER: "SECRETS_MANAGER";
185
+ };
186
+ /**
187
+ * @public
188
+ */
189
+ export type CredentialProviderType = (typeof CredentialProviderType)[keyof typeof CredentialProviderType];
190
+ /**
191
+ * @public
192
+ * @enum
193
+ */
194
+ export declare const EnvironmentType: {
195
+ readonly ARM_CONTAINER: "ARM_CONTAINER";
196
+ readonly ARM_EC2: "ARM_EC2";
197
+ readonly ARM_LAMBDA_CONTAINER: "ARM_LAMBDA_CONTAINER";
198
+ readonly LINUX_CONTAINER: "LINUX_CONTAINER";
199
+ readonly LINUX_EC2: "LINUX_EC2";
200
+ readonly LINUX_GPU_CONTAINER: "LINUX_GPU_CONTAINER";
201
+ readonly LINUX_LAMBDA_CONTAINER: "LINUX_LAMBDA_CONTAINER";
202
+ readonly MAC_ARM: "MAC_ARM";
203
+ readonly WINDOWS_CONTAINER: "WINDOWS_CONTAINER";
204
+ readonly WINDOWS_EC2: "WINDOWS_EC2";
205
+ readonly WINDOWS_SERVER_2019_CONTAINER: "WINDOWS_SERVER_2019_CONTAINER";
206
+ readonly WINDOWS_SERVER_2022_CONTAINER: "WINDOWS_SERVER_2022_CONTAINER";
207
+ };
208
+ /**
209
+ * @public
210
+ */
211
+ export type EnvironmentType = (typeof EnvironmentType)[keyof typeof EnvironmentType];
212
+ /**
213
+ * @public
214
+ * @enum
215
+ */
216
+ export declare const FileSystemType: {
217
+ readonly EFS: "EFS";
218
+ };
219
+ /**
220
+ * @public
221
+ */
222
+ export type FileSystemType = (typeof FileSystemType)[keyof typeof FileSystemType];
223
+ /**
224
+ * @public
225
+ * @enum
226
+ */
227
+ export declare const LogsConfigStatusType: {
228
+ readonly DISABLED: "DISABLED";
229
+ readonly ENABLED: "ENABLED";
230
+ };
231
+ /**
232
+ * @public
233
+ */
234
+ export type LogsConfigStatusType = (typeof LogsConfigStatusType)[keyof typeof LogsConfigStatusType];
235
+ /**
236
+ * @public
237
+ * @enum
238
+ */
239
+ export declare const BuildBatchPhaseType: {
240
+ readonly COMBINE_ARTIFACTS: "COMBINE_ARTIFACTS";
241
+ readonly DOWNLOAD_BATCHSPEC: "DOWNLOAD_BATCHSPEC";
242
+ readonly FAILED: "FAILED";
243
+ readonly IN_PROGRESS: "IN_PROGRESS";
244
+ readonly STOPPED: "STOPPED";
245
+ readonly SUBMITTED: "SUBMITTED";
246
+ readonly SUCCEEDED: "SUCCEEDED";
247
+ };
248
+ /**
249
+ * @public
250
+ */
251
+ export type BuildBatchPhaseType = (typeof BuildBatchPhaseType)[keyof typeof BuildBatchPhaseType];
252
+ /**
253
+ * @public
254
+ * @enum
255
+ */
256
+ export declare const SourceAuthType: {
257
+ readonly CODECONNECTIONS: "CODECONNECTIONS";
258
+ readonly OAUTH: "OAUTH";
259
+ readonly SECRETS_MANAGER: "SECRETS_MANAGER";
260
+ };
261
+ /**
262
+ * @public
263
+ */
264
+ export type SourceAuthType = (typeof SourceAuthType)[keyof typeof SourceAuthType];
265
+ /**
266
+ * @public
267
+ * @enum
268
+ */
269
+ export declare const SourceType: {
270
+ readonly BITBUCKET: "BITBUCKET";
271
+ readonly CODECOMMIT: "CODECOMMIT";
272
+ readonly CODEPIPELINE: "CODEPIPELINE";
273
+ readonly GITHUB: "GITHUB";
274
+ readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
275
+ readonly GITLAB: "GITLAB";
276
+ readonly GITLAB_SELF_MANAGED: "GITLAB_SELF_MANAGED";
277
+ readonly NO_SOURCE: "NO_SOURCE";
278
+ readonly S3: "S3";
279
+ };
280
+ /**
281
+ * @public
282
+ */
283
+ export type SourceType = (typeof SourceType)[keyof typeof SourceType];
284
+ /**
285
+ * @public
286
+ * @enum
287
+ */
288
+ export declare const BuildPhaseType: {
289
+ readonly BUILD: "BUILD";
290
+ readonly COMPLETED: "COMPLETED";
291
+ readonly DOWNLOAD_SOURCE: "DOWNLOAD_SOURCE";
292
+ readonly FINALIZING: "FINALIZING";
293
+ readonly INSTALL: "INSTALL";
294
+ readonly POST_BUILD: "POST_BUILD";
295
+ readonly PRE_BUILD: "PRE_BUILD";
296
+ readonly PROVISIONING: "PROVISIONING";
297
+ readonly QUEUED: "QUEUED";
298
+ readonly SUBMITTED: "SUBMITTED";
299
+ readonly UPLOAD_ARTIFACTS: "UPLOAD_ARTIFACTS";
300
+ };
301
+ /**
302
+ * @public
303
+ */
304
+ export type BuildPhaseType = (typeof BuildPhaseType)[keyof typeof BuildPhaseType];
305
+ /**
306
+ * @public
307
+ * @enum
308
+ */
309
+ export declare const CommandType: {
310
+ readonly SHELL: "SHELL";
311
+ };
312
+ /**
313
+ * @public
314
+ */
315
+ export type CommandType = (typeof CommandType)[keyof typeof CommandType];
316
+ /**
317
+ * @public
318
+ * @enum
319
+ */
320
+ export declare const FleetOverflowBehavior: {
321
+ readonly ON_DEMAND: "ON_DEMAND";
322
+ readonly QUEUE: "QUEUE";
323
+ };
324
+ /**
325
+ * @public
326
+ */
327
+ export type FleetOverflowBehavior = (typeof FleetOverflowBehavior)[keyof typeof FleetOverflowBehavior];
328
+ /**
329
+ * @public
330
+ * @enum
331
+ */
332
+ export declare const FleetProxyRuleBehavior: {
333
+ readonly ALLOW_ALL: "ALLOW_ALL";
334
+ readonly DENY_ALL: "DENY_ALL";
335
+ };
336
+ /**
337
+ * @public
338
+ */
339
+ export type FleetProxyRuleBehavior = (typeof FleetProxyRuleBehavior)[keyof typeof FleetProxyRuleBehavior];
340
+ /**
341
+ * @public
342
+ * @enum
343
+ */
344
+ export declare const FleetProxyRuleEffectType: {
345
+ readonly ALLOW: "ALLOW";
346
+ readonly DENY: "DENY";
347
+ };
348
+ /**
349
+ * @public
350
+ */
351
+ export type FleetProxyRuleEffectType = (typeof FleetProxyRuleEffectType)[keyof typeof FleetProxyRuleEffectType];
352
+ /**
353
+ * @public
354
+ * @enum
355
+ */
356
+ export declare const FleetProxyRuleType: {
357
+ readonly DOMAIN: "DOMAIN";
358
+ readonly IP: "IP";
359
+ };
360
+ /**
361
+ * @public
362
+ */
363
+ export type FleetProxyRuleType = (typeof FleetProxyRuleType)[keyof typeof FleetProxyRuleType];
364
+ /**
365
+ * @public
366
+ * @enum
367
+ */
368
+ export declare const FleetScalingType: {
369
+ readonly TARGET_TRACKING_SCALING: "TARGET_TRACKING_SCALING";
370
+ };
371
+ /**
372
+ * @public
373
+ */
374
+ export type FleetScalingType = (typeof FleetScalingType)[keyof typeof FleetScalingType];
375
+ /**
376
+ * @public
377
+ * @enum
378
+ */
379
+ export declare const FleetScalingMetricType: {
380
+ readonly FLEET_UTILIZATION_RATE: "FLEET_UTILIZATION_RATE";
381
+ };
382
+ /**
383
+ * @public
384
+ */
385
+ export type FleetScalingMetricType = (typeof FleetScalingMetricType)[keyof typeof FleetScalingMetricType];
386
+ /**
387
+ * @public
388
+ * @enum
389
+ */
390
+ export declare const FleetContextCode: {
391
+ readonly ACTION_REQUIRED: "ACTION_REQUIRED";
392
+ readonly CREATE_FAILED: "CREATE_FAILED";
393
+ readonly INSUFFICIENT_CAPACITY: "INSUFFICIENT_CAPACITY";
394
+ readonly PENDING_DELETION: "PENDING_DELETION";
395
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
396
+ };
397
+ /**
398
+ * @public
399
+ */
400
+ export type FleetContextCode = (typeof FleetContextCode)[keyof typeof FleetContextCode];
401
+ /**
402
+ * @public
403
+ * @enum
404
+ */
405
+ export declare const FleetStatusCode: {
406
+ readonly ACTIVE: "ACTIVE";
407
+ readonly CREATE_FAILED: "CREATE_FAILED";
408
+ readonly CREATING: "CREATING";
409
+ readonly DELETING: "DELETING";
410
+ readonly PENDING_DELETION: "PENDING_DELETION";
411
+ readonly ROTATING: "ROTATING";
412
+ readonly UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED";
413
+ readonly UPDATING: "UPDATING";
414
+ };
415
+ /**
416
+ * @public
417
+ */
418
+ export type FleetStatusCode = (typeof FleetStatusCode)[keyof typeof FleetStatusCode];
419
+ /**
420
+ * @public
421
+ * @enum
422
+ */
423
+ export declare const ProjectVisibilityType: {
424
+ readonly PRIVATE: "PRIVATE";
425
+ readonly PUBLIC_READ: "PUBLIC_READ";
426
+ };
427
+ /**
428
+ * @public
429
+ */
430
+ export type ProjectVisibilityType = (typeof ProjectVisibilityType)[keyof typeof ProjectVisibilityType];
431
+ /**
432
+ * @public
433
+ * @enum
434
+ */
435
+ export declare const WebhookBuildType: {
436
+ readonly BUILD: "BUILD";
437
+ readonly BUILD_BATCH: "BUILD_BATCH";
438
+ readonly RUNNER_BUILDKITE_BUILD: "RUNNER_BUILDKITE_BUILD";
439
+ };
440
+ /**
441
+ * @public
442
+ */
443
+ export type WebhookBuildType = (typeof WebhookBuildType)[keyof typeof WebhookBuildType];
444
+ /**
445
+ * @public
446
+ * @enum
447
+ */
448
+ export declare const WebhookFilterType: {
449
+ readonly ACTOR_ACCOUNT_ID: "ACTOR_ACCOUNT_ID";
450
+ readonly BASE_REF: "BASE_REF";
451
+ readonly COMMIT_MESSAGE: "COMMIT_MESSAGE";
452
+ readonly EVENT: "EVENT";
453
+ readonly FILE_PATH: "FILE_PATH";
454
+ readonly HEAD_REF: "HEAD_REF";
455
+ readonly ORGANIZATION_NAME: "ORGANIZATION_NAME";
456
+ readonly RELEASE_NAME: "RELEASE_NAME";
457
+ readonly REPOSITORY_NAME: "REPOSITORY_NAME";
458
+ readonly TAG_NAME: "TAG_NAME";
459
+ readonly WORKFLOW_NAME: "WORKFLOW_NAME";
460
+ };
461
+ /**
462
+ * @public
463
+ */
464
+ export type WebhookFilterType = (typeof WebhookFilterType)[keyof typeof WebhookFilterType];
465
+ /**
466
+ * @public
467
+ * @enum
468
+ */
469
+ export declare const PullRequestBuildApproverRole: {
470
+ readonly BITBUCKET_ADMIN: "BITBUCKET_ADMIN";
471
+ readonly BITBUCKET_READ: "BITBUCKET_READ";
472
+ readonly BITBUCKET_WRITE: "BITBUCKET_WRITE";
473
+ readonly GITHUB_ADMIN: "GITHUB_ADMIN";
474
+ readonly GITHUB_MAINTAIN: "GITHUB_MAINTAIN";
475
+ readonly GITHUB_READ: "GITHUB_READ";
476
+ readonly GITHUB_TRIAGE: "GITHUB_TRIAGE";
477
+ readonly GITHUB_WRITE: "GITHUB_WRITE";
478
+ readonly GITLAB_DEVELOPER: "GITLAB_DEVELOPER";
479
+ readonly GITLAB_GUEST: "GITLAB_GUEST";
480
+ readonly GITLAB_MAINTAINER: "GITLAB_MAINTAINER";
481
+ readonly GITLAB_OWNER: "GITLAB_OWNER";
482
+ readonly GITLAB_PLANNER: "GITLAB_PLANNER";
483
+ readonly GITLAB_REPORTER: "GITLAB_REPORTER";
484
+ };
485
+ /**
486
+ * @public
487
+ */
488
+ export type PullRequestBuildApproverRole = (typeof PullRequestBuildApproverRole)[keyof typeof PullRequestBuildApproverRole];
489
+ /**
490
+ * @public
491
+ * @enum
492
+ */
493
+ export declare const PullRequestBuildCommentApproval: {
494
+ readonly ALL_PULL_REQUESTS: "ALL_PULL_REQUESTS";
495
+ readonly DISABLED: "DISABLED";
496
+ readonly FORK_PULL_REQUESTS: "FORK_PULL_REQUESTS";
497
+ };
498
+ /**
499
+ * @public
500
+ */
501
+ export type PullRequestBuildCommentApproval = (typeof PullRequestBuildCommentApproval)[keyof typeof PullRequestBuildCommentApproval];
502
+ /**
503
+ * @public
504
+ * @enum
505
+ */
506
+ export declare const WebhookScopeType: {
507
+ readonly GITHUB_GLOBAL: "GITHUB_GLOBAL";
508
+ readonly GITHUB_ORGANIZATION: "GITHUB_ORGANIZATION";
509
+ readonly GITLAB_GROUP: "GITLAB_GROUP";
510
+ };
511
+ /**
512
+ * @public
513
+ */
514
+ export type WebhookScopeType = (typeof WebhookScopeType)[keyof typeof WebhookScopeType];
515
+ /**
516
+ * @public
517
+ * @enum
518
+ */
519
+ export declare const WebhookStatus: {
520
+ readonly ACTIVE: "ACTIVE";
521
+ readonly CREATE_FAILED: "CREATE_FAILED";
522
+ readonly CREATING: "CREATING";
523
+ readonly DELETING: "DELETING";
524
+ };
525
+ /**
526
+ * @public
527
+ */
528
+ export type WebhookStatus = (typeof WebhookStatus)[keyof typeof WebhookStatus];
529
+ /**
530
+ * @public
531
+ * @enum
532
+ */
533
+ export declare const ReportExportConfigType: {
534
+ readonly NO_EXPORT: "NO_EXPORT";
535
+ readonly S3: "S3";
536
+ };
537
+ /**
538
+ * @public
539
+ */
540
+ export type ReportExportConfigType = (typeof ReportExportConfigType)[keyof typeof ReportExportConfigType];
541
+ /**
542
+ * @public
543
+ * @enum
544
+ */
545
+ export declare const ReportPackagingType: {
546
+ readonly NONE: "NONE";
547
+ readonly ZIP: "ZIP";
548
+ };
549
+ /**
550
+ * @public
551
+ */
552
+ export type ReportPackagingType = (typeof ReportPackagingType)[keyof typeof ReportPackagingType];
553
+ /**
554
+ * @public
555
+ * @enum
556
+ */
557
+ export declare const ReportGroupStatusType: {
558
+ readonly ACTIVE: "ACTIVE";
559
+ readonly DELETING: "DELETING";
560
+ };
561
+ /**
562
+ * @public
563
+ */
564
+ export type ReportGroupStatusType = (typeof ReportGroupStatusType)[keyof typeof ReportGroupStatusType];
565
+ /**
566
+ * @public
567
+ * @enum
568
+ */
569
+ export declare const ReportType: {
570
+ readonly CODE_COVERAGE: "CODE_COVERAGE";
571
+ readonly TEST: "TEST";
572
+ };
573
+ /**
574
+ * @public
575
+ */
576
+ export type ReportType = (typeof ReportType)[keyof typeof ReportType];
577
+ /**
578
+ * @public
579
+ * @enum
580
+ */
581
+ export declare const ReportStatusType: {
582
+ readonly DELETING: "DELETING";
583
+ readonly FAILED: "FAILED";
584
+ readonly GENERATING: "GENERATING";
585
+ readonly INCOMPLETE: "INCOMPLETE";
586
+ readonly SUCCEEDED: "SUCCEEDED";
587
+ };
588
+ /**
589
+ * @public
590
+ */
591
+ export type ReportStatusType = (typeof ReportStatusType)[keyof typeof ReportStatusType];
592
+ /**
593
+ * @public
594
+ * @enum
595
+ */
596
+ export declare const ReportCodeCoverageSortByType: {
597
+ readonly FILE_PATH: "FILE_PATH";
598
+ readonly LINE_COVERAGE_PERCENTAGE: "LINE_COVERAGE_PERCENTAGE";
599
+ };
600
+ /**
601
+ * @public
602
+ */
603
+ export type ReportCodeCoverageSortByType = (typeof ReportCodeCoverageSortByType)[keyof typeof ReportCodeCoverageSortByType];
604
+ /**
605
+ * @public
606
+ * @enum
607
+ */
608
+ export declare const SortOrderType: {
609
+ readonly ASCENDING: "ASCENDING";
610
+ readonly DESCENDING: "DESCENDING";
611
+ };
612
+ /**
613
+ * @public
614
+ */
615
+ export type SortOrderType = (typeof SortOrderType)[keyof typeof SortOrderType];
616
+ /**
617
+ * @public
618
+ * @enum
619
+ */
620
+ export declare const ReportGroupTrendFieldType: {
621
+ readonly BRANCHES_COVERED: "BRANCHES_COVERED";
622
+ readonly BRANCHES_MISSED: "BRANCHES_MISSED";
623
+ readonly BRANCH_COVERAGE: "BRANCH_COVERAGE";
624
+ readonly DURATION: "DURATION";
625
+ readonly LINES_COVERED: "LINES_COVERED";
626
+ readonly LINES_MISSED: "LINES_MISSED";
627
+ readonly LINE_COVERAGE: "LINE_COVERAGE";
628
+ readonly PASS_RATE: "PASS_RATE";
629
+ readonly TOTAL: "TOTAL";
630
+ };
631
+ /**
632
+ * @public
633
+ */
634
+ export type ReportGroupTrendFieldType = (typeof ReportGroupTrendFieldType)[keyof typeof ReportGroupTrendFieldType];
635
+ /**
636
+ * @public
637
+ * @enum
638
+ */
639
+ export declare const ServerType: {
640
+ readonly BITBUCKET: "BITBUCKET";
641
+ readonly GITHUB: "GITHUB";
642
+ readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
643
+ readonly GITLAB: "GITLAB";
644
+ readonly GITLAB_SELF_MANAGED: "GITLAB_SELF_MANAGED";
645
+ };
646
+ /**
647
+ * @public
648
+ */
649
+ export type ServerType = (typeof ServerType)[keyof typeof ServerType];
650
+ /**
651
+ * @public
652
+ * @enum
653
+ */
654
+ export declare const LanguageType: {
655
+ readonly ANDROID: "ANDROID";
656
+ readonly BASE: "BASE";
657
+ readonly DOCKER: "DOCKER";
658
+ readonly DOTNET: "DOTNET";
659
+ readonly GOLANG: "GOLANG";
660
+ readonly JAVA: "JAVA";
661
+ readonly NODE_JS: "NODE_JS";
662
+ readonly PHP: "PHP";
663
+ readonly PYTHON: "PYTHON";
664
+ readonly RUBY: "RUBY";
665
+ };
666
+ /**
667
+ * @public
668
+ */
669
+ export type LanguageType = (typeof LanguageType)[keyof typeof LanguageType];
670
+ /**
671
+ * @public
672
+ * @enum
673
+ */
674
+ export declare const PlatformType: {
675
+ readonly AMAZON_LINUX: "AMAZON_LINUX";
676
+ readonly DEBIAN: "DEBIAN";
677
+ readonly UBUNTU: "UBUNTU";
678
+ readonly WINDOWS_SERVER: "WINDOWS_SERVER";
679
+ };
680
+ /**
681
+ * @public
682
+ */
683
+ export type PlatformType = (typeof PlatformType)[keyof typeof PlatformType];
684
+ /**
685
+ * @public
686
+ * @enum
687
+ */
688
+ export declare const FleetSortByType: {
689
+ readonly CREATED_TIME: "CREATED_TIME";
690
+ readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
691
+ readonly NAME: "NAME";
692
+ };
693
+ /**
694
+ * @public
695
+ */
696
+ export type FleetSortByType = (typeof FleetSortByType)[keyof typeof FleetSortByType];
697
+ /**
698
+ * @public
699
+ * @enum
700
+ */
701
+ export declare const ProjectSortByType: {
702
+ readonly CREATED_TIME: "CREATED_TIME";
703
+ readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
704
+ readonly NAME: "NAME";
705
+ };
706
+ /**
707
+ * @public
708
+ */
709
+ export type ProjectSortByType = (typeof ProjectSortByType)[keyof typeof ProjectSortByType];
710
+ /**
711
+ * @public
712
+ * @enum
713
+ */
714
+ export declare const ReportGroupSortByType: {
715
+ readonly CREATED_TIME: "CREATED_TIME";
716
+ readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
717
+ readonly NAME: "NAME";
718
+ };
719
+ /**
720
+ * @public
721
+ */
722
+ export type ReportGroupSortByType = (typeof ReportGroupSortByType)[keyof typeof ReportGroupSortByType];
723
+ /**
724
+ * @public
725
+ * @enum
726
+ */
727
+ export declare const SharedResourceSortByType: {
728
+ readonly ARN: "ARN";
729
+ readonly MODIFIED_TIME: "MODIFIED_TIME";
730
+ };
731
+ /**
732
+ * @public
733
+ */
734
+ export type SharedResourceSortByType = (typeof SharedResourceSortByType)[keyof typeof SharedResourceSortByType];
735
+ /**
736
+ * @public
737
+ * @enum
738
+ */
739
+ export declare const RetryBuildBatchType: {
740
+ readonly RETRY_ALL_BUILDS: "RETRY_ALL_BUILDS";
741
+ readonly RETRY_FAILED_BUILDS: "RETRY_FAILED_BUILDS";
742
+ };
743
+ /**
744
+ * @public
745
+ */
746
+ export type RetryBuildBatchType = (typeof RetryBuildBatchType)[keyof typeof RetryBuildBatchType];