@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
|
@@ -1,342 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export const AccessMethodType = {
|
|
3
|
-
CA_REPOSITORY: "CA_REPOSITORY",
|
|
4
|
-
RESOURCE_PKI_MANIFEST: "RESOURCE_PKI_MANIFEST",
|
|
5
|
-
RESOURCE_PKI_NOTIFY: "RESOURCE_PKI_NOTIFY",
|
|
6
|
-
};
|
|
7
|
-
export const KeyAlgorithm = {
|
|
8
|
-
EC_prime256v1: "EC_prime256v1",
|
|
9
|
-
EC_secp384r1: "EC_secp384r1",
|
|
10
|
-
EC_secp521r1: "EC_secp521r1",
|
|
11
|
-
ML_DSA_44: "ML_DSA_44",
|
|
12
|
-
ML_DSA_65: "ML_DSA_65",
|
|
13
|
-
ML_DSA_87: "ML_DSA_87",
|
|
14
|
-
RSA_2048: "RSA_2048",
|
|
15
|
-
RSA_3072: "RSA_3072",
|
|
16
|
-
RSA_4096: "RSA_4096",
|
|
17
|
-
SM2: "SM2",
|
|
18
|
-
};
|
|
19
|
-
export const SigningAlgorithm = {
|
|
20
|
-
ML_DSA_44: "ML_DSA_44",
|
|
21
|
-
ML_DSA_65: "ML_DSA_65",
|
|
22
|
-
ML_DSA_87: "ML_DSA_87",
|
|
23
|
-
SHA256WITHECDSA: "SHA256WITHECDSA",
|
|
24
|
-
SHA256WITHRSA: "SHA256WITHRSA",
|
|
25
|
-
SHA384WITHECDSA: "SHA384WITHECDSA",
|
|
26
|
-
SHA384WITHRSA: "SHA384WITHRSA",
|
|
27
|
-
SHA512WITHECDSA: "SHA512WITHECDSA",
|
|
28
|
-
SHA512WITHRSA: "SHA512WITHRSA",
|
|
29
|
-
SM3WITHSM2: "SM3WITHSM2",
|
|
30
|
-
};
|
|
31
|
-
export const CertificateAuthorityType = {
|
|
32
|
-
ROOT: "ROOT",
|
|
33
|
-
SUBORDINATE: "SUBORDINATE",
|
|
34
|
-
};
|
|
35
|
-
export const KeyStorageSecurityStandard = {
|
|
36
|
-
CCPC_LEVEL_1_OR_HIGHER: "CCPC_LEVEL_1_OR_HIGHER",
|
|
37
|
-
FIPS_140_2_LEVEL_2_OR_HIGHER: "FIPS_140_2_LEVEL_2_OR_HIGHER",
|
|
38
|
-
FIPS_140_2_LEVEL_3_OR_HIGHER: "FIPS_140_2_LEVEL_3_OR_HIGHER",
|
|
39
|
-
};
|
|
40
|
-
export const CrlType = {
|
|
41
|
-
COMPLETE: "COMPLETE",
|
|
42
|
-
PARTITIONED: "PARTITIONED",
|
|
43
|
-
};
|
|
44
|
-
export const S3ObjectAcl = {
|
|
45
|
-
BUCKET_OWNER_FULL_CONTROL: "BUCKET_OWNER_FULL_CONTROL",
|
|
46
|
-
PUBLIC_READ: "PUBLIC_READ",
|
|
47
|
-
};
|
|
48
|
-
export const CertificateAuthorityUsageMode = {
|
|
49
|
-
GENERAL_PURPOSE: "GENERAL_PURPOSE",
|
|
50
|
-
SHORT_LIVED_CERTIFICATE: "SHORT_LIVED_CERTIFICATE",
|
|
51
|
-
};
|
|
52
|
-
export class InvalidArgsException extends __BaseException {
|
|
53
|
-
name = "InvalidArgsException";
|
|
54
|
-
$fault = "client";
|
|
55
|
-
constructor(opts) {
|
|
56
|
-
super({
|
|
57
|
-
name: "InvalidArgsException",
|
|
58
|
-
$fault: "client",
|
|
59
|
-
...opts,
|
|
60
|
-
});
|
|
61
|
-
Object.setPrototypeOf(this, InvalidArgsException.prototype);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
export class InvalidPolicyException extends __BaseException {
|
|
65
|
-
name = "InvalidPolicyException";
|
|
66
|
-
$fault = "client";
|
|
67
|
-
constructor(opts) {
|
|
68
|
-
super({
|
|
69
|
-
name: "InvalidPolicyException",
|
|
70
|
-
$fault: "client",
|
|
71
|
-
...opts,
|
|
72
|
-
});
|
|
73
|
-
Object.setPrototypeOf(this, InvalidPolicyException.prototype);
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
export class InvalidTagException extends __BaseException {
|
|
77
|
-
name = "InvalidTagException";
|
|
78
|
-
$fault = "client";
|
|
79
|
-
constructor(opts) {
|
|
80
|
-
super({
|
|
81
|
-
name: "InvalidTagException",
|
|
82
|
-
$fault: "client",
|
|
83
|
-
...opts,
|
|
84
|
-
});
|
|
85
|
-
Object.setPrototypeOf(this, InvalidTagException.prototype);
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
export class LimitExceededException extends __BaseException {
|
|
89
|
-
name = "LimitExceededException";
|
|
90
|
-
$fault = "client";
|
|
91
|
-
constructor(opts) {
|
|
92
|
-
super({
|
|
93
|
-
name: "LimitExceededException",
|
|
94
|
-
$fault: "client",
|
|
95
|
-
...opts,
|
|
96
|
-
});
|
|
97
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
export const AuditReportResponseFormat = {
|
|
101
|
-
CSV: "CSV",
|
|
102
|
-
JSON: "JSON",
|
|
103
|
-
};
|
|
104
|
-
export class InvalidArnException extends __BaseException {
|
|
105
|
-
name = "InvalidArnException";
|
|
106
|
-
$fault = "client";
|
|
107
|
-
constructor(opts) {
|
|
108
|
-
super({
|
|
109
|
-
name: "InvalidArnException",
|
|
110
|
-
$fault: "client",
|
|
111
|
-
...opts,
|
|
112
|
-
});
|
|
113
|
-
Object.setPrototypeOf(this, InvalidArnException.prototype);
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
export class InvalidStateException extends __BaseException {
|
|
117
|
-
name = "InvalidStateException";
|
|
118
|
-
$fault = "client";
|
|
119
|
-
constructor(opts) {
|
|
120
|
-
super({
|
|
121
|
-
name: "InvalidStateException",
|
|
122
|
-
$fault: "client",
|
|
123
|
-
...opts,
|
|
124
|
-
});
|
|
125
|
-
Object.setPrototypeOf(this, InvalidStateException.prototype);
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
export class RequestFailedException extends __BaseException {
|
|
129
|
-
name = "RequestFailedException";
|
|
130
|
-
$fault = "client";
|
|
131
|
-
constructor(opts) {
|
|
132
|
-
super({
|
|
133
|
-
name: "RequestFailedException",
|
|
134
|
-
$fault: "client",
|
|
135
|
-
...opts,
|
|
136
|
-
});
|
|
137
|
-
Object.setPrototypeOf(this, RequestFailedException.prototype);
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
export class RequestInProgressException extends __BaseException {
|
|
141
|
-
name = "RequestInProgressException";
|
|
142
|
-
$fault = "client";
|
|
143
|
-
constructor(opts) {
|
|
144
|
-
super({
|
|
145
|
-
name: "RequestInProgressException",
|
|
146
|
-
$fault: "client",
|
|
147
|
-
...opts,
|
|
148
|
-
});
|
|
149
|
-
Object.setPrototypeOf(this, RequestInProgressException.prototype);
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
153
|
-
name = "ResourceNotFoundException";
|
|
154
|
-
$fault = "client";
|
|
155
|
-
constructor(opts) {
|
|
156
|
-
super({
|
|
157
|
-
name: "ResourceNotFoundException",
|
|
158
|
-
$fault: "client",
|
|
159
|
-
...opts,
|
|
160
|
-
});
|
|
161
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
export const ActionType = {
|
|
165
|
-
GetCertificate: "GetCertificate",
|
|
166
|
-
IssueCertificate: "IssueCertificate",
|
|
167
|
-
ListPermissions: "ListPermissions",
|
|
168
|
-
};
|
|
169
|
-
export class PermissionAlreadyExistsException extends __BaseException {
|
|
170
|
-
name = "PermissionAlreadyExistsException";
|
|
171
|
-
$fault = "client";
|
|
172
|
-
constructor(opts) {
|
|
173
|
-
super({
|
|
174
|
-
name: "PermissionAlreadyExistsException",
|
|
175
|
-
$fault: "client",
|
|
176
|
-
...opts,
|
|
177
|
-
});
|
|
178
|
-
Object.setPrototypeOf(this, PermissionAlreadyExistsException.prototype);
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
export class ConcurrentModificationException extends __BaseException {
|
|
182
|
-
name = "ConcurrentModificationException";
|
|
183
|
-
$fault = "client";
|
|
184
|
-
constructor(opts) {
|
|
185
|
-
super({
|
|
186
|
-
name: "ConcurrentModificationException",
|
|
187
|
-
$fault: "client",
|
|
188
|
-
...opts,
|
|
189
|
-
});
|
|
190
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
export class LockoutPreventedException extends __BaseException {
|
|
194
|
-
name = "LockoutPreventedException";
|
|
195
|
-
$fault = "client";
|
|
196
|
-
constructor(opts) {
|
|
197
|
-
super({
|
|
198
|
-
name: "LockoutPreventedException",
|
|
199
|
-
$fault: "client",
|
|
200
|
-
...opts,
|
|
201
|
-
});
|
|
202
|
-
Object.setPrototypeOf(this, LockoutPreventedException.prototype);
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
export const FailureReason = {
|
|
206
|
-
OTHER: "OTHER",
|
|
207
|
-
REQUEST_TIMED_OUT: "REQUEST_TIMED_OUT",
|
|
208
|
-
UNSUPPORTED_ALGORITHM: "UNSUPPORTED_ALGORITHM",
|
|
209
|
-
};
|
|
210
|
-
export const CertificateAuthorityStatus = {
|
|
211
|
-
ACTIVE: "ACTIVE",
|
|
212
|
-
CREATING: "CREATING",
|
|
213
|
-
DELETED: "DELETED",
|
|
214
|
-
DISABLED: "DISABLED",
|
|
215
|
-
EXPIRED: "EXPIRED",
|
|
216
|
-
FAILED: "FAILED",
|
|
217
|
-
PENDING_CERTIFICATE: "PENDING_CERTIFICATE",
|
|
218
|
-
};
|
|
219
|
-
export const AuditReportStatus = {
|
|
220
|
-
CREATING: "CREATING",
|
|
221
|
-
FAILED: "FAILED",
|
|
222
|
-
SUCCESS: "SUCCESS",
|
|
223
|
-
};
|
|
224
|
-
export class CertificateMismatchException extends __BaseException {
|
|
225
|
-
name = "CertificateMismatchException";
|
|
226
|
-
$fault = "client";
|
|
227
|
-
constructor(opts) {
|
|
228
|
-
super({
|
|
229
|
-
name: "CertificateMismatchException",
|
|
230
|
-
$fault: "client",
|
|
231
|
-
...opts,
|
|
232
|
-
});
|
|
233
|
-
Object.setPrototypeOf(this, CertificateMismatchException.prototype);
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
export class InvalidRequestException extends __BaseException {
|
|
237
|
-
name = "InvalidRequestException";
|
|
238
|
-
$fault = "client";
|
|
239
|
-
constructor(opts) {
|
|
240
|
-
super({
|
|
241
|
-
name: "InvalidRequestException",
|
|
242
|
-
$fault: "client",
|
|
243
|
-
...opts,
|
|
244
|
-
});
|
|
245
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
export class MalformedCertificateException extends __BaseException {
|
|
249
|
-
name = "MalformedCertificateException";
|
|
250
|
-
$fault = "client";
|
|
251
|
-
constructor(opts) {
|
|
252
|
-
super({
|
|
253
|
-
name: "MalformedCertificateException",
|
|
254
|
-
$fault: "client",
|
|
255
|
-
...opts,
|
|
256
|
-
});
|
|
257
|
-
Object.setPrototypeOf(this, MalformedCertificateException.prototype);
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
export const PolicyQualifierId = {
|
|
261
|
-
CPS: "CPS",
|
|
262
|
-
};
|
|
263
|
-
export const ExtendedKeyUsageType = {
|
|
264
|
-
CERTIFICATE_TRANSPARENCY: "CERTIFICATE_TRANSPARENCY",
|
|
265
|
-
CLIENT_AUTH: "CLIENT_AUTH",
|
|
266
|
-
CODE_SIGNING: "CODE_SIGNING",
|
|
267
|
-
DOCUMENT_SIGNING: "DOCUMENT_SIGNING",
|
|
268
|
-
EMAIL_PROTECTION: "EMAIL_PROTECTION",
|
|
269
|
-
OCSP_SIGNING: "OCSP_SIGNING",
|
|
270
|
-
SERVER_AUTH: "SERVER_AUTH",
|
|
271
|
-
SMART_CARD_LOGIN: "SMART_CARD_LOGIN",
|
|
272
|
-
TIME_STAMPING: "TIME_STAMPING",
|
|
273
|
-
};
|
|
274
|
-
export const ValidityPeriodType = {
|
|
275
|
-
ABSOLUTE: "ABSOLUTE",
|
|
276
|
-
DAYS: "DAYS",
|
|
277
|
-
END_DATE: "END_DATE",
|
|
278
|
-
MONTHS: "MONTHS",
|
|
279
|
-
YEARS: "YEARS",
|
|
280
|
-
};
|
|
281
|
-
export class MalformedCSRException extends __BaseException {
|
|
282
|
-
name = "MalformedCSRException";
|
|
283
|
-
$fault = "client";
|
|
284
|
-
constructor(opts) {
|
|
285
|
-
super({
|
|
286
|
-
name: "MalformedCSRException",
|
|
287
|
-
$fault: "client",
|
|
288
|
-
...opts,
|
|
289
|
-
});
|
|
290
|
-
Object.setPrototypeOf(this, MalformedCSRException.prototype);
|
|
291
|
-
}
|
|
292
|
-
}
|
|
293
|
-
export class InvalidNextTokenException extends __BaseException {
|
|
294
|
-
name = "InvalidNextTokenException";
|
|
295
|
-
$fault = "client";
|
|
296
|
-
constructor(opts) {
|
|
297
|
-
super({
|
|
298
|
-
name: "InvalidNextTokenException",
|
|
299
|
-
$fault: "client",
|
|
300
|
-
...opts,
|
|
301
|
-
});
|
|
302
|
-
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
303
|
-
}
|
|
304
|
-
}
|
|
305
|
-
export const ResourceOwner = {
|
|
306
|
-
OTHER_ACCOUNTS: "OTHER_ACCOUNTS",
|
|
307
|
-
SELF: "SELF",
|
|
308
|
-
};
|
|
309
|
-
export class RequestAlreadyProcessedException extends __BaseException {
|
|
310
|
-
name = "RequestAlreadyProcessedException";
|
|
311
|
-
$fault = "client";
|
|
312
|
-
constructor(opts) {
|
|
313
|
-
super({
|
|
314
|
-
name: "RequestAlreadyProcessedException",
|
|
315
|
-
$fault: "client",
|
|
316
|
-
...opts,
|
|
317
|
-
});
|
|
318
|
-
Object.setPrototypeOf(this, RequestAlreadyProcessedException.prototype);
|
|
319
|
-
}
|
|
320
|
-
}
|
|
321
|
-
export const RevocationReason = {
|
|
322
|
-
AFFILIATION_CHANGED: "AFFILIATION_CHANGED",
|
|
323
|
-
A_A_COMPROMISE: "A_A_COMPROMISE",
|
|
324
|
-
CERTIFICATE_AUTHORITY_COMPROMISE: "CERTIFICATE_AUTHORITY_COMPROMISE",
|
|
325
|
-
CESSATION_OF_OPERATION: "CESSATION_OF_OPERATION",
|
|
326
|
-
KEY_COMPROMISE: "KEY_COMPROMISE",
|
|
327
|
-
PRIVILEGE_WITHDRAWN: "PRIVILEGE_WITHDRAWN",
|
|
328
|
-
SUPERSEDED: "SUPERSEDED",
|
|
329
|
-
UNSPECIFIED: "UNSPECIFIED",
|
|
330
|
-
};
|
|
331
|
-
export class TooManyTagsException extends __BaseException {
|
|
332
|
-
name = "TooManyTagsException";
|
|
333
|
-
$fault = "client";
|
|
334
|
-
constructor(opts) {
|
|
335
|
-
super({
|
|
336
|
-
name: "TooManyTagsException",
|
|
337
|
-
$fault: "client",
|
|
338
|
-
...opts,
|
|
339
|
-
});
|
|
340
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
341
|
-
}
|
|
342
|
-
}
|
|
1
|
+
export {};
|
|
@@ -218,7 +218,7 @@ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.acmpca";
|
|
|
218
218
|
const n0 = "com.amazonaws.acmpca";
|
|
219
219
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
220
220
|
import { ACMPCAServiceException as __ACMPCAServiceException } from "../models/ACMPCAServiceException";
|
|
221
|
-
import { CertificateMismatchException as __CertificateMismatchException, ConcurrentModificationException as __ConcurrentModificationException, InvalidArgsException as __InvalidArgsException, InvalidArnException as __InvalidArnException, InvalidNextTokenException as __InvalidNextTokenException, InvalidPolicyException as __InvalidPolicyException, InvalidRequestException as __InvalidRequestException, InvalidStateException as __InvalidStateException, InvalidTagException as __InvalidTagException, LimitExceededException as __LimitExceededException, LockoutPreventedException as __LockoutPreventedException, MalformedCertificateException as __MalformedCertificateException, MalformedCSRException as __MalformedCSRException, PermissionAlreadyExistsException as __PermissionAlreadyExistsException, RequestAlreadyProcessedException as __RequestAlreadyProcessedException, RequestFailedException as __RequestFailedException, RequestInProgressException as __RequestInProgressException, ResourceNotFoundException as __ResourceNotFoundException, TooManyTagsException as __TooManyTagsException, } from "../models/
|
|
221
|
+
import { CertificateMismatchException as __CertificateMismatchException, ConcurrentModificationException as __ConcurrentModificationException, InvalidArgsException as __InvalidArgsException, InvalidArnException as __InvalidArnException, InvalidNextTokenException as __InvalidNextTokenException, InvalidPolicyException as __InvalidPolicyException, InvalidRequestException as __InvalidRequestException, InvalidStateException as __InvalidStateException, InvalidTagException as __InvalidTagException, LimitExceededException as __LimitExceededException, LockoutPreventedException as __LockoutPreventedException, MalformedCertificateException as __MalformedCertificateException, MalformedCSRException as __MalformedCSRException, PermissionAlreadyExistsException as __PermissionAlreadyExistsException, RequestAlreadyProcessedException as __RequestAlreadyProcessedException, RequestFailedException as __RequestFailedException, RequestInProgressException as __RequestInProgressException, ResourceNotFoundException as __ResourceNotFoundException, TooManyTagsException as __TooManyTagsException, } from "../models/errors";
|
|
222
222
|
export var AccessDescription = [
|
|
223
223
|
3,
|
|
224
224
|
n0,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -11,5 +11,7 @@ export type { ACMPCAExtensionConfiguration } from "./extensionConfiguration";
|
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
13
|
export * from "./waiters";
|
|
14
|
-
export * from "./models";
|
|
14
|
+
export * from "./models/enums";
|
|
15
|
+
export * from "./models/errors";
|
|
16
|
+
export type * from "./models/models_0";
|
|
15
17
|
export { ACMPCAServiceException } from "./models/ACMPCAServiceException";
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const AccessMethodType: {
|
|
6
|
+
readonly CA_REPOSITORY: "CA_REPOSITORY";
|
|
7
|
+
readonly RESOURCE_PKI_MANIFEST: "RESOURCE_PKI_MANIFEST";
|
|
8
|
+
readonly RESOURCE_PKI_NOTIFY: "RESOURCE_PKI_NOTIFY";
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
export type AccessMethodType = (typeof AccessMethodType)[keyof typeof AccessMethodType];
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
* @enum
|
|
17
|
+
*/
|
|
18
|
+
export declare const KeyAlgorithm: {
|
|
19
|
+
readonly EC_prime256v1: "EC_prime256v1";
|
|
20
|
+
readonly EC_secp384r1: "EC_secp384r1";
|
|
21
|
+
readonly EC_secp521r1: "EC_secp521r1";
|
|
22
|
+
readonly ML_DSA_44: "ML_DSA_44";
|
|
23
|
+
readonly ML_DSA_65: "ML_DSA_65";
|
|
24
|
+
readonly ML_DSA_87: "ML_DSA_87";
|
|
25
|
+
readonly RSA_2048: "RSA_2048";
|
|
26
|
+
readonly RSA_3072: "RSA_3072";
|
|
27
|
+
readonly RSA_4096: "RSA_4096";
|
|
28
|
+
readonly SM2: "SM2";
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export type KeyAlgorithm = (typeof KeyAlgorithm)[keyof typeof KeyAlgorithm];
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
* @enum
|
|
37
|
+
*/
|
|
38
|
+
export declare const SigningAlgorithm: {
|
|
39
|
+
readonly ML_DSA_44: "ML_DSA_44";
|
|
40
|
+
readonly ML_DSA_65: "ML_DSA_65";
|
|
41
|
+
readonly ML_DSA_87: "ML_DSA_87";
|
|
42
|
+
readonly SHA256WITHECDSA: "SHA256WITHECDSA";
|
|
43
|
+
readonly SHA256WITHRSA: "SHA256WITHRSA";
|
|
44
|
+
readonly SHA384WITHECDSA: "SHA384WITHECDSA";
|
|
45
|
+
readonly SHA384WITHRSA: "SHA384WITHRSA";
|
|
46
|
+
readonly SHA512WITHECDSA: "SHA512WITHECDSA";
|
|
47
|
+
readonly SHA512WITHRSA: "SHA512WITHRSA";
|
|
48
|
+
readonly SM3WITHSM2: "SM3WITHSM2";
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
export type SigningAlgorithm = (typeof SigningAlgorithm)[keyof typeof SigningAlgorithm];
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
* @enum
|
|
57
|
+
*/
|
|
58
|
+
export declare const CertificateAuthorityType: {
|
|
59
|
+
readonly ROOT: "ROOT";
|
|
60
|
+
readonly SUBORDINATE: "SUBORDINATE";
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
export type CertificateAuthorityType = (typeof CertificateAuthorityType)[keyof typeof CertificateAuthorityType];
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
* @enum
|
|
69
|
+
*/
|
|
70
|
+
export declare const KeyStorageSecurityStandard: {
|
|
71
|
+
readonly CCPC_LEVEL_1_OR_HIGHER: "CCPC_LEVEL_1_OR_HIGHER";
|
|
72
|
+
readonly FIPS_140_2_LEVEL_2_OR_HIGHER: "FIPS_140_2_LEVEL_2_OR_HIGHER";
|
|
73
|
+
readonly FIPS_140_2_LEVEL_3_OR_HIGHER: "FIPS_140_2_LEVEL_3_OR_HIGHER";
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export type KeyStorageSecurityStandard = (typeof KeyStorageSecurityStandard)[keyof typeof KeyStorageSecurityStandard];
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
* @enum
|
|
82
|
+
*/
|
|
83
|
+
export declare const CrlType: {
|
|
84
|
+
readonly COMPLETE: "COMPLETE";
|
|
85
|
+
readonly PARTITIONED: "PARTITIONED";
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
export type CrlType = (typeof CrlType)[keyof typeof CrlType];
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
* @enum
|
|
94
|
+
*/
|
|
95
|
+
export declare const S3ObjectAcl: {
|
|
96
|
+
readonly BUCKET_OWNER_FULL_CONTROL: "BUCKET_OWNER_FULL_CONTROL";
|
|
97
|
+
readonly PUBLIC_READ: "PUBLIC_READ";
|
|
98
|
+
};
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
export type S3ObjectAcl = (typeof S3ObjectAcl)[keyof typeof S3ObjectAcl];
|
|
103
|
+
/**
|
|
104
|
+
* @public
|
|
105
|
+
* @enum
|
|
106
|
+
*/
|
|
107
|
+
export declare const CertificateAuthorityUsageMode: {
|
|
108
|
+
readonly GENERAL_PURPOSE: "GENERAL_PURPOSE";
|
|
109
|
+
readonly SHORT_LIVED_CERTIFICATE: "SHORT_LIVED_CERTIFICATE";
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
114
|
+
export type CertificateAuthorityUsageMode = (typeof CertificateAuthorityUsageMode)[keyof typeof CertificateAuthorityUsageMode];
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
* @enum
|
|
118
|
+
*/
|
|
119
|
+
export declare const AuditReportResponseFormat: {
|
|
120
|
+
readonly CSV: "CSV";
|
|
121
|
+
readonly JSON: "JSON";
|
|
122
|
+
};
|
|
123
|
+
/**
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
export type AuditReportResponseFormat = (typeof AuditReportResponseFormat)[keyof typeof AuditReportResponseFormat];
|
|
127
|
+
/**
|
|
128
|
+
* @public
|
|
129
|
+
* @enum
|
|
130
|
+
*/
|
|
131
|
+
export declare const ActionType: {
|
|
132
|
+
readonly GetCertificate: "GetCertificate";
|
|
133
|
+
readonly IssueCertificate: "IssueCertificate";
|
|
134
|
+
readonly ListPermissions: "ListPermissions";
|
|
135
|
+
};
|
|
136
|
+
/**
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
140
|
+
/**
|
|
141
|
+
* @public
|
|
142
|
+
* @enum
|
|
143
|
+
*/
|
|
144
|
+
export declare const FailureReason: {
|
|
145
|
+
readonly OTHER: "OTHER";
|
|
146
|
+
readonly REQUEST_TIMED_OUT: "REQUEST_TIMED_OUT";
|
|
147
|
+
readonly UNSUPPORTED_ALGORITHM: "UNSUPPORTED_ALGORITHM";
|
|
148
|
+
};
|
|
149
|
+
/**
|
|
150
|
+
* @public
|
|
151
|
+
*/
|
|
152
|
+
export type FailureReason = (typeof FailureReason)[keyof typeof FailureReason];
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
* @enum
|
|
156
|
+
*/
|
|
157
|
+
export declare const CertificateAuthorityStatus: {
|
|
158
|
+
readonly ACTIVE: "ACTIVE";
|
|
159
|
+
readonly CREATING: "CREATING";
|
|
160
|
+
readonly DELETED: "DELETED";
|
|
161
|
+
readonly DISABLED: "DISABLED";
|
|
162
|
+
readonly EXPIRED: "EXPIRED";
|
|
163
|
+
readonly FAILED: "FAILED";
|
|
164
|
+
readonly PENDING_CERTIFICATE: "PENDING_CERTIFICATE";
|
|
165
|
+
};
|
|
166
|
+
/**
|
|
167
|
+
* @public
|
|
168
|
+
*/
|
|
169
|
+
export type CertificateAuthorityStatus = (typeof CertificateAuthorityStatus)[keyof typeof CertificateAuthorityStatus];
|
|
170
|
+
/**
|
|
171
|
+
* @public
|
|
172
|
+
* @enum
|
|
173
|
+
*/
|
|
174
|
+
export declare const AuditReportStatus: {
|
|
175
|
+
readonly CREATING: "CREATING";
|
|
176
|
+
readonly FAILED: "FAILED";
|
|
177
|
+
readonly SUCCESS: "SUCCESS";
|
|
178
|
+
};
|
|
179
|
+
/**
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
182
|
+
export type AuditReportStatus = (typeof AuditReportStatus)[keyof typeof AuditReportStatus];
|
|
183
|
+
/**
|
|
184
|
+
* @public
|
|
185
|
+
* @enum
|
|
186
|
+
*/
|
|
187
|
+
export declare const PolicyQualifierId: {
|
|
188
|
+
readonly CPS: "CPS";
|
|
189
|
+
};
|
|
190
|
+
/**
|
|
191
|
+
* @public
|
|
192
|
+
*/
|
|
193
|
+
export type PolicyQualifierId = (typeof PolicyQualifierId)[keyof typeof PolicyQualifierId];
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
* @enum
|
|
197
|
+
*/
|
|
198
|
+
export declare const ExtendedKeyUsageType: {
|
|
199
|
+
readonly CERTIFICATE_TRANSPARENCY: "CERTIFICATE_TRANSPARENCY";
|
|
200
|
+
readonly CLIENT_AUTH: "CLIENT_AUTH";
|
|
201
|
+
readonly CODE_SIGNING: "CODE_SIGNING";
|
|
202
|
+
readonly DOCUMENT_SIGNING: "DOCUMENT_SIGNING";
|
|
203
|
+
readonly EMAIL_PROTECTION: "EMAIL_PROTECTION";
|
|
204
|
+
readonly OCSP_SIGNING: "OCSP_SIGNING";
|
|
205
|
+
readonly SERVER_AUTH: "SERVER_AUTH";
|
|
206
|
+
readonly SMART_CARD_LOGIN: "SMART_CARD_LOGIN";
|
|
207
|
+
readonly TIME_STAMPING: "TIME_STAMPING";
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
212
|
+
export type ExtendedKeyUsageType = (typeof ExtendedKeyUsageType)[keyof typeof ExtendedKeyUsageType];
|
|
213
|
+
/**
|
|
214
|
+
* @public
|
|
215
|
+
* @enum
|
|
216
|
+
*/
|
|
217
|
+
export declare const ValidityPeriodType: {
|
|
218
|
+
readonly ABSOLUTE: "ABSOLUTE";
|
|
219
|
+
readonly DAYS: "DAYS";
|
|
220
|
+
readonly END_DATE: "END_DATE";
|
|
221
|
+
readonly MONTHS: "MONTHS";
|
|
222
|
+
readonly YEARS: "YEARS";
|
|
223
|
+
};
|
|
224
|
+
/**
|
|
225
|
+
* @public
|
|
226
|
+
*/
|
|
227
|
+
export type ValidityPeriodType = (typeof ValidityPeriodType)[keyof typeof ValidityPeriodType];
|
|
228
|
+
/**
|
|
229
|
+
* @public
|
|
230
|
+
* @enum
|
|
231
|
+
*/
|
|
232
|
+
export declare const ResourceOwner: {
|
|
233
|
+
readonly OTHER_ACCOUNTS: "OTHER_ACCOUNTS";
|
|
234
|
+
readonly SELF: "SELF";
|
|
235
|
+
};
|
|
236
|
+
/**
|
|
237
|
+
* @public
|
|
238
|
+
*/
|
|
239
|
+
export type ResourceOwner = (typeof ResourceOwner)[keyof typeof ResourceOwner];
|
|
240
|
+
/**
|
|
241
|
+
* @public
|
|
242
|
+
* @enum
|
|
243
|
+
*/
|
|
244
|
+
export declare const RevocationReason: {
|
|
245
|
+
readonly AFFILIATION_CHANGED: "AFFILIATION_CHANGED";
|
|
246
|
+
readonly A_A_COMPROMISE: "A_A_COMPROMISE";
|
|
247
|
+
readonly CERTIFICATE_AUTHORITY_COMPROMISE: "CERTIFICATE_AUTHORITY_COMPROMISE";
|
|
248
|
+
readonly CESSATION_OF_OPERATION: "CESSATION_OF_OPERATION";
|
|
249
|
+
readonly KEY_COMPROMISE: "KEY_COMPROMISE";
|
|
250
|
+
readonly PRIVILEGE_WITHDRAWN: "PRIVILEGE_WITHDRAWN";
|
|
251
|
+
readonly SUPERSEDED: "SUPERSEDED";
|
|
252
|
+
readonly UNSPECIFIED: "UNSPECIFIED";
|
|
253
|
+
};
|
|
254
|
+
/**
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
257
|
+
export type RevocationReason = (typeof RevocationReason)[keyof typeof RevocationReason];
|