@aws-sdk/client-acm-pca 3.687.0 → 3.692.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-types/models/models_0.d.ts +122 -122
- package/dist-types/ts3.4/models/models_0.d.ts +126 -122
- package/package.json +36 -36
|
@@ -5,39 +5,39 @@ export interface CustomAttribute {
|
|
|
5
5
|
Value: string | undefined;
|
|
6
6
|
}
|
|
7
7
|
export interface ASN1Subject {
|
|
8
|
-
Country?: string;
|
|
9
|
-
Organization?: string;
|
|
10
|
-
OrganizationalUnit?: string;
|
|
11
|
-
DistinguishedNameQualifier?: string;
|
|
12
|
-
State?: string;
|
|
13
|
-
CommonName?: string;
|
|
14
|
-
SerialNumber?: string;
|
|
15
|
-
Locality?: string;
|
|
16
|
-
Title?: string;
|
|
17
|
-
Surname?: string;
|
|
18
|
-
GivenName?: string;
|
|
19
|
-
Initials?: string;
|
|
20
|
-
Pseudonym?: string;
|
|
21
|
-
GenerationQualifier?: string;
|
|
22
|
-
CustomAttributes?: CustomAttribute[];
|
|
8
|
+
Country?: string | undefined;
|
|
9
|
+
Organization?: string | undefined;
|
|
10
|
+
OrganizationalUnit?: string | undefined;
|
|
11
|
+
DistinguishedNameQualifier?: string | undefined;
|
|
12
|
+
State?: string | undefined;
|
|
13
|
+
CommonName?: string | undefined;
|
|
14
|
+
SerialNumber?: string | undefined;
|
|
15
|
+
Locality?: string | undefined;
|
|
16
|
+
Title?: string | undefined;
|
|
17
|
+
Surname?: string | undefined;
|
|
18
|
+
GivenName?: string | undefined;
|
|
19
|
+
Initials?: string | undefined;
|
|
20
|
+
Pseudonym?: string | undefined;
|
|
21
|
+
GenerationQualifier?: string | undefined;
|
|
22
|
+
CustomAttributes?: CustomAttribute[] | undefined;
|
|
23
23
|
}
|
|
24
24
|
export interface EdiPartyName {
|
|
25
25
|
PartyName: string | undefined;
|
|
26
|
-
NameAssigner?: string;
|
|
26
|
+
NameAssigner?: string | undefined;
|
|
27
27
|
}
|
|
28
28
|
export interface OtherName {
|
|
29
29
|
TypeId: string | undefined;
|
|
30
30
|
Value: string | undefined;
|
|
31
31
|
}
|
|
32
32
|
export interface GeneralName {
|
|
33
|
-
OtherName?: OtherName;
|
|
34
|
-
Rfc822Name?: string;
|
|
35
|
-
DnsName?: string;
|
|
36
|
-
DirectoryName?: ASN1Subject;
|
|
37
|
-
EdiPartyName?: EdiPartyName;
|
|
38
|
-
UniformResourceIdentifier?: string;
|
|
39
|
-
IpAddress?: string;
|
|
40
|
-
RegisteredId?: string;
|
|
33
|
+
OtherName?: OtherName | undefined;
|
|
34
|
+
Rfc822Name?: string | undefined;
|
|
35
|
+
DnsName?: string | undefined;
|
|
36
|
+
DirectoryName?: ASN1Subject | undefined;
|
|
37
|
+
EdiPartyName?: EdiPartyName | undefined;
|
|
38
|
+
UniformResourceIdentifier?: string | undefined;
|
|
39
|
+
IpAddress?: string | undefined;
|
|
40
|
+
RegisteredId?: string | undefined;
|
|
41
41
|
}
|
|
42
42
|
export declare const AccessMethodType: {
|
|
43
43
|
readonly CA_REPOSITORY: "CA_REPOSITORY";
|
|
@@ -47,27 +47,27 @@ export declare const AccessMethodType: {
|
|
|
47
47
|
export type AccessMethodType =
|
|
48
48
|
(typeof AccessMethodType)[keyof typeof AccessMethodType];
|
|
49
49
|
export interface AccessMethod {
|
|
50
|
-
CustomObjectIdentifier?: string;
|
|
51
|
-
AccessMethodType?: AccessMethodType;
|
|
50
|
+
CustomObjectIdentifier?: string | undefined;
|
|
51
|
+
AccessMethodType?: AccessMethodType | undefined;
|
|
52
52
|
}
|
|
53
53
|
export interface AccessDescription {
|
|
54
54
|
AccessMethod: AccessMethod | undefined;
|
|
55
55
|
AccessLocation: GeneralName | undefined;
|
|
56
56
|
}
|
|
57
57
|
export interface KeyUsage {
|
|
58
|
-
DigitalSignature?: boolean;
|
|
59
|
-
NonRepudiation?: boolean;
|
|
60
|
-
KeyEncipherment?: boolean;
|
|
61
|
-
DataEncipherment?: boolean;
|
|
62
|
-
KeyAgreement?: boolean;
|
|
63
|
-
KeyCertSign?: boolean;
|
|
64
|
-
CRLSign?: boolean;
|
|
65
|
-
EncipherOnly?: boolean;
|
|
66
|
-
DecipherOnly?: boolean;
|
|
58
|
+
DigitalSignature?: boolean | undefined;
|
|
59
|
+
NonRepudiation?: boolean | undefined;
|
|
60
|
+
KeyEncipherment?: boolean | undefined;
|
|
61
|
+
DataEncipherment?: boolean | undefined;
|
|
62
|
+
KeyAgreement?: boolean | undefined;
|
|
63
|
+
KeyCertSign?: boolean | undefined;
|
|
64
|
+
CRLSign?: boolean | undefined;
|
|
65
|
+
EncipherOnly?: boolean | undefined;
|
|
66
|
+
DecipherOnly?: boolean | undefined;
|
|
67
67
|
}
|
|
68
68
|
export interface CsrExtensions {
|
|
69
|
-
KeyUsage?: KeyUsage;
|
|
70
|
-
SubjectInformationAccess?: AccessDescription[];
|
|
69
|
+
KeyUsage?: KeyUsage | undefined;
|
|
70
|
+
SubjectInformationAccess?: AccessDescription[] | undefined;
|
|
71
71
|
}
|
|
72
72
|
export declare const KeyAlgorithm: {
|
|
73
73
|
readonly EC_prime256v1: "EC_prime256v1";
|
|
@@ -92,7 +92,7 @@ export interface CertificateAuthorityConfiguration {
|
|
|
92
92
|
KeyAlgorithm: KeyAlgorithm | undefined;
|
|
93
93
|
SigningAlgorithm: SigningAlgorithm | undefined;
|
|
94
94
|
Subject: ASN1Subject | undefined;
|
|
95
|
-
CsrExtensions?: CsrExtensions;
|
|
95
|
+
CsrExtensions?: CsrExtensions | undefined;
|
|
96
96
|
}
|
|
97
97
|
export declare const CertificateAuthorityType: {
|
|
98
98
|
readonly ROOT: "ROOT";
|
|
@@ -117,23 +117,25 @@ export declare const S3ObjectAcl: {
|
|
|
117
117
|
export type S3ObjectAcl = (typeof S3ObjectAcl)[keyof typeof S3ObjectAcl];
|
|
118
118
|
export interface CrlConfiguration {
|
|
119
119
|
Enabled: boolean | undefined;
|
|
120
|
-
ExpirationInDays?: number;
|
|
121
|
-
CustomCname?: string;
|
|
122
|
-
S3BucketName?: string;
|
|
123
|
-
S3ObjectAcl?: S3ObjectAcl;
|
|
124
|
-
CrlDistributionPointExtensionConfiguration?:
|
|
120
|
+
ExpirationInDays?: number | undefined;
|
|
121
|
+
CustomCname?: string | undefined;
|
|
122
|
+
S3BucketName?: string | undefined;
|
|
123
|
+
S3ObjectAcl?: S3ObjectAcl | undefined;
|
|
124
|
+
CrlDistributionPointExtensionConfiguration?:
|
|
125
|
+
| CrlDistributionPointExtensionConfiguration
|
|
126
|
+
| undefined;
|
|
125
127
|
}
|
|
126
128
|
export interface OcspConfiguration {
|
|
127
129
|
Enabled: boolean | undefined;
|
|
128
|
-
OcspCustomCname?: string;
|
|
130
|
+
OcspCustomCname?: string | undefined;
|
|
129
131
|
}
|
|
130
132
|
export interface RevocationConfiguration {
|
|
131
|
-
CrlConfiguration?: CrlConfiguration;
|
|
132
|
-
OcspConfiguration?: OcspConfiguration;
|
|
133
|
+
CrlConfiguration?: CrlConfiguration | undefined;
|
|
134
|
+
OcspConfiguration?: OcspConfiguration | undefined;
|
|
133
135
|
}
|
|
134
136
|
export interface Tag {
|
|
135
137
|
Key: string | undefined;
|
|
136
|
-
Value?: string;
|
|
138
|
+
Value?: string | undefined;
|
|
137
139
|
}
|
|
138
140
|
export declare const CertificateAuthorityUsageMode: {
|
|
139
141
|
readonly GENERAL_PURPOSE: "GENERAL_PURPOSE";
|
|
@@ -145,15 +147,15 @@ export interface CreateCertificateAuthorityRequest {
|
|
|
145
147
|
CertificateAuthorityConfiguration:
|
|
146
148
|
| CertificateAuthorityConfiguration
|
|
147
149
|
| undefined;
|
|
148
|
-
RevocationConfiguration?: RevocationConfiguration;
|
|
150
|
+
RevocationConfiguration?: RevocationConfiguration | undefined;
|
|
149
151
|
CertificateAuthorityType: CertificateAuthorityType | undefined;
|
|
150
|
-
IdempotencyToken?: string;
|
|
151
|
-
KeyStorageSecurityStandard?: KeyStorageSecurityStandard;
|
|
152
|
-
Tags?: Tag[];
|
|
153
|
-
UsageMode?: CertificateAuthorityUsageMode;
|
|
152
|
+
IdempotencyToken?: string | undefined;
|
|
153
|
+
KeyStorageSecurityStandard?: KeyStorageSecurityStandard | undefined;
|
|
154
|
+
Tags?: Tag[] | undefined;
|
|
155
|
+
UsageMode?: CertificateAuthorityUsageMode | undefined;
|
|
154
156
|
}
|
|
155
157
|
export interface CreateCertificateAuthorityResponse {
|
|
156
|
-
CertificateAuthorityArn?: string;
|
|
158
|
+
CertificateAuthorityArn?: string | undefined;
|
|
157
159
|
}
|
|
158
160
|
export declare class InvalidArgsException extends __BaseException {
|
|
159
161
|
readonly name: "InvalidArgsException";
|
|
@@ -195,8 +197,8 @@ export interface CreateCertificateAuthorityAuditReportRequest {
|
|
|
195
197
|
AuditReportResponseFormat: AuditReportResponseFormat | undefined;
|
|
196
198
|
}
|
|
197
199
|
export interface CreateCertificateAuthorityAuditReportResponse {
|
|
198
|
-
AuditReportId?: string;
|
|
199
|
-
S3Key?: string;
|
|
200
|
+
AuditReportId?: string | undefined;
|
|
201
|
+
S3Key?: string | undefined;
|
|
200
202
|
}
|
|
201
203
|
export declare class InvalidArnException extends __BaseException {
|
|
202
204
|
readonly name: "InvalidArnException";
|
|
@@ -242,7 +244,7 @@ export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
|
242
244
|
export interface CreatePermissionRequest {
|
|
243
245
|
CertificateAuthorityArn: string | undefined;
|
|
244
246
|
Principal: string | undefined;
|
|
245
|
-
SourceAccount?: string;
|
|
247
|
+
SourceAccount?: string | undefined;
|
|
246
248
|
Actions: ActionType[] | undefined;
|
|
247
249
|
}
|
|
248
250
|
export declare class PermissionAlreadyExistsException extends __BaseException {
|
|
@@ -267,12 +269,12 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
267
269
|
}
|
|
268
270
|
export interface DeleteCertificateAuthorityRequest {
|
|
269
271
|
CertificateAuthorityArn: string | undefined;
|
|
270
|
-
PermanentDeletionTimeInDays?: number;
|
|
272
|
+
PermanentDeletionTimeInDays?: number | undefined;
|
|
271
273
|
}
|
|
272
274
|
export interface DeletePermissionRequest {
|
|
273
275
|
CertificateAuthorityArn: string | undefined;
|
|
274
276
|
Principal: string | undefined;
|
|
275
|
-
SourceAccount?: string;
|
|
277
|
+
SourceAccount?: string | undefined;
|
|
276
278
|
}
|
|
277
279
|
export interface DeletePolicyRequest {
|
|
278
280
|
ResourceArn: string | undefined;
|
|
@@ -305,24 +307,26 @@ export declare const CertificateAuthorityStatus: {
|
|
|
305
307
|
export type CertificateAuthorityStatus =
|
|
306
308
|
(typeof CertificateAuthorityStatus)[keyof typeof CertificateAuthorityStatus];
|
|
307
309
|
export interface CertificateAuthority {
|
|
308
|
-
Arn?: string;
|
|
309
|
-
OwnerAccount?: string;
|
|
310
|
-
CreatedAt?: Date;
|
|
311
|
-
LastStateChangeAt?: Date;
|
|
312
|
-
Type?: CertificateAuthorityType;
|
|
313
|
-
Serial?: string;
|
|
314
|
-
Status?: CertificateAuthorityStatus;
|
|
315
|
-
NotBefore?: Date;
|
|
316
|
-
NotAfter?: Date;
|
|
317
|
-
FailureReason?: FailureReason;
|
|
318
|
-
CertificateAuthorityConfiguration?:
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
310
|
+
Arn?: string | undefined;
|
|
311
|
+
OwnerAccount?: string | undefined;
|
|
312
|
+
CreatedAt?: Date | undefined;
|
|
313
|
+
LastStateChangeAt?: Date | undefined;
|
|
314
|
+
Type?: CertificateAuthorityType | undefined;
|
|
315
|
+
Serial?: string | undefined;
|
|
316
|
+
Status?: CertificateAuthorityStatus | undefined;
|
|
317
|
+
NotBefore?: Date | undefined;
|
|
318
|
+
NotAfter?: Date | undefined;
|
|
319
|
+
FailureReason?: FailureReason | undefined;
|
|
320
|
+
CertificateAuthorityConfiguration?:
|
|
321
|
+
| CertificateAuthorityConfiguration
|
|
322
|
+
| undefined;
|
|
323
|
+
RevocationConfiguration?: RevocationConfiguration | undefined;
|
|
324
|
+
RestorableUntil?: Date | undefined;
|
|
325
|
+
KeyStorageSecurityStandard?: KeyStorageSecurityStandard | undefined;
|
|
326
|
+
UsageMode?: CertificateAuthorityUsageMode | undefined;
|
|
323
327
|
}
|
|
324
328
|
export interface DescribeCertificateAuthorityResponse {
|
|
325
|
-
CertificateAuthority?: CertificateAuthority;
|
|
329
|
+
CertificateAuthority?: CertificateAuthority | undefined;
|
|
326
330
|
}
|
|
327
331
|
export interface DescribeCertificateAuthorityAuditReportRequest {
|
|
328
332
|
CertificateAuthorityArn: string | undefined;
|
|
@@ -336,37 +340,37 @@ export declare const AuditReportStatus: {
|
|
|
336
340
|
export type AuditReportStatus =
|
|
337
341
|
(typeof AuditReportStatus)[keyof typeof AuditReportStatus];
|
|
338
342
|
export interface DescribeCertificateAuthorityAuditReportResponse {
|
|
339
|
-
AuditReportStatus?: AuditReportStatus;
|
|
340
|
-
S3BucketName?: string;
|
|
341
|
-
S3Key?: string;
|
|
342
|
-
CreatedAt?: Date;
|
|
343
|
+
AuditReportStatus?: AuditReportStatus | undefined;
|
|
344
|
+
S3BucketName?: string | undefined;
|
|
345
|
+
S3Key?: string | undefined;
|
|
346
|
+
CreatedAt?: Date | undefined;
|
|
343
347
|
}
|
|
344
348
|
export interface GetCertificateRequest {
|
|
345
349
|
CertificateAuthorityArn: string | undefined;
|
|
346
350
|
CertificateArn: string | undefined;
|
|
347
351
|
}
|
|
348
352
|
export interface GetCertificateResponse {
|
|
349
|
-
Certificate?: string;
|
|
350
|
-
CertificateChain?: string;
|
|
353
|
+
Certificate?: string | undefined;
|
|
354
|
+
CertificateChain?: string | undefined;
|
|
351
355
|
}
|
|
352
356
|
export interface GetCertificateAuthorityCertificateRequest {
|
|
353
357
|
CertificateAuthorityArn: string | undefined;
|
|
354
358
|
}
|
|
355
359
|
export interface GetCertificateAuthorityCertificateResponse {
|
|
356
|
-
Certificate?: string;
|
|
357
|
-
CertificateChain?: string;
|
|
360
|
+
Certificate?: string | undefined;
|
|
361
|
+
CertificateChain?: string | undefined;
|
|
358
362
|
}
|
|
359
363
|
export interface GetCertificateAuthorityCsrRequest {
|
|
360
364
|
CertificateAuthorityArn: string | undefined;
|
|
361
365
|
}
|
|
362
366
|
export interface GetCertificateAuthorityCsrResponse {
|
|
363
|
-
Csr?: string;
|
|
367
|
+
Csr?: string | undefined;
|
|
364
368
|
}
|
|
365
369
|
export interface GetPolicyRequest {
|
|
366
370
|
ResourceArn: string | undefined;
|
|
367
371
|
}
|
|
368
372
|
export interface GetPolicyResponse {
|
|
369
|
-
Policy?: string;
|
|
373
|
+
Policy?: string | undefined;
|
|
370
374
|
}
|
|
371
375
|
export declare class CertificateMismatchException extends __BaseException {
|
|
372
376
|
readonly name: "CertificateMismatchException";
|
|
@@ -378,7 +382,7 @@ export declare class CertificateMismatchException extends __BaseException {
|
|
|
378
382
|
export interface ImportCertificateAuthorityCertificateRequest {
|
|
379
383
|
CertificateAuthorityArn: string | undefined;
|
|
380
384
|
Certificate: Uint8Array | undefined;
|
|
381
|
-
CertificateChain?: Uint8Array;
|
|
385
|
+
CertificateChain?: Uint8Array | undefined;
|
|
382
386
|
}
|
|
383
387
|
export declare class InvalidRequestException extends __BaseException {
|
|
384
388
|
readonly name: "InvalidRequestException";
|
|
@@ -408,12 +412,12 @@ export interface PolicyQualifierInfo {
|
|
|
408
412
|
}
|
|
409
413
|
export interface PolicyInformation {
|
|
410
414
|
CertPolicyId: string | undefined;
|
|
411
|
-
PolicyQualifiers?: PolicyQualifierInfo[];
|
|
415
|
+
PolicyQualifiers?: PolicyQualifierInfo[] | undefined;
|
|
412
416
|
}
|
|
413
417
|
export interface CustomExtension {
|
|
414
418
|
ObjectIdentifier: string | undefined;
|
|
415
419
|
Value: string | undefined;
|
|
416
|
-
Critical?: boolean;
|
|
420
|
+
Critical?: boolean | undefined;
|
|
417
421
|
}
|
|
418
422
|
export declare const ExtendedKeyUsageType: {
|
|
419
423
|
readonly CERTIFICATE_TRANSPARENCY: "CERTIFICATE_TRANSPARENCY";
|
|
@@ -429,19 +433,19 @@ export declare const ExtendedKeyUsageType: {
|
|
|
429
433
|
export type ExtendedKeyUsageType =
|
|
430
434
|
(typeof ExtendedKeyUsageType)[keyof typeof ExtendedKeyUsageType];
|
|
431
435
|
export interface ExtendedKeyUsage {
|
|
432
|
-
ExtendedKeyUsageType?: ExtendedKeyUsageType;
|
|
433
|
-
ExtendedKeyUsageObjectIdentifier?: string;
|
|
436
|
+
ExtendedKeyUsageType?: ExtendedKeyUsageType | undefined;
|
|
437
|
+
ExtendedKeyUsageObjectIdentifier?: string | undefined;
|
|
434
438
|
}
|
|
435
439
|
export interface Extensions {
|
|
436
|
-
CertificatePolicies?: PolicyInformation[];
|
|
437
|
-
ExtendedKeyUsage?: ExtendedKeyUsage[];
|
|
438
|
-
KeyUsage?: KeyUsage;
|
|
439
|
-
SubjectAlternativeNames?: GeneralName[];
|
|
440
|
-
CustomExtensions?: CustomExtension[];
|
|
440
|
+
CertificatePolicies?: PolicyInformation[] | undefined;
|
|
441
|
+
ExtendedKeyUsage?: ExtendedKeyUsage[] | undefined;
|
|
442
|
+
KeyUsage?: KeyUsage | undefined;
|
|
443
|
+
SubjectAlternativeNames?: GeneralName[] | undefined;
|
|
444
|
+
CustomExtensions?: CustomExtension[] | undefined;
|
|
441
445
|
}
|
|
442
446
|
export interface ApiPassthrough {
|
|
443
|
-
Extensions?: Extensions;
|
|
444
|
-
Subject?: ASN1Subject;
|
|
447
|
+
Extensions?: Extensions | undefined;
|
|
448
|
+
Subject?: ASN1Subject | undefined;
|
|
445
449
|
}
|
|
446
450
|
export declare const ValidityPeriodType: {
|
|
447
451
|
readonly ABSOLUTE: "ABSOLUTE";
|
|
@@ -457,17 +461,17 @@ export interface Validity {
|
|
|
457
461
|
Type: ValidityPeriodType | undefined;
|
|
458
462
|
}
|
|
459
463
|
export interface IssueCertificateRequest {
|
|
460
|
-
ApiPassthrough?: ApiPassthrough;
|
|
464
|
+
ApiPassthrough?: ApiPassthrough | undefined;
|
|
461
465
|
CertificateAuthorityArn: string | undefined;
|
|
462
466
|
Csr: Uint8Array | undefined;
|
|
463
467
|
SigningAlgorithm: SigningAlgorithm | undefined;
|
|
464
|
-
TemplateArn?: string;
|
|
468
|
+
TemplateArn?: string | undefined;
|
|
465
469
|
Validity: Validity | undefined;
|
|
466
|
-
ValidityNotBefore?: Validity;
|
|
467
|
-
IdempotencyToken?: string;
|
|
470
|
+
ValidityNotBefore?: Validity | undefined;
|
|
471
|
+
IdempotencyToken?: string | undefined;
|
|
468
472
|
}
|
|
469
473
|
export interface IssueCertificateResponse {
|
|
470
|
-
CertificateArn?: string;
|
|
474
|
+
CertificateArn?: string | undefined;
|
|
471
475
|
}
|
|
472
476
|
export declare class MalformedCSRException extends __BaseException {
|
|
473
477
|
readonly name: "MalformedCSRException";
|
|
@@ -489,39 +493,39 @@ export declare const ResourceOwner: {
|
|
|
489
493
|
};
|
|
490
494
|
export type ResourceOwner = (typeof ResourceOwner)[keyof typeof ResourceOwner];
|
|
491
495
|
export interface ListCertificateAuthoritiesRequest {
|
|
492
|
-
MaxResults?: number;
|
|
493
|
-
NextToken?: string;
|
|
494
|
-
ResourceOwner?: ResourceOwner;
|
|
496
|
+
MaxResults?: number | undefined;
|
|
497
|
+
NextToken?: string | undefined;
|
|
498
|
+
ResourceOwner?: ResourceOwner | undefined;
|
|
495
499
|
}
|
|
496
500
|
export interface ListCertificateAuthoritiesResponse {
|
|
497
|
-
NextToken?: string;
|
|
498
|
-
CertificateAuthorities?: CertificateAuthority[];
|
|
501
|
+
NextToken?: string | undefined;
|
|
502
|
+
CertificateAuthorities?: CertificateAuthority[] | undefined;
|
|
499
503
|
}
|
|
500
504
|
export interface ListPermissionsRequest {
|
|
501
|
-
MaxResults?: number;
|
|
502
|
-
NextToken?: string;
|
|
505
|
+
MaxResults?: number | undefined;
|
|
506
|
+
NextToken?: string | undefined;
|
|
503
507
|
CertificateAuthorityArn: string | undefined;
|
|
504
508
|
}
|
|
505
509
|
export interface Permission {
|
|
506
|
-
CertificateAuthorityArn?: string;
|
|
507
|
-
CreatedAt?: Date;
|
|
508
|
-
Principal?: string;
|
|
509
|
-
SourceAccount?: string;
|
|
510
|
-
Actions?: ActionType[];
|
|
511
|
-
Policy?: string;
|
|
510
|
+
CertificateAuthorityArn?: string | undefined;
|
|
511
|
+
CreatedAt?: Date | undefined;
|
|
512
|
+
Principal?: string | undefined;
|
|
513
|
+
SourceAccount?: string | undefined;
|
|
514
|
+
Actions?: ActionType[] | undefined;
|
|
515
|
+
Policy?: string | undefined;
|
|
512
516
|
}
|
|
513
517
|
export interface ListPermissionsResponse {
|
|
514
|
-
NextToken?: string;
|
|
515
|
-
Permissions?: Permission[];
|
|
518
|
+
NextToken?: string | undefined;
|
|
519
|
+
Permissions?: Permission[] | undefined;
|
|
516
520
|
}
|
|
517
521
|
export interface ListTagsRequest {
|
|
518
|
-
MaxResults?: number;
|
|
519
|
-
NextToken?: string;
|
|
522
|
+
MaxResults?: number | undefined;
|
|
523
|
+
NextToken?: string | undefined;
|
|
520
524
|
CertificateAuthorityArn: string | undefined;
|
|
521
525
|
}
|
|
522
526
|
export interface ListTagsResponse {
|
|
523
|
-
NextToken?: string;
|
|
524
|
-
Tags?: Tag[];
|
|
527
|
+
NextToken?: string | undefined;
|
|
528
|
+
Tags?: Tag[] | undefined;
|
|
525
529
|
}
|
|
526
530
|
export interface PutPolicyRequest {
|
|
527
531
|
ResourceArn: string | undefined;
|
|
@@ -574,6 +578,6 @@ export interface UntagCertificateAuthorityRequest {
|
|
|
574
578
|
}
|
|
575
579
|
export interface UpdateCertificateAuthorityRequest {
|
|
576
580
|
CertificateAuthorityArn: string | undefined;
|
|
577
|
-
RevocationConfiguration?: RevocationConfiguration;
|
|
578
|
-
Status?: CertificateAuthorityStatus;
|
|
581
|
+
RevocationConfiguration?: RevocationConfiguration | undefined;
|
|
582
|
+
Status?: CertificateAuthorityStatus | undefined;
|
|
579
583
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-acm-pca",
|
|
3
3
|
"description": "AWS SDK for JavaScript Acm Pca Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.692.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-acm-pca",
|
|
@@ -20,45 +20,45 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.692.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.692.0",
|
|
25
|
+
"@aws-sdk/core": "3.692.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.692.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.692.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.692.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.692.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.692.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.692.0",
|
|
32
|
+
"@aws-sdk/types": "3.692.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.692.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.692.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.692.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.11",
|
|
37
|
+
"@smithy/core": "^2.5.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.9",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.9",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.11",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.9",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.9",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.10",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.6",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.3",
|
|
50
|
+
"@smithy/types": "^3.7.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.9",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.26",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.26",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.5",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.9",
|
|
59
|
+
"@smithy/util-retry": "^3.0.9",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
|
-
"@smithy/util-waiter": "^3.1.
|
|
61
|
+
"@smithy/util-waiter": "^3.1.8",
|
|
62
62
|
"tslib": "^2.6.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|