@aws-sdk/client-codebuild 3.934.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.
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { CodeBuildExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { CodeBuildServiceException } from "./models/CodeBuildServiceException";
@@ -0,0 +1,413 @@
1
+ export declare const ArtifactNamespace: {
2
+ readonly BUILD_ID: "BUILD_ID";
3
+ readonly NONE: "NONE";
4
+ };
5
+ export type ArtifactNamespace =
6
+ (typeof ArtifactNamespace)[keyof typeof ArtifactNamespace];
7
+ export declare const ArtifactPackaging: {
8
+ readonly NONE: "NONE";
9
+ readonly ZIP: "ZIP";
10
+ };
11
+ export type ArtifactPackaging =
12
+ (typeof ArtifactPackaging)[keyof typeof ArtifactPackaging];
13
+ export declare const ArtifactsType: {
14
+ readonly CODEPIPELINE: "CODEPIPELINE";
15
+ readonly NO_ARTIFACTS: "NO_ARTIFACTS";
16
+ readonly S3: "S3";
17
+ };
18
+ export type ArtifactsType = (typeof ArtifactsType)[keyof typeof ArtifactsType];
19
+ export declare const AuthType: {
20
+ readonly BASIC_AUTH: "BASIC_AUTH";
21
+ readonly CODECONNECTIONS: "CODECONNECTIONS";
22
+ readonly OAUTH: "OAUTH";
23
+ readonly PERSONAL_ACCESS_TOKEN: "PERSONAL_ACCESS_TOKEN";
24
+ readonly SECRETS_MANAGER: "SECRETS_MANAGER";
25
+ };
26
+ export type AuthType = (typeof AuthType)[keyof typeof AuthType];
27
+ export declare const BucketOwnerAccess: {
28
+ readonly FULL: "FULL";
29
+ readonly NONE: "NONE";
30
+ readonly READ_ONLY: "READ_ONLY";
31
+ };
32
+ export type BucketOwnerAccess =
33
+ (typeof BucketOwnerAccess)[keyof typeof BucketOwnerAccess];
34
+ export declare const BatchReportModeType: {
35
+ readonly REPORT_AGGREGATED_BATCH: "REPORT_AGGREGATED_BATCH";
36
+ readonly REPORT_INDIVIDUAL_BUILDS: "REPORT_INDIVIDUAL_BUILDS";
37
+ };
38
+ export type BatchReportModeType =
39
+ (typeof BatchReportModeType)[keyof typeof BatchReportModeType];
40
+ export declare const StatusType: {
41
+ readonly FAILED: "FAILED";
42
+ readonly FAULT: "FAULT";
43
+ readonly IN_PROGRESS: "IN_PROGRESS";
44
+ readonly STOPPED: "STOPPED";
45
+ readonly SUCCEEDED: "SUCCEEDED";
46
+ readonly TIMED_OUT: "TIMED_OUT";
47
+ };
48
+ export type StatusType = (typeof StatusType)[keyof typeof StatusType];
49
+ export declare const CacheMode: {
50
+ readonly LOCAL_CUSTOM_CACHE: "LOCAL_CUSTOM_CACHE";
51
+ readonly LOCAL_DOCKER_LAYER_CACHE: "LOCAL_DOCKER_LAYER_CACHE";
52
+ readonly LOCAL_SOURCE_CACHE: "LOCAL_SOURCE_CACHE";
53
+ };
54
+ export type CacheMode = (typeof CacheMode)[keyof typeof CacheMode];
55
+ export declare const CacheType: {
56
+ readonly LOCAL: "LOCAL";
57
+ readonly NO_CACHE: "NO_CACHE";
58
+ readonly S3: "S3";
59
+ };
60
+ export type CacheType = (typeof CacheType)[keyof typeof CacheType];
61
+ export declare const MachineType: {
62
+ readonly GENERAL: "GENERAL";
63
+ readonly NVME: "NVME";
64
+ };
65
+ export type MachineType = (typeof MachineType)[keyof typeof MachineType];
66
+ export declare const ComputeType: {
67
+ readonly ATTRIBUTE_BASED_COMPUTE: "ATTRIBUTE_BASED_COMPUTE";
68
+ readonly BUILD_GENERAL1_2XLARGE: "BUILD_GENERAL1_2XLARGE";
69
+ readonly BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE";
70
+ readonly BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM";
71
+ readonly BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL";
72
+ readonly BUILD_GENERAL1_XLARGE: "BUILD_GENERAL1_XLARGE";
73
+ readonly BUILD_LAMBDA_10GB: "BUILD_LAMBDA_10GB";
74
+ readonly BUILD_LAMBDA_1GB: "BUILD_LAMBDA_1GB";
75
+ readonly BUILD_LAMBDA_2GB: "BUILD_LAMBDA_2GB";
76
+ readonly BUILD_LAMBDA_4GB: "BUILD_LAMBDA_4GB";
77
+ readonly BUILD_LAMBDA_8GB: "BUILD_LAMBDA_8GB";
78
+ readonly CUSTOM_INSTANCE_TYPE: "CUSTOM_INSTANCE_TYPE";
79
+ };
80
+ export type ComputeType = (typeof ComputeType)[keyof typeof ComputeType];
81
+ export declare const EnvironmentVariableType: {
82
+ readonly PARAMETER_STORE: "PARAMETER_STORE";
83
+ readonly PLAINTEXT: "PLAINTEXT";
84
+ readonly SECRETS_MANAGER: "SECRETS_MANAGER";
85
+ };
86
+ export type EnvironmentVariableType =
87
+ (typeof EnvironmentVariableType)[keyof typeof EnvironmentVariableType];
88
+ export declare const ImagePullCredentialsType: {
89
+ readonly CODEBUILD: "CODEBUILD";
90
+ readonly SERVICE_ROLE: "SERVICE_ROLE";
91
+ };
92
+ export type ImagePullCredentialsType =
93
+ (typeof ImagePullCredentialsType)[keyof typeof ImagePullCredentialsType];
94
+ export declare const CredentialProviderType: {
95
+ readonly SECRETS_MANAGER: "SECRETS_MANAGER";
96
+ };
97
+ export type CredentialProviderType =
98
+ (typeof CredentialProviderType)[keyof typeof CredentialProviderType];
99
+ export declare const EnvironmentType: {
100
+ readonly ARM_CONTAINER: "ARM_CONTAINER";
101
+ readonly ARM_EC2: "ARM_EC2";
102
+ readonly ARM_LAMBDA_CONTAINER: "ARM_LAMBDA_CONTAINER";
103
+ readonly LINUX_CONTAINER: "LINUX_CONTAINER";
104
+ readonly LINUX_EC2: "LINUX_EC2";
105
+ readonly LINUX_GPU_CONTAINER: "LINUX_GPU_CONTAINER";
106
+ readonly LINUX_LAMBDA_CONTAINER: "LINUX_LAMBDA_CONTAINER";
107
+ readonly MAC_ARM: "MAC_ARM";
108
+ readonly WINDOWS_CONTAINER: "WINDOWS_CONTAINER";
109
+ readonly WINDOWS_EC2: "WINDOWS_EC2";
110
+ readonly WINDOWS_SERVER_2019_CONTAINER: "WINDOWS_SERVER_2019_CONTAINER";
111
+ readonly WINDOWS_SERVER_2022_CONTAINER: "WINDOWS_SERVER_2022_CONTAINER";
112
+ };
113
+ export type EnvironmentType =
114
+ (typeof EnvironmentType)[keyof typeof EnvironmentType];
115
+ export declare const FileSystemType: {
116
+ readonly EFS: "EFS";
117
+ };
118
+ export type FileSystemType =
119
+ (typeof FileSystemType)[keyof typeof FileSystemType];
120
+ export declare const LogsConfigStatusType: {
121
+ readonly DISABLED: "DISABLED";
122
+ readonly ENABLED: "ENABLED";
123
+ };
124
+ export type LogsConfigStatusType =
125
+ (typeof LogsConfigStatusType)[keyof typeof LogsConfigStatusType];
126
+ export declare const BuildBatchPhaseType: {
127
+ readonly COMBINE_ARTIFACTS: "COMBINE_ARTIFACTS";
128
+ readonly DOWNLOAD_BATCHSPEC: "DOWNLOAD_BATCHSPEC";
129
+ readonly FAILED: "FAILED";
130
+ readonly IN_PROGRESS: "IN_PROGRESS";
131
+ readonly STOPPED: "STOPPED";
132
+ readonly SUBMITTED: "SUBMITTED";
133
+ readonly SUCCEEDED: "SUCCEEDED";
134
+ };
135
+ export type BuildBatchPhaseType =
136
+ (typeof BuildBatchPhaseType)[keyof typeof BuildBatchPhaseType];
137
+ export declare const SourceAuthType: {
138
+ readonly CODECONNECTIONS: "CODECONNECTIONS";
139
+ readonly OAUTH: "OAUTH";
140
+ readonly SECRETS_MANAGER: "SECRETS_MANAGER";
141
+ };
142
+ export type SourceAuthType =
143
+ (typeof SourceAuthType)[keyof typeof SourceAuthType];
144
+ export declare const SourceType: {
145
+ readonly BITBUCKET: "BITBUCKET";
146
+ readonly CODECOMMIT: "CODECOMMIT";
147
+ readonly CODEPIPELINE: "CODEPIPELINE";
148
+ readonly GITHUB: "GITHUB";
149
+ readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
150
+ readonly GITLAB: "GITLAB";
151
+ readonly GITLAB_SELF_MANAGED: "GITLAB_SELF_MANAGED";
152
+ readonly NO_SOURCE: "NO_SOURCE";
153
+ readonly S3: "S3";
154
+ };
155
+ export type SourceType = (typeof SourceType)[keyof typeof SourceType];
156
+ export declare const BuildPhaseType: {
157
+ readonly BUILD: "BUILD";
158
+ readonly COMPLETED: "COMPLETED";
159
+ readonly DOWNLOAD_SOURCE: "DOWNLOAD_SOURCE";
160
+ readonly FINALIZING: "FINALIZING";
161
+ readonly INSTALL: "INSTALL";
162
+ readonly POST_BUILD: "POST_BUILD";
163
+ readonly PRE_BUILD: "PRE_BUILD";
164
+ readonly PROVISIONING: "PROVISIONING";
165
+ readonly QUEUED: "QUEUED";
166
+ readonly SUBMITTED: "SUBMITTED";
167
+ readonly UPLOAD_ARTIFACTS: "UPLOAD_ARTIFACTS";
168
+ };
169
+ export type BuildPhaseType =
170
+ (typeof BuildPhaseType)[keyof typeof BuildPhaseType];
171
+ export declare const CommandType: {
172
+ readonly SHELL: "SHELL";
173
+ };
174
+ export type CommandType = (typeof CommandType)[keyof typeof CommandType];
175
+ export declare const FleetOverflowBehavior: {
176
+ readonly ON_DEMAND: "ON_DEMAND";
177
+ readonly QUEUE: "QUEUE";
178
+ };
179
+ export type FleetOverflowBehavior =
180
+ (typeof FleetOverflowBehavior)[keyof typeof FleetOverflowBehavior];
181
+ export declare const FleetProxyRuleBehavior: {
182
+ readonly ALLOW_ALL: "ALLOW_ALL";
183
+ readonly DENY_ALL: "DENY_ALL";
184
+ };
185
+ export type FleetProxyRuleBehavior =
186
+ (typeof FleetProxyRuleBehavior)[keyof typeof FleetProxyRuleBehavior];
187
+ export declare const FleetProxyRuleEffectType: {
188
+ readonly ALLOW: "ALLOW";
189
+ readonly DENY: "DENY";
190
+ };
191
+ export type FleetProxyRuleEffectType =
192
+ (typeof FleetProxyRuleEffectType)[keyof typeof FleetProxyRuleEffectType];
193
+ export declare const FleetProxyRuleType: {
194
+ readonly DOMAIN: "DOMAIN";
195
+ readonly IP: "IP";
196
+ };
197
+ export type FleetProxyRuleType =
198
+ (typeof FleetProxyRuleType)[keyof typeof FleetProxyRuleType];
199
+ export declare const FleetScalingType: {
200
+ readonly TARGET_TRACKING_SCALING: "TARGET_TRACKING_SCALING";
201
+ };
202
+ export type FleetScalingType =
203
+ (typeof FleetScalingType)[keyof typeof FleetScalingType];
204
+ export declare const FleetScalingMetricType: {
205
+ readonly FLEET_UTILIZATION_RATE: "FLEET_UTILIZATION_RATE";
206
+ };
207
+ export type FleetScalingMetricType =
208
+ (typeof FleetScalingMetricType)[keyof typeof FleetScalingMetricType];
209
+ export declare const FleetContextCode: {
210
+ readonly ACTION_REQUIRED: "ACTION_REQUIRED";
211
+ readonly CREATE_FAILED: "CREATE_FAILED";
212
+ readonly INSUFFICIENT_CAPACITY: "INSUFFICIENT_CAPACITY";
213
+ readonly PENDING_DELETION: "PENDING_DELETION";
214
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
215
+ };
216
+ export type FleetContextCode =
217
+ (typeof FleetContextCode)[keyof typeof FleetContextCode];
218
+ export declare const FleetStatusCode: {
219
+ readonly ACTIVE: "ACTIVE";
220
+ readonly CREATE_FAILED: "CREATE_FAILED";
221
+ readonly CREATING: "CREATING";
222
+ readonly DELETING: "DELETING";
223
+ readonly PENDING_DELETION: "PENDING_DELETION";
224
+ readonly ROTATING: "ROTATING";
225
+ readonly UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED";
226
+ readonly UPDATING: "UPDATING";
227
+ };
228
+ export type FleetStatusCode =
229
+ (typeof FleetStatusCode)[keyof typeof FleetStatusCode];
230
+ export declare const ProjectVisibilityType: {
231
+ readonly PRIVATE: "PRIVATE";
232
+ readonly PUBLIC_READ: "PUBLIC_READ";
233
+ };
234
+ export type ProjectVisibilityType =
235
+ (typeof ProjectVisibilityType)[keyof typeof ProjectVisibilityType];
236
+ export declare const WebhookBuildType: {
237
+ readonly BUILD: "BUILD";
238
+ readonly BUILD_BATCH: "BUILD_BATCH";
239
+ readonly RUNNER_BUILDKITE_BUILD: "RUNNER_BUILDKITE_BUILD";
240
+ };
241
+ export type WebhookBuildType =
242
+ (typeof WebhookBuildType)[keyof typeof WebhookBuildType];
243
+ export declare const WebhookFilterType: {
244
+ readonly ACTOR_ACCOUNT_ID: "ACTOR_ACCOUNT_ID";
245
+ readonly BASE_REF: "BASE_REF";
246
+ readonly COMMIT_MESSAGE: "COMMIT_MESSAGE";
247
+ readonly EVENT: "EVENT";
248
+ readonly FILE_PATH: "FILE_PATH";
249
+ readonly HEAD_REF: "HEAD_REF";
250
+ readonly ORGANIZATION_NAME: "ORGANIZATION_NAME";
251
+ readonly RELEASE_NAME: "RELEASE_NAME";
252
+ readonly REPOSITORY_NAME: "REPOSITORY_NAME";
253
+ readonly TAG_NAME: "TAG_NAME";
254
+ readonly WORKFLOW_NAME: "WORKFLOW_NAME";
255
+ };
256
+ export type WebhookFilterType =
257
+ (typeof WebhookFilterType)[keyof typeof WebhookFilterType];
258
+ export declare const PullRequestBuildApproverRole: {
259
+ readonly BITBUCKET_ADMIN: "BITBUCKET_ADMIN";
260
+ readonly BITBUCKET_READ: "BITBUCKET_READ";
261
+ readonly BITBUCKET_WRITE: "BITBUCKET_WRITE";
262
+ readonly GITHUB_ADMIN: "GITHUB_ADMIN";
263
+ readonly GITHUB_MAINTAIN: "GITHUB_MAINTAIN";
264
+ readonly GITHUB_READ: "GITHUB_READ";
265
+ readonly GITHUB_TRIAGE: "GITHUB_TRIAGE";
266
+ readonly GITHUB_WRITE: "GITHUB_WRITE";
267
+ readonly GITLAB_DEVELOPER: "GITLAB_DEVELOPER";
268
+ readonly GITLAB_GUEST: "GITLAB_GUEST";
269
+ readonly GITLAB_MAINTAINER: "GITLAB_MAINTAINER";
270
+ readonly GITLAB_OWNER: "GITLAB_OWNER";
271
+ readonly GITLAB_PLANNER: "GITLAB_PLANNER";
272
+ readonly GITLAB_REPORTER: "GITLAB_REPORTER";
273
+ };
274
+ export type PullRequestBuildApproverRole =
275
+ (typeof PullRequestBuildApproverRole)[keyof typeof PullRequestBuildApproverRole];
276
+ export declare const PullRequestBuildCommentApproval: {
277
+ readonly ALL_PULL_REQUESTS: "ALL_PULL_REQUESTS";
278
+ readonly DISABLED: "DISABLED";
279
+ readonly FORK_PULL_REQUESTS: "FORK_PULL_REQUESTS";
280
+ };
281
+ export type PullRequestBuildCommentApproval =
282
+ (typeof PullRequestBuildCommentApproval)[keyof typeof PullRequestBuildCommentApproval];
283
+ export declare const WebhookScopeType: {
284
+ readonly GITHUB_GLOBAL: "GITHUB_GLOBAL";
285
+ readonly GITHUB_ORGANIZATION: "GITHUB_ORGANIZATION";
286
+ readonly GITLAB_GROUP: "GITLAB_GROUP";
287
+ };
288
+ export type WebhookScopeType =
289
+ (typeof WebhookScopeType)[keyof typeof WebhookScopeType];
290
+ export declare const WebhookStatus: {
291
+ readonly ACTIVE: "ACTIVE";
292
+ readonly CREATE_FAILED: "CREATE_FAILED";
293
+ readonly CREATING: "CREATING";
294
+ readonly DELETING: "DELETING";
295
+ };
296
+ export type WebhookStatus = (typeof WebhookStatus)[keyof typeof WebhookStatus];
297
+ export declare const ReportExportConfigType: {
298
+ readonly NO_EXPORT: "NO_EXPORT";
299
+ readonly S3: "S3";
300
+ };
301
+ export type ReportExportConfigType =
302
+ (typeof ReportExportConfigType)[keyof typeof ReportExportConfigType];
303
+ export declare const ReportPackagingType: {
304
+ readonly NONE: "NONE";
305
+ readonly ZIP: "ZIP";
306
+ };
307
+ export type ReportPackagingType =
308
+ (typeof ReportPackagingType)[keyof typeof ReportPackagingType];
309
+ export declare const ReportGroupStatusType: {
310
+ readonly ACTIVE: "ACTIVE";
311
+ readonly DELETING: "DELETING";
312
+ };
313
+ export type ReportGroupStatusType =
314
+ (typeof ReportGroupStatusType)[keyof typeof ReportGroupStatusType];
315
+ export declare const ReportType: {
316
+ readonly CODE_COVERAGE: "CODE_COVERAGE";
317
+ readonly TEST: "TEST";
318
+ };
319
+ export type ReportType = (typeof ReportType)[keyof typeof ReportType];
320
+ export declare const ReportStatusType: {
321
+ readonly DELETING: "DELETING";
322
+ readonly FAILED: "FAILED";
323
+ readonly GENERATING: "GENERATING";
324
+ readonly INCOMPLETE: "INCOMPLETE";
325
+ readonly SUCCEEDED: "SUCCEEDED";
326
+ };
327
+ export type ReportStatusType =
328
+ (typeof ReportStatusType)[keyof typeof ReportStatusType];
329
+ export declare const ReportCodeCoverageSortByType: {
330
+ readonly FILE_PATH: "FILE_PATH";
331
+ readonly LINE_COVERAGE_PERCENTAGE: "LINE_COVERAGE_PERCENTAGE";
332
+ };
333
+ export type ReportCodeCoverageSortByType =
334
+ (typeof ReportCodeCoverageSortByType)[keyof typeof ReportCodeCoverageSortByType];
335
+ export declare const SortOrderType: {
336
+ readonly ASCENDING: "ASCENDING";
337
+ readonly DESCENDING: "DESCENDING";
338
+ };
339
+ export type SortOrderType = (typeof SortOrderType)[keyof typeof SortOrderType];
340
+ export declare const ReportGroupTrendFieldType: {
341
+ readonly BRANCHES_COVERED: "BRANCHES_COVERED";
342
+ readonly BRANCHES_MISSED: "BRANCHES_MISSED";
343
+ readonly BRANCH_COVERAGE: "BRANCH_COVERAGE";
344
+ readonly DURATION: "DURATION";
345
+ readonly LINES_COVERED: "LINES_COVERED";
346
+ readonly LINES_MISSED: "LINES_MISSED";
347
+ readonly LINE_COVERAGE: "LINE_COVERAGE";
348
+ readonly PASS_RATE: "PASS_RATE";
349
+ readonly TOTAL: "TOTAL";
350
+ };
351
+ export type ReportGroupTrendFieldType =
352
+ (typeof ReportGroupTrendFieldType)[keyof typeof ReportGroupTrendFieldType];
353
+ export declare const ServerType: {
354
+ readonly BITBUCKET: "BITBUCKET";
355
+ readonly GITHUB: "GITHUB";
356
+ readonly GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE";
357
+ readonly GITLAB: "GITLAB";
358
+ readonly GITLAB_SELF_MANAGED: "GITLAB_SELF_MANAGED";
359
+ };
360
+ export type ServerType = (typeof ServerType)[keyof typeof ServerType];
361
+ export declare const LanguageType: {
362
+ readonly ANDROID: "ANDROID";
363
+ readonly BASE: "BASE";
364
+ readonly DOCKER: "DOCKER";
365
+ readonly DOTNET: "DOTNET";
366
+ readonly GOLANG: "GOLANG";
367
+ readonly JAVA: "JAVA";
368
+ readonly NODE_JS: "NODE_JS";
369
+ readonly PHP: "PHP";
370
+ readonly PYTHON: "PYTHON";
371
+ readonly RUBY: "RUBY";
372
+ };
373
+ export type LanguageType = (typeof LanguageType)[keyof typeof LanguageType];
374
+ export declare const PlatformType: {
375
+ readonly AMAZON_LINUX: "AMAZON_LINUX";
376
+ readonly DEBIAN: "DEBIAN";
377
+ readonly UBUNTU: "UBUNTU";
378
+ readonly WINDOWS_SERVER: "WINDOWS_SERVER";
379
+ };
380
+ export type PlatformType = (typeof PlatformType)[keyof typeof PlatformType];
381
+ export declare const FleetSortByType: {
382
+ readonly CREATED_TIME: "CREATED_TIME";
383
+ readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
384
+ readonly NAME: "NAME";
385
+ };
386
+ export type FleetSortByType =
387
+ (typeof FleetSortByType)[keyof typeof FleetSortByType];
388
+ export declare const ProjectSortByType: {
389
+ readonly CREATED_TIME: "CREATED_TIME";
390
+ readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
391
+ readonly NAME: "NAME";
392
+ };
393
+ export type ProjectSortByType =
394
+ (typeof ProjectSortByType)[keyof typeof ProjectSortByType];
395
+ export declare const ReportGroupSortByType: {
396
+ readonly CREATED_TIME: "CREATED_TIME";
397
+ readonly LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME";
398
+ readonly NAME: "NAME";
399
+ };
400
+ export type ReportGroupSortByType =
401
+ (typeof ReportGroupSortByType)[keyof typeof ReportGroupSortByType];
402
+ export declare const SharedResourceSortByType: {
403
+ readonly ARN: "ARN";
404
+ readonly MODIFIED_TIME: "MODIFIED_TIME";
405
+ };
406
+ export type SharedResourceSortByType =
407
+ (typeof SharedResourceSortByType)[keyof typeof SharedResourceSortByType];
408
+ export declare const RetryBuildBatchType: {
409
+ readonly RETRY_ALL_BUILDS: "RETRY_ALL_BUILDS";
410
+ readonly RETRY_FAILED_BUILDS: "RETRY_FAILED_BUILDS";
411
+ };
412
+ export type RetryBuildBatchType =
413
+ (typeof RetryBuildBatchType)[keyof typeof RetryBuildBatchType];
@@ -0,0 +1,44 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { CodeBuildServiceException as __BaseException } from "./CodeBuildServiceException";
3
+ export declare class AccountLimitExceededException extends __BaseException {
4
+ readonly name: "AccountLimitExceededException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccountLimitExceededException, __BaseException>
8
+ );
9
+ }
10
+ export declare class AccountSuspendedException extends __BaseException {
11
+ readonly name: "AccountSuspendedException";
12
+ readonly $fault: "client";
13
+ constructor(
14
+ opts: __ExceptionOptionType<AccountSuspendedException, __BaseException>
15
+ );
16
+ }
17
+ export declare class InvalidInputException extends __BaseException {
18
+ readonly name: "InvalidInputException";
19
+ readonly $fault: "client";
20
+ constructor(
21
+ opts: __ExceptionOptionType<InvalidInputException, __BaseException>
22
+ );
23
+ }
24
+ export declare class ResourceAlreadyExistsException extends __BaseException {
25
+ readonly name: "ResourceAlreadyExistsException";
26
+ readonly $fault: "client";
27
+ constructor(
28
+ opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
29
+ );
30
+ }
31
+ export declare class OAuthProviderException extends __BaseException {
32
+ readonly name: "OAuthProviderException";
33
+ readonly $fault: "client";
34
+ constructor(
35
+ opts: __ExceptionOptionType<OAuthProviderException, __BaseException>
36
+ );
37
+ }
38
+ export declare class ResourceNotFoundException extends __BaseException {
39
+ readonly name: "ResourceNotFoundException";
40
+ readonly $fault: "client";
41
+ constructor(
42
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
43
+ );
44
+ }