@aws-sdk/client-codebuild 3.934.0 → 3.936.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/index.js +323 -322
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +322 -0
- package/dist-es/models/errors.js +73 -0
- package/dist-es/models/models_0.js +1 -395
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +746 -0
- package/dist-types/models/errors.d.ts +75 -0
- package/dist-types/models/models_0.d.ts +1 -821
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +413 -0
- package/dist-types/ts3.4/models/errors.d.ts +44 -0
- package/dist-types/ts3.4/models/models_0.d.ts +55 -457
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { CodeBuildServiceException as __BaseException } from "./CodeBuildServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>An Amazon Web Services service limit was exceeded for the calling Amazon Web Services account.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccountLimitExceededException extends __BaseException {
|
|
8
|
+
readonly name: "AccountLimitExceededException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccountLimitExceededException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>The CodeBuild access has been suspended for the calling Amazon Web Services account.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class AccountSuspendedException extends __BaseException {
|
|
20
|
+
readonly name: "AccountSuspendedException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<AccountSuspendedException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>The input value that was provided is not valid.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class InvalidInputException extends __BaseException {
|
|
32
|
+
readonly name: "InvalidInputException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>The specified Amazon Web Services resource cannot be created, because an Amazon Web Services resource with the same
|
|
41
|
+
* settings already exists.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
45
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
/**
|
|
48
|
+
* @internal
|
|
49
|
+
*/
|
|
50
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* <p>There was a problem with the underlying OAuth provider.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
export declare class OAuthProviderException extends __BaseException {
|
|
57
|
+
readonly name: "OAuthProviderException";
|
|
58
|
+
readonly $fault: "client";
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
62
|
+
constructor(opts: __ExceptionOptionType<OAuthProviderException, __BaseException>);
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* <p>The specified Amazon Web Services resource cannot be found.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
69
|
+
readonly name: "ResourceNotFoundException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
74
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
75
|
+
}
|