@aws-sdk/client-pca-connector-ad 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 +203 -203
- package/dist-types/ts3.4/models/models_0.d.ts +203 -203
- package/package.json +35 -35
|
@@ -6,24 +6,24 @@ 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 | undefined;
|
|
10
|
+
AutoEnroll?: AccessRight | undefined;
|
|
11
11
|
}
|
|
12
12
|
export interface AccessControlEntry {
|
|
13
|
-
GroupDisplayName?: string;
|
|
14
|
-
GroupSecurityIdentifier?: string;
|
|
15
|
-
AccessRights?: AccessRights;
|
|
16
|
-
TemplateArn?: string;
|
|
17
|
-
CreatedAt?: Date;
|
|
18
|
-
UpdatedAt?: Date;
|
|
13
|
+
GroupDisplayName?: string | undefined;
|
|
14
|
+
GroupSecurityIdentifier?: string | undefined;
|
|
15
|
+
AccessRights?: AccessRights | undefined;
|
|
16
|
+
TemplateArn?: string | undefined;
|
|
17
|
+
CreatedAt?: Date | undefined;
|
|
18
|
+
UpdatedAt?: Date | undefined;
|
|
19
19
|
}
|
|
20
20
|
export interface AccessControlEntrySummary {
|
|
21
|
-
GroupDisplayName?: string;
|
|
22
|
-
GroupSecurityIdentifier?: string;
|
|
23
|
-
AccessRights?: AccessRights;
|
|
24
|
-
TemplateArn?: string;
|
|
25
|
-
CreatedAt?: Date;
|
|
26
|
-
UpdatedAt?: Date;
|
|
21
|
+
GroupDisplayName?: string | undefined;
|
|
22
|
+
GroupSecurityIdentifier?: string | undefined;
|
|
23
|
+
AccessRights?: AccessRights | undefined;
|
|
24
|
+
TemplateArn?: string | undefined;
|
|
25
|
+
CreatedAt?: Date | undefined;
|
|
26
|
+
UpdatedAt?: Date | undefined;
|
|
27
27
|
}
|
|
28
28
|
export declare class AccessDeniedException extends __BaseException {
|
|
29
29
|
readonly name: "AccessDeniedException";
|
|
@@ -132,7 +132,7 @@ export declare namespace ApplicationPolicy {
|
|
|
132
132
|
const visit: <T>(value: ApplicationPolicy, visitor: Visitor<T>) => T;
|
|
133
133
|
}
|
|
134
134
|
export interface ApplicationPolicies {
|
|
135
|
-
Critical?: boolean;
|
|
135
|
+
Critical?: boolean | undefined;
|
|
136
136
|
Policies: ApplicationPolicy[] | undefined;
|
|
137
137
|
}
|
|
138
138
|
export declare const ValidityPeriodType: {
|
|
@@ -210,36 +210,36 @@ export interface VpcInformation {
|
|
|
210
210
|
SecurityGroupIds: string[] | undefined;
|
|
211
211
|
}
|
|
212
212
|
export interface Connector {
|
|
213
|
-
Arn?: string;
|
|
214
|
-
CertificateAuthorityArn?: string;
|
|
215
|
-
CertificateEnrollmentPolicyServerEndpoint?: string;
|
|
216
|
-
DirectoryId?: string;
|
|
217
|
-
VpcInformation?: VpcInformation;
|
|
218
|
-
Status?: ConnectorStatus;
|
|
219
|
-
StatusReason?: ConnectorStatusReason;
|
|
220
|
-
CreatedAt?: Date;
|
|
221
|
-
UpdatedAt?: Date;
|
|
213
|
+
Arn?: string | undefined;
|
|
214
|
+
CertificateAuthorityArn?: string | undefined;
|
|
215
|
+
CertificateEnrollmentPolicyServerEndpoint?: string | undefined;
|
|
216
|
+
DirectoryId?: string | undefined;
|
|
217
|
+
VpcInformation?: VpcInformation | undefined;
|
|
218
|
+
Status?: ConnectorStatus | undefined;
|
|
219
|
+
StatusReason?: ConnectorStatusReason | undefined;
|
|
220
|
+
CreatedAt?: Date | undefined;
|
|
221
|
+
UpdatedAt?: Date | undefined;
|
|
222
222
|
}
|
|
223
223
|
export interface ConnectorSummary {
|
|
224
|
-
Arn?: string;
|
|
225
|
-
CertificateAuthorityArn?: string;
|
|
226
|
-
CertificateEnrollmentPolicyServerEndpoint?: string;
|
|
227
|
-
DirectoryId?: string;
|
|
228
|
-
VpcInformation?: VpcInformation;
|
|
229
|
-
Status?: ConnectorStatus;
|
|
230
|
-
StatusReason?: ConnectorStatusReason;
|
|
231
|
-
CreatedAt?: Date;
|
|
232
|
-
UpdatedAt?: Date;
|
|
224
|
+
Arn?: string | undefined;
|
|
225
|
+
CertificateAuthorityArn?: string | undefined;
|
|
226
|
+
CertificateEnrollmentPolicyServerEndpoint?: string | undefined;
|
|
227
|
+
DirectoryId?: string | undefined;
|
|
228
|
+
VpcInformation?: VpcInformation | undefined;
|
|
229
|
+
Status?: ConnectorStatus | undefined;
|
|
230
|
+
StatusReason?: ConnectorStatusReason | undefined;
|
|
231
|
+
CreatedAt?: Date | undefined;
|
|
232
|
+
UpdatedAt?: Date | undefined;
|
|
233
233
|
}
|
|
234
234
|
export interface CreateConnectorRequest {
|
|
235
235
|
DirectoryId: string | undefined;
|
|
236
236
|
CertificateAuthorityArn: string | undefined;
|
|
237
237
|
VpcInformation: VpcInformation | undefined;
|
|
238
|
-
ClientToken?: string;
|
|
239
|
-
Tags?: Record<string, string
|
|
238
|
+
ClientToken?: string | undefined;
|
|
239
|
+
Tags?: Record<string, string> | undefined;
|
|
240
240
|
}
|
|
241
241
|
export interface CreateConnectorResponse {
|
|
242
|
-
ConnectorArn?: string;
|
|
242
|
+
ConnectorArn?: string | undefined;
|
|
243
243
|
}
|
|
244
244
|
export declare class InternalServerException extends __BaseException {
|
|
245
245
|
readonly name: "InternalServerException";
|
|
@@ -279,8 +279,8 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
279
279
|
throttling: boolean;
|
|
280
280
|
};
|
|
281
281
|
Message: string | undefined;
|
|
282
|
-
ServiceCode?: string;
|
|
283
|
-
QuotaCode?: string;
|
|
282
|
+
ServiceCode?: string | undefined;
|
|
283
|
+
QuotaCode?: string | undefined;
|
|
284
284
|
constructor(
|
|
285
285
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
286
286
|
);
|
|
@@ -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 | undefined;
|
|
305
305
|
constructor(
|
|
306
306
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
307
307
|
);
|
|
@@ -313,54 +313,54 @@ export interface GetConnectorRequest {
|
|
|
313
313
|
ConnectorArn: string | undefined;
|
|
314
314
|
}
|
|
315
315
|
export interface GetConnectorResponse {
|
|
316
|
-
Connector?: Connector;
|
|
316
|
+
Connector?: Connector | undefined;
|
|
317
317
|
}
|
|
318
318
|
export interface ListConnectorsRequest {
|
|
319
|
-
MaxResults?: number;
|
|
320
|
-
NextToken?: string;
|
|
319
|
+
MaxResults?: number | undefined;
|
|
320
|
+
NextToken?: string | undefined;
|
|
321
321
|
}
|
|
322
322
|
export interface ListConnectorsResponse {
|
|
323
|
-
Connectors?: ConnectorSummary[];
|
|
324
|
-
NextToken?: string;
|
|
323
|
+
Connectors?: ConnectorSummary[] | undefined;
|
|
324
|
+
NextToken?: string | undefined;
|
|
325
325
|
}
|
|
326
326
|
export interface CreateDirectoryRegistrationRequest {
|
|
327
327
|
DirectoryId: string | undefined;
|
|
328
|
-
ClientToken?: string;
|
|
329
|
-
Tags?: Record<string, string
|
|
328
|
+
ClientToken?: string | undefined;
|
|
329
|
+
Tags?: Record<string, string> | undefined;
|
|
330
330
|
}
|
|
331
331
|
export interface CreateDirectoryRegistrationResponse {
|
|
332
|
-
DirectoryRegistrationArn?: string;
|
|
332
|
+
DirectoryRegistrationArn?: string | undefined;
|
|
333
333
|
}
|
|
334
334
|
export interface CreateServicePrincipalNameRequest {
|
|
335
335
|
DirectoryRegistrationArn: string | undefined;
|
|
336
336
|
ConnectorArn: string | undefined;
|
|
337
|
-
ClientToken?: string;
|
|
337
|
+
ClientToken?: string | undefined;
|
|
338
338
|
}
|
|
339
339
|
export interface EnrollmentFlagsV2 {
|
|
340
|
-
IncludeSymmetricAlgorithms?: boolean;
|
|
341
|
-
UserInteractionRequired?: boolean;
|
|
342
|
-
RemoveInvalidCertificateFromPersonalStore?: boolean;
|
|
343
|
-
NoSecurityExtension?: boolean;
|
|
344
|
-
EnableKeyReuseOnNtTokenKeysetStorageFull?: boolean;
|
|
340
|
+
IncludeSymmetricAlgorithms?: boolean | undefined;
|
|
341
|
+
UserInteractionRequired?: boolean | undefined;
|
|
342
|
+
RemoveInvalidCertificateFromPersonalStore?: boolean | undefined;
|
|
343
|
+
NoSecurityExtension?: boolean | undefined;
|
|
344
|
+
EnableKeyReuseOnNtTokenKeysetStorageFull?: boolean | undefined;
|
|
345
345
|
}
|
|
346
346
|
export interface KeyUsageFlags {
|
|
347
|
-
DigitalSignature?: boolean;
|
|
348
|
-
NonRepudiation?: boolean;
|
|
349
|
-
KeyEncipherment?: boolean;
|
|
350
|
-
DataEncipherment?: boolean;
|
|
351
|
-
KeyAgreement?: boolean;
|
|
347
|
+
DigitalSignature?: boolean | undefined;
|
|
348
|
+
NonRepudiation?: boolean | undefined;
|
|
349
|
+
KeyEncipherment?: boolean | undefined;
|
|
350
|
+
DataEncipherment?: boolean | undefined;
|
|
351
|
+
KeyAgreement?: boolean | undefined;
|
|
352
352
|
}
|
|
353
353
|
export interface KeyUsage {
|
|
354
|
-
Critical?: boolean;
|
|
354
|
+
Critical?: boolean | undefined;
|
|
355
355
|
UsageFlags: KeyUsageFlags | undefined;
|
|
356
356
|
}
|
|
357
357
|
export interface ExtensionsV2 {
|
|
358
358
|
KeyUsage: KeyUsage | undefined;
|
|
359
|
-
ApplicationPolicies?: ApplicationPolicies;
|
|
359
|
+
ApplicationPolicies?: ApplicationPolicies | undefined;
|
|
360
360
|
}
|
|
361
361
|
export interface GeneralFlagsV2 {
|
|
362
|
-
AutoEnrollment?: boolean;
|
|
363
|
-
MachineType?: boolean;
|
|
362
|
+
AutoEnrollment?: boolean | undefined;
|
|
363
|
+
MachineType?: boolean | undefined;
|
|
364
364
|
}
|
|
365
365
|
export declare const KeySpec: {
|
|
366
366
|
readonly KEY_EXCHANGE: "KEY_EXCHANGE";
|
|
@@ -370,28 +370,28 @@ export type KeySpec = (typeof KeySpec)[keyof typeof KeySpec];
|
|
|
370
370
|
export interface PrivateKeyAttributesV2 {
|
|
371
371
|
MinimalKeyLength: number | undefined;
|
|
372
372
|
KeySpec: KeySpec | undefined;
|
|
373
|
-
CryptoProviders?: string[];
|
|
373
|
+
CryptoProviders?: string[] | undefined;
|
|
374
374
|
}
|
|
375
375
|
export interface PrivateKeyFlagsV2 {
|
|
376
|
-
ExportableKey?: boolean;
|
|
377
|
-
StrongKeyProtectionRequired?: boolean;
|
|
376
|
+
ExportableKey?: boolean | undefined;
|
|
377
|
+
StrongKeyProtectionRequired?: boolean | undefined;
|
|
378
378
|
ClientVersion: ClientCompatibilityV2 | undefined;
|
|
379
379
|
}
|
|
380
380
|
export interface SubjectNameFlagsV2 {
|
|
381
|
-
SanRequireDomainDns?: boolean;
|
|
382
|
-
SanRequireSpn?: boolean;
|
|
383
|
-
SanRequireDirectoryGuid?: boolean;
|
|
384
|
-
SanRequireUpn?: boolean;
|
|
385
|
-
SanRequireEmail?: boolean;
|
|
386
|
-
SanRequireDns?: boolean;
|
|
387
|
-
RequireDnsAsCn?: boolean;
|
|
388
|
-
RequireEmail?: boolean;
|
|
389
|
-
RequireCommonName?: boolean;
|
|
390
|
-
RequireDirectoryPath?: boolean;
|
|
381
|
+
SanRequireDomainDns?: boolean | undefined;
|
|
382
|
+
SanRequireSpn?: boolean | undefined;
|
|
383
|
+
SanRequireDirectoryGuid?: boolean | undefined;
|
|
384
|
+
SanRequireUpn?: boolean | undefined;
|
|
385
|
+
SanRequireEmail?: boolean | undefined;
|
|
386
|
+
SanRequireDns?: boolean | undefined;
|
|
387
|
+
RequireDnsAsCn?: boolean | undefined;
|
|
388
|
+
RequireEmail?: boolean | undefined;
|
|
389
|
+
RequireCommonName?: boolean | undefined;
|
|
390
|
+
RequireDirectoryPath?: boolean | undefined;
|
|
391
391
|
}
|
|
392
392
|
export interface TemplateV2 {
|
|
393
393
|
CertificateValidity: CertificateValidity | undefined;
|
|
394
|
-
SupersededTemplates?: string[];
|
|
394
|
+
SupersededTemplates?: string[] | undefined;
|
|
395
395
|
PrivateKeyAttributes: PrivateKeyAttributesV2 | undefined;
|
|
396
396
|
PrivateKeyFlags: PrivateKeyFlagsV2 | undefined;
|
|
397
397
|
EnrollmentFlags: EnrollmentFlagsV2 | undefined;
|
|
@@ -400,19 +400,19 @@ export interface TemplateV2 {
|
|
|
400
400
|
Extensions: ExtensionsV2 | undefined;
|
|
401
401
|
}
|
|
402
402
|
export interface EnrollmentFlagsV3 {
|
|
403
|
-
IncludeSymmetricAlgorithms?: boolean;
|
|
404
|
-
UserInteractionRequired?: boolean;
|
|
405
|
-
RemoveInvalidCertificateFromPersonalStore?: boolean;
|
|
406
|
-
NoSecurityExtension?: boolean;
|
|
407
|
-
EnableKeyReuseOnNtTokenKeysetStorageFull?: boolean;
|
|
403
|
+
IncludeSymmetricAlgorithms?: boolean | undefined;
|
|
404
|
+
UserInteractionRequired?: boolean | undefined;
|
|
405
|
+
RemoveInvalidCertificateFromPersonalStore?: boolean | undefined;
|
|
406
|
+
NoSecurityExtension?: boolean | undefined;
|
|
407
|
+
EnableKeyReuseOnNtTokenKeysetStorageFull?: boolean | undefined;
|
|
408
408
|
}
|
|
409
409
|
export interface ExtensionsV3 {
|
|
410
410
|
KeyUsage: KeyUsage | undefined;
|
|
411
|
-
ApplicationPolicies?: ApplicationPolicies;
|
|
411
|
+
ApplicationPolicies?: ApplicationPolicies | undefined;
|
|
412
412
|
}
|
|
413
413
|
export interface GeneralFlagsV3 {
|
|
414
|
-
AutoEnrollment?: boolean;
|
|
415
|
-
MachineType?: boolean;
|
|
414
|
+
AutoEnrollment?: boolean | undefined;
|
|
415
|
+
MachineType?: boolean | undefined;
|
|
416
416
|
}
|
|
417
417
|
export declare const HashAlgorithm: {
|
|
418
418
|
readonly SHA256: "SHA256";
|
|
@@ -429,9 +429,9 @@ export declare const PrivateKeyAlgorithm: {
|
|
|
429
429
|
export type PrivateKeyAlgorithm =
|
|
430
430
|
(typeof PrivateKeyAlgorithm)[keyof typeof PrivateKeyAlgorithm];
|
|
431
431
|
export interface KeyUsagePropertyFlags {
|
|
432
|
-
Decrypt?: boolean;
|
|
433
|
-
KeyAgreement?: boolean;
|
|
434
|
-
Sign?: boolean;
|
|
432
|
+
Decrypt?: boolean | undefined;
|
|
433
|
+
KeyAgreement?: boolean | undefined;
|
|
434
|
+
Sign?: boolean | undefined;
|
|
435
435
|
}
|
|
436
436
|
export declare const KeyUsagePropertyType: {
|
|
437
437
|
readonly ALL: "ALL";
|
|
@@ -468,31 +468,31 @@ export declare namespace KeyUsageProperty {
|
|
|
468
468
|
export interface PrivateKeyAttributesV3 {
|
|
469
469
|
MinimalKeyLength: number | undefined;
|
|
470
470
|
KeySpec: KeySpec | undefined;
|
|
471
|
-
CryptoProviders?: string[];
|
|
471
|
+
CryptoProviders?: string[] | undefined;
|
|
472
472
|
KeyUsageProperty: KeyUsageProperty | undefined;
|
|
473
473
|
Algorithm: PrivateKeyAlgorithm | undefined;
|
|
474
474
|
}
|
|
475
475
|
export interface PrivateKeyFlagsV3 {
|
|
476
|
-
ExportableKey?: boolean;
|
|
477
|
-
StrongKeyProtectionRequired?: boolean;
|
|
478
|
-
RequireAlternateSignatureAlgorithm?: boolean;
|
|
476
|
+
ExportableKey?: boolean | undefined;
|
|
477
|
+
StrongKeyProtectionRequired?: boolean | undefined;
|
|
478
|
+
RequireAlternateSignatureAlgorithm?: boolean | undefined;
|
|
479
479
|
ClientVersion: ClientCompatibilityV3 | undefined;
|
|
480
480
|
}
|
|
481
481
|
export interface SubjectNameFlagsV3 {
|
|
482
|
-
SanRequireDomainDns?: boolean;
|
|
483
|
-
SanRequireSpn?: boolean;
|
|
484
|
-
SanRequireDirectoryGuid?: boolean;
|
|
485
|
-
SanRequireUpn?: boolean;
|
|
486
|
-
SanRequireEmail?: boolean;
|
|
487
|
-
SanRequireDns?: boolean;
|
|
488
|
-
RequireDnsAsCn?: boolean;
|
|
489
|
-
RequireEmail?: boolean;
|
|
490
|
-
RequireCommonName?: boolean;
|
|
491
|
-
RequireDirectoryPath?: boolean;
|
|
482
|
+
SanRequireDomainDns?: boolean | undefined;
|
|
483
|
+
SanRequireSpn?: boolean | undefined;
|
|
484
|
+
SanRequireDirectoryGuid?: boolean | undefined;
|
|
485
|
+
SanRequireUpn?: boolean | undefined;
|
|
486
|
+
SanRequireEmail?: boolean | undefined;
|
|
487
|
+
SanRequireDns?: boolean | undefined;
|
|
488
|
+
RequireDnsAsCn?: boolean | undefined;
|
|
489
|
+
RequireEmail?: boolean | undefined;
|
|
490
|
+
RequireCommonName?: boolean | undefined;
|
|
491
|
+
RequireDirectoryPath?: boolean | undefined;
|
|
492
492
|
}
|
|
493
493
|
export interface TemplateV3 {
|
|
494
494
|
CertificateValidity: CertificateValidity | undefined;
|
|
495
|
-
SupersededTemplates?: string[];
|
|
495
|
+
SupersededTemplates?: string[] | undefined;
|
|
496
496
|
PrivateKeyAttributes: PrivateKeyAttributesV3 | undefined;
|
|
497
497
|
PrivateKeyFlags: PrivateKeyFlagsV3 | undefined;
|
|
498
498
|
EnrollmentFlags: EnrollmentFlagsV3 | undefined;
|
|
@@ -502,56 +502,56 @@ export interface TemplateV3 {
|
|
|
502
502
|
Extensions: ExtensionsV3 | undefined;
|
|
503
503
|
}
|
|
504
504
|
export interface EnrollmentFlagsV4 {
|
|
505
|
-
IncludeSymmetricAlgorithms?: boolean;
|
|
506
|
-
UserInteractionRequired?: boolean;
|
|
507
|
-
RemoveInvalidCertificateFromPersonalStore?: boolean;
|
|
508
|
-
NoSecurityExtension?: boolean;
|
|
509
|
-
EnableKeyReuseOnNtTokenKeysetStorageFull?: boolean;
|
|
505
|
+
IncludeSymmetricAlgorithms?: boolean | undefined;
|
|
506
|
+
UserInteractionRequired?: boolean | undefined;
|
|
507
|
+
RemoveInvalidCertificateFromPersonalStore?: boolean | undefined;
|
|
508
|
+
NoSecurityExtension?: boolean | undefined;
|
|
509
|
+
EnableKeyReuseOnNtTokenKeysetStorageFull?: boolean | undefined;
|
|
510
510
|
}
|
|
511
511
|
export interface ExtensionsV4 {
|
|
512
512
|
KeyUsage: KeyUsage | undefined;
|
|
513
|
-
ApplicationPolicies?: ApplicationPolicies;
|
|
513
|
+
ApplicationPolicies?: ApplicationPolicies | undefined;
|
|
514
514
|
}
|
|
515
515
|
export interface GeneralFlagsV4 {
|
|
516
|
-
AutoEnrollment?: boolean;
|
|
517
|
-
MachineType?: boolean;
|
|
516
|
+
AutoEnrollment?: boolean | undefined;
|
|
517
|
+
MachineType?: boolean | undefined;
|
|
518
518
|
}
|
|
519
519
|
export interface PrivateKeyAttributesV4 {
|
|
520
520
|
MinimalKeyLength: number | undefined;
|
|
521
521
|
KeySpec: KeySpec | undefined;
|
|
522
|
-
CryptoProviders?: string[];
|
|
523
|
-
KeyUsageProperty?: KeyUsageProperty;
|
|
524
|
-
Algorithm?: PrivateKeyAlgorithm;
|
|
522
|
+
CryptoProviders?: string[] | undefined;
|
|
523
|
+
KeyUsageProperty?: KeyUsageProperty | undefined;
|
|
524
|
+
Algorithm?: PrivateKeyAlgorithm | undefined;
|
|
525
525
|
}
|
|
526
526
|
export interface PrivateKeyFlagsV4 {
|
|
527
|
-
ExportableKey?: boolean;
|
|
528
|
-
StrongKeyProtectionRequired?: boolean;
|
|
529
|
-
RequireAlternateSignatureAlgorithm?: boolean;
|
|
530
|
-
RequireSameKeyRenewal?: boolean;
|
|
531
|
-
UseLegacyProvider?: boolean;
|
|
527
|
+
ExportableKey?: boolean | undefined;
|
|
528
|
+
StrongKeyProtectionRequired?: boolean | undefined;
|
|
529
|
+
RequireAlternateSignatureAlgorithm?: boolean | undefined;
|
|
530
|
+
RequireSameKeyRenewal?: boolean | undefined;
|
|
531
|
+
UseLegacyProvider?: boolean | undefined;
|
|
532
532
|
ClientVersion: ClientCompatibilityV4 | undefined;
|
|
533
533
|
}
|
|
534
534
|
export interface SubjectNameFlagsV4 {
|
|
535
|
-
SanRequireDomainDns?: boolean;
|
|
536
|
-
SanRequireSpn?: boolean;
|
|
537
|
-
SanRequireDirectoryGuid?: boolean;
|
|
538
|
-
SanRequireUpn?: boolean;
|
|
539
|
-
SanRequireEmail?: boolean;
|
|
540
|
-
SanRequireDns?: boolean;
|
|
541
|
-
RequireDnsAsCn?: boolean;
|
|
542
|
-
RequireEmail?: boolean;
|
|
543
|
-
RequireCommonName?: boolean;
|
|
544
|
-
RequireDirectoryPath?: boolean;
|
|
535
|
+
SanRequireDomainDns?: boolean | undefined;
|
|
536
|
+
SanRequireSpn?: boolean | undefined;
|
|
537
|
+
SanRequireDirectoryGuid?: boolean | undefined;
|
|
538
|
+
SanRequireUpn?: boolean | undefined;
|
|
539
|
+
SanRequireEmail?: boolean | undefined;
|
|
540
|
+
SanRequireDns?: boolean | undefined;
|
|
541
|
+
RequireDnsAsCn?: boolean | undefined;
|
|
542
|
+
RequireEmail?: boolean | undefined;
|
|
543
|
+
RequireCommonName?: boolean | undefined;
|
|
544
|
+
RequireDirectoryPath?: boolean | undefined;
|
|
545
545
|
}
|
|
546
546
|
export interface TemplateV4 {
|
|
547
547
|
CertificateValidity: CertificateValidity | undefined;
|
|
548
|
-
SupersededTemplates?: string[];
|
|
548
|
+
SupersededTemplates?: string[] | undefined;
|
|
549
549
|
PrivateKeyAttributes: PrivateKeyAttributesV4 | undefined;
|
|
550
550
|
PrivateKeyFlags: PrivateKeyFlagsV4 | undefined;
|
|
551
551
|
EnrollmentFlags: EnrollmentFlagsV4 | undefined;
|
|
552
552
|
SubjectNameFlags: SubjectNameFlagsV4 | undefined;
|
|
553
553
|
GeneralFlags: GeneralFlagsV4 | undefined;
|
|
554
|
-
HashAlgorithm?: HashAlgorithm;
|
|
554
|
+
HashAlgorithm?: HashAlgorithm | undefined;
|
|
555
555
|
Extensions: ExtensionsV4 | undefined;
|
|
556
556
|
}
|
|
557
557
|
export type TemplateDefinition =
|
|
@@ -596,18 +596,18 @@ export interface CreateTemplateRequest {
|
|
|
596
596
|
ConnectorArn: string | undefined;
|
|
597
597
|
Name: string | undefined;
|
|
598
598
|
Definition: TemplateDefinition | undefined;
|
|
599
|
-
ClientToken?: string;
|
|
600
|
-
Tags?: Record<string, string
|
|
599
|
+
ClientToken?: string | undefined;
|
|
600
|
+
Tags?: Record<string, string> | undefined;
|
|
601
601
|
}
|
|
602
602
|
export interface CreateTemplateResponse {
|
|
603
|
-
TemplateArn?: string;
|
|
603
|
+
TemplateArn?: string | undefined;
|
|
604
604
|
}
|
|
605
605
|
export interface CreateTemplateGroupAccessControlEntryRequest {
|
|
606
606
|
TemplateArn: string | undefined;
|
|
607
607
|
GroupSecurityIdentifier: string | undefined;
|
|
608
608
|
GroupDisplayName: string | undefined;
|
|
609
609
|
AccessRights: AccessRights | undefined;
|
|
610
|
-
ClientToken?: string;
|
|
610
|
+
ClientToken?: string | undefined;
|
|
611
611
|
}
|
|
612
612
|
export interface DeleteDirectoryRegistrationRequest {
|
|
613
613
|
DirectoryRegistrationArn: string | undefined;
|
|
@@ -642,34 +642,34 @@ export declare const DirectoryRegistrationStatusReason: {
|
|
|
642
642
|
export type DirectoryRegistrationStatusReason =
|
|
643
643
|
(typeof DirectoryRegistrationStatusReason)[keyof typeof DirectoryRegistrationStatusReason];
|
|
644
644
|
export interface DirectoryRegistration {
|
|
645
|
-
Arn?: string;
|
|
646
|
-
DirectoryId?: string;
|
|
647
|
-
Status?: DirectoryRegistrationStatus;
|
|
648
|
-
StatusReason?: DirectoryRegistrationStatusReason;
|
|
649
|
-
CreatedAt?: Date;
|
|
650
|
-
UpdatedAt?: Date;
|
|
645
|
+
Arn?: string | undefined;
|
|
646
|
+
DirectoryId?: string | undefined;
|
|
647
|
+
Status?: DirectoryRegistrationStatus | undefined;
|
|
648
|
+
StatusReason?: DirectoryRegistrationStatusReason | undefined;
|
|
649
|
+
CreatedAt?: Date | undefined;
|
|
650
|
+
UpdatedAt?: Date | undefined;
|
|
651
651
|
}
|
|
652
652
|
export interface DirectoryRegistrationSummary {
|
|
653
|
-
Arn?: string;
|
|
654
|
-
DirectoryId?: string;
|
|
655
|
-
Status?: DirectoryRegistrationStatus;
|
|
656
|
-
StatusReason?: DirectoryRegistrationStatusReason;
|
|
657
|
-
CreatedAt?: Date;
|
|
658
|
-
UpdatedAt?: Date;
|
|
653
|
+
Arn?: string | undefined;
|
|
654
|
+
DirectoryId?: string | undefined;
|
|
655
|
+
Status?: DirectoryRegistrationStatus | undefined;
|
|
656
|
+
StatusReason?: DirectoryRegistrationStatusReason | undefined;
|
|
657
|
+
CreatedAt?: Date | undefined;
|
|
658
|
+
UpdatedAt?: Date | undefined;
|
|
659
659
|
}
|
|
660
660
|
export interface GetDirectoryRegistrationRequest {
|
|
661
661
|
DirectoryRegistrationArn: string | undefined;
|
|
662
662
|
}
|
|
663
663
|
export interface GetDirectoryRegistrationResponse {
|
|
664
|
-
DirectoryRegistration?: DirectoryRegistration;
|
|
664
|
+
DirectoryRegistration?: DirectoryRegistration | undefined;
|
|
665
665
|
}
|
|
666
666
|
export interface ListDirectoryRegistrationsRequest {
|
|
667
|
-
MaxResults?: number;
|
|
668
|
-
NextToken?: string;
|
|
667
|
+
MaxResults?: number | undefined;
|
|
668
|
+
NextToken?: string | undefined;
|
|
669
669
|
}
|
|
670
670
|
export interface ListDirectoryRegistrationsResponse {
|
|
671
|
-
DirectoryRegistrations?: DirectoryRegistrationSummary[];
|
|
672
|
-
NextToken?: string;
|
|
671
|
+
DirectoryRegistrations?: DirectoryRegistrationSummary[] | undefined;
|
|
672
|
+
NextToken?: string | undefined;
|
|
673
673
|
}
|
|
674
674
|
export interface GetServicePrincipalNameRequest {
|
|
675
675
|
DirectoryRegistrationArn: string | undefined;
|
|
@@ -693,15 +693,15 @@ export declare const ServicePrincipalNameStatusReason: {
|
|
|
693
693
|
export type ServicePrincipalNameStatusReason =
|
|
694
694
|
(typeof ServicePrincipalNameStatusReason)[keyof typeof ServicePrincipalNameStatusReason];
|
|
695
695
|
export interface ServicePrincipalName {
|
|
696
|
-
DirectoryRegistrationArn?: string;
|
|
697
|
-
ConnectorArn?: string;
|
|
698
|
-
Status?: ServicePrincipalNameStatus;
|
|
699
|
-
StatusReason?: ServicePrincipalNameStatusReason;
|
|
700
|
-
CreatedAt?: Date;
|
|
701
|
-
UpdatedAt?: Date;
|
|
696
|
+
DirectoryRegistrationArn?: string | undefined;
|
|
697
|
+
ConnectorArn?: string | undefined;
|
|
698
|
+
Status?: ServicePrincipalNameStatus | undefined;
|
|
699
|
+
StatusReason?: ServicePrincipalNameStatusReason | undefined;
|
|
700
|
+
CreatedAt?: Date | undefined;
|
|
701
|
+
UpdatedAt?: Date | undefined;
|
|
702
702
|
}
|
|
703
703
|
export interface GetServicePrincipalNameResponse {
|
|
704
|
-
ServicePrincipalName?: ServicePrincipalName;
|
|
704
|
+
ServicePrincipalName?: ServicePrincipalName | undefined;
|
|
705
705
|
}
|
|
706
706
|
export interface GetTemplateRequest {
|
|
707
707
|
TemplateArn: string | undefined;
|
|
@@ -717,79 +717,79 @@ export declare const TemplateStatus: {
|
|
|
717
717
|
export type TemplateStatus =
|
|
718
718
|
(typeof TemplateStatus)[keyof typeof TemplateStatus];
|
|
719
719
|
export interface Template {
|
|
720
|
-
Arn?: string;
|
|
721
|
-
ConnectorArn?: string;
|
|
722
|
-
Definition?: TemplateDefinition;
|
|
723
|
-
Name?: string;
|
|
724
|
-
ObjectIdentifier?: string;
|
|
725
|
-
PolicySchema?: number;
|
|
726
|
-
Status?: TemplateStatus;
|
|
727
|
-
Revision?: TemplateRevision;
|
|
728
|
-
CreatedAt?: Date;
|
|
729
|
-
UpdatedAt?: Date;
|
|
720
|
+
Arn?: string | undefined;
|
|
721
|
+
ConnectorArn?: string | undefined;
|
|
722
|
+
Definition?: TemplateDefinition | undefined;
|
|
723
|
+
Name?: string | undefined;
|
|
724
|
+
ObjectIdentifier?: string | undefined;
|
|
725
|
+
PolicySchema?: number | undefined;
|
|
726
|
+
Status?: TemplateStatus | undefined;
|
|
727
|
+
Revision?: TemplateRevision | undefined;
|
|
728
|
+
CreatedAt?: Date | undefined;
|
|
729
|
+
UpdatedAt?: Date | undefined;
|
|
730
730
|
}
|
|
731
731
|
export interface GetTemplateResponse {
|
|
732
|
-
Template?: Template;
|
|
732
|
+
Template?: Template | undefined;
|
|
733
733
|
}
|
|
734
734
|
export interface GetTemplateGroupAccessControlEntryRequest {
|
|
735
735
|
TemplateArn: string | undefined;
|
|
736
736
|
GroupSecurityIdentifier: string | undefined;
|
|
737
737
|
}
|
|
738
738
|
export interface GetTemplateGroupAccessControlEntryResponse {
|
|
739
|
-
AccessControlEntry?: AccessControlEntry;
|
|
739
|
+
AccessControlEntry?: AccessControlEntry | undefined;
|
|
740
740
|
}
|
|
741
741
|
export interface ListServicePrincipalNamesRequest {
|
|
742
|
-
MaxResults?: number;
|
|
743
|
-
NextToken?: string;
|
|
742
|
+
MaxResults?: number | undefined;
|
|
743
|
+
NextToken?: string | undefined;
|
|
744
744
|
DirectoryRegistrationArn: string | undefined;
|
|
745
745
|
}
|
|
746
746
|
export interface ServicePrincipalNameSummary {
|
|
747
|
-
DirectoryRegistrationArn?: string;
|
|
748
|
-
ConnectorArn?: string;
|
|
749
|
-
Status?: ServicePrincipalNameStatus;
|
|
750
|
-
StatusReason?: ServicePrincipalNameStatusReason;
|
|
751
|
-
CreatedAt?: Date;
|
|
752
|
-
UpdatedAt?: Date;
|
|
747
|
+
DirectoryRegistrationArn?: string | undefined;
|
|
748
|
+
ConnectorArn?: string | undefined;
|
|
749
|
+
Status?: ServicePrincipalNameStatus | undefined;
|
|
750
|
+
StatusReason?: ServicePrincipalNameStatusReason | undefined;
|
|
751
|
+
CreatedAt?: Date | undefined;
|
|
752
|
+
UpdatedAt?: Date | undefined;
|
|
753
753
|
}
|
|
754
754
|
export interface ListServicePrincipalNamesResponse {
|
|
755
|
-
ServicePrincipalNames?: ServicePrincipalNameSummary[];
|
|
756
|
-
NextToken?: string;
|
|
755
|
+
ServicePrincipalNames?: ServicePrincipalNameSummary[] | undefined;
|
|
756
|
+
NextToken?: string | undefined;
|
|
757
757
|
}
|
|
758
758
|
export interface ListTagsForResourceRequest {
|
|
759
759
|
ResourceArn: string | undefined;
|
|
760
760
|
}
|
|
761
761
|
export interface ListTagsForResourceResponse {
|
|
762
|
-
Tags?: Record<string, string
|
|
762
|
+
Tags?: Record<string, string> | undefined;
|
|
763
763
|
}
|
|
764
764
|
export interface ListTemplateGroupAccessControlEntriesRequest {
|
|
765
|
-
MaxResults?: number;
|
|
766
|
-
NextToken?: string;
|
|
765
|
+
MaxResults?: number | undefined;
|
|
766
|
+
NextToken?: string | undefined;
|
|
767
767
|
TemplateArn: string | undefined;
|
|
768
768
|
}
|
|
769
769
|
export interface ListTemplateGroupAccessControlEntriesResponse {
|
|
770
|
-
AccessControlEntries?: AccessControlEntrySummary[];
|
|
771
|
-
NextToken?: string;
|
|
770
|
+
AccessControlEntries?: AccessControlEntrySummary[] | undefined;
|
|
771
|
+
NextToken?: string | undefined;
|
|
772
772
|
}
|
|
773
773
|
export interface ListTemplatesRequest {
|
|
774
|
-
MaxResults?: number;
|
|
775
|
-
NextToken?: string;
|
|
774
|
+
MaxResults?: number | undefined;
|
|
775
|
+
NextToken?: string | undefined;
|
|
776
776
|
ConnectorArn: string | undefined;
|
|
777
777
|
}
|
|
778
778
|
export interface TemplateSummary {
|
|
779
|
-
Arn?: string;
|
|
780
|
-
ConnectorArn?: string;
|
|
781
|
-
Definition?: TemplateDefinition;
|
|
782
|
-
Name?: string;
|
|
783
|
-
ObjectIdentifier?: string;
|
|
784
|
-
PolicySchema?: number;
|
|
785
|
-
Status?: TemplateStatus;
|
|
786
|
-
Revision?: TemplateRevision;
|
|
787
|
-
CreatedAt?: Date;
|
|
788
|
-
UpdatedAt?: Date;
|
|
779
|
+
Arn?: string | undefined;
|
|
780
|
+
ConnectorArn?: string | undefined;
|
|
781
|
+
Definition?: TemplateDefinition | undefined;
|
|
782
|
+
Name?: string | undefined;
|
|
783
|
+
ObjectIdentifier?: string | undefined;
|
|
784
|
+
PolicySchema?: number | undefined;
|
|
785
|
+
Status?: TemplateStatus | undefined;
|
|
786
|
+
Revision?: TemplateRevision | undefined;
|
|
787
|
+
CreatedAt?: Date | undefined;
|
|
788
|
+
UpdatedAt?: Date | undefined;
|
|
789
789
|
}
|
|
790
790
|
export interface ListTemplatesResponse {
|
|
791
|
-
Templates?: TemplateSummary[];
|
|
792
|
-
NextToken?: string;
|
|
791
|
+
Templates?: TemplateSummary[] | undefined;
|
|
792
|
+
NextToken?: string | undefined;
|
|
793
793
|
}
|
|
794
794
|
export interface TagResourceRequest {
|
|
795
795
|
ResourceArn: string | undefined;
|
|
@@ -798,13 +798,13 @@ export interface TagResourceRequest {
|
|
|
798
798
|
export interface UpdateTemplateGroupAccessControlEntryRequest {
|
|
799
799
|
TemplateArn: string | undefined;
|
|
800
800
|
GroupSecurityIdentifier: string | undefined;
|
|
801
|
-
GroupDisplayName?: string;
|
|
802
|
-
AccessRights?: AccessRights;
|
|
801
|
+
GroupDisplayName?: string | undefined;
|
|
802
|
+
AccessRights?: AccessRights | undefined;
|
|
803
803
|
}
|
|
804
804
|
export interface UpdateTemplateRequest {
|
|
805
805
|
TemplateArn: string | undefined;
|
|
806
|
-
Definition?: TemplateDefinition;
|
|
807
|
-
ReenrollAllCertificateHolders?: boolean;
|
|
806
|
+
Definition?: TemplateDefinition | undefined;
|
|
807
|
+
ReenrollAllCertificateHolders?: boolean | undefined;
|
|
808
808
|
}
|
|
809
809
|
export interface UntagResourceRequest {
|
|
810
810
|
ResourceArn: string | undefined;
|