@aws-sdk/client-directory-service 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.
@@ -1,25 +1,43 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { DirectoryServiceServiceException as __BaseException } from "./DirectoryServiceServiceException";
1
+ import {
2
+ CaEnrollmentPolicyStatus,
3
+ CertificateState,
4
+ CertificateType,
5
+ ClientAuthenticationStatus,
6
+ ClientAuthenticationType,
7
+ DataAccessStatus,
8
+ DirectoryConfigurationStatus,
9
+ DirectoryEdition,
10
+ DirectorySize,
11
+ DirectoryStage,
12
+ DirectoryType,
13
+ DomainControllerStatus,
14
+ HybridUpdateType,
15
+ IpRouteStatusMsg,
16
+ LDAPSStatus,
17
+ LDAPSType,
18
+ NetworkType,
19
+ OSVersion,
20
+ RadiusAuthenticationProtocol,
21
+ RadiusStatus,
22
+ RegionType,
23
+ ReplicationScope,
24
+ SchemaExtensionStatus,
25
+ SelectiveAuth,
26
+ ShareMethod,
27
+ ShareStatus,
28
+ SnapshotStatus,
29
+ SnapshotType,
30
+ TargetType,
31
+ TopicStatus,
32
+ TrustDirection,
33
+ TrustState,
34
+ TrustType,
35
+ UpdateStatus,
36
+ UpdateType,
37
+ } from "./enums";
3
38
  export interface AcceptSharedDirectoryRequest {
4
39
  SharedDirectoryId: string | undefined;
5
40
  }
6
- export declare const ShareMethod: {
7
- readonly HANDSHAKE: "HANDSHAKE";
8
- readonly ORGANIZATIONS: "ORGANIZATIONS";
9
- };
10
- export type ShareMethod = (typeof ShareMethod)[keyof typeof ShareMethod];
11
- export declare const ShareStatus: {
12
- readonly DELETED: "Deleted";
13
- readonly DELETING: "Deleting";
14
- readonly PENDING_ACCEPTANCE: "PendingAcceptance";
15
- readonly REJECTED: "Rejected";
16
- readonly REJECTING: "Rejecting";
17
- readonly REJECT_FAILED: "RejectFailed";
18
- readonly SHARED: "Shared";
19
- readonly SHARE_FAILED: "ShareFailed";
20
- readonly SHARING: "Sharing";
21
- };
22
- export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
23
41
  export interface SharedDirectory {
24
42
  OwnerAccountId?: string | undefined;
25
43
  OwnerDirectoryId?: string | undefined;
@@ -34,71 +52,6 @@ export interface SharedDirectory {
34
52
  export interface AcceptSharedDirectoryResult {
35
53
  SharedDirectory?: SharedDirectory | undefined;
36
54
  }
37
- export declare class ClientException extends __BaseException {
38
- readonly name: "ClientException";
39
- readonly $fault: "client";
40
- Message?: string | undefined;
41
- RequestId?: string | undefined;
42
- constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
43
- }
44
- export declare class DirectoryAlreadySharedException extends __BaseException {
45
- readonly name: "DirectoryAlreadySharedException";
46
- readonly $fault: "client";
47
- Message?: string | undefined;
48
- RequestId?: string | undefined;
49
- constructor(
50
- opts: __ExceptionOptionType<
51
- DirectoryAlreadySharedException,
52
- __BaseException
53
- >
54
- );
55
- }
56
- export declare class EntityDoesNotExistException extends __BaseException {
57
- readonly name: "EntityDoesNotExistException";
58
- readonly $fault: "client";
59
- Message?: string | undefined;
60
- RequestId?: string | undefined;
61
- constructor(
62
- opts: __ExceptionOptionType<EntityDoesNotExistException, __BaseException>
63
- );
64
- }
65
- export declare class InvalidParameterException extends __BaseException {
66
- readonly name: "InvalidParameterException";
67
- readonly $fault: "client";
68
- Message?: string | undefined;
69
- RequestId?: string | undefined;
70
- constructor(
71
- opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
72
- );
73
- }
74
- export declare class ServiceException extends __BaseException {
75
- readonly name: "ServiceException";
76
- readonly $fault: "server";
77
- Message?: string | undefined;
78
- RequestId?: string | undefined;
79
- constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
80
- }
81
- export declare class AccessDeniedException extends __BaseException {
82
- readonly name: "AccessDeniedException";
83
- readonly $fault: "client";
84
- Message?: string | undefined;
85
- RequestId?: string | undefined;
86
- constructor(
87
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
88
- );
89
- }
90
- export declare class ADAssessmentLimitExceededException extends __BaseException {
91
- readonly name: "ADAssessmentLimitExceededException";
92
- readonly $fault: "client";
93
- Message?: string | undefined;
94
- RequestId?: string | undefined;
95
- constructor(
96
- opts: __ExceptionOptionType<
97
- ADAssessmentLimitExceededException,
98
- __BaseException
99
- >
100
- );
101
- }
102
55
  export interface IpRoute {
103
56
  CidrIp?: string | undefined;
104
57
  CidrIpv6?: string | undefined;
@@ -110,33 +63,6 @@ export interface AddIpRoutesRequest {
110
63
  UpdateSecurityGroupForDirectoryControllers?: boolean | undefined;
111
64
  }
112
65
  export interface AddIpRoutesResult {}
113
- export declare class DirectoryUnavailableException extends __BaseException {
114
- readonly name: "DirectoryUnavailableException";
115
- readonly $fault: "client";
116
- Message?: string | undefined;
117
- RequestId?: string | undefined;
118
- constructor(
119
- opts: __ExceptionOptionType<DirectoryUnavailableException, __BaseException>
120
- );
121
- }
122
- export declare class EntityAlreadyExistsException extends __BaseException {
123
- readonly name: "EntityAlreadyExistsException";
124
- readonly $fault: "client";
125
- Message?: string | undefined;
126
- RequestId?: string | undefined;
127
- constructor(
128
- opts: __ExceptionOptionType<EntityAlreadyExistsException, __BaseException>
129
- );
130
- }
131
- export declare class IpRouteLimitExceededException extends __BaseException {
132
- readonly name: "IpRouteLimitExceededException";
133
- readonly $fault: "client";
134
- Message?: string | undefined;
135
- RequestId?: string | undefined;
136
- constructor(
137
- opts: __ExceptionOptionType<IpRouteLimitExceededException, __BaseException>
138
- );
139
- }
140
66
  export interface DirectoryVpcSettings {
141
67
  VpcId: string | undefined;
142
68
  SubnetIds: string[] | undefined;
@@ -147,45 +73,6 @@ export interface AddRegionRequest {
147
73
  VPCSettings: DirectoryVpcSettings | undefined;
148
74
  }
149
75
  export interface AddRegionResult {}
150
- export declare class DirectoryAlreadyInRegionException extends __BaseException {
151
- readonly name: "DirectoryAlreadyInRegionException";
152
- readonly $fault: "client";
153
- Message?: string | undefined;
154
- RequestId?: string | undefined;
155
- constructor(
156
- opts: __ExceptionOptionType<
157
- DirectoryAlreadyInRegionException,
158
- __BaseException
159
- >
160
- );
161
- }
162
- export declare class DirectoryDoesNotExistException extends __BaseException {
163
- readonly name: "DirectoryDoesNotExistException";
164
- readonly $fault: "client";
165
- Message?: string | undefined;
166
- RequestId?: string | undefined;
167
- constructor(
168
- opts: __ExceptionOptionType<DirectoryDoesNotExistException, __BaseException>
169
- );
170
- }
171
- export declare class RegionLimitExceededException extends __BaseException {
172
- readonly name: "RegionLimitExceededException";
173
- readonly $fault: "client";
174
- Message?: string | undefined;
175
- RequestId?: string | undefined;
176
- constructor(
177
- opts: __ExceptionOptionType<RegionLimitExceededException, __BaseException>
178
- );
179
- }
180
- export declare class UnsupportedOperationException extends __BaseException {
181
- readonly name: "UnsupportedOperationException";
182
- readonly $fault: "client";
183
- Message?: string | undefined;
184
- RequestId?: string | undefined;
185
- constructor(
186
- opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
187
- );
188
- }
189
76
  export interface Tag {
190
77
  Key: string | undefined;
191
78
  Value: string | undefined;
@@ -195,15 +82,6 @@ export interface AddTagsToResourceRequest {
195
82
  Tags: Tag[] | undefined;
196
83
  }
197
84
  export interface AddTagsToResourceResult {}
198
- export declare class TagLimitExceededException extends __BaseException {
199
- readonly name: "TagLimitExceededException";
200
- readonly $fault: "client";
201
- Message?: string | undefined;
202
- RequestId?: string | undefined;
203
- constructor(
204
- opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>
205
- );
206
- }
207
85
  export interface Assessment {
208
86
  AssessmentId?: string | undefined;
209
87
  DirectoryId?: string | undefined;
@@ -255,25 +133,6 @@ export interface Attribute {
255
133
  Name?: string | undefined;
256
134
  Value?: string | undefined;
257
135
  }
258
- export declare class AuthenticationFailedException extends __BaseException {
259
- readonly name: "AuthenticationFailedException";
260
- readonly $fault: "client";
261
- Message?: string | undefined;
262
- RequestId?: string | undefined;
263
- constructor(
264
- opts: __ExceptionOptionType<AuthenticationFailedException, __BaseException>
265
- );
266
- }
267
- export declare const CaEnrollmentPolicyStatus: {
268
- readonly DISABLED: "Disabled";
269
- readonly DISABLING: "Disabling";
270
- readonly FAILED: "Failed";
271
- readonly IMPAIRED: "Impaired";
272
- readonly IN_PROGRESS: "InProgress";
273
- readonly SUCCESS: "Success";
274
- };
275
- export type CaEnrollmentPolicyStatus =
276
- (typeof CaEnrollmentPolicyStatus)[keyof typeof CaEnrollmentPolicyStatus];
277
136
  export interface CancelSchemaExtensionRequest {
278
137
  DirectoryId: string | undefined;
279
138
  SchemaExtensionId: string | undefined;
@@ -282,22 +141,6 @@ export interface CancelSchemaExtensionResult {}
282
141
  export interface ClientCertAuthSettings {
283
142
  OCSPUrl?: string | undefined;
284
143
  }
285
- export declare const CertificateState: {
286
- readonly DEREGISTERED: "Deregistered";
287
- readonly DEREGISTERING: "Deregistering";
288
- readonly DEREGISTER_FAILED: "DeregisterFailed";
289
- readonly REGISTERED: "Registered";
290
- readonly REGISTERING: "Registering";
291
- readonly REGISTER_FAILED: "RegisterFailed";
292
- };
293
- export type CertificateState =
294
- (typeof CertificateState)[keyof typeof CertificateState];
295
- export declare const CertificateType: {
296
- readonly CLIENT_CERT_AUTH: "ClientCertAuth";
297
- readonly CLIENT_LDAPS: "ClientLDAPS";
298
- };
299
- export type CertificateType =
300
- (typeof CertificateType)[keyof typeof CertificateType];
301
144
  export interface Certificate {
302
145
  CertificateId?: string | undefined;
303
146
  State?: CertificateState | undefined;
@@ -308,30 +151,6 @@ export interface Certificate {
308
151
  Type?: CertificateType | undefined;
309
152
  ClientCertAuthSettings?: ClientCertAuthSettings | undefined;
310
153
  }
311
- export declare class CertificateAlreadyExistsException extends __BaseException {
312
- readonly name: "CertificateAlreadyExistsException";
313
- readonly $fault: "client";
314
- Message?: string | undefined;
315
- RequestId?: string | undefined;
316
- constructor(
317
- opts: __ExceptionOptionType<
318
- CertificateAlreadyExistsException,
319
- __BaseException
320
- >
321
- );
322
- }
323
- export declare class CertificateDoesNotExistException extends __BaseException {
324
- readonly name: "CertificateDoesNotExistException";
325
- readonly $fault: "client";
326
- Message?: string | undefined;
327
- RequestId?: string | undefined;
328
- constructor(
329
- opts: __ExceptionOptionType<
330
- CertificateDoesNotExistException,
331
- __BaseException
332
- >
333
- );
334
- }
335
154
  export interface CertificateInfo {
336
155
  CertificateId?: string | undefined;
337
156
  CommonName?: string | undefined;
@@ -339,39 +158,6 @@ export interface CertificateInfo {
339
158
  ExpiryDateTime?: Date | undefined;
340
159
  Type?: CertificateType | undefined;
341
160
  }
342
- export declare class CertificateInUseException extends __BaseException {
343
- readonly name: "CertificateInUseException";
344
- readonly $fault: "client";
345
- Message?: string | undefined;
346
- RequestId?: string | undefined;
347
- constructor(
348
- opts: __ExceptionOptionType<CertificateInUseException, __BaseException>
349
- );
350
- }
351
- export declare class CertificateLimitExceededException extends __BaseException {
352
- readonly name: "CertificateLimitExceededException";
353
- readonly $fault: "client";
354
- Message?: string | undefined;
355
- RequestId?: string | undefined;
356
- constructor(
357
- opts: __ExceptionOptionType<
358
- CertificateLimitExceededException,
359
- __BaseException
360
- >
361
- );
362
- }
363
- export declare const ClientAuthenticationStatus: {
364
- readonly DISABLED: "Disabled";
365
- readonly ENABLED: "Enabled";
366
- };
367
- export type ClientAuthenticationStatus =
368
- (typeof ClientAuthenticationStatus)[keyof typeof ClientAuthenticationStatus];
369
- export declare const ClientAuthenticationType: {
370
- readonly SMART_CARD: "SmartCard";
371
- readonly SMART_CARD_OR_PASSWORD: "SmartCardOrPassword";
372
- };
373
- export type ClientAuthenticationType =
374
- (typeof ClientAuthenticationType)[keyof typeof ClientAuthenticationType];
375
161
  export interface ClientAuthenticationSettingInfo {
376
162
  Type?: ClientAuthenticationType | undefined;
377
163
  Status?: ClientAuthenticationStatus | undefined;
@@ -382,11 +168,6 @@ export interface Computer {
382
168
  ComputerName?: string | undefined;
383
169
  ComputerAttributes?: Attribute[] | undefined;
384
170
  }
385
- export declare const ReplicationScope: {
386
- readonly Domain: "Domain";
387
- };
388
- export type ReplicationScope =
389
- (typeof ReplicationScope)[keyof typeof ReplicationScope];
390
171
  export interface ConditionalForwarder {
391
172
  RemoteDomainName?: string | undefined;
392
173
  DnsIpAddrs?: string[] | undefined;
@@ -400,17 +181,6 @@ export interface DirectoryConnectSettings {
400
181
  CustomerDnsIpsV6?: string[] | undefined;
401
182
  CustomerUserName: string | undefined;
402
183
  }
403
- export declare const NetworkType: {
404
- readonly DUAL_STACK: "Dual-stack";
405
- readonly IPV4_ONLY: "IPv4";
406
- readonly IPV6_ONLY: "IPv6";
407
- };
408
- export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
409
- export declare const DirectorySize: {
410
- readonly LARGE: "Large";
411
- readonly SMALL: "Small";
412
- };
413
- export type DirectorySize = (typeof DirectorySize)[keyof typeof DirectorySize];
414
184
  export interface ConnectDirectoryRequest {
415
185
  Name: string | undefined;
416
186
  ShortName?: string | undefined;
@@ -424,18 +194,6 @@ export interface ConnectDirectoryRequest {
424
194
  export interface ConnectDirectoryResult {
425
195
  DirectoryId?: string | undefined;
426
196
  }
427
- export declare class DirectoryLimitExceededException extends __BaseException {
428
- readonly name: "DirectoryLimitExceededException";
429
- readonly $fault: "client";
430
- Message?: string | undefined;
431
- RequestId?: string | undefined;
432
- constructor(
433
- opts: __ExceptionOptionType<
434
- DirectoryLimitExceededException,
435
- __BaseException
436
- >
437
- );
438
- }
439
197
  export interface CreateAliasRequest {
440
198
  DirectoryId: string | undefined;
441
199
  Alias: string | undefined;
@@ -487,25 +245,6 @@ export interface CreateLogSubscriptionRequest {
487
245
  LogGroupName: string | undefined;
488
246
  }
489
247
  export interface CreateLogSubscriptionResult {}
490
- export declare class InsufficientPermissionsException extends __BaseException {
491
- readonly name: "InsufficientPermissionsException";
492
- readonly $fault: "client";
493
- Message?: string | undefined;
494
- RequestId?: string | undefined;
495
- constructor(
496
- opts: __ExceptionOptionType<
497
- InsufficientPermissionsException,
498
- __BaseException
499
- >
500
- );
501
- }
502
- export declare const DirectoryEdition: {
503
- readonly ENTERPRISE: "Enterprise";
504
- readonly HYBRID: "Hybrid";
505
- readonly STANDARD: "Standard";
506
- };
507
- export type DirectoryEdition =
508
- (typeof DirectoryEdition)[keyof typeof DirectoryEdition];
509
248
  export interface CreateMicrosoftADRequest {
510
249
  Name: string | undefined;
511
250
  ShortName?: string | undefined;
@@ -526,32 +265,6 @@ export interface CreateSnapshotRequest {
526
265
  export interface CreateSnapshotResult {
527
266
  SnapshotId?: string | undefined;
528
267
  }
529
- export declare class SnapshotLimitExceededException extends __BaseException {
530
- readonly name: "SnapshotLimitExceededException";
531
- readonly $fault: "client";
532
- Message?: string | undefined;
533
- RequestId?: string | undefined;
534
- constructor(
535
- opts: __ExceptionOptionType<SnapshotLimitExceededException, __BaseException>
536
- );
537
- }
538
- export declare const SelectiveAuth: {
539
- readonly DISABLED: "Disabled";
540
- readonly ENABLED: "Enabled";
541
- };
542
- export type SelectiveAuth = (typeof SelectiveAuth)[keyof typeof SelectiveAuth];
543
- export declare const TrustDirection: {
544
- readonly ONE_WAY_INCOMING: "One-Way: Incoming";
545
- readonly ONE_WAY_OUTGOING: "One-Way: Outgoing";
546
- readonly TWO_WAY: "Two-Way";
547
- };
548
- export type TrustDirection =
549
- (typeof TrustDirection)[keyof typeof TrustDirection];
550
- export declare const TrustType: {
551
- readonly EXTERNAL: "External";
552
- readonly FOREST: "Forest";
553
- };
554
- export type TrustType = (typeof TrustType)[keyof typeof TrustType];
555
268
  export interface CreateTrustRequest {
556
269
  DirectoryId: string | undefined;
557
270
  RemoteDomainName: string | undefined;
@@ -565,15 +278,6 @@ export interface CreateTrustRequest {
565
278
  export interface CreateTrustResult {
566
279
  TrustId?: string | undefined;
567
280
  }
568
- export declare const DataAccessStatus: {
569
- readonly DISABLED: "Disabled";
570
- readonly DISABLING: "Disabling";
571
- readonly ENABLED: "Enabled";
572
- readonly ENABLING: "Enabling";
573
- readonly FAILED: "Failed";
574
- };
575
- export type DataAccessStatus =
576
- (typeof DataAccessStatus)[keyof typeof DataAccessStatus];
577
281
  export interface DeleteADAssessmentRequest {
578
282
  AssessmentId: string | undefined;
579
283
  }
@@ -679,19 +383,6 @@ export interface HybridSettingsDescription {
679
383
  SelfManagedDnsIpAddrs?: string[] | undefined;
680
384
  SelfManagedInstanceIds?: string[] | undefined;
681
385
  }
682
- export declare const OSVersion: {
683
- readonly VERSION_2012: "SERVER_2012";
684
- readonly VERSION_2019: "SERVER_2019";
685
- };
686
- export type OSVersion = (typeof OSVersion)[keyof typeof OSVersion];
687
- export declare const RadiusAuthenticationProtocol: {
688
- readonly CHAP: "CHAP";
689
- readonly MSCHAPV1: "MS-CHAPv1";
690
- readonly MSCHAPV2: "MS-CHAPv2";
691
- readonly PAP: "PAP";
692
- };
693
- export type RadiusAuthenticationProtocol =
694
- (typeof RadiusAuthenticationProtocol)[keyof typeof RadiusAuthenticationProtocol];
695
386
  export interface RadiusSettings {
696
387
  RadiusServers?: string[] | undefined;
697
388
  RadiusServersIpv6?: string[] | undefined;
@@ -703,12 +394,6 @@ export interface RadiusSettings {
703
394
  DisplayLabel?: string | undefined;
704
395
  UseSameUsername?: boolean | undefined;
705
396
  }
706
- export declare const RadiusStatus: {
707
- readonly COMPLETED: "Completed";
708
- readonly CREATING: "Creating";
709
- readonly FAILED: "Failed";
710
- };
711
- export type RadiusStatus = (typeof RadiusStatus)[keyof typeof RadiusStatus];
712
397
  export interface DirectoryVpcSettingsDescription {
713
398
  VpcId?: string | undefined;
714
399
  SubnetIds?: string[] | undefined;
@@ -729,29 +414,6 @@ export interface RegionsInfo {
729
414
  PrimaryRegion?: string | undefined;
730
415
  AdditionalRegions?: string[] | undefined;
731
416
  }
732
- export declare const DirectoryStage: {
733
- readonly ACTIVE: "Active";
734
- readonly CREATED: "Created";
735
- readonly CREATING: "Creating";
736
- readonly DELETED: "Deleted";
737
- readonly DELETING: "Deleting";
738
- readonly FAILED: "Failed";
739
- readonly IMPAIRED: "Impaired";
740
- readonly INOPERABLE: "Inoperable";
741
- readonly REQUESTED: "Requested";
742
- readonly RESTOREFAILED: "RestoreFailed";
743
- readonly RESTORING: "Restoring";
744
- readonly UPDATING: "Updating";
745
- };
746
- export type DirectoryStage =
747
- (typeof DirectoryStage)[keyof typeof DirectoryStage];
748
- export declare const DirectoryType: {
749
- readonly AD_CONNECTOR: "ADConnector";
750
- readonly MICROSOFT_AD: "MicrosoftAD";
751
- readonly SHARED_MICROSOFT_AD: "SharedMicrosoftAD";
752
- readonly SIMPLE_AD: "SimpleAD";
753
- };
754
- export type DirectoryType = (typeof DirectoryType)[keyof typeof DirectoryType];
755
417
  export interface DirectoryDescription {
756
418
  DirectoryId?: string | undefined;
757
419
  Name?: string | undefined;
@@ -787,15 +449,6 @@ export interface DescribeDirectoriesResult {
787
449
  DirectoryDescriptions?: DirectoryDescription[] | undefined;
788
450
  NextToken?: string | undefined;
789
451
  }
790
- export declare class InvalidNextTokenException extends __BaseException {
791
- readonly name: "InvalidNextTokenException";
792
- readonly $fault: "client";
793
- Message?: string | undefined;
794
- RequestId?: string | undefined;
795
- constructor(
796
- opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
797
- );
798
- }
799
452
  export interface DescribeDirectoryDataAccessRequest {
800
453
  DirectoryId: string | undefined;
801
454
  }
@@ -808,18 +461,6 @@ export interface DescribeDomainControllersRequest {
808
461
  NextToken?: string | undefined;
809
462
  Limit?: number | undefined;
810
463
  }
811
- export declare const DomainControllerStatus: {
812
- readonly ACTIVE: "Active";
813
- readonly CREATING: "Creating";
814
- readonly DELETED: "Deleted";
815
- readonly DELETING: "Deleting";
816
- readonly FAILED: "Failed";
817
- readonly IMPAIRED: "Impaired";
818
- readonly RESTORING: "Restoring";
819
- readonly UPDATING: "Updating";
820
- };
821
- export type DomainControllerStatus =
822
- (typeof DomainControllerStatus)[keyof typeof DomainControllerStatus];
823
464
  export interface DomainController {
824
465
  DirectoryId?: string | undefined;
825
466
  DomainControllerId?: string | undefined;
@@ -841,13 +482,6 @@ export interface DescribeEventTopicsRequest {
841
482
  DirectoryId?: string | undefined;
842
483
  TopicNames?: string[] | undefined;
843
484
  }
844
- export declare const TopicStatus: {
845
- readonly DELETED: "Deleted";
846
- readonly FAILED: "Failed";
847
- readonly REGISTERED: "Registered";
848
- readonly TOPIC_NOT_FOUND: "Topic not found";
849
- };
850
- export type TopicStatus = (typeof TopicStatus)[keyof typeof TopicStatus];
851
485
  export interface EventTopic {
852
486
  DirectoryId?: string | undefined;
853
487
  TopicName?: string | undefined;
@@ -858,12 +492,6 @@ export interface EventTopic {
858
492
  export interface DescribeEventTopicsResult {
859
493
  EventTopics?: EventTopic[] | undefined;
860
494
  }
861
- export declare const HybridUpdateType: {
862
- readonly HYBRID_ADMINISTRATOR_ACCOUNT: "HybridAdministratorAccount";
863
- readonly SELF_MANAGED_INSTANCES: "SelfManagedInstances";
864
- };
865
- export type HybridUpdateType =
866
- (typeof HybridUpdateType)[keyof typeof HybridUpdateType];
867
495
  export interface DescribeHybridADUpdateRequest {
868
496
  DirectoryId: string | undefined;
869
497
  UpdateType?: HybridUpdateType | undefined;
@@ -873,12 +501,6 @@ export interface HybridUpdateValue {
873
501
  InstanceIds?: string[] | undefined;
874
502
  DnsIps?: string[] | undefined;
875
503
  }
876
- export declare const UpdateStatus: {
877
- readonly UPDATED: "Updated";
878
- readonly UPDATE_FAILED: "UpdateFailed";
879
- readonly UPDATING: "Updating";
880
- };
881
- export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
882
504
  export interface HybridUpdateInfoEntry {
883
505
  Status?: UpdateStatus | undefined;
884
506
  StatusReason?: string | undefined;
@@ -897,23 +519,12 @@ export interface DescribeHybridADUpdateResult {
897
519
  UpdateActivities?: HybridUpdateActivities | undefined;
898
520
  NextToken?: string | undefined;
899
521
  }
900
- export declare const LDAPSType: {
901
- readonly CLIENT: "Client";
902
- };
903
- export type LDAPSType = (typeof LDAPSType)[keyof typeof LDAPSType];
904
522
  export interface DescribeLDAPSSettingsRequest {
905
523
  DirectoryId: string | undefined;
906
524
  Type?: LDAPSType | undefined;
907
525
  NextToken?: string | undefined;
908
526
  Limit?: number | undefined;
909
527
  }
910
- export declare const LDAPSStatus: {
911
- readonly DISABLED: "Disabled";
912
- readonly ENABLED: "Enabled";
913
- readonly ENABLE_FAILED: "EnableFailed";
914
- readonly ENABLING: "Enabling";
915
- };
916
- export type LDAPSStatus = (typeof LDAPSStatus)[keyof typeof LDAPSStatus];
917
528
  export interface LDAPSSettingInfo {
918
529
  LDAPSStatus?: LDAPSStatus | undefined;
919
530
  LDAPSStatusReason?: string | undefined;
@@ -928,11 +539,6 @@ export interface DescribeRegionsRequest {
928
539
  RegionName?: string | undefined;
929
540
  NextToken?: string | undefined;
930
541
  }
931
- export declare const RegionType: {
932
- readonly ADDITIONAL: "Additional";
933
- readonly PRIMARY: "Primary";
934
- };
935
- export type RegionType = (typeof RegionType)[keyof typeof RegionType];
936
542
  export interface RegionDescription {
937
543
  DirectoryId?: string | undefined;
938
544
  RegionName?: string | undefined;
@@ -948,15 +554,6 @@ export interface DescribeRegionsResult {
948
554
  RegionsDescription?: RegionDescription[] | undefined;
949
555
  NextToken?: string | undefined;
950
556
  }
951
- export declare const DirectoryConfigurationStatus: {
952
- readonly DEFAULT: "Default";
953
- readonly FAILED: "Failed";
954
- readonly REQUESTED: "Requested";
955
- readonly UPDATED: "Updated";
956
- readonly UPDATING: "Updating";
957
- };
958
- export type DirectoryConfigurationStatus =
959
- (typeof DirectoryConfigurationStatus)[keyof typeof DirectoryConfigurationStatus];
960
557
  export interface DescribeSettingsRequest {
961
558
  DirectoryId: string | undefined;
962
559
  Status?: DirectoryConfigurationStatus | undefined;
@@ -998,18 +595,6 @@ export interface DescribeSnapshotsRequest {
998
595
  NextToken?: string | undefined;
999
596
  Limit?: number | undefined;
1000
597
  }
1001
- export declare const SnapshotStatus: {
1002
- readonly COMPLETED: "Completed";
1003
- readonly CREATING: "Creating";
1004
- readonly FAILED: "Failed";
1005
- };
1006
- export type SnapshotStatus =
1007
- (typeof SnapshotStatus)[keyof typeof SnapshotStatus];
1008
- export declare const SnapshotType: {
1009
- readonly AUTO: "Auto";
1010
- readonly MANUAL: "Manual";
1011
- };
1012
- export type SnapshotType = (typeof SnapshotType)[keyof typeof SnapshotType];
1013
598
  export interface Snapshot {
1014
599
  DirectoryId?: string | undefined;
1015
600
  SnapshotId?: string | undefined;
@@ -1028,20 +613,6 @@ export interface DescribeTrustsRequest {
1028
613
  NextToken?: string | undefined;
1029
614
  Limit?: number | undefined;
1030
615
  }
1031
- export declare const TrustState: {
1032
- readonly CREATED: "Created";
1033
- readonly CREATING: "Creating";
1034
- readonly DELETED: "Deleted";
1035
- readonly DELETING: "Deleting";
1036
- readonly FAILED: "Failed";
1037
- readonly UPDATED: "Updated";
1038
- readonly UPDATE_FAILED: "UpdateFailed";
1039
- readonly UPDATING: "Updating";
1040
- readonly VERIFIED: "Verified";
1041
- readonly VERIFYING: "Verifying";
1042
- readonly VERIFY_FAILED: "VerifyFailed";
1043
- };
1044
- export type TrustState = (typeof TrustState)[keyof typeof TrustState];
1045
616
  export interface Trust {
1046
617
  DirectoryId?: string | undefined;
1047
618
  TrustId?: string | undefined;
@@ -1059,12 +630,6 @@ export interface DescribeTrustsResult {
1059
630
  Trusts?: Trust[] | undefined;
1060
631
  NextToken?: string | undefined;
1061
632
  }
1062
- export declare const UpdateType: {
1063
- readonly NETWORK: "NETWORK";
1064
- readonly OS: "OS";
1065
- readonly SIZE: "SIZE";
1066
- };
1067
- export type UpdateType = (typeof UpdateType)[keyof typeof UpdateType];
1068
633
  export interface DescribeUpdateDirectoryRequest {
1069
634
  DirectoryId: string | undefined;
1070
635
  UpdateType: UpdateType | undefined;
@@ -1091,18 +656,6 @@ export interface DescribeUpdateDirectoryResult {
1091
656
  UpdateActivities?: UpdateInfoEntry[] | undefined;
1092
657
  NextToken?: string | undefined;
1093
658
  }
1094
- export declare class DirectoryInDesiredStateException extends __BaseException {
1095
- readonly name: "DirectoryInDesiredStateException";
1096
- readonly $fault: "client";
1097
- Message?: string | undefined;
1098
- RequestId?: string | undefined;
1099
- constructor(
1100
- opts: __ExceptionOptionType<
1101
- DirectoryInDesiredStateException,
1102
- __BaseException
1103
- >
1104
- );
1105
- }
1106
659
  export interface DirectoryLimits {
1107
660
  CloudOnlyDirectoriesLimit?: number | undefined;
1108
661
  CloudOnlyDirectoriesCurrentCount?: number | undefined;
@@ -1114,27 +667,6 @@ export interface DirectoryLimits {
1114
667
  ConnectedDirectoriesCurrentCount?: number | undefined;
1115
668
  ConnectedDirectoriesLimitReached?: boolean | undefined;
1116
669
  }
1117
- export declare class DirectoryNotSharedException extends __BaseException {
1118
- readonly name: "DirectoryNotSharedException";
1119
- readonly $fault: "client";
1120
- Message?: string | undefined;
1121
- RequestId?: string | undefined;
1122
- constructor(
1123
- opts: __ExceptionOptionType<DirectoryNotSharedException, __BaseException>
1124
- );
1125
- }
1126
- export declare class DisableAlreadyInProgressException extends __BaseException {
1127
- readonly name: "DisableAlreadyInProgressException";
1128
- readonly $fault: "client";
1129
- Message?: string | undefined;
1130
- RequestId?: string | undefined;
1131
- constructor(
1132
- opts: __ExceptionOptionType<
1133
- DisableAlreadyInProgressException,
1134
- __BaseException
1135
- >
1136
- );
1137
- }
1138
670
  export interface DisableCAEnrollmentPolicyRequest {
1139
671
  DirectoryId: string | undefined;
1140
672
  }
@@ -1144,18 +676,6 @@ export interface DisableClientAuthenticationRequest {
1144
676
  Type: ClientAuthenticationType | undefined;
1145
677
  }
1146
678
  export interface DisableClientAuthenticationResult {}
1147
- export declare class InvalidClientAuthStatusException extends __BaseException {
1148
- readonly name: "InvalidClientAuthStatusException";
1149
- readonly $fault: "client";
1150
- Message?: string | undefined;
1151
- RequestId?: string | undefined;
1152
- constructor(
1153
- opts: __ExceptionOptionType<
1154
- InvalidClientAuthStatusException,
1155
- __BaseException
1156
- >
1157
- );
1158
- }
1159
679
  export interface DisableDirectoryDataAccessRequest {
1160
680
  DirectoryId: string | undefined;
1161
681
  }
@@ -1165,15 +685,6 @@ export interface DisableLDAPSRequest {
1165
685
  Type: LDAPSType | undefined;
1166
686
  }
1167
687
  export interface DisableLDAPSResult {}
1168
- export declare class InvalidLDAPSStatusException extends __BaseException {
1169
- readonly name: "InvalidLDAPSStatusException";
1170
- readonly $fault: "client";
1171
- Message?: string | undefined;
1172
- RequestId?: string | undefined;
1173
- constructor(
1174
- opts: __ExceptionOptionType<InvalidLDAPSStatusException, __BaseException>
1175
- );
1176
- }
1177
688
  export interface DisableRadiusRequest {
1178
689
  DirectoryId: string | undefined;
1179
690
  }
@@ -1184,18 +695,6 @@ export interface DisableSsoRequest {
1184
695
  Password?: string | undefined;
1185
696
  }
1186
697
  export interface DisableSsoResult {}
1187
- export declare class EnableAlreadyInProgressException extends __BaseException {
1188
- readonly name: "EnableAlreadyInProgressException";
1189
- readonly $fault: "client";
1190
- Message?: string | undefined;
1191
- RequestId?: string | undefined;
1192
- constructor(
1193
- opts: __ExceptionOptionType<
1194
- EnableAlreadyInProgressException,
1195
- __BaseException
1196
- >
1197
- );
1198
- }
1199
698
  export interface EnableCAEnrollmentPolicyRequest {
1200
699
  DirectoryId: string | undefined;
1201
700
  PcaConnectorArn: string | undefined;
@@ -1206,18 +705,6 @@ export interface EnableClientAuthenticationRequest {
1206
705
  Type: ClientAuthenticationType | undefined;
1207
706
  }
1208
707
  export interface EnableClientAuthenticationResult {}
1209
- export declare class NoAvailableCertificateException extends __BaseException {
1210
- readonly name: "NoAvailableCertificateException";
1211
- readonly $fault: "client";
1212
- Message?: string | undefined;
1213
- RequestId?: string | undefined;
1214
- constructor(
1215
- opts: __ExceptionOptionType<
1216
- NoAvailableCertificateException,
1217
- __BaseException
1218
- >
1219
- );
1220
- }
1221
708
  export interface EnableDirectoryDataAccessRequest {
1222
709
  DirectoryId: string | undefined;
1223
710
  }
@@ -1276,16 +763,6 @@ export interface ListIpRoutesRequest {
1276
763
  NextToken?: string | undefined;
1277
764
  Limit?: number | undefined;
1278
765
  }
1279
- export declare const IpRouteStatusMsg: {
1280
- readonly ADDED: "Added";
1281
- readonly ADDING: "Adding";
1282
- readonly ADD_FAILED: "AddFailed";
1283
- readonly REMOVED: "Removed";
1284
- readonly REMOVE_FAILED: "RemoveFailed";
1285
- readonly REMOVING: "Removing";
1286
- };
1287
- export type IpRouteStatusMsg =
1288
- (typeof IpRouteStatusMsg)[keyof typeof IpRouteStatusMsg];
1289
766
  export interface IpRouteInfo {
1290
767
  DirectoryId?: string | undefined;
1291
768
  CidrIp?: string | undefined;
@@ -1318,19 +795,6 @@ export interface ListSchemaExtensionsRequest {
1318
795
  NextToken?: string | undefined;
1319
796
  Limit?: number | undefined;
1320
797
  }
1321
- export declare const SchemaExtensionStatus: {
1322
- readonly CANCELLED: "Cancelled";
1323
- readonly CANCEL_IN_PROGRESS: "CancelInProgress";
1324
- readonly COMPLETED: "Completed";
1325
- readonly CREATING_SNAPSHOT: "CreatingSnapshot";
1326
- readonly FAILED: "Failed";
1327
- readonly INITIALIZING: "Initializing";
1328
- readonly REPLICATING: "Replicating";
1329
- readonly ROLLBACK_IN_PROGRESS: "RollbackInProgress";
1330
- readonly UPDATING_SCHEMA: "UpdatingSchema";
1331
- };
1332
- export type SchemaExtensionStatus =
1333
- (typeof SchemaExtensionStatus)[keyof typeof SchemaExtensionStatus];
1334
798
  export interface SchemaExtensionInfo {
1335
799
  DirectoryId?: string | undefined;
1336
800
  SchemaExtensionId?: string | undefined;
@@ -1353,15 +817,6 @@ export interface ListTagsForResourceResult {
1353
817
  Tags?: Tag[] | undefined;
1354
818
  NextToken?: string | undefined;
1355
819
  }
1356
- export declare class InvalidCertificateException extends __BaseException {
1357
- readonly name: "InvalidCertificateException";
1358
- readonly $fault: "client";
1359
- Message?: string | undefined;
1360
- RequestId?: string | undefined;
1361
- constructor(
1362
- opts: __ExceptionOptionType<InvalidCertificateException, __BaseException>
1363
- );
1364
- }
1365
820
  export interface RegisterCertificateRequest {
1366
821
  DirectoryId: string | undefined;
1367
822
  CertificateData: string | undefined;
@@ -1397,56 +852,16 @@ export interface RemoveTagsFromResourceRequest {
1397
852
  TagKeys: string[] | undefined;
1398
853
  }
1399
854
  export interface RemoveTagsFromResourceResult {}
1400
- export declare class InvalidPasswordException extends __BaseException {
1401
- readonly name: "InvalidPasswordException";
1402
- readonly $fault: "client";
1403
- Message?: string | undefined;
1404
- RequestId?: string | undefined;
1405
- constructor(
1406
- opts: __ExceptionOptionType<InvalidPasswordException, __BaseException>
1407
- );
1408
- }
1409
855
  export interface ResetUserPasswordRequest {
1410
856
  DirectoryId: string | undefined;
1411
857
  UserName: string | undefined;
1412
858
  NewPassword: string | undefined;
1413
859
  }
1414
860
  export interface ResetUserPasswordResult {}
1415
- export declare class UserDoesNotExistException extends __BaseException {
1416
- readonly name: "UserDoesNotExistException";
1417
- readonly $fault: "client";
1418
- Message?: string | undefined;
1419
- RequestId?: string | undefined;
1420
- constructor(
1421
- opts: __ExceptionOptionType<UserDoesNotExistException, __BaseException>
1422
- );
1423
- }
1424
861
  export interface RestoreFromSnapshotRequest {
1425
862
  SnapshotId: string | undefined;
1426
863
  }
1427
864
  export interface RestoreFromSnapshotResult {}
1428
- export declare class InvalidTargetException extends __BaseException {
1429
- readonly name: "InvalidTargetException";
1430
- readonly $fault: "client";
1431
- Message?: string | undefined;
1432
- RequestId?: string | undefined;
1433
- constructor(
1434
- opts: __ExceptionOptionType<InvalidTargetException, __BaseException>
1435
- );
1436
- }
1437
- export declare class OrganizationsException extends __BaseException {
1438
- readonly name: "OrganizationsException";
1439
- readonly $fault: "client";
1440
- Message?: string | undefined;
1441
- RequestId?: string | undefined;
1442
- constructor(
1443
- opts: __ExceptionOptionType<OrganizationsException, __BaseException>
1444
- );
1445
- }
1446
- export declare const TargetType: {
1447
- readonly ACCOUNT: "ACCOUNT";
1448
- };
1449
- export type TargetType = (typeof TargetType)[keyof typeof TargetType];
1450
865
  export interface ShareTarget {
1451
866
  Id: string | undefined;
1452
867
  Type: TargetType | undefined;
@@ -1460,15 +875,6 @@ export interface ShareDirectoryRequest {
1460
875
  export interface ShareDirectoryResult {
1461
876
  SharedDirectoryId?: string | undefined;
1462
877
  }
1463
- export declare class ShareLimitExceededException extends __BaseException {
1464
- readonly name: "ShareLimitExceededException";
1465
- readonly $fault: "client";
1466
- Message?: string | undefined;
1467
- RequestId?: string | undefined;
1468
- constructor(
1469
- opts: __ExceptionOptionType<ShareLimitExceededException, __BaseException>
1470
- );
1471
- }
1472
878
  export interface StartADAssessmentRequest {
1473
879
  AssessmentConfiguration?: AssessmentConfiguration | undefined;
1474
880
  DirectoryId?: string | undefined;
@@ -1537,18 +943,6 @@ export interface UpdateHybridADResult {
1537
943
  DirectoryId?: string | undefined;
1538
944
  AssessmentId?: string | undefined;
1539
945
  }
1540
- export declare class DomainControllerLimitExceededException extends __BaseException {
1541
- readonly name: "DomainControllerLimitExceededException";
1542
- readonly $fault: "client";
1543
- Message?: string | undefined;
1544
- RequestId?: string | undefined;
1545
- constructor(
1546
- opts: __ExceptionOptionType<
1547
- DomainControllerLimitExceededException,
1548
- __BaseException
1549
- >
1550
- );
1551
- }
1552
946
  export interface UpdateNumberOfDomainControllersRequest {
1553
947
  DirectoryId: string | undefined;
1554
948
  DesiredNumber: number | undefined;
@@ -1559,24 +953,6 @@ export interface UpdateRadiusRequest {
1559
953
  RadiusSettings: RadiusSettings | undefined;
1560
954
  }
1561
955
  export interface UpdateRadiusResult {}
1562
- export declare class IncompatibleSettingsException extends __BaseException {
1563
- readonly name: "IncompatibleSettingsException";
1564
- readonly $fault: "client";
1565
- Message?: string | undefined;
1566
- RequestId?: string | undefined;
1567
- constructor(
1568
- opts: __ExceptionOptionType<IncompatibleSettingsException, __BaseException>
1569
- );
1570
- }
1571
- export declare class UnsupportedSettingsException extends __BaseException {
1572
- readonly name: "UnsupportedSettingsException";
1573
- readonly $fault: "client";
1574
- Message?: string | undefined;
1575
- RequestId?: string | undefined;
1576
- constructor(
1577
- opts: __ExceptionOptionType<UnsupportedSettingsException, __BaseException>
1578
- );
1579
- }
1580
956
  export interface Setting {
1581
957
  Name: string | undefined;
1582
958
  Value: string | undefined;