@aws-sdk/client-acm-pca 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.
- package/dist-cjs/index.js +114 -113
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +113 -0
- package/dist-es/models/errors.js +229 -0
- package/dist-es/models/models_0.js +1 -342
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +257 -0
- package/dist-types/models/errors.d.ts +230 -0
- package/dist-types/models/models_0.d.ts +1 -487
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +143 -0
- package/dist-types/ts3.4/models/errors.d.ts +144 -0
- package/dist-types/ts3.4/models/models_0.d.ts +20 -287
- package/package.json +12 -12
- 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,230 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ACMPCAServiceException as __BaseException } from "./ACMPCAServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>One or more of the specified arguments was not valid.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class InvalidArgsException extends __BaseException {
|
|
8
|
+
readonly name: "InvalidArgsException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<InvalidArgsException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>The resource policy is invalid or is missing a required statement. For general information about IAM policy and statement structure, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html#access_policies-json">Overview of JSON Policies</a>.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class InvalidPolicyException extends __BaseException {
|
|
20
|
+
readonly name: "InvalidPolicyException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>The tag associated with the CA is not valid. The invalid argument is contained in the message field.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class InvalidTagException extends __BaseException {
|
|
32
|
+
readonly name: "InvalidTagException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>An Amazon Web Services Private CA quota has been exceeded. See the exception message returned to determine the quota that was exceeded.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare class LimitExceededException extends __BaseException {
|
|
44
|
+
readonly name: "LimitExceededException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
/**
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
49
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* <p>The requested Amazon Resource Name (ARN) does not refer to an existing resource.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export declare class InvalidArnException extends __BaseException {
|
|
56
|
+
readonly name: "InvalidArnException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* <p>The state of the private CA does not allow this action to occur.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export declare class InvalidStateException extends __BaseException {
|
|
68
|
+
readonly name: "InvalidStateException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
73
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* <p>The request has failed for an unspecified reason.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class RequestFailedException extends __BaseException {
|
|
80
|
+
readonly name: "RequestFailedException";
|
|
81
|
+
readonly $fault: "client";
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
constructor(opts: __ExceptionOptionType<RequestFailedException, __BaseException>);
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* <p>Your request is already in progress.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export declare class RequestInProgressException extends __BaseException {
|
|
92
|
+
readonly name: "RequestInProgressException";
|
|
93
|
+
readonly $fault: "client";
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
constructor(opts: __ExceptionOptionType<RequestInProgressException, __BaseException>);
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* <p>A resource such as a private CA, S3 bucket, certificate, audit report, or policy cannot be found.</p>
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
104
|
+
readonly name: "ResourceNotFoundException";
|
|
105
|
+
readonly $fault: "client";
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
109
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* <p>The designated permission has already been given to the user.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
export declare class PermissionAlreadyExistsException extends __BaseException {
|
|
116
|
+
readonly name: "PermissionAlreadyExistsException";
|
|
117
|
+
readonly $fault: "client";
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
121
|
+
constructor(opts: __ExceptionOptionType<PermissionAlreadyExistsException, __BaseException>);
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* <p>A previous update to your private CA is still ongoing.</p>
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
127
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
128
|
+
readonly name: "ConcurrentModificationException";
|
|
129
|
+
readonly $fault: "client";
|
|
130
|
+
/**
|
|
131
|
+
* @internal
|
|
132
|
+
*/
|
|
133
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* <p>The current action was prevented because it would lock the caller out from performing subsequent actions. Verify that the specified parameters would not result in the caller being denied access to the resource. </p>
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
export declare class LockoutPreventedException extends __BaseException {
|
|
140
|
+
readonly name: "LockoutPreventedException";
|
|
141
|
+
readonly $fault: "client";
|
|
142
|
+
/**
|
|
143
|
+
* @internal
|
|
144
|
+
*/
|
|
145
|
+
constructor(opts: __ExceptionOptionType<LockoutPreventedException, __BaseException>);
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* <p>The certificate authority certificate you are importing does not comply with conditions specified in the certificate that signed it.</p>
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
export declare class CertificateMismatchException extends __BaseException {
|
|
152
|
+
readonly name: "CertificateMismatchException";
|
|
153
|
+
readonly $fault: "client";
|
|
154
|
+
/**
|
|
155
|
+
* @internal
|
|
156
|
+
*/
|
|
157
|
+
constructor(opts: __ExceptionOptionType<CertificateMismatchException, __BaseException>);
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* <p>The request action cannot be performed or is prohibited.</p>
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
164
|
+
readonly name: "InvalidRequestException";
|
|
165
|
+
readonly $fault: "client";
|
|
166
|
+
/**
|
|
167
|
+
* @internal
|
|
168
|
+
*/
|
|
169
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
170
|
+
}
|
|
171
|
+
/**
|
|
172
|
+
* <p>One or more fields in the certificate are invalid.</p>
|
|
173
|
+
* @public
|
|
174
|
+
*/
|
|
175
|
+
export declare class MalformedCertificateException extends __BaseException {
|
|
176
|
+
readonly name: "MalformedCertificateException";
|
|
177
|
+
readonly $fault: "client";
|
|
178
|
+
/**
|
|
179
|
+
* @internal
|
|
180
|
+
*/
|
|
181
|
+
constructor(opts: __ExceptionOptionType<MalformedCertificateException, __BaseException>);
|
|
182
|
+
}
|
|
183
|
+
/**
|
|
184
|
+
* <p>The certificate signing request is invalid.</p>
|
|
185
|
+
* @public
|
|
186
|
+
*/
|
|
187
|
+
export declare class MalformedCSRException extends __BaseException {
|
|
188
|
+
readonly name: "MalformedCSRException";
|
|
189
|
+
readonly $fault: "client";
|
|
190
|
+
/**
|
|
191
|
+
* @internal
|
|
192
|
+
*/
|
|
193
|
+
constructor(opts: __ExceptionOptionType<MalformedCSRException, __BaseException>);
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* <p>The token specified in the <code>NextToken</code> argument is not valid. Use the token returned from your previous call to <a href="https://docs.aws.amazon.com/privateca/latest/APIReference/API_ListCertificateAuthorities.html">ListCertificateAuthorities</a>.</p>
|
|
197
|
+
* @public
|
|
198
|
+
*/
|
|
199
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
200
|
+
readonly name: "InvalidNextTokenException";
|
|
201
|
+
readonly $fault: "client";
|
|
202
|
+
/**
|
|
203
|
+
* @internal
|
|
204
|
+
*/
|
|
205
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* <p>Your request has already been completed.</p>
|
|
209
|
+
* @public
|
|
210
|
+
*/
|
|
211
|
+
export declare class RequestAlreadyProcessedException extends __BaseException {
|
|
212
|
+
readonly name: "RequestAlreadyProcessedException";
|
|
213
|
+
readonly $fault: "client";
|
|
214
|
+
/**
|
|
215
|
+
* @internal
|
|
216
|
+
*/
|
|
217
|
+
constructor(opts: __ExceptionOptionType<RequestAlreadyProcessedException, __BaseException>);
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* <p>You can associate up to 50 tags with a private CA. Exception information is contained in the exception message field.</p>
|
|
221
|
+
* @public
|
|
222
|
+
*/
|
|
223
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
224
|
+
readonly name: "TooManyTagsException";
|
|
225
|
+
readonly $fault: "client";
|
|
226
|
+
/**
|
|
227
|
+
* @internal
|
|
228
|
+
*/
|
|
229
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
230
|
+
}
|