@aws-sdk/client-directory-service 3.934.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.
@@ -545,7 +545,7 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.directoryservice";
545
545
  const n0 = "com.amazonaws.directoryservice";
546
546
  import { TypeRegistry } from "@smithy/core/schema";
547
547
  import { DirectoryServiceServiceException as __DirectoryServiceServiceException } from "../models/DirectoryServiceServiceException";
548
- import { AccessDeniedException as __AccessDeniedException, ADAssessmentLimitExceededException as __ADAssessmentLimitExceededException, AuthenticationFailedException as __AuthenticationFailedException, CertificateAlreadyExistsException as __CertificateAlreadyExistsException, CertificateDoesNotExistException as __CertificateDoesNotExistException, CertificateInUseException as __CertificateInUseException, CertificateLimitExceededException as __CertificateLimitExceededException, ClientException as __ClientException, DirectoryAlreadyInRegionException as __DirectoryAlreadyInRegionException, DirectoryAlreadySharedException as __DirectoryAlreadySharedException, DirectoryDoesNotExistException as __DirectoryDoesNotExistException, DirectoryInDesiredStateException as __DirectoryInDesiredStateException, DirectoryLimitExceededException as __DirectoryLimitExceededException, DirectoryNotSharedException as __DirectoryNotSharedException, DirectoryUnavailableException as __DirectoryUnavailableException, DisableAlreadyInProgressException as __DisableAlreadyInProgressException, DomainControllerLimitExceededException as __DomainControllerLimitExceededException, EnableAlreadyInProgressException as __EnableAlreadyInProgressException, EntityAlreadyExistsException as __EntityAlreadyExistsException, EntityDoesNotExistException as __EntityDoesNotExistException, IncompatibleSettingsException as __IncompatibleSettingsException, InsufficientPermissionsException as __InsufficientPermissionsException, InvalidCertificateException as __InvalidCertificateException, InvalidClientAuthStatusException as __InvalidClientAuthStatusException, InvalidLDAPSStatusException as __InvalidLDAPSStatusException, InvalidNextTokenException as __InvalidNextTokenException, InvalidParameterException as __InvalidParameterException, InvalidPasswordException as __InvalidPasswordException, InvalidTargetException as __InvalidTargetException, IpRouteLimitExceededException as __IpRouteLimitExceededException, NoAvailableCertificateException as __NoAvailableCertificateException, OrganizationsException as __OrganizationsException, RegionLimitExceededException as __RegionLimitExceededException, ServiceException as __ServiceException, ShareLimitExceededException as __ShareLimitExceededException, SnapshotLimitExceededException as __SnapshotLimitExceededException, TagLimitExceededException as __TagLimitExceededException, UnsupportedOperationException as __UnsupportedOperationException, UnsupportedSettingsException as __UnsupportedSettingsException, UserDoesNotExistException as __UserDoesNotExistException, } from "../models/index";
548
+ import { AccessDeniedException as __AccessDeniedException, ADAssessmentLimitExceededException as __ADAssessmentLimitExceededException, AuthenticationFailedException as __AuthenticationFailedException, CertificateAlreadyExistsException as __CertificateAlreadyExistsException, CertificateDoesNotExistException as __CertificateDoesNotExistException, CertificateInUseException as __CertificateInUseException, CertificateLimitExceededException as __CertificateLimitExceededException, ClientException as __ClientException, DirectoryAlreadyInRegionException as __DirectoryAlreadyInRegionException, DirectoryAlreadySharedException as __DirectoryAlreadySharedException, DirectoryDoesNotExistException as __DirectoryDoesNotExistException, DirectoryInDesiredStateException as __DirectoryInDesiredStateException, DirectoryLimitExceededException as __DirectoryLimitExceededException, DirectoryNotSharedException as __DirectoryNotSharedException, DirectoryUnavailableException as __DirectoryUnavailableException, DisableAlreadyInProgressException as __DisableAlreadyInProgressException, DomainControllerLimitExceededException as __DomainControllerLimitExceededException, EnableAlreadyInProgressException as __EnableAlreadyInProgressException, EntityAlreadyExistsException as __EntityAlreadyExistsException, EntityDoesNotExistException as __EntityDoesNotExistException, IncompatibleSettingsException as __IncompatibleSettingsException, InsufficientPermissionsException as __InsufficientPermissionsException, InvalidCertificateException as __InvalidCertificateException, InvalidClientAuthStatusException as __InvalidClientAuthStatusException, InvalidLDAPSStatusException as __InvalidLDAPSStatusException, InvalidNextTokenException as __InvalidNextTokenException, InvalidParameterException as __InvalidParameterException, InvalidPasswordException as __InvalidPasswordException, InvalidTargetException as __InvalidTargetException, IpRouteLimitExceededException as __IpRouteLimitExceededException, NoAvailableCertificateException as __NoAvailableCertificateException, OrganizationsException as __OrganizationsException, RegionLimitExceededException as __RegionLimitExceededException, ServiceException as __ServiceException, ShareLimitExceededException as __ShareLimitExceededException, SnapshotLimitExceededException as __SnapshotLimitExceededException, TagLimitExceededException as __TagLimitExceededException, UnsupportedOperationException as __UnsupportedOperationException, UnsupportedSettingsException as __UnsupportedSettingsException, UserDoesNotExistException as __UserDoesNotExistException, } from "../models/errors";
549
549
  export var ComputerPassword = [0, n0, _CP, 8, 0];
550
550
  export var ConnectPassword = [0, n0, _CPo, 8, 0];
551
551
  export var Notes = [0, n0, _N, 8, 0];
@@ -24,5 +24,7 @@ export type { DirectoryServiceExtensionConfiguration } from "./extensionConfigur
24
24
  export * from "./commands";
25
25
  export * from "./pagination";
26
26
  export * from "./waiters";
27
- export * from "./models";
27
+ export * from "./models/enums";
28
+ export * from "./models/errors";
29
+ export type * from "./models/models_0";
28
30
  export { DirectoryServiceServiceException } from "./models/DirectoryServiceServiceException";
@@ -0,0 +1,489 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ShareMethod: {
6
+ readonly HANDSHAKE: "HANDSHAKE";
7
+ readonly ORGANIZATIONS: "ORGANIZATIONS";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type ShareMethod = (typeof ShareMethod)[keyof typeof ShareMethod];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const ShareStatus: {
18
+ readonly DELETED: "Deleted";
19
+ readonly DELETING: "Deleting";
20
+ readonly PENDING_ACCEPTANCE: "PendingAcceptance";
21
+ readonly REJECTED: "Rejected";
22
+ readonly REJECTING: "Rejecting";
23
+ readonly REJECT_FAILED: "RejectFailed";
24
+ readonly SHARED: "Shared";
25
+ readonly SHARE_FAILED: "ShareFailed";
26
+ readonly SHARING: "Sharing";
27
+ };
28
+ /**
29
+ * @public
30
+ */
31
+ export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
32
+ /**
33
+ * @public
34
+ * @enum
35
+ */
36
+ export declare const CaEnrollmentPolicyStatus: {
37
+ readonly DISABLED: "Disabled";
38
+ readonly DISABLING: "Disabling";
39
+ readonly FAILED: "Failed";
40
+ readonly IMPAIRED: "Impaired";
41
+ readonly IN_PROGRESS: "InProgress";
42
+ readonly SUCCESS: "Success";
43
+ };
44
+ /**
45
+ * @public
46
+ */
47
+ export type CaEnrollmentPolicyStatus = (typeof CaEnrollmentPolicyStatus)[keyof typeof CaEnrollmentPolicyStatus];
48
+ /**
49
+ * @public
50
+ * @enum
51
+ */
52
+ export declare const CertificateState: {
53
+ readonly DEREGISTERED: "Deregistered";
54
+ readonly DEREGISTERING: "Deregistering";
55
+ readonly DEREGISTER_FAILED: "DeregisterFailed";
56
+ readonly REGISTERED: "Registered";
57
+ readonly REGISTERING: "Registering";
58
+ readonly REGISTER_FAILED: "RegisterFailed";
59
+ };
60
+ /**
61
+ * @public
62
+ */
63
+ export type CertificateState = (typeof CertificateState)[keyof typeof CertificateState];
64
+ /**
65
+ * @public
66
+ * @enum
67
+ */
68
+ export declare const CertificateType: {
69
+ readonly CLIENT_CERT_AUTH: "ClientCertAuth";
70
+ readonly CLIENT_LDAPS: "ClientLDAPS";
71
+ };
72
+ /**
73
+ * @public
74
+ */
75
+ export type CertificateType = (typeof CertificateType)[keyof typeof CertificateType];
76
+ /**
77
+ * @public
78
+ * @enum
79
+ */
80
+ export declare const ClientAuthenticationStatus: {
81
+ readonly DISABLED: "Disabled";
82
+ readonly ENABLED: "Enabled";
83
+ };
84
+ /**
85
+ * @public
86
+ */
87
+ export type ClientAuthenticationStatus = (typeof ClientAuthenticationStatus)[keyof typeof ClientAuthenticationStatus];
88
+ /**
89
+ * @public
90
+ * @enum
91
+ */
92
+ export declare const ClientAuthenticationType: {
93
+ readonly SMART_CARD: "SmartCard";
94
+ readonly SMART_CARD_OR_PASSWORD: "SmartCardOrPassword";
95
+ };
96
+ /**
97
+ * @public
98
+ */
99
+ export type ClientAuthenticationType = (typeof ClientAuthenticationType)[keyof typeof ClientAuthenticationType];
100
+ /**
101
+ * @public
102
+ * @enum
103
+ */
104
+ export declare const ReplicationScope: {
105
+ readonly Domain: "Domain";
106
+ };
107
+ /**
108
+ * @public
109
+ */
110
+ export type ReplicationScope = (typeof ReplicationScope)[keyof typeof ReplicationScope];
111
+ /**
112
+ * @public
113
+ * @enum
114
+ */
115
+ export declare const NetworkType: {
116
+ readonly DUAL_STACK: "Dual-stack";
117
+ readonly IPV4_ONLY: "IPv4";
118
+ readonly IPV6_ONLY: "IPv6";
119
+ };
120
+ /**
121
+ * @public
122
+ */
123
+ export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
124
+ /**
125
+ * @public
126
+ * @enum
127
+ */
128
+ export declare const DirectorySize: {
129
+ readonly LARGE: "Large";
130
+ readonly SMALL: "Small";
131
+ };
132
+ /**
133
+ * @public
134
+ */
135
+ export type DirectorySize = (typeof DirectorySize)[keyof typeof DirectorySize];
136
+ /**
137
+ * @public
138
+ * @enum
139
+ */
140
+ export declare const DirectoryEdition: {
141
+ readonly ENTERPRISE: "Enterprise";
142
+ readonly HYBRID: "Hybrid";
143
+ readonly STANDARD: "Standard";
144
+ };
145
+ /**
146
+ * @public
147
+ */
148
+ export type DirectoryEdition = (typeof DirectoryEdition)[keyof typeof DirectoryEdition];
149
+ /**
150
+ * @public
151
+ * @enum
152
+ */
153
+ export declare const SelectiveAuth: {
154
+ readonly DISABLED: "Disabled";
155
+ readonly ENABLED: "Enabled";
156
+ };
157
+ /**
158
+ * @public
159
+ */
160
+ export type SelectiveAuth = (typeof SelectiveAuth)[keyof typeof SelectiveAuth];
161
+ /**
162
+ * @public
163
+ * @enum
164
+ */
165
+ export declare const TrustDirection: {
166
+ readonly ONE_WAY_INCOMING: "One-Way: Incoming";
167
+ readonly ONE_WAY_OUTGOING: "One-Way: Outgoing";
168
+ readonly TWO_WAY: "Two-Way";
169
+ };
170
+ /**
171
+ * @public
172
+ */
173
+ export type TrustDirection = (typeof TrustDirection)[keyof typeof TrustDirection];
174
+ /**
175
+ * @public
176
+ * @enum
177
+ */
178
+ export declare const TrustType: {
179
+ readonly EXTERNAL: "External";
180
+ readonly FOREST: "Forest";
181
+ };
182
+ /**
183
+ * @public
184
+ */
185
+ export type TrustType = (typeof TrustType)[keyof typeof TrustType];
186
+ /**
187
+ * @public
188
+ * @enum
189
+ */
190
+ export declare const DataAccessStatus: {
191
+ readonly DISABLED: "Disabled";
192
+ readonly DISABLING: "Disabling";
193
+ readonly ENABLED: "Enabled";
194
+ readonly ENABLING: "Enabling";
195
+ readonly FAILED: "Failed";
196
+ };
197
+ /**
198
+ * @public
199
+ */
200
+ export type DataAccessStatus = (typeof DataAccessStatus)[keyof typeof DataAccessStatus];
201
+ /**
202
+ * @public
203
+ * @enum
204
+ */
205
+ export declare const OSVersion: {
206
+ readonly VERSION_2012: "SERVER_2012";
207
+ readonly VERSION_2019: "SERVER_2019";
208
+ };
209
+ /**
210
+ * @public
211
+ */
212
+ export type OSVersion = (typeof OSVersion)[keyof typeof OSVersion];
213
+ /**
214
+ * @public
215
+ * @enum
216
+ */
217
+ export declare const RadiusAuthenticationProtocol: {
218
+ readonly CHAP: "CHAP";
219
+ readonly MSCHAPV1: "MS-CHAPv1";
220
+ readonly MSCHAPV2: "MS-CHAPv2";
221
+ readonly PAP: "PAP";
222
+ };
223
+ /**
224
+ * @public
225
+ */
226
+ export type RadiusAuthenticationProtocol = (typeof RadiusAuthenticationProtocol)[keyof typeof RadiusAuthenticationProtocol];
227
+ /**
228
+ * @public
229
+ * @enum
230
+ */
231
+ export declare const RadiusStatus: {
232
+ readonly COMPLETED: "Completed";
233
+ readonly CREATING: "Creating";
234
+ readonly FAILED: "Failed";
235
+ };
236
+ /**
237
+ * @public
238
+ */
239
+ export type RadiusStatus = (typeof RadiusStatus)[keyof typeof RadiusStatus];
240
+ /**
241
+ * @public
242
+ * @enum
243
+ */
244
+ export declare const DirectoryStage: {
245
+ readonly ACTIVE: "Active";
246
+ readonly CREATED: "Created";
247
+ readonly CREATING: "Creating";
248
+ readonly DELETED: "Deleted";
249
+ readonly DELETING: "Deleting";
250
+ readonly FAILED: "Failed";
251
+ readonly IMPAIRED: "Impaired";
252
+ readonly INOPERABLE: "Inoperable";
253
+ readonly REQUESTED: "Requested";
254
+ readonly RESTOREFAILED: "RestoreFailed";
255
+ readonly RESTORING: "Restoring";
256
+ readonly UPDATING: "Updating";
257
+ };
258
+ /**
259
+ * @public
260
+ */
261
+ export type DirectoryStage = (typeof DirectoryStage)[keyof typeof DirectoryStage];
262
+ /**
263
+ * @public
264
+ * @enum
265
+ */
266
+ export declare const DirectoryType: {
267
+ readonly AD_CONNECTOR: "ADConnector";
268
+ readonly MICROSOFT_AD: "MicrosoftAD";
269
+ readonly SHARED_MICROSOFT_AD: "SharedMicrosoftAD";
270
+ readonly SIMPLE_AD: "SimpleAD";
271
+ };
272
+ /**
273
+ * @public
274
+ */
275
+ export type DirectoryType = (typeof DirectoryType)[keyof typeof DirectoryType];
276
+ /**
277
+ * @public
278
+ * @enum
279
+ */
280
+ export declare const DomainControllerStatus: {
281
+ readonly ACTIVE: "Active";
282
+ readonly CREATING: "Creating";
283
+ readonly DELETED: "Deleted";
284
+ readonly DELETING: "Deleting";
285
+ readonly FAILED: "Failed";
286
+ readonly IMPAIRED: "Impaired";
287
+ readonly RESTORING: "Restoring";
288
+ readonly UPDATING: "Updating";
289
+ };
290
+ /**
291
+ * @public
292
+ */
293
+ export type DomainControllerStatus = (typeof DomainControllerStatus)[keyof typeof DomainControllerStatus];
294
+ /**
295
+ * @public
296
+ * @enum
297
+ */
298
+ export declare const TopicStatus: {
299
+ readonly DELETED: "Deleted";
300
+ readonly FAILED: "Failed";
301
+ readonly REGISTERED: "Registered";
302
+ readonly TOPIC_NOT_FOUND: "Topic not found";
303
+ };
304
+ /**
305
+ * @public
306
+ */
307
+ export type TopicStatus = (typeof TopicStatus)[keyof typeof TopicStatus];
308
+ /**
309
+ * @public
310
+ * @enum
311
+ */
312
+ export declare const HybridUpdateType: {
313
+ readonly HYBRID_ADMINISTRATOR_ACCOUNT: "HybridAdministratorAccount";
314
+ readonly SELF_MANAGED_INSTANCES: "SelfManagedInstances";
315
+ };
316
+ /**
317
+ * @public
318
+ */
319
+ export type HybridUpdateType = (typeof HybridUpdateType)[keyof typeof HybridUpdateType];
320
+ /**
321
+ * @public
322
+ * @enum
323
+ */
324
+ export declare const UpdateStatus: {
325
+ readonly UPDATED: "Updated";
326
+ readonly UPDATE_FAILED: "UpdateFailed";
327
+ readonly UPDATING: "Updating";
328
+ };
329
+ /**
330
+ * @public
331
+ */
332
+ export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
333
+ /**
334
+ * @public
335
+ * @enum
336
+ */
337
+ export declare const LDAPSType: {
338
+ readonly CLIENT: "Client";
339
+ };
340
+ /**
341
+ * @public
342
+ */
343
+ export type LDAPSType = (typeof LDAPSType)[keyof typeof LDAPSType];
344
+ /**
345
+ * @public
346
+ * @enum
347
+ */
348
+ export declare const LDAPSStatus: {
349
+ readonly DISABLED: "Disabled";
350
+ readonly ENABLED: "Enabled";
351
+ readonly ENABLE_FAILED: "EnableFailed";
352
+ readonly ENABLING: "Enabling";
353
+ };
354
+ /**
355
+ * @public
356
+ */
357
+ export type LDAPSStatus = (typeof LDAPSStatus)[keyof typeof LDAPSStatus];
358
+ /**
359
+ * @public
360
+ * @enum
361
+ */
362
+ export declare const RegionType: {
363
+ readonly ADDITIONAL: "Additional";
364
+ readonly PRIMARY: "Primary";
365
+ };
366
+ /**
367
+ * @public
368
+ */
369
+ export type RegionType = (typeof RegionType)[keyof typeof RegionType];
370
+ /**
371
+ * @public
372
+ * @enum
373
+ */
374
+ export declare const DirectoryConfigurationStatus: {
375
+ readonly DEFAULT: "Default";
376
+ readonly FAILED: "Failed";
377
+ readonly REQUESTED: "Requested";
378
+ readonly UPDATED: "Updated";
379
+ readonly UPDATING: "Updating";
380
+ };
381
+ /**
382
+ * @public
383
+ */
384
+ export type DirectoryConfigurationStatus = (typeof DirectoryConfigurationStatus)[keyof typeof DirectoryConfigurationStatus];
385
+ /**
386
+ * @public
387
+ * @enum
388
+ */
389
+ export declare const SnapshotStatus: {
390
+ readonly COMPLETED: "Completed";
391
+ readonly CREATING: "Creating";
392
+ readonly FAILED: "Failed";
393
+ };
394
+ /**
395
+ * @public
396
+ */
397
+ export type SnapshotStatus = (typeof SnapshotStatus)[keyof typeof SnapshotStatus];
398
+ /**
399
+ * @public
400
+ * @enum
401
+ */
402
+ export declare const SnapshotType: {
403
+ readonly AUTO: "Auto";
404
+ readonly MANUAL: "Manual";
405
+ };
406
+ /**
407
+ * @public
408
+ */
409
+ export type SnapshotType = (typeof SnapshotType)[keyof typeof SnapshotType];
410
+ /**
411
+ * @public
412
+ * @enum
413
+ */
414
+ export declare const TrustState: {
415
+ readonly CREATED: "Created";
416
+ readonly CREATING: "Creating";
417
+ readonly DELETED: "Deleted";
418
+ readonly DELETING: "Deleting";
419
+ readonly FAILED: "Failed";
420
+ readonly UPDATED: "Updated";
421
+ readonly UPDATE_FAILED: "UpdateFailed";
422
+ readonly UPDATING: "Updating";
423
+ readonly VERIFIED: "Verified";
424
+ readonly VERIFYING: "Verifying";
425
+ readonly VERIFY_FAILED: "VerifyFailed";
426
+ };
427
+ /**
428
+ * @public
429
+ */
430
+ export type TrustState = (typeof TrustState)[keyof typeof TrustState];
431
+ /**
432
+ * @public
433
+ * @enum
434
+ */
435
+ export declare const UpdateType: {
436
+ readonly NETWORK: "NETWORK";
437
+ readonly OS: "OS";
438
+ readonly SIZE: "SIZE";
439
+ };
440
+ /**
441
+ * @public
442
+ */
443
+ export type UpdateType = (typeof UpdateType)[keyof typeof UpdateType];
444
+ /**
445
+ * @public
446
+ * @enum
447
+ */
448
+ export declare const IpRouteStatusMsg: {
449
+ readonly ADDED: "Added";
450
+ readonly ADDING: "Adding";
451
+ readonly ADD_FAILED: "AddFailed";
452
+ readonly REMOVED: "Removed";
453
+ readonly REMOVE_FAILED: "RemoveFailed";
454
+ readonly REMOVING: "Removing";
455
+ };
456
+ /**
457
+ * @public
458
+ */
459
+ export type IpRouteStatusMsg = (typeof IpRouteStatusMsg)[keyof typeof IpRouteStatusMsg];
460
+ /**
461
+ * @public
462
+ * @enum
463
+ */
464
+ export declare const SchemaExtensionStatus: {
465
+ readonly CANCELLED: "Cancelled";
466
+ readonly CANCEL_IN_PROGRESS: "CancelInProgress";
467
+ readonly COMPLETED: "Completed";
468
+ readonly CREATING_SNAPSHOT: "CreatingSnapshot";
469
+ readonly FAILED: "Failed";
470
+ readonly INITIALIZING: "Initializing";
471
+ readonly REPLICATING: "Replicating";
472
+ readonly ROLLBACK_IN_PROGRESS: "RollbackInProgress";
473
+ readonly UPDATING_SCHEMA: "UpdatingSchema";
474
+ };
475
+ /**
476
+ * @public
477
+ */
478
+ export type SchemaExtensionStatus = (typeof SchemaExtensionStatus)[keyof typeof SchemaExtensionStatus];
479
+ /**
480
+ * @public
481
+ * @enum
482
+ */
483
+ export declare const TargetType: {
484
+ readonly ACCOUNT: "ACCOUNT";
485
+ };
486
+ /**
487
+ * @public
488
+ */
489
+ export type TargetType = (typeof TargetType)[keyof typeof TargetType];