@aws-sdk/client-pca-connector-ad 3.428.0 → 3.429.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.
|
@@ -23,13 +23,13 @@ export interface AccessRights {
|
|
|
23
23
|
* <p>Allow or deny an Active Directory group from enrolling certificates issued against a
|
|
24
24
|
* template.</p>
|
|
25
25
|
*/
|
|
26
|
-
Enroll?: AccessRight
|
|
26
|
+
Enroll?: AccessRight;
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
29
|
* <p>Allow or deny an Active Directory group from autoenrolling certificates issued against a template.
|
|
30
30
|
* The Active Directory group must be allowed to enroll to allow autoenrollment</p>
|
|
31
31
|
*/
|
|
32
|
-
AutoEnroll?: AccessRight
|
|
32
|
+
AutoEnroll?: AccessRight;
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
35
|
* @public
|
|
@@ -217,7 +217,7 @@ export declare namespace ApplicationPolicy {
|
|
|
217
217
|
* <p>The type of application policy</p>
|
|
218
218
|
*/
|
|
219
219
|
interface PolicyTypeMember {
|
|
220
|
-
PolicyType: ApplicationPolicyType
|
|
220
|
+
PolicyType: ApplicationPolicyType;
|
|
221
221
|
PolicyObjectIdentifier?: never;
|
|
222
222
|
$unknown?: never;
|
|
223
223
|
}
|
|
@@ -239,7 +239,7 @@ export declare namespace ApplicationPolicy {
|
|
|
239
239
|
$unknown: [string, any];
|
|
240
240
|
}
|
|
241
241
|
interface Visitor<T> {
|
|
242
|
-
PolicyType: (value: ApplicationPolicyType
|
|
242
|
+
PolicyType: (value: ApplicationPolicyType) => T;
|
|
243
243
|
PolicyObjectIdentifier: (value: string) => T;
|
|
244
244
|
_: (name: string, value: any) => T;
|
|
245
245
|
}
|
|
@@ -292,7 +292,7 @@ export interface ValidityPeriod {
|
|
|
292
292
|
* @public
|
|
293
293
|
* <p>The unit of time. You can select hours, days, weeks, months, and years.</p>
|
|
294
294
|
*/
|
|
295
|
-
PeriodType: ValidityPeriodType |
|
|
295
|
+
PeriodType: ValidityPeriodType | undefined;
|
|
296
296
|
/**
|
|
297
297
|
* @public
|
|
298
298
|
* <p>The numeric value for the validity period.</p>
|
|
@@ -479,12 +479,12 @@ export interface Connector {
|
|
|
479
479
|
* @public
|
|
480
480
|
* <p>Status of the connector. Status can be creating, active, deleting, or failed.</p>
|
|
481
481
|
*/
|
|
482
|
-
Status?: ConnectorStatus
|
|
482
|
+
Status?: ConnectorStatus;
|
|
483
483
|
/**
|
|
484
484
|
* @public
|
|
485
485
|
* <p>Additional information about the connector status if the status is failed.</p>
|
|
486
486
|
*/
|
|
487
|
-
StatusReason?: ConnectorStatusReason
|
|
487
|
+
StatusReason?: ConnectorStatusReason;
|
|
488
488
|
/**
|
|
489
489
|
* @public
|
|
490
490
|
* <p>The date and time that the connector was created.</p>
|
|
@@ -532,12 +532,12 @@ export interface ConnectorSummary {
|
|
|
532
532
|
* @public
|
|
533
533
|
* <p>Status of the connector. Status can be creating, active, deleting, or failed.</p>
|
|
534
534
|
*/
|
|
535
|
-
Status?: ConnectorStatus
|
|
535
|
+
Status?: ConnectorStatus;
|
|
536
536
|
/**
|
|
537
537
|
* @public
|
|
538
538
|
* <p>Additional information about the connector status if the status is failed.</p>
|
|
539
539
|
*/
|
|
540
|
-
StatusReason?: ConnectorStatusReason
|
|
540
|
+
StatusReason?: ConnectorStatusReason;
|
|
541
541
|
/**
|
|
542
542
|
* @public
|
|
543
543
|
* <p>The date and time that the connector was created.</p>
|
|
@@ -719,7 +719,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
719
719
|
* <p>The reason for the validation error. This won't be return for every
|
|
720
720
|
* validation exception.</p>
|
|
721
721
|
*/
|
|
722
|
-
Reason?: ValidationExceptionReason
|
|
722
|
+
Reason?: ValidationExceptionReason;
|
|
723
723
|
/**
|
|
724
724
|
* @internal
|
|
725
725
|
*/
|
|
@@ -995,7 +995,7 @@ export interface PrivateKeyAttributesV2 {
|
|
|
995
995
|
* <p>Defines the purpose of the private key. Set it to "KEY_EXCHANGE" or "SIGNATURE"
|
|
996
996
|
* value.</p>
|
|
997
997
|
*/
|
|
998
|
-
KeySpec: KeySpec |
|
|
998
|
+
KeySpec: KeySpec | undefined;
|
|
999
999
|
/**
|
|
1000
1000
|
* @public
|
|
1001
1001
|
* <p>Defines the cryptographic providers used to generate the private key.</p>
|
|
@@ -1022,7 +1022,7 @@ export interface PrivateKeyFlagsV2 {
|
|
|
1022
1022
|
* @public
|
|
1023
1023
|
* <p>Defines the minimum client compatibility.</p>
|
|
1024
1024
|
*/
|
|
1025
|
-
ClientVersion: ClientCompatibilityV2 |
|
|
1025
|
+
ClientVersion: ClientCompatibilityV2 | undefined;
|
|
1026
1026
|
}
|
|
1027
1027
|
/**
|
|
1028
1028
|
* @public
|
|
@@ -1286,7 +1286,7 @@ export declare namespace KeyUsageProperty {
|
|
|
1286
1286
|
* property flags but not both. </p>
|
|
1287
1287
|
*/
|
|
1288
1288
|
interface PropertyTypeMember {
|
|
1289
|
-
PropertyType: KeyUsagePropertyType
|
|
1289
|
+
PropertyType: KeyUsagePropertyType;
|
|
1290
1290
|
PropertyFlags?: never;
|
|
1291
1291
|
$unknown?: never;
|
|
1292
1292
|
}
|
|
@@ -1309,7 +1309,7 @@ export declare namespace KeyUsageProperty {
|
|
|
1309
1309
|
$unknown: [string, any];
|
|
1310
1310
|
}
|
|
1311
1311
|
interface Visitor<T> {
|
|
1312
|
-
PropertyType: (value: KeyUsagePropertyType
|
|
1312
|
+
PropertyType: (value: KeyUsagePropertyType) => T;
|
|
1313
1313
|
PropertyFlags: (value: KeyUsagePropertyFlags) => T;
|
|
1314
1314
|
_: (name: string, value: any) => T;
|
|
1315
1315
|
}
|
|
@@ -1330,7 +1330,7 @@ export interface PrivateKeyAttributesV3 {
|
|
|
1330
1330
|
* <p>Defines the purpose of the private key. Set it to "KEY_EXCHANGE" or "SIGNATURE"
|
|
1331
1331
|
* value.</p>
|
|
1332
1332
|
*/
|
|
1333
|
-
KeySpec: KeySpec |
|
|
1333
|
+
KeySpec: KeySpec | undefined;
|
|
1334
1334
|
/**
|
|
1335
1335
|
* @public
|
|
1336
1336
|
* <p>Defines the cryptographic providers used to generate the private key.</p>
|
|
@@ -1347,7 +1347,7 @@ export interface PrivateKeyAttributesV3 {
|
|
|
1347
1347
|
* @public
|
|
1348
1348
|
* <p>Defines the algorithm used to generate the private key.</p>
|
|
1349
1349
|
*/
|
|
1350
|
-
Algorithm: PrivateKeyAlgorithm |
|
|
1350
|
+
Algorithm: PrivateKeyAlgorithm | undefined;
|
|
1351
1351
|
}
|
|
1352
1352
|
/**
|
|
1353
1353
|
* @public
|
|
@@ -1376,7 +1376,7 @@ export interface PrivateKeyFlagsV3 {
|
|
|
1376
1376
|
* @public
|
|
1377
1377
|
* <p>Defines the minimum client compatibility.</p>
|
|
1378
1378
|
*/
|
|
1379
|
-
ClientVersion: ClientCompatibilityV3 |
|
|
1379
|
+
ClientVersion: ClientCompatibilityV3 | undefined;
|
|
1380
1380
|
}
|
|
1381
1381
|
/**
|
|
1382
1382
|
* @public
|
|
@@ -1491,7 +1491,7 @@ export interface TemplateV3 {
|
|
|
1491
1491
|
* @public
|
|
1492
1492
|
* <p>Specifies the hash algorithm used to hash the private key.</p>
|
|
1493
1493
|
*/
|
|
1494
|
-
HashAlgorithm: HashAlgorithm |
|
|
1494
|
+
HashAlgorithm: HashAlgorithm | undefined;
|
|
1495
1495
|
/**
|
|
1496
1496
|
* @public
|
|
1497
1497
|
* <p>Extensions describe the key usage extensions and application policies for a
|
|
@@ -1585,7 +1585,7 @@ export interface PrivateKeyAttributesV4 {
|
|
|
1585
1585
|
* <p>Defines the purpose of the private key. Set it to "KEY_EXCHANGE" or "SIGNATURE"
|
|
1586
1586
|
* value.</p>
|
|
1587
1587
|
*/
|
|
1588
|
-
KeySpec: KeySpec |
|
|
1588
|
+
KeySpec: KeySpec | undefined;
|
|
1589
1589
|
/**
|
|
1590
1590
|
* @public
|
|
1591
1591
|
* <p>Defines the cryptographic providers used to generate the private key.</p>
|
|
@@ -1602,7 +1602,7 @@ export interface PrivateKeyAttributesV4 {
|
|
|
1602
1602
|
* @public
|
|
1603
1603
|
* <p>Defines the algorithm used to generate the private key.</p>
|
|
1604
1604
|
*/
|
|
1605
|
-
Algorithm?: PrivateKeyAlgorithm
|
|
1605
|
+
Algorithm?: PrivateKeyAlgorithm;
|
|
1606
1606
|
}
|
|
1607
1607
|
/**
|
|
1608
1608
|
* @public
|
|
@@ -1644,7 +1644,7 @@ export interface PrivateKeyFlagsV4 {
|
|
|
1644
1644
|
* @public
|
|
1645
1645
|
* <p>Defines the minimum client compatibility.</p>
|
|
1646
1646
|
*/
|
|
1647
|
-
ClientVersion: ClientCompatibilityV4 |
|
|
1647
|
+
ClientVersion: ClientCompatibilityV4 | undefined;
|
|
1648
1648
|
}
|
|
1649
1649
|
/**
|
|
1650
1650
|
* @public
|
|
@@ -1763,7 +1763,7 @@ export interface TemplateV4 {
|
|
|
1763
1763
|
* <p>Specifies the hash algorithm used to hash the private key. Hash algorithm can only be
|
|
1764
1764
|
* specified when using Key Storage Providers.</p>
|
|
1765
1765
|
*/
|
|
1766
|
-
HashAlgorithm?: HashAlgorithm
|
|
1766
|
+
HashAlgorithm?: HashAlgorithm;
|
|
1767
1767
|
/**
|
|
1768
1768
|
* @public
|
|
1769
1769
|
* <p>Extensions describe the key usage extensions and application policies for a
|
|
@@ -2011,13 +2011,13 @@ export interface DirectoryRegistration {
|
|
|
2011
2011
|
* @public
|
|
2012
2012
|
* <p>Status of the directory registration.</p>
|
|
2013
2013
|
*/
|
|
2014
|
-
Status?: DirectoryRegistrationStatus
|
|
2014
|
+
Status?: DirectoryRegistrationStatus;
|
|
2015
2015
|
/**
|
|
2016
2016
|
* @public
|
|
2017
2017
|
* <p>Additional information about the directory registration status if the status is
|
|
2018
2018
|
* failed.</p>
|
|
2019
2019
|
*/
|
|
2020
|
-
StatusReason?: DirectoryRegistrationStatusReason
|
|
2020
|
+
StatusReason?: DirectoryRegistrationStatusReason;
|
|
2021
2021
|
/**
|
|
2022
2022
|
* @public
|
|
2023
2023
|
* <p>The date and time that the directory registration was created.</p>
|
|
@@ -2049,13 +2049,13 @@ export interface DirectoryRegistrationSummary {
|
|
|
2049
2049
|
* @public
|
|
2050
2050
|
* <p>Status of the directory registration.</p>
|
|
2051
2051
|
*/
|
|
2052
|
-
Status?: DirectoryRegistrationStatus
|
|
2052
|
+
Status?: DirectoryRegistrationStatus;
|
|
2053
2053
|
/**
|
|
2054
2054
|
* @public
|
|
2055
2055
|
* <p>Additional information about the directory registration status if the status is
|
|
2056
2056
|
* failed.</p>
|
|
2057
2057
|
*/
|
|
2058
|
-
StatusReason?: DirectoryRegistrationStatusReason
|
|
2058
|
+
StatusReason?: DirectoryRegistrationStatusReason;
|
|
2059
2059
|
/**
|
|
2060
2060
|
* @public
|
|
2061
2061
|
* <p>The date and time that the directory registration was created.</p>
|
|
@@ -2189,13 +2189,13 @@ export interface ServicePrincipalName {
|
|
|
2189
2189
|
* @public
|
|
2190
2190
|
* <p>The status of a service principal name.</p>
|
|
2191
2191
|
*/
|
|
2192
|
-
Status?: ServicePrincipalNameStatus
|
|
2192
|
+
Status?: ServicePrincipalNameStatus;
|
|
2193
2193
|
/**
|
|
2194
2194
|
* @public
|
|
2195
2195
|
* <p>Additional information for the status of a service principal name if the status is
|
|
2196
2196
|
* failed.</p>
|
|
2197
2197
|
*/
|
|
2198
|
-
StatusReason?: ServicePrincipalNameStatusReason
|
|
2198
|
+
StatusReason?: ServicePrincipalNameStatusReason;
|
|
2199
2199
|
/**
|
|
2200
2200
|
* @public
|
|
2201
2201
|
* <p>The date and time that the service principal name was created.</p>
|
|
@@ -2301,7 +2301,7 @@ export interface Template {
|
|
|
2301
2301
|
* @public
|
|
2302
2302
|
* <p>Status of the template. Status can be creating, active, deleting, or failed.</p>
|
|
2303
2303
|
*/
|
|
2304
|
-
Status?: TemplateStatus
|
|
2304
|
+
Status?: TemplateStatus;
|
|
2305
2305
|
/**
|
|
2306
2306
|
* @public
|
|
2307
2307
|
* <p>The version of the template. Template updates will increment the minor revision.
|
|
@@ -2402,13 +2402,13 @@ export interface ServicePrincipalNameSummary {
|
|
|
2402
2402
|
* @public
|
|
2403
2403
|
* <p>The status of a service principal name.</p>
|
|
2404
2404
|
*/
|
|
2405
|
-
Status?: ServicePrincipalNameStatus
|
|
2405
|
+
Status?: ServicePrincipalNameStatus;
|
|
2406
2406
|
/**
|
|
2407
2407
|
* @public
|
|
2408
2408
|
* <p>Additional information for the status of a service principal name if the status is
|
|
2409
2409
|
* failed.</p>
|
|
2410
2410
|
*/
|
|
2411
|
-
StatusReason?: ServicePrincipalNameStatusReason
|
|
2411
|
+
StatusReason?: ServicePrincipalNameStatusReason;
|
|
2412
2412
|
/**
|
|
2413
2413
|
* @public
|
|
2414
2414
|
* <p>The date and time that the service principal name was created.</p>
|
|
@@ -2571,7 +2571,7 @@ export interface TemplateSummary {
|
|
|
2571
2571
|
* @public
|
|
2572
2572
|
* <p>Status of the template. Status can be creating, active, deleting, or failed.</p>
|
|
2573
2573
|
*/
|
|
2574
|
-
Status?: TemplateStatus
|
|
2574
|
+
Status?: TemplateStatus;
|
|
2575
2575
|
/**
|
|
2576
2576
|
* @public
|
|
2577
2577
|
* <p>The revision version of the template. Template updates will increment the minor
|
|
@@ -6,8 +6,8 @@ export declare const AccessRight: {
|
|
|
6
6
|
};
|
|
7
7
|
export type AccessRight = (typeof AccessRight)[keyof typeof AccessRight];
|
|
8
8
|
export interface AccessRights {
|
|
9
|
-
Enroll?: AccessRight
|
|
10
|
-
AutoEnroll?: AccessRight
|
|
9
|
+
Enroll?: AccessRight;
|
|
10
|
+
AutoEnroll?: AccessRight;
|
|
11
11
|
}
|
|
12
12
|
export interface AccessControlEntry {
|
|
13
13
|
GroupDisplayName?: string;
|
|
@@ -110,7 +110,7 @@ export type ApplicationPolicy =
|
|
|
110
110
|
| ApplicationPolicy.$UnknownMember;
|
|
111
111
|
export declare namespace ApplicationPolicy {
|
|
112
112
|
interface PolicyTypeMember {
|
|
113
|
-
PolicyType: ApplicationPolicyType
|
|
113
|
+
PolicyType: ApplicationPolicyType;
|
|
114
114
|
PolicyObjectIdentifier?: never;
|
|
115
115
|
$unknown?: never;
|
|
116
116
|
}
|
|
@@ -125,7 +125,7 @@ export declare namespace ApplicationPolicy {
|
|
|
125
125
|
$unknown: [string, any];
|
|
126
126
|
}
|
|
127
127
|
interface Visitor<T> {
|
|
128
|
-
PolicyType: (value: ApplicationPolicyType
|
|
128
|
+
PolicyType: (value: ApplicationPolicyType) => T;
|
|
129
129
|
PolicyObjectIdentifier: (value: string) => T;
|
|
130
130
|
_: (name: string, value: any) => T;
|
|
131
131
|
}
|
|
@@ -145,7 +145,7 @@ export declare const ValidityPeriodType: {
|
|
|
145
145
|
export type ValidityPeriodType =
|
|
146
146
|
(typeof ValidityPeriodType)[keyof typeof ValidityPeriodType];
|
|
147
147
|
export interface ValidityPeriod {
|
|
148
|
-
PeriodType: ValidityPeriodType |
|
|
148
|
+
PeriodType: ValidityPeriodType | undefined;
|
|
149
149
|
Period: number | undefined;
|
|
150
150
|
}
|
|
151
151
|
export interface CertificateValidity {
|
|
@@ -215,8 +215,8 @@ export interface Connector {
|
|
|
215
215
|
CertificateEnrollmentPolicyServerEndpoint?: string;
|
|
216
216
|
DirectoryId?: string;
|
|
217
217
|
VpcInformation?: VpcInformation;
|
|
218
|
-
Status?: ConnectorStatus
|
|
219
|
-
StatusReason?: ConnectorStatusReason
|
|
218
|
+
Status?: ConnectorStatus;
|
|
219
|
+
StatusReason?: ConnectorStatusReason;
|
|
220
220
|
CreatedAt?: Date;
|
|
221
221
|
UpdatedAt?: Date;
|
|
222
222
|
}
|
|
@@ -226,8 +226,8 @@ export interface ConnectorSummary {
|
|
|
226
226
|
CertificateEnrollmentPolicyServerEndpoint?: string;
|
|
227
227
|
DirectoryId?: string;
|
|
228
228
|
VpcInformation?: VpcInformation;
|
|
229
|
-
Status?: ConnectorStatus
|
|
230
|
-
StatusReason?: ConnectorStatusReason
|
|
229
|
+
Status?: ConnectorStatus;
|
|
230
|
+
StatusReason?: ConnectorStatusReason;
|
|
231
231
|
CreatedAt?: Date;
|
|
232
232
|
UpdatedAt?: Date;
|
|
233
233
|
}
|
|
@@ -301,7 +301,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
301
301
|
readonly name: "ValidationException";
|
|
302
302
|
readonly $fault: "client";
|
|
303
303
|
Message: string | undefined;
|
|
304
|
-
Reason?: ValidationExceptionReason
|
|
304
|
+
Reason?: ValidationExceptionReason;
|
|
305
305
|
constructor(
|
|
306
306
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
307
307
|
);
|
|
@@ -369,13 +369,13 @@ export declare const KeySpec: {
|
|
|
369
369
|
export type KeySpec = (typeof KeySpec)[keyof typeof KeySpec];
|
|
370
370
|
export interface PrivateKeyAttributesV2 {
|
|
371
371
|
MinimalKeyLength: number | undefined;
|
|
372
|
-
KeySpec: KeySpec |
|
|
372
|
+
KeySpec: KeySpec | undefined;
|
|
373
373
|
CryptoProviders?: string[];
|
|
374
374
|
}
|
|
375
375
|
export interface PrivateKeyFlagsV2 {
|
|
376
376
|
ExportableKey?: boolean;
|
|
377
377
|
StrongKeyProtectionRequired?: boolean;
|
|
378
|
-
ClientVersion: ClientCompatibilityV2 |
|
|
378
|
+
ClientVersion: ClientCompatibilityV2 | undefined;
|
|
379
379
|
}
|
|
380
380
|
export interface SubjectNameFlagsV2 {
|
|
381
381
|
SanRequireDomainDns?: boolean;
|
|
@@ -444,7 +444,7 @@ export type KeyUsageProperty =
|
|
|
444
444
|
| KeyUsageProperty.$UnknownMember;
|
|
445
445
|
export declare namespace KeyUsageProperty {
|
|
446
446
|
interface PropertyTypeMember {
|
|
447
|
-
PropertyType: KeyUsagePropertyType
|
|
447
|
+
PropertyType: KeyUsagePropertyType;
|
|
448
448
|
PropertyFlags?: never;
|
|
449
449
|
$unknown?: never;
|
|
450
450
|
}
|
|
@@ -459,7 +459,7 @@ export declare namespace KeyUsageProperty {
|
|
|
459
459
|
$unknown: [string, any];
|
|
460
460
|
}
|
|
461
461
|
interface Visitor<T> {
|
|
462
|
-
PropertyType: (value: KeyUsagePropertyType
|
|
462
|
+
PropertyType: (value: KeyUsagePropertyType) => T;
|
|
463
463
|
PropertyFlags: (value: KeyUsagePropertyFlags) => T;
|
|
464
464
|
_: (name: string, value: any) => T;
|
|
465
465
|
}
|
|
@@ -467,16 +467,16 @@ export declare namespace KeyUsageProperty {
|
|
|
467
467
|
}
|
|
468
468
|
export interface PrivateKeyAttributesV3 {
|
|
469
469
|
MinimalKeyLength: number | undefined;
|
|
470
|
-
KeySpec: KeySpec |
|
|
470
|
+
KeySpec: KeySpec | undefined;
|
|
471
471
|
CryptoProviders?: string[];
|
|
472
472
|
KeyUsageProperty: KeyUsageProperty | undefined;
|
|
473
|
-
Algorithm: PrivateKeyAlgorithm |
|
|
473
|
+
Algorithm: PrivateKeyAlgorithm | undefined;
|
|
474
474
|
}
|
|
475
475
|
export interface PrivateKeyFlagsV3 {
|
|
476
476
|
ExportableKey?: boolean;
|
|
477
477
|
StrongKeyProtectionRequired?: boolean;
|
|
478
478
|
RequireAlternateSignatureAlgorithm?: boolean;
|
|
479
|
-
ClientVersion: ClientCompatibilityV3 |
|
|
479
|
+
ClientVersion: ClientCompatibilityV3 | undefined;
|
|
480
480
|
}
|
|
481
481
|
export interface SubjectNameFlagsV3 {
|
|
482
482
|
SanRequireDomainDns?: boolean;
|
|
@@ -498,7 +498,7 @@ export interface TemplateV3 {
|
|
|
498
498
|
EnrollmentFlags: EnrollmentFlagsV3 | undefined;
|
|
499
499
|
SubjectNameFlags: SubjectNameFlagsV3 | undefined;
|
|
500
500
|
GeneralFlags: GeneralFlagsV3 | undefined;
|
|
501
|
-
HashAlgorithm: HashAlgorithm |
|
|
501
|
+
HashAlgorithm: HashAlgorithm | undefined;
|
|
502
502
|
Extensions: ExtensionsV3 | undefined;
|
|
503
503
|
}
|
|
504
504
|
export interface EnrollmentFlagsV4 {
|
|
@@ -518,10 +518,10 @@ export interface GeneralFlagsV4 {
|
|
|
518
518
|
}
|
|
519
519
|
export interface PrivateKeyAttributesV4 {
|
|
520
520
|
MinimalKeyLength: number | undefined;
|
|
521
|
-
KeySpec: KeySpec |
|
|
521
|
+
KeySpec: KeySpec | undefined;
|
|
522
522
|
CryptoProviders?: string[];
|
|
523
523
|
KeyUsageProperty?: KeyUsageProperty;
|
|
524
|
-
Algorithm?: PrivateKeyAlgorithm
|
|
524
|
+
Algorithm?: PrivateKeyAlgorithm;
|
|
525
525
|
}
|
|
526
526
|
export interface PrivateKeyFlagsV4 {
|
|
527
527
|
ExportableKey?: boolean;
|
|
@@ -529,7 +529,7 @@ export interface PrivateKeyFlagsV4 {
|
|
|
529
529
|
RequireAlternateSignatureAlgorithm?: boolean;
|
|
530
530
|
RequireSameKeyRenewal?: boolean;
|
|
531
531
|
UseLegacyProvider?: boolean;
|
|
532
|
-
ClientVersion: ClientCompatibilityV4 |
|
|
532
|
+
ClientVersion: ClientCompatibilityV4 | undefined;
|
|
533
533
|
}
|
|
534
534
|
export interface SubjectNameFlagsV4 {
|
|
535
535
|
SanRequireDomainDns?: boolean;
|
|
@@ -551,7 +551,7 @@ export interface TemplateV4 {
|
|
|
551
551
|
EnrollmentFlags: EnrollmentFlagsV4 | undefined;
|
|
552
552
|
SubjectNameFlags: SubjectNameFlagsV4 | undefined;
|
|
553
553
|
GeneralFlags: GeneralFlagsV4 | undefined;
|
|
554
|
-
HashAlgorithm?: HashAlgorithm
|
|
554
|
+
HashAlgorithm?: HashAlgorithm;
|
|
555
555
|
Extensions: ExtensionsV4 | undefined;
|
|
556
556
|
}
|
|
557
557
|
export type TemplateDefinition =
|
|
@@ -644,16 +644,16 @@ export type DirectoryRegistrationStatusReason =
|
|
|
644
644
|
export interface DirectoryRegistration {
|
|
645
645
|
Arn?: string;
|
|
646
646
|
DirectoryId?: string;
|
|
647
|
-
Status?: DirectoryRegistrationStatus
|
|
648
|
-
StatusReason?: DirectoryRegistrationStatusReason
|
|
647
|
+
Status?: DirectoryRegistrationStatus;
|
|
648
|
+
StatusReason?: DirectoryRegistrationStatusReason;
|
|
649
649
|
CreatedAt?: Date;
|
|
650
650
|
UpdatedAt?: Date;
|
|
651
651
|
}
|
|
652
652
|
export interface DirectoryRegistrationSummary {
|
|
653
653
|
Arn?: string;
|
|
654
654
|
DirectoryId?: string;
|
|
655
|
-
Status?: DirectoryRegistrationStatus
|
|
656
|
-
StatusReason?: DirectoryRegistrationStatusReason
|
|
655
|
+
Status?: DirectoryRegistrationStatus;
|
|
656
|
+
StatusReason?: DirectoryRegistrationStatusReason;
|
|
657
657
|
CreatedAt?: Date;
|
|
658
658
|
UpdatedAt?: Date;
|
|
659
659
|
}
|
|
@@ -695,8 +695,8 @@ export type ServicePrincipalNameStatusReason =
|
|
|
695
695
|
export interface ServicePrincipalName {
|
|
696
696
|
DirectoryRegistrationArn?: string;
|
|
697
697
|
ConnectorArn?: string;
|
|
698
|
-
Status?: ServicePrincipalNameStatus
|
|
699
|
-
StatusReason?: ServicePrincipalNameStatusReason
|
|
698
|
+
Status?: ServicePrincipalNameStatus;
|
|
699
|
+
StatusReason?: ServicePrincipalNameStatusReason;
|
|
700
700
|
CreatedAt?: Date;
|
|
701
701
|
UpdatedAt?: Date;
|
|
702
702
|
}
|
|
@@ -723,7 +723,7 @@ export interface Template {
|
|
|
723
723
|
Name?: string;
|
|
724
724
|
ObjectIdentifier?: string;
|
|
725
725
|
PolicySchema?: number;
|
|
726
|
-
Status?: TemplateStatus
|
|
726
|
+
Status?: TemplateStatus;
|
|
727
727
|
Revision?: TemplateRevision;
|
|
728
728
|
CreatedAt?: Date;
|
|
729
729
|
UpdatedAt?: Date;
|
|
@@ -746,8 +746,8 @@ export interface ListServicePrincipalNamesRequest {
|
|
|
746
746
|
export interface ServicePrincipalNameSummary {
|
|
747
747
|
DirectoryRegistrationArn?: string;
|
|
748
748
|
ConnectorArn?: string;
|
|
749
|
-
Status?: ServicePrincipalNameStatus
|
|
750
|
-
StatusReason?: ServicePrincipalNameStatusReason
|
|
749
|
+
Status?: ServicePrincipalNameStatus;
|
|
750
|
+
StatusReason?: ServicePrincipalNameStatusReason;
|
|
751
751
|
CreatedAt?: Date;
|
|
752
752
|
UpdatedAt?: Date;
|
|
753
753
|
}
|
|
@@ -782,7 +782,7 @@ export interface TemplateSummary {
|
|
|
782
782
|
Name?: string;
|
|
783
783
|
ObjectIdentifier?: string;
|
|
784
784
|
PolicySchema?: number;
|
|
785
|
-
Status?: TemplateStatus
|
|
785
|
+
Status?: TemplateStatus;
|
|
786
786
|
Revision?: TemplateRevision;
|
|
787
787
|
CreatedAt?: Date;
|
|
788
788
|
UpdatedAt?: Date;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pca-connector-ad",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pca Connector Ad Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|