@aws-sdk/client-directory-service 3.934.0 → 3.936.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +210 -209
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +209 -0
- package/dist-es/models/errors.js +641 -0
- package/dist-es/models/models_0.js +1 -850
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +489 -0
- package/dist-types/models/errors.d.ts +903 -0
- package/dist-types/models/models_0.d.ts +38 -1429
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +261 -0
- package/dist-types/ts3.4/models/errors.d.ts +400 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -661
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { DirectoryServiceServiceException as __BaseException } from "./DirectoryServiceServiceException";
|
|
1
|
+
import { CaEnrollmentPolicyStatus, CertificateState, CertificateType, ClientAuthenticationStatus, ClientAuthenticationType, DataAccessStatus, DirectoryConfigurationStatus, DirectoryEdition, DirectorySize, DirectoryStage, DirectoryType, DomainControllerStatus, HybridUpdateType, IpRouteStatusMsg, LDAPSStatus, LDAPSType, NetworkType, OSVersion, RadiusAuthenticationProtocol, RadiusStatus, RegionType, ReplicationScope, SchemaExtensionStatus, SelectiveAuth, ShareMethod, ShareStatus, SnapshotStatus, SnapshotType, TargetType, TopicStatus, TrustDirection, TrustState, TrustType, UpdateStatus, UpdateType } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* @public
|
|
5
4
|
*/
|
|
@@ -11,37 +10,6 @@ export interface AcceptSharedDirectoryRequest {
|
|
|
11
10
|
*/
|
|
12
11
|
SharedDirectoryId: string | undefined;
|
|
13
12
|
}
|
|
14
|
-
/**
|
|
15
|
-
* @public
|
|
16
|
-
* @enum
|
|
17
|
-
*/
|
|
18
|
-
export declare const ShareMethod: {
|
|
19
|
-
readonly HANDSHAKE: "HANDSHAKE";
|
|
20
|
-
readonly ORGANIZATIONS: "ORGANIZATIONS";
|
|
21
|
-
};
|
|
22
|
-
/**
|
|
23
|
-
* @public
|
|
24
|
-
*/
|
|
25
|
-
export type ShareMethod = (typeof ShareMethod)[keyof typeof ShareMethod];
|
|
26
|
-
/**
|
|
27
|
-
* @public
|
|
28
|
-
* @enum
|
|
29
|
-
*/
|
|
30
|
-
export declare const ShareStatus: {
|
|
31
|
-
readonly DELETED: "Deleted";
|
|
32
|
-
readonly DELETING: "Deleting";
|
|
33
|
-
readonly PENDING_ACCEPTANCE: "PendingAcceptance";
|
|
34
|
-
readonly REJECTED: "Rejected";
|
|
35
|
-
readonly REJECTING: "Rejecting";
|
|
36
|
-
readonly REJECT_FAILED: "RejectFailed";
|
|
37
|
-
readonly SHARED: "Shared";
|
|
38
|
-
readonly SHARE_FAILED: "ShareFailed";
|
|
39
|
-
readonly SHARING: "Sharing";
|
|
40
|
-
};
|
|
41
|
-
/**
|
|
42
|
-
* @public
|
|
43
|
-
*/
|
|
44
|
-
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
45
13
|
/**
|
|
46
14
|
* <p>Details about the shared directory in the directory owner account for which the share
|
|
47
15
|
* request in the directory consumer account has been accepted.</p>
|
|
@@ -111,168 +79,6 @@ export interface AcceptSharedDirectoryResult {
|
|
|
111
79
|
*/
|
|
112
80
|
SharedDirectory?: SharedDirectory | undefined;
|
|
113
81
|
}
|
|
114
|
-
/**
|
|
115
|
-
* <p>A client exception has occurred.</p>
|
|
116
|
-
* @public
|
|
117
|
-
*/
|
|
118
|
-
export declare class ClientException extends __BaseException {
|
|
119
|
-
readonly name: "ClientException";
|
|
120
|
-
readonly $fault: "client";
|
|
121
|
-
/**
|
|
122
|
-
* <p>The descriptive message for the exception.</p>
|
|
123
|
-
* @public
|
|
124
|
-
*/
|
|
125
|
-
Message?: string | undefined;
|
|
126
|
-
/**
|
|
127
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
128
|
-
* @public
|
|
129
|
-
*/
|
|
130
|
-
RequestId?: string | undefined;
|
|
131
|
-
/**
|
|
132
|
-
* @internal
|
|
133
|
-
*/
|
|
134
|
-
constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
|
|
135
|
-
}
|
|
136
|
-
/**
|
|
137
|
-
* <p>The specified directory has already been shared with this Amazon Web Services account.</p>
|
|
138
|
-
* @public
|
|
139
|
-
*/
|
|
140
|
-
export declare class DirectoryAlreadySharedException extends __BaseException {
|
|
141
|
-
readonly name: "DirectoryAlreadySharedException";
|
|
142
|
-
readonly $fault: "client";
|
|
143
|
-
/**
|
|
144
|
-
* <p>The descriptive message for the exception.</p>
|
|
145
|
-
* @public
|
|
146
|
-
*/
|
|
147
|
-
Message?: string | undefined;
|
|
148
|
-
/**
|
|
149
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
150
|
-
* @public
|
|
151
|
-
*/
|
|
152
|
-
RequestId?: string | undefined;
|
|
153
|
-
/**
|
|
154
|
-
* @internal
|
|
155
|
-
*/
|
|
156
|
-
constructor(opts: __ExceptionOptionType<DirectoryAlreadySharedException, __BaseException>);
|
|
157
|
-
}
|
|
158
|
-
/**
|
|
159
|
-
* <p>The specified entity could not be found.</p>
|
|
160
|
-
* @public
|
|
161
|
-
*/
|
|
162
|
-
export declare class EntityDoesNotExistException extends __BaseException {
|
|
163
|
-
readonly name: "EntityDoesNotExistException";
|
|
164
|
-
readonly $fault: "client";
|
|
165
|
-
/**
|
|
166
|
-
* <p>The descriptive message for the exception.</p>
|
|
167
|
-
* @public
|
|
168
|
-
*/
|
|
169
|
-
Message?: string | undefined;
|
|
170
|
-
/**
|
|
171
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
172
|
-
* @public
|
|
173
|
-
*/
|
|
174
|
-
RequestId?: string | undefined;
|
|
175
|
-
/**
|
|
176
|
-
* @internal
|
|
177
|
-
*/
|
|
178
|
-
constructor(opts: __ExceptionOptionType<EntityDoesNotExistException, __BaseException>);
|
|
179
|
-
}
|
|
180
|
-
/**
|
|
181
|
-
* <p>One or more parameters are not valid.</p>
|
|
182
|
-
* @public
|
|
183
|
-
*/
|
|
184
|
-
export declare class InvalidParameterException extends __BaseException {
|
|
185
|
-
readonly name: "InvalidParameterException";
|
|
186
|
-
readonly $fault: "client";
|
|
187
|
-
/**
|
|
188
|
-
* <p>The descriptive message for the exception.</p>
|
|
189
|
-
* @public
|
|
190
|
-
*/
|
|
191
|
-
Message?: string | undefined;
|
|
192
|
-
/**
|
|
193
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
194
|
-
* @public
|
|
195
|
-
*/
|
|
196
|
-
RequestId?: string | undefined;
|
|
197
|
-
/**
|
|
198
|
-
* @internal
|
|
199
|
-
*/
|
|
200
|
-
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
201
|
-
}
|
|
202
|
-
/**
|
|
203
|
-
* <p>An exception has occurred in Directory Service.</p>
|
|
204
|
-
* @public
|
|
205
|
-
*/
|
|
206
|
-
export declare class ServiceException extends __BaseException {
|
|
207
|
-
readonly name: "ServiceException";
|
|
208
|
-
readonly $fault: "server";
|
|
209
|
-
/**
|
|
210
|
-
* <p>The descriptive message for the exception.</p>
|
|
211
|
-
* @public
|
|
212
|
-
*/
|
|
213
|
-
Message?: string | undefined;
|
|
214
|
-
/**
|
|
215
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
216
|
-
* @public
|
|
217
|
-
*/
|
|
218
|
-
RequestId?: string | undefined;
|
|
219
|
-
/**
|
|
220
|
-
* @internal
|
|
221
|
-
*/
|
|
222
|
-
constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
|
|
223
|
-
}
|
|
224
|
-
/**
|
|
225
|
-
* <p>You do not have sufficient access to perform this action.</p>
|
|
226
|
-
* @public
|
|
227
|
-
*/
|
|
228
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
229
|
-
readonly name: "AccessDeniedException";
|
|
230
|
-
readonly $fault: "client";
|
|
231
|
-
/**
|
|
232
|
-
* <p>The descriptive message for the exception.</p>
|
|
233
|
-
* @public
|
|
234
|
-
*/
|
|
235
|
-
Message?: string | undefined;
|
|
236
|
-
/**
|
|
237
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
238
|
-
* @public
|
|
239
|
-
*/
|
|
240
|
-
RequestId?: string | undefined;
|
|
241
|
-
/**
|
|
242
|
-
* @internal
|
|
243
|
-
*/
|
|
244
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
245
|
-
}
|
|
246
|
-
/**
|
|
247
|
-
* <p>A directory assessment is automatically created when you create a hybrid directory.
|
|
248
|
-
* There are two types of assessments: <code>CUSTOMER</code> and <code>SYSTEM</code>. Your
|
|
249
|
-
* Amazon Web Services account has a limit of 100 <code>CUSTOMER</code> directory assessments.</p>
|
|
250
|
-
* <p>If you attempt to create a hybrid directory; and you already have 100
|
|
251
|
-
* <code>CUSTOMER</code> directory assessments;, you will encounter an error. Delete
|
|
252
|
-
* assessments to free up capacity before trying again.</p>
|
|
253
|
-
* <p>You can request an increase to your <code>CUSTOMER</code> directory assessment quota
|
|
254
|
-
* by contacting customer support or delete existing CUSTOMER directory assessments; to
|
|
255
|
-
* free up capacity.</p>
|
|
256
|
-
* @public
|
|
257
|
-
*/
|
|
258
|
-
export declare class ADAssessmentLimitExceededException extends __BaseException {
|
|
259
|
-
readonly name: "ADAssessmentLimitExceededException";
|
|
260
|
-
readonly $fault: "client";
|
|
261
|
-
/**
|
|
262
|
-
* <p>The descriptive message for the exception.</p>
|
|
263
|
-
* @public
|
|
264
|
-
*/
|
|
265
|
-
Message?: string | undefined;
|
|
266
|
-
/**
|
|
267
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
268
|
-
* @public
|
|
269
|
-
*/
|
|
270
|
-
RequestId?: string | undefined;
|
|
271
|
-
/**
|
|
272
|
-
* @internal
|
|
273
|
-
*/
|
|
274
|
-
constructor(opts: __ExceptionOptionType<ADAssessmentLimitExceededException, __BaseException>);
|
|
275
|
-
}
|
|
276
82
|
/**
|
|
277
83
|
* <p>Contains the IP address block. This is often the address block of the DNS server used
|
|
278
84
|
* for your self-managed domain. </p>
|
|
@@ -406,73 +212,6 @@ export interface AddIpRoutesRequest {
|
|
|
406
212
|
*/
|
|
407
213
|
export interface AddIpRoutesResult {
|
|
408
214
|
}
|
|
409
|
-
/**
|
|
410
|
-
* <p>The specified directory is unavailable.</p>
|
|
411
|
-
* @public
|
|
412
|
-
*/
|
|
413
|
-
export declare class DirectoryUnavailableException extends __BaseException {
|
|
414
|
-
readonly name: "DirectoryUnavailableException";
|
|
415
|
-
readonly $fault: "client";
|
|
416
|
-
/**
|
|
417
|
-
* <p>The descriptive message for the exception.</p>
|
|
418
|
-
* @public
|
|
419
|
-
*/
|
|
420
|
-
Message?: string | undefined;
|
|
421
|
-
/**
|
|
422
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
423
|
-
* @public
|
|
424
|
-
*/
|
|
425
|
-
RequestId?: string | undefined;
|
|
426
|
-
/**
|
|
427
|
-
* @internal
|
|
428
|
-
*/
|
|
429
|
-
constructor(opts: __ExceptionOptionType<DirectoryUnavailableException, __BaseException>);
|
|
430
|
-
}
|
|
431
|
-
/**
|
|
432
|
-
* <p>The specified entity already exists.</p>
|
|
433
|
-
* @public
|
|
434
|
-
*/
|
|
435
|
-
export declare class EntityAlreadyExistsException extends __BaseException {
|
|
436
|
-
readonly name: "EntityAlreadyExistsException";
|
|
437
|
-
readonly $fault: "client";
|
|
438
|
-
/**
|
|
439
|
-
* <p>The descriptive message for the exception.</p>
|
|
440
|
-
* @public
|
|
441
|
-
*/
|
|
442
|
-
Message?: string | undefined;
|
|
443
|
-
/**
|
|
444
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
445
|
-
* @public
|
|
446
|
-
*/
|
|
447
|
-
RequestId?: string | undefined;
|
|
448
|
-
/**
|
|
449
|
-
* @internal
|
|
450
|
-
*/
|
|
451
|
-
constructor(opts: __ExceptionOptionType<EntityAlreadyExistsException, __BaseException>);
|
|
452
|
-
}
|
|
453
|
-
/**
|
|
454
|
-
* <p>The maximum allowed number of IP addresses was exceeded. The default limit is 100 IP
|
|
455
|
-
* address blocks.</p>
|
|
456
|
-
* @public
|
|
457
|
-
*/
|
|
458
|
-
export declare class IpRouteLimitExceededException extends __BaseException {
|
|
459
|
-
readonly name: "IpRouteLimitExceededException";
|
|
460
|
-
readonly $fault: "client";
|
|
461
|
-
/**
|
|
462
|
-
* <p>The descriptive message for the exception.</p>
|
|
463
|
-
* @public
|
|
464
|
-
*/
|
|
465
|
-
Message?: string | undefined;
|
|
466
|
-
/**
|
|
467
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
468
|
-
* @public
|
|
469
|
-
*/
|
|
470
|
-
RequestId?: string | undefined;
|
|
471
|
-
/**
|
|
472
|
-
* @internal
|
|
473
|
-
*/
|
|
474
|
-
constructor(opts: __ExceptionOptionType<IpRouteLimitExceededException, __BaseException>);
|
|
475
|
-
}
|
|
476
215
|
/**
|
|
477
216
|
* <p>Contains VPC information for the <a>CreateDirectory</a>, <a>CreateMicrosoftAD</a>, or <a>CreateHybridAD</a> operation.</p>
|
|
478
217
|
* @public
|
|
@@ -517,96 +256,6 @@ export interface AddRegionRequest {
|
|
|
517
256
|
*/
|
|
518
257
|
export interface AddRegionResult {
|
|
519
258
|
}
|
|
520
|
-
/**
|
|
521
|
-
* <p>The Region you specified is the same Region where the Managed Microsoft AD directory was created.
|
|
522
|
-
* Specify a different Region and try again.</p>
|
|
523
|
-
* @public
|
|
524
|
-
*/
|
|
525
|
-
export declare class DirectoryAlreadyInRegionException extends __BaseException {
|
|
526
|
-
readonly name: "DirectoryAlreadyInRegionException";
|
|
527
|
-
readonly $fault: "client";
|
|
528
|
-
/**
|
|
529
|
-
* <p>The descriptive message for the exception.</p>
|
|
530
|
-
* @public
|
|
531
|
-
*/
|
|
532
|
-
Message?: string | undefined;
|
|
533
|
-
/**
|
|
534
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
535
|
-
* @public
|
|
536
|
-
*/
|
|
537
|
-
RequestId?: string | undefined;
|
|
538
|
-
/**
|
|
539
|
-
* @internal
|
|
540
|
-
*/
|
|
541
|
-
constructor(opts: __ExceptionOptionType<DirectoryAlreadyInRegionException, __BaseException>);
|
|
542
|
-
}
|
|
543
|
-
/**
|
|
544
|
-
* <p>The specified directory does not exist in the system.</p>
|
|
545
|
-
* @public
|
|
546
|
-
*/
|
|
547
|
-
export declare class DirectoryDoesNotExistException extends __BaseException {
|
|
548
|
-
readonly name: "DirectoryDoesNotExistException";
|
|
549
|
-
readonly $fault: "client";
|
|
550
|
-
/**
|
|
551
|
-
* <p>The descriptive message for the exception.</p>
|
|
552
|
-
* @public
|
|
553
|
-
*/
|
|
554
|
-
Message?: string | undefined;
|
|
555
|
-
/**
|
|
556
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
557
|
-
* @public
|
|
558
|
-
*/
|
|
559
|
-
RequestId?: string | undefined;
|
|
560
|
-
/**
|
|
561
|
-
* @internal
|
|
562
|
-
*/
|
|
563
|
-
constructor(opts: __ExceptionOptionType<DirectoryDoesNotExistException, __BaseException>);
|
|
564
|
-
}
|
|
565
|
-
/**
|
|
566
|
-
* <p>You have reached the limit for maximum number of simultaneous Region replications per
|
|
567
|
-
* directory.</p>
|
|
568
|
-
* @public
|
|
569
|
-
*/
|
|
570
|
-
export declare class RegionLimitExceededException extends __BaseException {
|
|
571
|
-
readonly name: "RegionLimitExceededException";
|
|
572
|
-
readonly $fault: "client";
|
|
573
|
-
/**
|
|
574
|
-
* <p>The descriptive message for the exception.</p>
|
|
575
|
-
* @public
|
|
576
|
-
*/
|
|
577
|
-
Message?: string | undefined;
|
|
578
|
-
/**
|
|
579
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
580
|
-
* @public
|
|
581
|
-
*/
|
|
582
|
-
RequestId?: string | undefined;
|
|
583
|
-
/**
|
|
584
|
-
* @internal
|
|
585
|
-
*/
|
|
586
|
-
constructor(opts: __ExceptionOptionType<RegionLimitExceededException, __BaseException>);
|
|
587
|
-
}
|
|
588
|
-
/**
|
|
589
|
-
* <p>The operation is not supported.</p>
|
|
590
|
-
* @public
|
|
591
|
-
*/
|
|
592
|
-
export declare class UnsupportedOperationException extends __BaseException {
|
|
593
|
-
readonly name: "UnsupportedOperationException";
|
|
594
|
-
readonly $fault: "client";
|
|
595
|
-
/**
|
|
596
|
-
* <p>The descriptive message for the exception.</p>
|
|
597
|
-
* @public
|
|
598
|
-
*/
|
|
599
|
-
Message?: string | undefined;
|
|
600
|
-
/**
|
|
601
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
602
|
-
* @public
|
|
603
|
-
*/
|
|
604
|
-
RequestId?: string | undefined;
|
|
605
|
-
/**
|
|
606
|
-
* @internal
|
|
607
|
-
*/
|
|
608
|
-
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
609
|
-
}
|
|
610
259
|
/**
|
|
611
260
|
* <p>Metadata assigned to a directory consisting of a key-value pair.</p>
|
|
612
261
|
* @public
|
|
@@ -648,28 +297,6 @@ export interface AddTagsToResourceRequest {
|
|
|
648
297
|
*/
|
|
649
298
|
export interface AddTagsToResourceResult {
|
|
650
299
|
}
|
|
651
|
-
/**
|
|
652
|
-
* <p>The maximum allowed number of tags was exceeded.</p>
|
|
653
|
-
* @public
|
|
654
|
-
*/
|
|
655
|
-
export declare class TagLimitExceededException extends __BaseException {
|
|
656
|
-
readonly name: "TagLimitExceededException";
|
|
657
|
-
readonly $fault: "client";
|
|
658
|
-
/**
|
|
659
|
-
* <p>The descriptive message for the exception.</p>
|
|
660
|
-
* @public
|
|
661
|
-
*/
|
|
662
|
-
Message?: string | undefined;
|
|
663
|
-
/**
|
|
664
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
665
|
-
* @public
|
|
666
|
-
*/
|
|
667
|
-
RequestId?: string | undefined;
|
|
668
|
-
/**
|
|
669
|
-
* @internal
|
|
670
|
-
*/
|
|
671
|
-
constructor(opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>);
|
|
672
|
-
}
|
|
673
300
|
/**
|
|
674
301
|
* <p>Contains detailed information about a directory assessment, including configuration
|
|
675
302
|
* parameters, status, and validation results.</p>
|
|
@@ -927,44 +554,6 @@ export interface Attribute {
|
|
|
927
554
|
*/
|
|
928
555
|
Value?: string | undefined;
|
|
929
556
|
}
|
|
930
|
-
/**
|
|
931
|
-
* <p>An authentication error occurred.</p>
|
|
932
|
-
* @public
|
|
933
|
-
*/
|
|
934
|
-
export declare class AuthenticationFailedException extends __BaseException {
|
|
935
|
-
readonly name: "AuthenticationFailedException";
|
|
936
|
-
readonly $fault: "client";
|
|
937
|
-
/**
|
|
938
|
-
* <p>The textual message for the exception.</p>
|
|
939
|
-
* @public
|
|
940
|
-
*/
|
|
941
|
-
Message?: string | undefined;
|
|
942
|
-
/**
|
|
943
|
-
* <p>The identifier of the request that caused the exception.</p>
|
|
944
|
-
* @public
|
|
945
|
-
*/
|
|
946
|
-
RequestId?: string | undefined;
|
|
947
|
-
/**
|
|
948
|
-
* @internal
|
|
949
|
-
*/
|
|
950
|
-
constructor(opts: __ExceptionOptionType<AuthenticationFailedException, __BaseException>);
|
|
951
|
-
}
|
|
952
|
-
/**
|
|
953
|
-
* @public
|
|
954
|
-
* @enum
|
|
955
|
-
*/
|
|
956
|
-
export declare const CaEnrollmentPolicyStatus: {
|
|
957
|
-
readonly DISABLED: "Disabled";
|
|
958
|
-
readonly DISABLING: "Disabling";
|
|
959
|
-
readonly FAILED: "Failed";
|
|
960
|
-
readonly IMPAIRED: "Impaired";
|
|
961
|
-
readonly IN_PROGRESS: "InProgress";
|
|
962
|
-
readonly SUCCESS: "Success";
|
|
963
|
-
};
|
|
964
|
-
/**
|
|
965
|
-
* @public
|
|
966
|
-
*/
|
|
967
|
-
export type CaEnrollmentPolicyStatus = (typeof CaEnrollmentPolicyStatus)[keyof typeof CaEnrollmentPolicyStatus];
|
|
968
557
|
/**
|
|
969
558
|
* @public
|
|
970
559
|
*/
|
|
@@ -999,146 +588,35 @@ export interface ClientCertAuthSettings {
|
|
|
999
588
|
OCSPUrl?: string | undefined;
|
|
1000
589
|
}
|
|
1001
590
|
/**
|
|
1002
|
-
*
|
|
1003
|
-
* @enum
|
|
1004
|
-
*/
|
|
1005
|
-
export declare const CertificateState: {
|
|
1006
|
-
readonly DEREGISTERED: "Deregistered";
|
|
1007
|
-
readonly DEREGISTERING: "Deregistering";
|
|
1008
|
-
readonly DEREGISTER_FAILED: "DeregisterFailed";
|
|
1009
|
-
readonly REGISTERED: "Registered";
|
|
1010
|
-
readonly REGISTERING: "Registering";
|
|
1011
|
-
readonly REGISTER_FAILED: "RegisterFailed";
|
|
1012
|
-
};
|
|
1013
|
-
/**
|
|
1014
|
-
* @public
|
|
1015
|
-
*/
|
|
1016
|
-
export type CertificateState = (typeof CertificateState)[keyof typeof CertificateState];
|
|
1017
|
-
/**
|
|
1018
|
-
* @public
|
|
1019
|
-
* @enum
|
|
1020
|
-
*/
|
|
1021
|
-
export declare const CertificateType: {
|
|
1022
|
-
readonly CLIENT_CERT_AUTH: "ClientCertAuth";
|
|
1023
|
-
readonly CLIENT_LDAPS: "ClientLDAPS";
|
|
1024
|
-
};
|
|
1025
|
-
/**
|
|
1026
|
-
* @public
|
|
1027
|
-
*/
|
|
1028
|
-
export type CertificateType = (typeof CertificateType)[keyof typeof CertificateType];
|
|
1029
|
-
/**
|
|
1030
|
-
* <p>Information about the certificate.</p>
|
|
1031
|
-
* @public
|
|
1032
|
-
*/
|
|
1033
|
-
export interface Certificate {
|
|
1034
|
-
/**
|
|
1035
|
-
* <p>The identifier of the certificate.</p>
|
|
1036
|
-
* @public
|
|
1037
|
-
*/
|
|
1038
|
-
CertificateId?: string | undefined;
|
|
1039
|
-
/**
|
|
1040
|
-
* <p>The state of the certificate.</p>
|
|
1041
|
-
* @public
|
|
1042
|
-
*/
|
|
1043
|
-
State?: CertificateState | undefined;
|
|
1044
|
-
/**
|
|
1045
|
-
* <p>Describes a state change for the certificate.</p>
|
|
1046
|
-
* @public
|
|
1047
|
-
*/
|
|
1048
|
-
StateReason?: string | undefined;
|
|
1049
|
-
/**
|
|
1050
|
-
* <p>The common name for the certificate.</p>
|
|
1051
|
-
* @public
|
|
1052
|
-
*/
|
|
1053
|
-
CommonName?: string | undefined;
|
|
1054
|
-
/**
|
|
1055
|
-
* <p>The date and time that the certificate was registered.</p>
|
|
1056
|
-
* @public
|
|
1057
|
-
*/
|
|
1058
|
-
RegisteredDateTime?: Date | undefined;
|
|
1059
|
-
/**
|
|
1060
|
-
* <p>The date and time when the certificate will expire.</p>
|
|
1061
|
-
* @public
|
|
1062
|
-
*/
|
|
1063
|
-
ExpiryDateTime?: Date | undefined;
|
|
1064
|
-
/**
|
|
1065
|
-
* <p>The function that the registered certificate performs. Valid values include
|
|
1066
|
-
* <code>ClientLDAPS</code> or <code>ClientCertAuth</code>. The default value is
|
|
1067
|
-
* <code>ClientLDAPS</code>.</p>
|
|
1068
|
-
* @public
|
|
1069
|
-
*/
|
|
1070
|
-
Type?: CertificateType | undefined;
|
|
1071
|
-
/**
|
|
1072
|
-
* <p>A <code>ClientCertAuthSettings</code> object that contains client certificate
|
|
1073
|
-
* authentication settings.</p>
|
|
1074
|
-
* @public
|
|
1075
|
-
*/
|
|
1076
|
-
ClientCertAuthSettings?: ClientCertAuthSettings | undefined;
|
|
1077
|
-
}
|
|
1078
|
-
/**
|
|
1079
|
-
* <p>The certificate has already been registered into the system.</p>
|
|
1080
|
-
* @public
|
|
1081
|
-
*/
|
|
1082
|
-
export declare class CertificateAlreadyExistsException extends __BaseException {
|
|
1083
|
-
readonly name: "CertificateAlreadyExistsException";
|
|
1084
|
-
readonly $fault: "client";
|
|
1085
|
-
/**
|
|
1086
|
-
* <p>The descriptive message for the exception.</p>
|
|
1087
|
-
* @public
|
|
1088
|
-
*/
|
|
1089
|
-
Message?: string | undefined;
|
|
1090
|
-
/**
|
|
1091
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
1092
|
-
* @public
|
|
1093
|
-
*/
|
|
1094
|
-
RequestId?: string | undefined;
|
|
1095
|
-
/**
|
|
1096
|
-
* @internal
|
|
1097
|
-
*/
|
|
1098
|
-
constructor(opts: __ExceptionOptionType<CertificateAlreadyExistsException, __BaseException>);
|
|
1099
|
-
}
|
|
1100
|
-
/**
|
|
1101
|
-
* <p>The certificate is not present in the system for describe or deregister activities.</p>
|
|
1102
|
-
* @public
|
|
1103
|
-
*/
|
|
1104
|
-
export declare class CertificateDoesNotExistException extends __BaseException {
|
|
1105
|
-
readonly name: "CertificateDoesNotExistException";
|
|
1106
|
-
readonly $fault: "client";
|
|
1107
|
-
/**
|
|
1108
|
-
* <p>The descriptive message for the exception.</p>
|
|
1109
|
-
* @public
|
|
1110
|
-
*/
|
|
1111
|
-
Message?: string | undefined;
|
|
1112
|
-
/**
|
|
1113
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
1114
|
-
* @public
|
|
1115
|
-
*/
|
|
1116
|
-
RequestId?: string | undefined;
|
|
1117
|
-
/**
|
|
1118
|
-
* @internal
|
|
1119
|
-
*/
|
|
1120
|
-
constructor(opts: __ExceptionOptionType<CertificateDoesNotExistException, __BaseException>);
|
|
1121
|
-
}
|
|
1122
|
-
/**
|
|
1123
|
-
* <p>Contains general information about a certificate.</p>
|
|
591
|
+
* <p>Information about the certificate.</p>
|
|
1124
592
|
* @public
|
|
1125
593
|
*/
|
|
1126
|
-
export interface
|
|
594
|
+
export interface Certificate {
|
|
1127
595
|
/**
|
|
1128
596
|
* <p>The identifier of the certificate.</p>
|
|
1129
597
|
* @public
|
|
1130
598
|
*/
|
|
1131
599
|
CertificateId?: string | undefined;
|
|
600
|
+
/**
|
|
601
|
+
* <p>The state of the certificate.</p>
|
|
602
|
+
* @public
|
|
603
|
+
*/
|
|
604
|
+
State?: CertificateState | undefined;
|
|
605
|
+
/**
|
|
606
|
+
* <p>Describes a state change for the certificate.</p>
|
|
607
|
+
* @public
|
|
608
|
+
*/
|
|
609
|
+
StateReason?: string | undefined;
|
|
1132
610
|
/**
|
|
1133
611
|
* <p>The common name for the certificate.</p>
|
|
1134
612
|
* @public
|
|
1135
613
|
*/
|
|
1136
614
|
CommonName?: string | undefined;
|
|
1137
615
|
/**
|
|
1138
|
-
* <p>The
|
|
616
|
+
* <p>The date and time that the certificate was registered.</p>
|
|
1139
617
|
* @public
|
|
1140
618
|
*/
|
|
1141
|
-
|
|
619
|
+
RegisteredDateTime?: Date | undefined;
|
|
1142
620
|
/**
|
|
1143
621
|
* <p>The date and time when the certificate will expire.</p>
|
|
1144
622
|
* @public
|
|
@@ -1151,76 +629,46 @@ export interface CertificateInfo {
|
|
|
1151
629
|
* @public
|
|
1152
630
|
*/
|
|
1153
631
|
Type?: CertificateType | undefined;
|
|
632
|
+
/**
|
|
633
|
+
* <p>A <code>ClientCertAuthSettings</code> object that contains client certificate
|
|
634
|
+
* authentication settings.</p>
|
|
635
|
+
* @public
|
|
636
|
+
*/
|
|
637
|
+
ClientCertAuthSettings?: ClientCertAuthSettings | undefined;
|
|
1154
638
|
}
|
|
1155
639
|
/**
|
|
1156
|
-
* <p>
|
|
1157
|
-
* without disabling LDAP security.</p>
|
|
640
|
+
* <p>Contains general information about a certificate.</p>
|
|
1158
641
|
* @public
|
|
1159
642
|
*/
|
|
1160
|
-
export
|
|
1161
|
-
readonly name: "CertificateInUseException";
|
|
1162
|
-
readonly $fault: "client";
|
|
643
|
+
export interface CertificateInfo {
|
|
1163
644
|
/**
|
|
1164
|
-
* <p>The
|
|
645
|
+
* <p>The identifier of the certificate.</p>
|
|
1165
646
|
* @public
|
|
1166
647
|
*/
|
|
1167
|
-
|
|
648
|
+
CertificateId?: string | undefined;
|
|
1168
649
|
/**
|
|
1169
|
-
* <p>The
|
|
650
|
+
* <p>The common name for the certificate.</p>
|
|
1170
651
|
* @public
|
|
1171
652
|
*/
|
|
1172
|
-
|
|
1173
|
-
/**
|
|
1174
|
-
* @internal
|
|
1175
|
-
*/
|
|
1176
|
-
constructor(opts: __ExceptionOptionType<CertificateInUseException, __BaseException>);
|
|
1177
|
-
}
|
|
1178
|
-
/**
|
|
1179
|
-
* <p>The certificate could not be added because the certificate limit has been reached.</p>
|
|
1180
|
-
* @public
|
|
1181
|
-
*/
|
|
1182
|
-
export declare class CertificateLimitExceededException extends __BaseException {
|
|
1183
|
-
readonly name: "CertificateLimitExceededException";
|
|
1184
|
-
readonly $fault: "client";
|
|
653
|
+
CommonName?: string | undefined;
|
|
1185
654
|
/**
|
|
1186
|
-
* <p>The
|
|
655
|
+
* <p>The state of the certificate.</p>
|
|
1187
656
|
* @public
|
|
1188
657
|
*/
|
|
1189
|
-
|
|
658
|
+
State?: CertificateState | undefined;
|
|
1190
659
|
/**
|
|
1191
|
-
* <p>The
|
|
660
|
+
* <p>The date and time when the certificate will expire.</p>
|
|
1192
661
|
* @public
|
|
1193
662
|
*/
|
|
1194
|
-
|
|
663
|
+
ExpiryDateTime?: Date | undefined;
|
|
1195
664
|
/**
|
|
1196
|
-
*
|
|
665
|
+
* <p>The function that the registered certificate performs. Valid values include
|
|
666
|
+
* <code>ClientLDAPS</code> or <code>ClientCertAuth</code>. The default value is
|
|
667
|
+
* <code>ClientLDAPS</code>.</p>
|
|
668
|
+
* @public
|
|
1197
669
|
*/
|
|
1198
|
-
|
|
670
|
+
Type?: CertificateType | undefined;
|
|
1199
671
|
}
|
|
1200
|
-
/**
|
|
1201
|
-
* @public
|
|
1202
|
-
* @enum
|
|
1203
|
-
*/
|
|
1204
|
-
export declare const ClientAuthenticationStatus: {
|
|
1205
|
-
readonly DISABLED: "Disabled";
|
|
1206
|
-
readonly ENABLED: "Enabled";
|
|
1207
|
-
};
|
|
1208
|
-
/**
|
|
1209
|
-
* @public
|
|
1210
|
-
*/
|
|
1211
|
-
export type ClientAuthenticationStatus = (typeof ClientAuthenticationStatus)[keyof typeof ClientAuthenticationStatus];
|
|
1212
|
-
/**
|
|
1213
|
-
* @public
|
|
1214
|
-
* @enum
|
|
1215
|
-
*/
|
|
1216
|
-
export declare const ClientAuthenticationType: {
|
|
1217
|
-
readonly SMART_CARD: "SmartCard";
|
|
1218
|
-
readonly SMART_CARD_OR_PASSWORD: "SmartCardOrPassword";
|
|
1219
|
-
};
|
|
1220
|
-
/**
|
|
1221
|
-
* @public
|
|
1222
|
-
*/
|
|
1223
|
-
export type ClientAuthenticationType = (typeof ClientAuthenticationType)[keyof typeof ClientAuthenticationType];
|
|
1224
672
|
/**
|
|
1225
673
|
* <p>Contains information about a client authentication method for a directory.</p>
|
|
1226
674
|
* @public
|
|
@@ -1268,17 +716,6 @@ export interface Computer {
|
|
|
1268
716
|
*/
|
|
1269
717
|
ComputerAttributes?: Attribute[] | undefined;
|
|
1270
718
|
}
|
|
1271
|
-
/**
|
|
1272
|
-
* @public
|
|
1273
|
-
* @enum
|
|
1274
|
-
*/
|
|
1275
|
-
export declare const ReplicationScope: {
|
|
1276
|
-
readonly Domain: "Domain";
|
|
1277
|
-
};
|
|
1278
|
-
/**
|
|
1279
|
-
* @public
|
|
1280
|
-
*/
|
|
1281
|
-
export type ReplicationScope = (typeof ReplicationScope)[keyof typeof ReplicationScope];
|
|
1282
719
|
/**
|
|
1283
720
|
* <p>Points to a remote domain with which you are setting up a trust relationship.
|
|
1284
721
|
* Conditional forwarders are required in order to set up a trust relationship with another
|
|
@@ -1358,31 +795,6 @@ export interface DirectoryConnectSettings {
|
|
|
1358
795
|
*/
|
|
1359
796
|
CustomerUserName: string | undefined;
|
|
1360
797
|
}
|
|
1361
|
-
/**
|
|
1362
|
-
* @public
|
|
1363
|
-
* @enum
|
|
1364
|
-
*/
|
|
1365
|
-
export declare const NetworkType: {
|
|
1366
|
-
readonly DUAL_STACK: "Dual-stack";
|
|
1367
|
-
readonly IPV4_ONLY: "IPv4";
|
|
1368
|
-
readonly IPV6_ONLY: "IPv6";
|
|
1369
|
-
};
|
|
1370
|
-
/**
|
|
1371
|
-
* @public
|
|
1372
|
-
*/
|
|
1373
|
-
export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
|
|
1374
|
-
/**
|
|
1375
|
-
* @public
|
|
1376
|
-
* @enum
|
|
1377
|
-
*/
|
|
1378
|
-
export declare const DirectorySize: {
|
|
1379
|
-
readonly LARGE: "Large";
|
|
1380
|
-
readonly SMALL: "Small";
|
|
1381
|
-
};
|
|
1382
|
-
/**
|
|
1383
|
-
* @public
|
|
1384
|
-
*/
|
|
1385
|
-
export type DirectorySize = (typeof DirectorySize)[keyof typeof DirectorySize];
|
|
1386
798
|
/**
|
|
1387
799
|
* <p>Contains the inputs for the <a>ConnectDirectory</a> operation.</p>
|
|
1388
800
|
* @public
|
|
@@ -1443,30 +855,6 @@ export interface ConnectDirectoryResult {
|
|
|
1443
855
|
*/
|
|
1444
856
|
DirectoryId?: string | undefined;
|
|
1445
857
|
}
|
|
1446
|
-
/**
|
|
1447
|
-
* <p>The maximum number of directories in the region has been reached. You can use the
|
|
1448
|
-
* <a>GetDirectoryLimits</a> operation to determine your directory limits in
|
|
1449
|
-
* the region.</p>
|
|
1450
|
-
* @public
|
|
1451
|
-
*/
|
|
1452
|
-
export declare class DirectoryLimitExceededException extends __BaseException {
|
|
1453
|
-
readonly name: "DirectoryLimitExceededException";
|
|
1454
|
-
readonly $fault: "client";
|
|
1455
|
-
/**
|
|
1456
|
-
* <p>The descriptive message for the exception.</p>
|
|
1457
|
-
* @public
|
|
1458
|
-
*/
|
|
1459
|
-
Message?: string | undefined;
|
|
1460
|
-
/**
|
|
1461
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
1462
|
-
* @public
|
|
1463
|
-
*/
|
|
1464
|
-
RequestId?: string | undefined;
|
|
1465
|
-
/**
|
|
1466
|
-
* @internal
|
|
1467
|
-
*/
|
|
1468
|
-
constructor(opts: __ExceptionOptionType<DirectoryLimitExceededException, __BaseException>);
|
|
1469
|
-
}
|
|
1470
858
|
/**
|
|
1471
859
|
* <p>Contains the inputs for the <a>CreateAlias</a> operation.</p>
|
|
1472
860
|
* @public
|
|
@@ -1727,41 +1115,6 @@ export interface CreateLogSubscriptionRequest {
|
|
|
1727
1115
|
*/
|
|
1728
1116
|
export interface CreateLogSubscriptionResult {
|
|
1729
1117
|
}
|
|
1730
|
-
/**
|
|
1731
|
-
* <p>The account does not have sufficient permission to perform the operation.</p>
|
|
1732
|
-
* @public
|
|
1733
|
-
*/
|
|
1734
|
-
export declare class InsufficientPermissionsException extends __BaseException {
|
|
1735
|
-
readonly name: "InsufficientPermissionsException";
|
|
1736
|
-
readonly $fault: "client";
|
|
1737
|
-
/**
|
|
1738
|
-
* <p>The descriptive message for the exception.</p>
|
|
1739
|
-
* @public
|
|
1740
|
-
*/
|
|
1741
|
-
Message?: string | undefined;
|
|
1742
|
-
/**
|
|
1743
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
1744
|
-
* @public
|
|
1745
|
-
*/
|
|
1746
|
-
RequestId?: string | undefined;
|
|
1747
|
-
/**
|
|
1748
|
-
* @internal
|
|
1749
|
-
*/
|
|
1750
|
-
constructor(opts: __ExceptionOptionType<InsufficientPermissionsException, __BaseException>);
|
|
1751
|
-
}
|
|
1752
|
-
/**
|
|
1753
|
-
* @public
|
|
1754
|
-
* @enum
|
|
1755
|
-
*/
|
|
1756
|
-
export declare const DirectoryEdition: {
|
|
1757
|
-
readonly ENTERPRISE: "Enterprise";
|
|
1758
|
-
readonly HYBRID: "Hybrid";
|
|
1759
|
-
readonly STANDARD: "Standard";
|
|
1760
|
-
};
|
|
1761
|
-
/**
|
|
1762
|
-
* @public
|
|
1763
|
-
*/
|
|
1764
|
-
export type DirectoryEdition = (typeof DirectoryEdition)[keyof typeof DirectoryEdition];
|
|
1765
1118
|
/**
|
|
1766
1119
|
* <p>Creates an Managed Microsoft AD directory.</p>
|
|
1767
1120
|
* @public
|
|
@@ -1855,67 +1208,6 @@ export interface CreateSnapshotResult {
|
|
|
1855
1208
|
*/
|
|
1856
1209
|
SnapshotId?: string | undefined;
|
|
1857
1210
|
}
|
|
1858
|
-
/**
|
|
1859
|
-
* <p>The maximum number of manual snapshots for the directory has been reached. You can
|
|
1860
|
-
* use the <a>GetSnapshotLimits</a> operation to determine the snapshot limits
|
|
1861
|
-
* for a directory.</p>
|
|
1862
|
-
* @public
|
|
1863
|
-
*/
|
|
1864
|
-
export declare class SnapshotLimitExceededException extends __BaseException {
|
|
1865
|
-
readonly name: "SnapshotLimitExceededException";
|
|
1866
|
-
readonly $fault: "client";
|
|
1867
|
-
/**
|
|
1868
|
-
* <p>The descriptive message for the exception.</p>
|
|
1869
|
-
* @public
|
|
1870
|
-
*/
|
|
1871
|
-
Message?: string | undefined;
|
|
1872
|
-
/**
|
|
1873
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
1874
|
-
* @public
|
|
1875
|
-
*/
|
|
1876
|
-
RequestId?: string | undefined;
|
|
1877
|
-
/**
|
|
1878
|
-
* @internal
|
|
1879
|
-
*/
|
|
1880
|
-
constructor(opts: __ExceptionOptionType<SnapshotLimitExceededException, __BaseException>);
|
|
1881
|
-
}
|
|
1882
|
-
/**
|
|
1883
|
-
* @public
|
|
1884
|
-
* @enum
|
|
1885
|
-
*/
|
|
1886
|
-
export declare const SelectiveAuth: {
|
|
1887
|
-
readonly DISABLED: "Disabled";
|
|
1888
|
-
readonly ENABLED: "Enabled";
|
|
1889
|
-
};
|
|
1890
|
-
/**
|
|
1891
|
-
* @public
|
|
1892
|
-
*/
|
|
1893
|
-
export type SelectiveAuth = (typeof SelectiveAuth)[keyof typeof SelectiveAuth];
|
|
1894
|
-
/**
|
|
1895
|
-
* @public
|
|
1896
|
-
* @enum
|
|
1897
|
-
*/
|
|
1898
|
-
export declare const TrustDirection: {
|
|
1899
|
-
readonly ONE_WAY_INCOMING: "One-Way: Incoming";
|
|
1900
|
-
readonly ONE_WAY_OUTGOING: "One-Way: Outgoing";
|
|
1901
|
-
readonly TWO_WAY: "Two-Way";
|
|
1902
|
-
};
|
|
1903
|
-
/**
|
|
1904
|
-
* @public
|
|
1905
|
-
*/
|
|
1906
|
-
export type TrustDirection = (typeof TrustDirection)[keyof typeof TrustDirection];
|
|
1907
|
-
/**
|
|
1908
|
-
* @public
|
|
1909
|
-
* @enum
|
|
1910
|
-
*/
|
|
1911
|
-
export declare const TrustType: {
|
|
1912
|
-
readonly EXTERNAL: "External";
|
|
1913
|
-
readonly FOREST: "Forest";
|
|
1914
|
-
};
|
|
1915
|
-
/**
|
|
1916
|
-
* @public
|
|
1917
|
-
*/
|
|
1918
|
-
export type TrustType = (typeof TrustType)[keyof typeof TrustType];
|
|
1919
1211
|
/**
|
|
1920
1212
|
* <p>Directory Service for Microsoft Active Directory allows you to configure trust relationships. For
|
|
1921
1213
|
* example, you can establish a trust between your Managed Microsoft AD directory, and your existing
|
|
@@ -1981,21 +1273,6 @@ export interface CreateTrustResult {
|
|
|
1981
1273
|
*/
|
|
1982
1274
|
TrustId?: string | undefined;
|
|
1983
1275
|
}
|
|
1984
|
-
/**
|
|
1985
|
-
* @public
|
|
1986
|
-
* @enum
|
|
1987
|
-
*/
|
|
1988
|
-
export declare const DataAccessStatus: {
|
|
1989
|
-
readonly DISABLED: "Disabled";
|
|
1990
|
-
readonly DISABLING: "Disabling";
|
|
1991
|
-
readonly ENABLED: "Enabled";
|
|
1992
|
-
readonly ENABLING: "Enabling";
|
|
1993
|
-
readonly FAILED: "Failed";
|
|
1994
|
-
};
|
|
1995
|
-
/**
|
|
1996
|
-
* @public
|
|
1997
|
-
*/
|
|
1998
|
-
export type DataAccessStatus = (typeof DataAccessStatus)[keyof typeof DataAccessStatus];
|
|
1999
1276
|
/**
|
|
2000
1277
|
* @public
|
|
2001
1278
|
*/
|
|
@@ -2459,32 +1736,6 @@ export interface HybridSettingsDescription {
|
|
|
2459
1736
|
*/
|
|
2460
1737
|
SelfManagedInstanceIds?: string[] | undefined;
|
|
2461
1738
|
}
|
|
2462
|
-
/**
|
|
2463
|
-
* @public
|
|
2464
|
-
* @enum
|
|
2465
|
-
*/
|
|
2466
|
-
export declare const OSVersion: {
|
|
2467
|
-
readonly VERSION_2012: "SERVER_2012";
|
|
2468
|
-
readonly VERSION_2019: "SERVER_2019";
|
|
2469
|
-
};
|
|
2470
|
-
/**
|
|
2471
|
-
* @public
|
|
2472
|
-
*/
|
|
2473
|
-
export type OSVersion = (typeof OSVersion)[keyof typeof OSVersion];
|
|
2474
|
-
/**
|
|
2475
|
-
* @public
|
|
2476
|
-
* @enum
|
|
2477
|
-
*/
|
|
2478
|
-
export declare const RadiusAuthenticationProtocol: {
|
|
2479
|
-
readonly CHAP: "CHAP";
|
|
2480
|
-
readonly MSCHAPV1: "MS-CHAPv1";
|
|
2481
|
-
readonly MSCHAPV2: "MS-CHAPv2";
|
|
2482
|
-
readonly PAP: "PAP";
|
|
2483
|
-
};
|
|
2484
|
-
/**
|
|
2485
|
-
* @public
|
|
2486
|
-
*/
|
|
2487
|
-
export type RadiusAuthenticationProtocol = (typeof RadiusAuthenticationProtocol)[keyof typeof RadiusAuthenticationProtocol];
|
|
2488
1739
|
/**
|
|
2489
1740
|
* <p>Contains information about a Remote Authentication Dial In User Service (RADIUS)
|
|
2490
1741
|
* server.</p>
|
|
@@ -2541,19 +1792,6 @@ export interface RadiusSettings {
|
|
|
2541
1792
|
*/
|
|
2542
1793
|
UseSameUsername?: boolean | undefined;
|
|
2543
1794
|
}
|
|
2544
|
-
/**
|
|
2545
|
-
* @public
|
|
2546
|
-
* @enum
|
|
2547
|
-
*/
|
|
2548
|
-
export declare const RadiusStatus: {
|
|
2549
|
-
readonly COMPLETED: "Completed";
|
|
2550
|
-
readonly CREATING: "Creating";
|
|
2551
|
-
readonly FAILED: "Failed";
|
|
2552
|
-
};
|
|
2553
|
-
/**
|
|
2554
|
-
* @public
|
|
2555
|
-
*/
|
|
2556
|
-
export type RadiusStatus = (typeof RadiusStatus)[keyof typeof RadiusStatus];
|
|
2557
1795
|
/**
|
|
2558
1796
|
* <p>Contains information about the directory.</p>
|
|
2559
1797
|
* @public
|
|
@@ -2645,42 +1883,6 @@ export interface RegionsInfo {
|
|
|
2645
1883
|
*/
|
|
2646
1884
|
AdditionalRegions?: string[] | undefined;
|
|
2647
1885
|
}
|
|
2648
|
-
/**
|
|
2649
|
-
* @public
|
|
2650
|
-
* @enum
|
|
2651
|
-
*/
|
|
2652
|
-
export declare const DirectoryStage: {
|
|
2653
|
-
readonly ACTIVE: "Active";
|
|
2654
|
-
readonly CREATED: "Created";
|
|
2655
|
-
readonly CREATING: "Creating";
|
|
2656
|
-
readonly DELETED: "Deleted";
|
|
2657
|
-
readonly DELETING: "Deleting";
|
|
2658
|
-
readonly FAILED: "Failed";
|
|
2659
|
-
readonly IMPAIRED: "Impaired";
|
|
2660
|
-
readonly INOPERABLE: "Inoperable";
|
|
2661
|
-
readonly REQUESTED: "Requested";
|
|
2662
|
-
readonly RESTOREFAILED: "RestoreFailed";
|
|
2663
|
-
readonly RESTORING: "Restoring";
|
|
2664
|
-
readonly UPDATING: "Updating";
|
|
2665
|
-
};
|
|
2666
|
-
/**
|
|
2667
|
-
* @public
|
|
2668
|
-
*/
|
|
2669
|
-
export type DirectoryStage = (typeof DirectoryStage)[keyof typeof DirectoryStage];
|
|
2670
|
-
/**
|
|
2671
|
-
* @public
|
|
2672
|
-
* @enum
|
|
2673
|
-
*/
|
|
2674
|
-
export declare const DirectoryType: {
|
|
2675
|
-
readonly AD_CONNECTOR: "ADConnector";
|
|
2676
|
-
readonly MICROSOFT_AD: "MicrosoftAD";
|
|
2677
|
-
readonly SHARED_MICROSOFT_AD: "SharedMicrosoftAD";
|
|
2678
|
-
readonly SIMPLE_AD: "SimpleAD";
|
|
2679
|
-
};
|
|
2680
|
-
/**
|
|
2681
|
-
* @public
|
|
2682
|
-
*/
|
|
2683
|
-
export type DirectoryType = (typeof DirectoryType)[keyof typeof DirectoryType];
|
|
2684
1886
|
/**
|
|
2685
1887
|
* <p>Contains information about an Directory Service directory.</p>
|
|
2686
1888
|
* @public
|
|
@@ -2878,28 +2080,6 @@ export interface DescribeDirectoriesResult {
|
|
|
2878
2080
|
*/
|
|
2879
2081
|
NextToken?: string | undefined;
|
|
2880
2082
|
}
|
|
2881
|
-
/**
|
|
2882
|
-
* <p>The <code>NextToken</code> value is not valid.</p>
|
|
2883
|
-
* @public
|
|
2884
|
-
*/
|
|
2885
|
-
export declare class InvalidNextTokenException extends __BaseException {
|
|
2886
|
-
readonly name: "InvalidNextTokenException";
|
|
2887
|
-
readonly $fault: "client";
|
|
2888
|
-
/**
|
|
2889
|
-
* <p>The descriptive message for the exception.</p>
|
|
2890
|
-
* @public
|
|
2891
|
-
*/
|
|
2892
|
-
Message?: string | undefined;
|
|
2893
|
-
/**
|
|
2894
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
2895
|
-
* @public
|
|
2896
|
-
*/
|
|
2897
|
-
RequestId?: string | undefined;
|
|
2898
|
-
/**
|
|
2899
|
-
* @internal
|
|
2900
|
-
*/
|
|
2901
|
-
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
2902
|
-
}
|
|
2903
2083
|
/**
|
|
2904
2084
|
* @public
|
|
2905
2085
|
*/
|
|
@@ -2949,24 +2129,6 @@ export interface DescribeDomainControllersRequest {
|
|
|
2949
2129
|
*/
|
|
2950
2130
|
Limit?: number | undefined;
|
|
2951
2131
|
}
|
|
2952
|
-
/**
|
|
2953
|
-
* @public
|
|
2954
|
-
* @enum
|
|
2955
|
-
*/
|
|
2956
|
-
export declare const DomainControllerStatus: {
|
|
2957
|
-
readonly ACTIVE: "Active";
|
|
2958
|
-
readonly CREATING: "Creating";
|
|
2959
|
-
readonly DELETED: "Deleted";
|
|
2960
|
-
readonly DELETING: "Deleting";
|
|
2961
|
-
readonly FAILED: "Failed";
|
|
2962
|
-
readonly IMPAIRED: "Impaired";
|
|
2963
|
-
readonly RESTORING: "Restoring";
|
|
2964
|
-
readonly UPDATING: "Updating";
|
|
2965
|
-
};
|
|
2966
|
-
/**
|
|
2967
|
-
* @public
|
|
2968
|
-
*/
|
|
2969
|
-
export type DomainControllerStatus = (typeof DomainControllerStatus)[keyof typeof DomainControllerStatus];
|
|
2970
2132
|
/**
|
|
2971
2133
|
* <p>Contains information about the domain controllers for a specified directory.</p>
|
|
2972
2134
|
* @public
|
|
@@ -3065,20 +2227,6 @@ export interface DescribeEventTopicsRequest {
|
|
|
3065
2227
|
*/
|
|
3066
2228
|
TopicNames?: string[] | undefined;
|
|
3067
2229
|
}
|
|
3068
|
-
/**
|
|
3069
|
-
* @public
|
|
3070
|
-
* @enum
|
|
3071
|
-
*/
|
|
3072
|
-
export declare const TopicStatus: {
|
|
3073
|
-
readonly DELETED: "Deleted";
|
|
3074
|
-
readonly FAILED: "Failed";
|
|
3075
|
-
readonly REGISTERED: "Registered";
|
|
3076
|
-
readonly TOPIC_NOT_FOUND: "Topic not found";
|
|
3077
|
-
};
|
|
3078
|
-
/**
|
|
3079
|
-
* @public
|
|
3080
|
-
*/
|
|
3081
|
-
export type TopicStatus = (typeof TopicStatus)[keyof typeof TopicStatus];
|
|
3082
2230
|
/**
|
|
3083
2231
|
* <p>Information about Amazon SNS topic and Directory Service directory associations.</p>
|
|
3084
2232
|
* @public
|
|
@@ -3123,18 +2271,6 @@ export interface DescribeEventTopicsResult {
|
|
|
3123
2271
|
*/
|
|
3124
2272
|
EventTopics?: EventTopic[] | undefined;
|
|
3125
2273
|
}
|
|
3126
|
-
/**
|
|
3127
|
-
* @public
|
|
3128
|
-
* @enum
|
|
3129
|
-
*/
|
|
3130
|
-
export declare const HybridUpdateType: {
|
|
3131
|
-
readonly HYBRID_ADMINISTRATOR_ACCOUNT: "HybridAdministratorAccount";
|
|
3132
|
-
readonly SELF_MANAGED_INSTANCES: "SelfManagedInstances";
|
|
3133
|
-
};
|
|
3134
|
-
/**
|
|
3135
|
-
* @public
|
|
3136
|
-
*/
|
|
3137
|
-
export type HybridUpdateType = (typeof HybridUpdateType)[keyof typeof HybridUpdateType];
|
|
3138
2274
|
/**
|
|
3139
2275
|
* @public
|
|
3140
2276
|
*/
|
|
@@ -3177,19 +2313,6 @@ export interface HybridUpdateValue {
|
|
|
3177
2313
|
*/
|
|
3178
2314
|
DnsIps?: string[] | undefined;
|
|
3179
2315
|
}
|
|
3180
|
-
/**
|
|
3181
|
-
* @public
|
|
3182
|
-
* @enum
|
|
3183
|
-
*/
|
|
3184
|
-
export declare const UpdateStatus: {
|
|
3185
|
-
readonly UPDATED: "Updated";
|
|
3186
|
-
readonly UPDATE_FAILED: "UpdateFailed";
|
|
3187
|
-
readonly UPDATING: "Updating";
|
|
3188
|
-
};
|
|
3189
|
-
/**
|
|
3190
|
-
* @public
|
|
3191
|
-
*/
|
|
3192
|
-
export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
|
|
3193
2316
|
/**
|
|
3194
2317
|
* <p>Contains detailed information about a specific update activity for a hybrid directory
|
|
3195
2318
|
* component.</p>
|
|
@@ -3277,17 +2400,6 @@ export interface DescribeHybridADUpdateResult {
|
|
|
3277
2400
|
*/
|
|
3278
2401
|
NextToken?: string | undefined;
|
|
3279
2402
|
}
|
|
3280
|
-
/**
|
|
3281
|
-
* @public
|
|
3282
|
-
* @enum
|
|
3283
|
-
*/
|
|
3284
|
-
export declare const LDAPSType: {
|
|
3285
|
-
readonly CLIENT: "Client";
|
|
3286
|
-
};
|
|
3287
|
-
/**
|
|
3288
|
-
* @public
|
|
3289
|
-
*/
|
|
3290
|
-
export type LDAPSType = (typeof LDAPSType)[keyof typeof LDAPSType];
|
|
3291
2403
|
/**
|
|
3292
2404
|
* @public
|
|
3293
2405
|
*/
|
|
@@ -3314,20 +2426,6 @@ export interface DescribeLDAPSSettingsRequest {
|
|
|
3314
2426
|
*/
|
|
3315
2427
|
Limit?: number | undefined;
|
|
3316
2428
|
}
|
|
3317
|
-
/**
|
|
3318
|
-
* @public
|
|
3319
|
-
* @enum
|
|
3320
|
-
*/
|
|
3321
|
-
export declare const LDAPSStatus: {
|
|
3322
|
-
readonly DISABLED: "Disabled";
|
|
3323
|
-
readonly ENABLED: "Enabled";
|
|
3324
|
-
readonly ENABLE_FAILED: "EnableFailed";
|
|
3325
|
-
readonly ENABLING: "Enabling";
|
|
3326
|
-
};
|
|
3327
|
-
/**
|
|
3328
|
-
* @public
|
|
3329
|
-
*/
|
|
3330
|
-
export type LDAPSStatus = (typeof LDAPSStatus)[keyof typeof LDAPSStatus];
|
|
3331
2429
|
/**
|
|
3332
2430
|
* <p>Contains general information about the LDAPS settings.</p>
|
|
3333
2431
|
* @public
|
|
@@ -3386,18 +2484,6 @@ export interface DescribeRegionsRequest {
|
|
|
3386
2484
|
*/
|
|
3387
2485
|
NextToken?: string | undefined;
|
|
3388
2486
|
}
|
|
3389
|
-
/**
|
|
3390
|
-
* @public
|
|
3391
|
-
* @enum
|
|
3392
|
-
*/
|
|
3393
|
-
export declare const RegionType: {
|
|
3394
|
-
readonly ADDITIONAL: "Additional";
|
|
3395
|
-
readonly PRIMARY: "Primary";
|
|
3396
|
-
};
|
|
3397
|
-
/**
|
|
3398
|
-
* @public
|
|
3399
|
-
*/
|
|
3400
|
-
export type RegionType = (typeof RegionType)[keyof typeof RegionType];
|
|
3401
2487
|
/**
|
|
3402
2488
|
* <p>The replicated Region information for a directory.</p>
|
|
3403
2489
|
* @public
|
|
@@ -3467,21 +2553,6 @@ export interface DescribeRegionsResult {
|
|
|
3467
2553
|
*/
|
|
3468
2554
|
NextToken?: string | undefined;
|
|
3469
2555
|
}
|
|
3470
|
-
/**
|
|
3471
|
-
* @public
|
|
3472
|
-
* @enum
|
|
3473
|
-
*/
|
|
3474
|
-
export declare const DirectoryConfigurationStatus: {
|
|
3475
|
-
readonly DEFAULT: "Default";
|
|
3476
|
-
readonly FAILED: "Failed";
|
|
3477
|
-
readonly REQUESTED: "Requested";
|
|
3478
|
-
readonly UPDATED: "Updated";
|
|
3479
|
-
readonly UPDATING: "Updating";
|
|
3480
|
-
};
|
|
3481
|
-
/**
|
|
3482
|
-
* @public
|
|
3483
|
-
*/
|
|
3484
|
-
export type DirectoryConfigurationStatus = (typeof DirectoryConfigurationStatus)[keyof typeof DirectoryConfigurationStatus];
|
|
3485
2556
|
/**
|
|
3486
2557
|
* @public
|
|
3487
2558
|
*/
|
|
@@ -3671,33 +2742,8 @@ export interface DescribeSnapshotsRequest {
|
|
|
3671
2742
|
* <p>The maximum number of objects to return.</p>
|
|
3672
2743
|
* @public
|
|
3673
2744
|
*/
|
|
3674
|
-
Limit?: number | undefined;
|
|
3675
|
-
}
|
|
3676
|
-
/**
|
|
3677
|
-
* @public
|
|
3678
|
-
* @enum
|
|
3679
|
-
*/
|
|
3680
|
-
export declare const SnapshotStatus: {
|
|
3681
|
-
readonly COMPLETED: "Completed";
|
|
3682
|
-
readonly CREATING: "Creating";
|
|
3683
|
-
readonly FAILED: "Failed";
|
|
3684
|
-
};
|
|
3685
|
-
/**
|
|
3686
|
-
* @public
|
|
3687
|
-
*/
|
|
3688
|
-
export type SnapshotStatus = (typeof SnapshotStatus)[keyof typeof SnapshotStatus];
|
|
3689
|
-
/**
|
|
3690
|
-
* @public
|
|
3691
|
-
* @enum
|
|
3692
|
-
*/
|
|
3693
|
-
export declare const SnapshotType: {
|
|
3694
|
-
readonly AUTO: "Auto";
|
|
3695
|
-
readonly MANUAL: "Manual";
|
|
3696
|
-
};
|
|
3697
|
-
/**
|
|
3698
|
-
* @public
|
|
3699
|
-
*/
|
|
3700
|
-
export type SnapshotType = (typeof SnapshotType)[keyof typeof SnapshotType];
|
|
2745
|
+
Limit?: number | undefined;
|
|
2746
|
+
}
|
|
3701
2747
|
/**
|
|
3702
2748
|
* <p>Describes a directory snapshot.</p>
|
|
3703
2749
|
* @public
|
|
@@ -3788,27 +2834,6 @@ export interface DescribeTrustsRequest {
|
|
|
3788
2834
|
*/
|
|
3789
2835
|
Limit?: number | undefined;
|
|
3790
2836
|
}
|
|
3791
|
-
/**
|
|
3792
|
-
* @public
|
|
3793
|
-
* @enum
|
|
3794
|
-
*/
|
|
3795
|
-
export declare const TrustState: {
|
|
3796
|
-
readonly CREATED: "Created";
|
|
3797
|
-
readonly CREATING: "Creating";
|
|
3798
|
-
readonly DELETED: "Deleted";
|
|
3799
|
-
readonly DELETING: "Deleting";
|
|
3800
|
-
readonly FAILED: "Failed";
|
|
3801
|
-
readonly UPDATED: "Updated";
|
|
3802
|
-
readonly UPDATE_FAILED: "UpdateFailed";
|
|
3803
|
-
readonly UPDATING: "Updating";
|
|
3804
|
-
readonly VERIFIED: "Verified";
|
|
3805
|
-
readonly VERIFYING: "Verifying";
|
|
3806
|
-
readonly VERIFY_FAILED: "VerifyFailed";
|
|
3807
|
-
};
|
|
3808
|
-
/**
|
|
3809
|
-
* @public
|
|
3810
|
-
*/
|
|
3811
|
-
export type TrustState = (typeof TrustState)[keyof typeof TrustState];
|
|
3812
2837
|
/**
|
|
3813
2838
|
* <p>Describes a trust relationship between an Managed Microsoft AD directory and an external
|
|
3814
2839
|
* domain.</p>
|
|
@@ -3893,19 +2918,6 @@ export interface DescribeTrustsResult {
|
|
|
3893
2918
|
*/
|
|
3894
2919
|
NextToken?: string | undefined;
|
|
3895
2920
|
}
|
|
3896
|
-
/**
|
|
3897
|
-
* @public
|
|
3898
|
-
* @enum
|
|
3899
|
-
*/
|
|
3900
|
-
export declare const UpdateType: {
|
|
3901
|
-
readonly NETWORK: "NETWORK";
|
|
3902
|
-
readonly OS: "OS";
|
|
3903
|
-
readonly SIZE: "SIZE";
|
|
3904
|
-
};
|
|
3905
|
-
/**
|
|
3906
|
-
* @public
|
|
3907
|
-
*/
|
|
3908
|
-
export type UpdateType = (typeof UpdateType)[keyof typeof UpdateType];
|
|
3909
2921
|
/**
|
|
3910
2922
|
* @public
|
|
3911
2923
|
*/
|
|
@@ -4017,28 +3029,6 @@ export interface DescribeUpdateDirectoryResult {
|
|
|
4017
3029
|
*/
|
|
4018
3030
|
NextToken?: string | undefined;
|
|
4019
3031
|
}
|
|
4020
|
-
/**
|
|
4021
|
-
* <p> The directory is already updated to desired update type settings. </p>
|
|
4022
|
-
* @public
|
|
4023
|
-
*/
|
|
4024
|
-
export declare class DirectoryInDesiredStateException extends __BaseException {
|
|
4025
|
-
readonly name: "DirectoryInDesiredStateException";
|
|
4026
|
-
readonly $fault: "client";
|
|
4027
|
-
/**
|
|
4028
|
-
* <p>The descriptive message for the exception.</p>
|
|
4029
|
-
* @public
|
|
4030
|
-
*/
|
|
4031
|
-
Message?: string | undefined;
|
|
4032
|
-
/**
|
|
4033
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
4034
|
-
* @public
|
|
4035
|
-
*/
|
|
4036
|
-
RequestId?: string | undefined;
|
|
4037
|
-
/**
|
|
4038
|
-
* @internal
|
|
4039
|
-
*/
|
|
4040
|
-
constructor(opts: __ExceptionOptionType<DirectoryInDesiredStateException, __BaseException>);
|
|
4041
|
-
}
|
|
4042
3032
|
/**
|
|
4043
3033
|
* <p>Contains directory limit information for a Region.</p>
|
|
4044
3034
|
* @public
|
|
@@ -4090,50 +3080,6 @@ export interface DirectoryLimits {
|
|
|
4090
3080
|
*/
|
|
4091
3081
|
ConnectedDirectoriesLimitReached?: boolean | undefined;
|
|
4092
3082
|
}
|
|
4093
|
-
/**
|
|
4094
|
-
* <p>The specified directory has not been shared with this Amazon Web Services account.</p>
|
|
4095
|
-
* @public
|
|
4096
|
-
*/
|
|
4097
|
-
export declare class DirectoryNotSharedException extends __BaseException {
|
|
4098
|
-
readonly name: "DirectoryNotSharedException";
|
|
4099
|
-
readonly $fault: "client";
|
|
4100
|
-
/**
|
|
4101
|
-
* <p>The descriptive message for the exception.</p>
|
|
4102
|
-
* @public
|
|
4103
|
-
*/
|
|
4104
|
-
Message?: string | undefined;
|
|
4105
|
-
/**
|
|
4106
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
4107
|
-
* @public
|
|
4108
|
-
*/
|
|
4109
|
-
RequestId?: string | undefined;
|
|
4110
|
-
/**
|
|
4111
|
-
* @internal
|
|
4112
|
-
*/
|
|
4113
|
-
constructor(opts: __ExceptionOptionType<DirectoryNotSharedException, __BaseException>);
|
|
4114
|
-
}
|
|
4115
|
-
/**
|
|
4116
|
-
* <p>A disable operation for CA enrollment policy is already in progress for this directory.</p>
|
|
4117
|
-
* @public
|
|
4118
|
-
*/
|
|
4119
|
-
export declare class DisableAlreadyInProgressException extends __BaseException {
|
|
4120
|
-
readonly name: "DisableAlreadyInProgressException";
|
|
4121
|
-
readonly $fault: "client";
|
|
4122
|
-
/**
|
|
4123
|
-
* <p>The descriptive message for the exception.</p>
|
|
4124
|
-
* @public
|
|
4125
|
-
*/
|
|
4126
|
-
Message?: string | undefined;
|
|
4127
|
-
/**
|
|
4128
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
4129
|
-
* @public
|
|
4130
|
-
*/
|
|
4131
|
-
RequestId?: string | undefined;
|
|
4132
|
-
/**
|
|
4133
|
-
* @internal
|
|
4134
|
-
*/
|
|
4135
|
-
constructor(opts: __ExceptionOptionType<DisableAlreadyInProgressException, __BaseException>);
|
|
4136
|
-
}
|
|
4137
3083
|
/**
|
|
4138
3084
|
* <p>Contains the inputs for the <a>DisableCAEnrollmentPolicy</a> operation.</p>
|
|
4139
3085
|
* @public
|
|
@@ -4172,28 +3118,6 @@ export interface DisableClientAuthenticationRequest {
|
|
|
4172
3118
|
*/
|
|
4173
3119
|
export interface DisableClientAuthenticationResult {
|
|
4174
3120
|
}
|
|
4175
|
-
/**
|
|
4176
|
-
* <p>Client authentication is already enabled.</p>
|
|
4177
|
-
* @public
|
|
4178
|
-
*/
|
|
4179
|
-
export declare class InvalidClientAuthStatusException extends __BaseException {
|
|
4180
|
-
readonly name: "InvalidClientAuthStatusException";
|
|
4181
|
-
readonly $fault: "client";
|
|
4182
|
-
/**
|
|
4183
|
-
* <p>The descriptive message for the exception.</p>
|
|
4184
|
-
* @public
|
|
4185
|
-
*/
|
|
4186
|
-
Message?: string | undefined;
|
|
4187
|
-
/**
|
|
4188
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
4189
|
-
* @public
|
|
4190
|
-
*/
|
|
4191
|
-
RequestId?: string | undefined;
|
|
4192
|
-
/**
|
|
4193
|
-
* @internal
|
|
4194
|
-
*/
|
|
4195
|
-
constructor(opts: __ExceptionOptionType<InvalidClientAuthStatusException, __BaseException>);
|
|
4196
|
-
}
|
|
4197
3121
|
/**
|
|
4198
3122
|
* @public
|
|
4199
3123
|
*/
|
|
@@ -4230,29 +3154,6 @@ export interface DisableLDAPSRequest {
|
|
|
4230
3154
|
*/
|
|
4231
3155
|
export interface DisableLDAPSResult {
|
|
4232
3156
|
}
|
|
4233
|
-
/**
|
|
4234
|
-
* <p>The LDAP activities could not be performed because they are limited by the LDAPS
|
|
4235
|
-
* status.</p>
|
|
4236
|
-
* @public
|
|
4237
|
-
*/
|
|
4238
|
-
export declare class InvalidLDAPSStatusException extends __BaseException {
|
|
4239
|
-
readonly name: "InvalidLDAPSStatusException";
|
|
4240
|
-
readonly $fault: "client";
|
|
4241
|
-
/**
|
|
4242
|
-
* <p>The descriptive message for the exception.</p>
|
|
4243
|
-
* @public
|
|
4244
|
-
*/
|
|
4245
|
-
Message?: string | undefined;
|
|
4246
|
-
/**
|
|
4247
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
4248
|
-
* @public
|
|
4249
|
-
*/
|
|
4250
|
-
RequestId?: string | undefined;
|
|
4251
|
-
/**
|
|
4252
|
-
* @internal
|
|
4253
|
-
*/
|
|
4254
|
-
constructor(opts: __ExceptionOptionType<InvalidLDAPSStatusException, __BaseException>);
|
|
4255
|
-
}
|
|
4256
3157
|
/**
|
|
4257
3158
|
* <p>Contains the inputs for the <a>DisableRadius</a> operation.</p>
|
|
4258
3159
|
* @public
|
|
@@ -4306,28 +3207,6 @@ export interface DisableSsoRequest {
|
|
|
4306
3207
|
*/
|
|
4307
3208
|
export interface DisableSsoResult {
|
|
4308
3209
|
}
|
|
4309
|
-
/**
|
|
4310
|
-
* <p>An enable operation for CA enrollment policy is already in progress for this directory.</p>
|
|
4311
|
-
* @public
|
|
4312
|
-
*/
|
|
4313
|
-
export declare class EnableAlreadyInProgressException extends __BaseException {
|
|
4314
|
-
readonly name: "EnableAlreadyInProgressException";
|
|
4315
|
-
readonly $fault: "client";
|
|
4316
|
-
/**
|
|
4317
|
-
* <p>The descriptive message for the exception.</p>
|
|
4318
|
-
* @public
|
|
4319
|
-
*/
|
|
4320
|
-
Message?: string | undefined;
|
|
4321
|
-
/**
|
|
4322
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
4323
|
-
* @public
|
|
4324
|
-
*/
|
|
4325
|
-
RequestId?: string | undefined;
|
|
4326
|
-
/**
|
|
4327
|
-
* @internal
|
|
4328
|
-
*/
|
|
4329
|
-
constructor(opts: __ExceptionOptionType<EnableAlreadyInProgressException, __BaseException>);
|
|
4330
|
-
}
|
|
4331
3210
|
/**
|
|
4332
3211
|
* <p>Contains the inputs for the <a>EnableCAEnrollmentPolicy</a> operation.</p>
|
|
4333
3212
|
* @public
|
|
@@ -4379,29 +3258,6 @@ export interface EnableClientAuthenticationRequest {
|
|
|
4379
3258
|
*/
|
|
4380
3259
|
export interface EnableClientAuthenticationResult {
|
|
4381
3260
|
}
|
|
4382
|
-
/**
|
|
4383
|
-
* <p>Client authentication setup could not be completed because at least one valid certificate
|
|
4384
|
-
* must be registered in the system.</p>
|
|
4385
|
-
* @public
|
|
4386
|
-
*/
|
|
4387
|
-
export declare class NoAvailableCertificateException extends __BaseException {
|
|
4388
|
-
readonly name: "NoAvailableCertificateException";
|
|
4389
|
-
readonly $fault: "client";
|
|
4390
|
-
/**
|
|
4391
|
-
* <p>The descriptive message for the exception.</p>
|
|
4392
|
-
* @public
|
|
4393
|
-
*/
|
|
4394
|
-
Message?: string | undefined;
|
|
4395
|
-
/**
|
|
4396
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
4397
|
-
* @public
|
|
4398
|
-
*/
|
|
4399
|
-
RequestId?: string | undefined;
|
|
4400
|
-
/**
|
|
4401
|
-
* @internal
|
|
4402
|
-
*/
|
|
4403
|
-
constructor(opts: __ExceptionOptionType<NoAvailableCertificateException, __BaseException>);
|
|
4404
|
-
}
|
|
4405
3261
|
/**
|
|
4406
3262
|
* @public
|
|
4407
3263
|
*/
|
|
@@ -4660,22 +3516,6 @@ export interface ListIpRoutesRequest {
|
|
|
4660
3516
|
*/
|
|
4661
3517
|
Limit?: number | undefined;
|
|
4662
3518
|
}
|
|
4663
|
-
/**
|
|
4664
|
-
* @public
|
|
4665
|
-
* @enum
|
|
4666
|
-
*/
|
|
4667
|
-
export declare const IpRouteStatusMsg: {
|
|
4668
|
-
readonly ADDED: "Added";
|
|
4669
|
-
readonly ADDING: "Adding";
|
|
4670
|
-
readonly ADD_FAILED: "AddFailed";
|
|
4671
|
-
readonly REMOVED: "Removed";
|
|
4672
|
-
readonly REMOVE_FAILED: "RemoveFailed";
|
|
4673
|
-
readonly REMOVING: "Removing";
|
|
4674
|
-
};
|
|
4675
|
-
/**
|
|
4676
|
-
* @public
|
|
4677
|
-
*/
|
|
4678
|
-
export type IpRouteStatusMsg = (typeof IpRouteStatusMsg)[keyof typeof IpRouteStatusMsg];
|
|
4679
3519
|
/**
|
|
4680
3520
|
* <p>Information about one or more IP address blocks.</p>
|
|
4681
3521
|
* @public
|
|
@@ -4817,25 +3657,6 @@ export interface ListSchemaExtensionsRequest {
|
|
|
4817
3657
|
*/
|
|
4818
3658
|
Limit?: number | undefined;
|
|
4819
3659
|
}
|
|
4820
|
-
/**
|
|
4821
|
-
* @public
|
|
4822
|
-
* @enum
|
|
4823
|
-
*/
|
|
4824
|
-
export declare const SchemaExtensionStatus: {
|
|
4825
|
-
readonly CANCELLED: "Cancelled";
|
|
4826
|
-
readonly CANCEL_IN_PROGRESS: "CancelInProgress";
|
|
4827
|
-
readonly COMPLETED: "Completed";
|
|
4828
|
-
readonly CREATING_SNAPSHOT: "CreatingSnapshot";
|
|
4829
|
-
readonly FAILED: "Failed";
|
|
4830
|
-
readonly INITIALIZING: "Initializing";
|
|
4831
|
-
readonly REPLICATING: "Replicating";
|
|
4832
|
-
readonly ROLLBACK_IN_PROGRESS: "RollbackInProgress";
|
|
4833
|
-
readonly UPDATING_SCHEMA: "UpdatingSchema";
|
|
4834
|
-
};
|
|
4835
|
-
/**
|
|
4836
|
-
* @public
|
|
4837
|
-
*/
|
|
4838
|
-
export type SchemaExtensionStatus = (typeof SchemaExtensionStatus)[keyof typeof SchemaExtensionStatus];
|
|
4839
3660
|
/**
|
|
4840
3661
|
* <p>Information about a schema extension.</p>
|
|
4841
3662
|
* @public
|
|
@@ -4930,28 +3751,6 @@ export interface ListTagsForResourceResult {
|
|
|
4930
3751
|
*/
|
|
4931
3752
|
NextToken?: string | undefined;
|
|
4932
3753
|
}
|
|
4933
|
-
/**
|
|
4934
|
-
* <p>The certificate PEM that was provided has incorrect encoding.</p>
|
|
4935
|
-
* @public
|
|
4936
|
-
*/
|
|
4937
|
-
export declare class InvalidCertificateException extends __BaseException {
|
|
4938
|
-
readonly name: "InvalidCertificateException";
|
|
4939
|
-
readonly $fault: "client";
|
|
4940
|
-
/**
|
|
4941
|
-
* <p>The descriptive message for the exception.</p>
|
|
4942
|
-
* @public
|
|
4943
|
-
*/
|
|
4944
|
-
Message?: string | undefined;
|
|
4945
|
-
/**
|
|
4946
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
4947
|
-
* @public
|
|
4948
|
-
*/
|
|
4949
|
-
RequestId?: string | undefined;
|
|
4950
|
-
/**
|
|
4951
|
-
* @internal
|
|
4952
|
-
*/
|
|
4953
|
-
constructor(opts: __ExceptionOptionType<InvalidCertificateException, __BaseException>);
|
|
4954
|
-
}
|
|
4955
3754
|
/**
|
|
4956
3755
|
* @public
|
|
4957
3756
|
*/
|
|
@@ -5094,29 +3893,6 @@ export interface RemoveTagsFromResourceRequest {
|
|
|
5094
3893
|
*/
|
|
5095
3894
|
export interface RemoveTagsFromResourceResult {
|
|
5096
3895
|
}
|
|
5097
|
-
/**
|
|
5098
|
-
* <p>The new password provided by the user does not meet the password complexity
|
|
5099
|
-
* requirements defined in your directory.</p>
|
|
5100
|
-
* @public
|
|
5101
|
-
*/
|
|
5102
|
-
export declare class InvalidPasswordException extends __BaseException {
|
|
5103
|
-
readonly name: "InvalidPasswordException";
|
|
5104
|
-
readonly $fault: "client";
|
|
5105
|
-
/**
|
|
5106
|
-
* <p>The descriptive message for the exception.</p>
|
|
5107
|
-
* @public
|
|
5108
|
-
*/
|
|
5109
|
-
Message?: string | undefined;
|
|
5110
|
-
/**
|
|
5111
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
5112
|
-
* @public
|
|
5113
|
-
*/
|
|
5114
|
-
RequestId?: string | undefined;
|
|
5115
|
-
/**
|
|
5116
|
-
* @internal
|
|
5117
|
-
*/
|
|
5118
|
-
constructor(opts: __ExceptionOptionType<InvalidPasswordException, __BaseException>);
|
|
5119
|
-
}
|
|
5120
3896
|
/**
|
|
5121
3897
|
* @public
|
|
5122
3898
|
*/
|
|
@@ -5142,28 +3918,6 @@ export interface ResetUserPasswordRequest {
|
|
|
5142
3918
|
*/
|
|
5143
3919
|
export interface ResetUserPasswordResult {
|
|
5144
3920
|
}
|
|
5145
|
-
/**
|
|
5146
|
-
* <p>The user provided a username that does not exist in your directory.</p>
|
|
5147
|
-
* @public
|
|
5148
|
-
*/
|
|
5149
|
-
export declare class UserDoesNotExistException extends __BaseException {
|
|
5150
|
-
readonly name: "UserDoesNotExistException";
|
|
5151
|
-
readonly $fault: "client";
|
|
5152
|
-
/**
|
|
5153
|
-
* <p>The descriptive message for the exception.</p>
|
|
5154
|
-
* @public
|
|
5155
|
-
*/
|
|
5156
|
-
Message?: string | undefined;
|
|
5157
|
-
/**
|
|
5158
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
5159
|
-
* @public
|
|
5160
|
-
*/
|
|
5161
|
-
RequestId?: string | undefined;
|
|
5162
|
-
/**
|
|
5163
|
-
* @internal
|
|
5164
|
-
*/
|
|
5165
|
-
constructor(opts: __ExceptionOptionType<UserDoesNotExistException, __BaseException>);
|
|
5166
|
-
}
|
|
5167
3921
|
/**
|
|
5168
3922
|
* <p>An object representing the inputs for the <a>RestoreFromSnapshot</a> operation.</p>
|
|
5169
3923
|
* @public
|
|
@@ -5181,61 +3935,6 @@ export interface RestoreFromSnapshotRequest {
|
|
|
5181
3935
|
*/
|
|
5182
3936
|
export interface RestoreFromSnapshotResult {
|
|
5183
3937
|
}
|
|
5184
|
-
/**
|
|
5185
|
-
* <p>The specified shared target is not valid.</p>
|
|
5186
|
-
* @public
|
|
5187
|
-
*/
|
|
5188
|
-
export declare class InvalidTargetException extends __BaseException {
|
|
5189
|
-
readonly name: "InvalidTargetException";
|
|
5190
|
-
readonly $fault: "client";
|
|
5191
|
-
/**
|
|
5192
|
-
* <p>The descriptive message for the exception.</p>
|
|
5193
|
-
* @public
|
|
5194
|
-
*/
|
|
5195
|
-
Message?: string | undefined;
|
|
5196
|
-
/**
|
|
5197
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
5198
|
-
* @public
|
|
5199
|
-
*/
|
|
5200
|
-
RequestId?: string | undefined;
|
|
5201
|
-
/**
|
|
5202
|
-
* @internal
|
|
5203
|
-
*/
|
|
5204
|
-
constructor(opts: __ExceptionOptionType<InvalidTargetException, __BaseException>);
|
|
5205
|
-
}
|
|
5206
|
-
/**
|
|
5207
|
-
* <p>Exception encountered while trying to access your Amazon Web Services organization.</p>
|
|
5208
|
-
* @public
|
|
5209
|
-
*/
|
|
5210
|
-
export declare class OrganizationsException extends __BaseException {
|
|
5211
|
-
readonly name: "OrganizationsException";
|
|
5212
|
-
readonly $fault: "client";
|
|
5213
|
-
/**
|
|
5214
|
-
* <p>The descriptive message for the exception.</p>
|
|
5215
|
-
* @public
|
|
5216
|
-
*/
|
|
5217
|
-
Message?: string | undefined;
|
|
5218
|
-
/**
|
|
5219
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
5220
|
-
* @public
|
|
5221
|
-
*/
|
|
5222
|
-
RequestId?: string | undefined;
|
|
5223
|
-
/**
|
|
5224
|
-
* @internal
|
|
5225
|
-
*/
|
|
5226
|
-
constructor(opts: __ExceptionOptionType<OrganizationsException, __BaseException>);
|
|
5227
|
-
}
|
|
5228
|
-
/**
|
|
5229
|
-
* @public
|
|
5230
|
-
* @enum
|
|
5231
|
-
*/
|
|
5232
|
-
export declare const TargetType: {
|
|
5233
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
5234
|
-
};
|
|
5235
|
-
/**
|
|
5236
|
-
* @public
|
|
5237
|
-
*/
|
|
5238
|
-
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
5239
3938
|
/**
|
|
5240
3939
|
* <p>Identifier that contains details about the directory consumer account.</p>
|
|
5241
3940
|
* @public
|
|
@@ -5294,29 +3993,6 @@ export interface ShareDirectoryResult {
|
|
|
5294
3993
|
*/
|
|
5295
3994
|
SharedDirectoryId?: string | undefined;
|
|
5296
3995
|
}
|
|
5297
|
-
/**
|
|
5298
|
-
* <p>The maximum number of Amazon Web Services accounts that you can share with this directory has been
|
|
5299
|
-
* reached.</p>
|
|
5300
|
-
* @public
|
|
5301
|
-
*/
|
|
5302
|
-
export declare class ShareLimitExceededException extends __BaseException {
|
|
5303
|
-
readonly name: "ShareLimitExceededException";
|
|
5304
|
-
readonly $fault: "client";
|
|
5305
|
-
/**
|
|
5306
|
-
* <p>The descriptive message for the exception.</p>
|
|
5307
|
-
* @public
|
|
5308
|
-
*/
|
|
5309
|
-
Message?: string | undefined;
|
|
5310
|
-
/**
|
|
5311
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
5312
|
-
* @public
|
|
5313
|
-
*/
|
|
5314
|
-
RequestId?: string | undefined;
|
|
5315
|
-
/**
|
|
5316
|
-
* @internal
|
|
5317
|
-
*/
|
|
5318
|
-
constructor(opts: __ExceptionOptionType<ShareLimitExceededException, __BaseException>);
|
|
5319
|
-
}
|
|
5320
3996
|
/**
|
|
5321
3997
|
* @public
|
|
5322
3998
|
*/
|
|
@@ -5616,29 +4292,6 @@ export interface UpdateHybridADResult {
|
|
|
5616
4292
|
*/
|
|
5617
4293
|
AssessmentId?: string | undefined;
|
|
5618
4294
|
}
|
|
5619
|
-
/**
|
|
5620
|
-
* <p>The maximum allowed number of domain controllers per directory was exceeded. The
|
|
5621
|
-
* default limit per directory is 20 domain controllers.</p>
|
|
5622
|
-
* @public
|
|
5623
|
-
*/
|
|
5624
|
-
export declare class DomainControllerLimitExceededException extends __BaseException {
|
|
5625
|
-
readonly name: "DomainControllerLimitExceededException";
|
|
5626
|
-
readonly $fault: "client";
|
|
5627
|
-
/**
|
|
5628
|
-
* <p>The descriptive message for the exception.</p>
|
|
5629
|
-
* @public
|
|
5630
|
-
*/
|
|
5631
|
-
Message?: string | undefined;
|
|
5632
|
-
/**
|
|
5633
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
5634
|
-
* @public
|
|
5635
|
-
*/
|
|
5636
|
-
RequestId?: string | undefined;
|
|
5637
|
-
/**
|
|
5638
|
-
* @internal
|
|
5639
|
-
*/
|
|
5640
|
-
constructor(opts: __ExceptionOptionType<DomainControllerLimitExceededException, __BaseException>);
|
|
5641
|
-
}
|
|
5642
4295
|
/**
|
|
5643
4296
|
* @public
|
|
5644
4297
|
*/
|
|
@@ -5684,50 +4337,6 @@ export interface UpdateRadiusRequest {
|
|
|
5684
4337
|
*/
|
|
5685
4338
|
export interface UpdateRadiusResult {
|
|
5686
4339
|
}
|
|
5687
|
-
/**
|
|
5688
|
-
* <p>The specified directory setting is not compatible with other settings.</p>
|
|
5689
|
-
* @public
|
|
5690
|
-
*/
|
|
5691
|
-
export declare class IncompatibleSettingsException extends __BaseException {
|
|
5692
|
-
readonly name: "IncompatibleSettingsException";
|
|
5693
|
-
readonly $fault: "client";
|
|
5694
|
-
/**
|
|
5695
|
-
* <p>The descriptive message for the exception.</p>
|
|
5696
|
-
* @public
|
|
5697
|
-
*/
|
|
5698
|
-
Message?: string | undefined;
|
|
5699
|
-
/**
|
|
5700
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
5701
|
-
* @public
|
|
5702
|
-
*/
|
|
5703
|
-
RequestId?: string | undefined;
|
|
5704
|
-
/**
|
|
5705
|
-
* @internal
|
|
5706
|
-
*/
|
|
5707
|
-
constructor(opts: __ExceptionOptionType<IncompatibleSettingsException, __BaseException>);
|
|
5708
|
-
}
|
|
5709
|
-
/**
|
|
5710
|
-
* <p>The specified directory setting is not supported.</p>
|
|
5711
|
-
* @public
|
|
5712
|
-
*/
|
|
5713
|
-
export declare class UnsupportedSettingsException extends __BaseException {
|
|
5714
|
-
readonly name: "UnsupportedSettingsException";
|
|
5715
|
-
readonly $fault: "client";
|
|
5716
|
-
/**
|
|
5717
|
-
* <p>The descriptive message for the exception.</p>
|
|
5718
|
-
* @public
|
|
5719
|
-
*/
|
|
5720
|
-
Message?: string | undefined;
|
|
5721
|
-
/**
|
|
5722
|
-
* <p>The Amazon Web Services request identifier.</p>
|
|
5723
|
-
* @public
|
|
5724
|
-
*/
|
|
5725
|
-
RequestId?: string | undefined;
|
|
5726
|
-
/**
|
|
5727
|
-
* @internal
|
|
5728
|
-
*/
|
|
5729
|
-
constructor(opts: __ExceptionOptionType<UnsupportedSettingsException, __BaseException>);
|
|
5730
|
-
}
|
|
5731
4340
|
/**
|
|
5732
4341
|
* <p>Contains information about the configurable settings for a directory.</p>
|
|
5733
4342
|
* @public
|