@aws-sdk/client-directory-service 3.856.0 → 3.857.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.
Files changed (54) hide show
  1. package/README.md +63 -7
  2. package/dist-cjs/index.js +489 -7
  3. package/dist-es/DirectoryService.js +14 -0
  4. package/dist-es/commands/CreateHybridADCommand.js +22 -0
  5. package/dist-es/commands/DeleteADAssessmentCommand.js +22 -0
  6. package/dist-es/commands/DescribeADAssessmentCommand.js +22 -0
  7. package/dist-es/commands/DescribeHybridADUpdateCommand.js +22 -0
  8. package/dist-es/commands/ListADAssessmentsCommand.js +22 -0
  9. package/dist-es/commands/StartADAssessmentCommand.js +22 -0
  10. package/dist-es/commands/UpdateHybridADCommand.js +22 -0
  11. package/dist-es/commands/index.js +7 -0
  12. package/dist-es/index.js +1 -0
  13. package/dist-es/models/models_0.js +25 -5
  14. package/dist-es/pagination/ListADAssessmentsPaginator.js +4 -0
  15. package/dist-es/pagination/index.js +1 -0
  16. package/dist-es/protocols/Aws_json1_1.js +263 -1
  17. package/dist-es/waiters/index.js +1 -0
  18. package/dist-es/waiters/waitForHybridADUpdated.js +54 -0
  19. package/dist-types/DirectoryService.d.ts +51 -0
  20. package/dist-types/DirectoryServiceClient.d.ts +9 -2
  21. package/dist-types/commands/CreateHybridADCommand.d.ts +115 -0
  22. package/dist-types/commands/DeleteADAssessmentCommand.d.ts +91 -0
  23. package/dist-types/commands/DescribeADAssessmentCommand.d.ts +129 -0
  24. package/dist-types/commands/DescribeDirectoriesCommand.d.ts +8 -0
  25. package/dist-types/commands/DescribeHybridADUpdateCommand.d.ts +148 -0
  26. package/dist-types/commands/ListADAssessmentsCommand.d.ts +105 -0
  27. package/dist-types/commands/StartADAssessmentCommand.d.ts +132 -0
  28. package/dist-types/commands/UpdateHybridADCommand.d.ts +122 -0
  29. package/dist-types/commands/index.d.ts +7 -0
  30. package/dist-types/index.d.ts +1 -0
  31. package/dist-types/models/models_0.d.ts +689 -16
  32. package/dist-types/pagination/ListADAssessmentsPaginator.d.ts +7 -0
  33. package/dist-types/pagination/index.d.ts +1 -0
  34. package/dist-types/protocols/Aws_json1_1.d.ts +63 -0
  35. package/dist-types/ts3.4/DirectoryService.d.ts +121 -0
  36. package/dist-types/ts3.4/DirectoryServiceClient.d.ts +42 -0
  37. package/dist-types/ts3.4/commands/CreateHybridADCommand.d.ts +50 -0
  38. package/dist-types/ts3.4/commands/DeleteADAssessmentCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/DescribeADAssessmentCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/DescribeHybridADUpdateCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/ListADAssessmentsCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/StartADAssessmentCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/UpdateHybridADCommand.d.ts +50 -0
  44. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  45. package/dist-types/ts3.4/index.d.ts +1 -0
  46. package/dist-types/ts3.4/models/models_0.d.ts +158 -6
  47. package/dist-types/ts3.4/pagination/ListADAssessmentsPaginator.d.ts +11 -0
  48. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  49. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +84 -0
  50. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  51. package/dist-types/ts3.4/waiters/waitForHybridADUpdated.d.ts +11 -0
  52. package/dist-types/waiters/index.d.ts +1 -0
  53. package/dist-types/waiters/waitForHybridADUpdated.d.ts +14 -0
  54. package/package.json +12 -11
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListADAssessmentsCommandInput, ListADAssessmentsCommandOutput } from "../commands/ListADAssessmentsCommand";
3
+ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListADAssessments: (config: DirectoryServicePaginationConfiguration, input: ListADAssessmentsCommandInput, ...rest: any[]) => Paginator<ListADAssessmentsCommandOutput>;
@@ -8,6 +8,7 @@ export * from "./DescribeSnapshotsPaginator";
8
8
  export * from "./DescribeTrustsPaginator";
9
9
  export * from "./DescribeUpdateDirectoryPaginator";
10
10
  export * from "./Interfaces";
11
+ export * from "./ListADAssessmentsPaginator";
11
12
  export * from "./ListCertificatesPaginator";
12
13
  export * from "./ListIpRoutesPaginator";
13
14
  export * from "./ListLogSubscriptionsPaginator";
@@ -10,10 +10,12 @@ import { CreateAliasCommandInput, CreateAliasCommandOutput } from "../commands/C
10
10
  import { CreateComputerCommandInput, CreateComputerCommandOutput } from "../commands/CreateComputerCommand";
11
11
  import { CreateConditionalForwarderCommandInput, CreateConditionalForwarderCommandOutput } from "../commands/CreateConditionalForwarderCommand";
12
12
  import { CreateDirectoryCommandInput, CreateDirectoryCommandOutput } from "../commands/CreateDirectoryCommand";
13
+ import { CreateHybridADCommandInput, CreateHybridADCommandOutput } from "../commands/CreateHybridADCommand";
13
14
  import { CreateLogSubscriptionCommandInput, CreateLogSubscriptionCommandOutput } from "../commands/CreateLogSubscriptionCommand";
14
15
  import { CreateMicrosoftADCommandInput, CreateMicrosoftADCommandOutput } from "../commands/CreateMicrosoftADCommand";
15
16
  import { CreateSnapshotCommandInput, CreateSnapshotCommandOutput } from "../commands/CreateSnapshotCommand";
16
17
  import { CreateTrustCommandInput, CreateTrustCommandOutput } from "../commands/CreateTrustCommand";
18
+ import { DeleteADAssessmentCommandInput, DeleteADAssessmentCommandOutput } from "../commands/DeleteADAssessmentCommand";
17
19
  import { DeleteConditionalForwarderCommandInput, DeleteConditionalForwarderCommandOutput } from "../commands/DeleteConditionalForwarderCommand";
18
20
  import { DeleteDirectoryCommandInput, DeleteDirectoryCommandOutput } from "../commands/DeleteDirectoryCommand";
19
21
  import { DeleteLogSubscriptionCommandInput, DeleteLogSubscriptionCommandOutput } from "../commands/DeleteLogSubscriptionCommand";
@@ -21,6 +23,7 @@ import { DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput } from "../comm
21
23
  import { DeleteTrustCommandInput, DeleteTrustCommandOutput } from "../commands/DeleteTrustCommand";
22
24
  import { DeregisterCertificateCommandInput, DeregisterCertificateCommandOutput } from "../commands/DeregisterCertificateCommand";
23
25
  import { DeregisterEventTopicCommandInput, DeregisterEventTopicCommandOutput } from "../commands/DeregisterEventTopicCommand";
26
+ import { DescribeADAssessmentCommandInput, DescribeADAssessmentCommandOutput } from "../commands/DescribeADAssessmentCommand";
24
27
  import { DescribeCertificateCommandInput, DescribeCertificateCommandOutput } from "../commands/DescribeCertificateCommand";
25
28
  import { DescribeClientAuthenticationSettingsCommandInput, DescribeClientAuthenticationSettingsCommandOutput } from "../commands/DescribeClientAuthenticationSettingsCommand";
26
29
  import { DescribeConditionalForwardersCommandInput, DescribeConditionalForwardersCommandOutput } from "../commands/DescribeConditionalForwardersCommand";
@@ -28,6 +31,7 @@ import { DescribeDirectoriesCommandInput, DescribeDirectoriesCommandOutput } fro
28
31
  import { DescribeDirectoryDataAccessCommandInput, DescribeDirectoryDataAccessCommandOutput } from "../commands/DescribeDirectoryDataAccessCommand";
29
32
  import { DescribeDomainControllersCommandInput, DescribeDomainControllersCommandOutput } from "../commands/DescribeDomainControllersCommand";
30
33
  import { DescribeEventTopicsCommandInput, DescribeEventTopicsCommandOutput } from "../commands/DescribeEventTopicsCommand";
34
+ import { DescribeHybridADUpdateCommandInput, DescribeHybridADUpdateCommandOutput } from "../commands/DescribeHybridADUpdateCommand";
31
35
  import { DescribeLDAPSSettingsCommandInput, DescribeLDAPSSettingsCommandOutput } from "../commands/DescribeLDAPSSettingsCommand";
32
36
  import { DescribeRegionsCommandInput, DescribeRegionsCommandOutput } from "../commands/DescribeRegionsCommand";
33
37
  import { DescribeSettingsCommandInput, DescribeSettingsCommandOutput } from "../commands/DescribeSettingsCommand";
@@ -47,6 +51,7 @@ import { EnableRadiusCommandInput, EnableRadiusCommandOutput } from "../commands
47
51
  import { EnableSsoCommandInput, EnableSsoCommandOutput } from "../commands/EnableSsoCommand";
48
52
  import { GetDirectoryLimitsCommandInput, GetDirectoryLimitsCommandOutput } from "../commands/GetDirectoryLimitsCommand";
49
53
  import { GetSnapshotLimitsCommandInput, GetSnapshotLimitsCommandOutput } from "../commands/GetSnapshotLimitsCommand";
54
+ import { ListADAssessmentsCommandInput, ListADAssessmentsCommandOutput } from "../commands/ListADAssessmentsCommand";
50
55
  import { ListCertificatesCommandInput, ListCertificatesCommandOutput } from "../commands/ListCertificatesCommand";
51
56
  import { ListIpRoutesCommandInput, ListIpRoutesCommandOutput } from "../commands/ListIpRoutesCommand";
52
57
  import { ListLogSubscriptionsCommandInput, ListLogSubscriptionsCommandOutput } from "../commands/ListLogSubscriptionsCommand";
@@ -61,10 +66,12 @@ import { RemoveTagsFromResourceCommandInput, RemoveTagsFromResourceCommandOutput
61
66
  import { ResetUserPasswordCommandInput, ResetUserPasswordCommandOutput } from "../commands/ResetUserPasswordCommand";
62
67
  import { RestoreFromSnapshotCommandInput, RestoreFromSnapshotCommandOutput } from "../commands/RestoreFromSnapshotCommand";
63
68
  import { ShareDirectoryCommandInput, ShareDirectoryCommandOutput } from "../commands/ShareDirectoryCommand";
69
+ import { StartADAssessmentCommandInput, StartADAssessmentCommandOutput } from "../commands/StartADAssessmentCommand";
64
70
  import { StartSchemaExtensionCommandInput, StartSchemaExtensionCommandOutput } from "../commands/StartSchemaExtensionCommand";
65
71
  import { UnshareDirectoryCommandInput, UnshareDirectoryCommandOutput } from "../commands/UnshareDirectoryCommand";
66
72
  import { UpdateConditionalForwarderCommandInput, UpdateConditionalForwarderCommandOutput } from "../commands/UpdateConditionalForwarderCommand";
67
73
  import { UpdateDirectorySetupCommandInput, UpdateDirectorySetupCommandOutput } from "../commands/UpdateDirectorySetupCommand";
74
+ import { UpdateHybridADCommandInput, UpdateHybridADCommandOutput } from "../commands/UpdateHybridADCommand";
68
75
  import { UpdateNumberOfDomainControllersCommandInput, UpdateNumberOfDomainControllersCommandOutput } from "../commands/UpdateNumberOfDomainControllersCommand";
69
76
  import { UpdateRadiusCommandInput, UpdateRadiusCommandOutput } from "../commands/UpdateRadiusCommand";
70
77
  import { UpdateSettingsCommandInput, UpdateSettingsCommandOutput } from "../commands/UpdateSettingsCommand";
@@ -110,6 +117,10 @@ export declare const se_CreateConditionalForwarderCommand: (input: CreateConditi
110
117
  * serializeAws_json1_1CreateDirectoryCommand
111
118
  */
112
119
  export declare const se_CreateDirectoryCommand: (input: CreateDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
120
+ /**
121
+ * serializeAws_json1_1CreateHybridADCommand
122
+ */
123
+ export declare const se_CreateHybridADCommand: (input: CreateHybridADCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
124
  /**
114
125
  * serializeAws_json1_1CreateLogSubscriptionCommand
115
126
  */
@@ -126,6 +137,10 @@ export declare const se_CreateSnapshotCommand: (input: CreateSnapshotCommandInpu
126
137
  * serializeAws_json1_1CreateTrustCommand
127
138
  */
128
139
  export declare const se_CreateTrustCommand: (input: CreateTrustCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
140
+ /**
141
+ * serializeAws_json1_1DeleteADAssessmentCommand
142
+ */
143
+ export declare const se_DeleteADAssessmentCommand: (input: DeleteADAssessmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
129
144
  /**
130
145
  * serializeAws_json1_1DeleteConditionalForwarderCommand
131
146
  */
@@ -154,6 +169,10 @@ export declare const se_DeregisterCertificateCommand: (input: DeregisterCertific
154
169
  * serializeAws_json1_1DeregisterEventTopicCommand
155
170
  */
156
171
  export declare const se_DeregisterEventTopicCommand: (input: DeregisterEventTopicCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
172
+ /**
173
+ * serializeAws_json1_1DescribeADAssessmentCommand
174
+ */
175
+ export declare const se_DescribeADAssessmentCommand: (input: DescribeADAssessmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
157
176
  /**
158
177
  * serializeAws_json1_1DescribeCertificateCommand
159
178
  */
@@ -182,6 +201,10 @@ export declare const se_DescribeDomainControllersCommand: (input: DescribeDomain
182
201
  * serializeAws_json1_1DescribeEventTopicsCommand
183
202
  */
184
203
  export declare const se_DescribeEventTopicsCommand: (input: DescribeEventTopicsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
204
+ /**
205
+ * serializeAws_json1_1DescribeHybridADUpdateCommand
206
+ */
207
+ export declare const se_DescribeHybridADUpdateCommand: (input: DescribeHybridADUpdateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
185
208
  /**
186
209
  * serializeAws_json1_1DescribeLDAPSSettingsCommand
187
210
  */
@@ -258,6 +281,10 @@ export declare const se_GetDirectoryLimitsCommand: (input: GetDirectoryLimitsCom
258
281
  * serializeAws_json1_1GetSnapshotLimitsCommand
259
282
  */
260
283
  export declare const se_GetSnapshotLimitsCommand: (input: GetSnapshotLimitsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
284
+ /**
285
+ * serializeAws_json1_1ListADAssessmentsCommand
286
+ */
287
+ export declare const se_ListADAssessmentsCommand: (input: ListADAssessmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
261
288
  /**
262
289
  * serializeAws_json1_1ListCertificatesCommand
263
290
  */
@@ -314,6 +341,10 @@ export declare const se_RestoreFromSnapshotCommand: (input: RestoreFromSnapshotC
314
341
  * serializeAws_json1_1ShareDirectoryCommand
315
342
  */
316
343
  export declare const se_ShareDirectoryCommand: (input: ShareDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
344
+ /**
345
+ * serializeAws_json1_1StartADAssessmentCommand
346
+ */
347
+ export declare const se_StartADAssessmentCommand: (input: StartADAssessmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
317
348
  /**
318
349
  * serializeAws_json1_1StartSchemaExtensionCommand
319
350
  */
@@ -330,6 +361,10 @@ export declare const se_UpdateConditionalForwarderCommand: (input: UpdateConditi
330
361
  * serializeAws_json1_1UpdateDirectorySetupCommand
331
362
  */
332
363
  export declare const se_UpdateDirectorySetupCommand: (input: UpdateDirectorySetupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
364
+ /**
365
+ * serializeAws_json1_1UpdateHybridADCommand
366
+ */
367
+ export declare const se_UpdateHybridADCommand: (input: UpdateHybridADCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
333
368
  /**
334
369
  * serializeAws_json1_1UpdateNumberOfDomainControllersCommand
335
370
  */
@@ -390,6 +425,10 @@ export declare const de_CreateConditionalForwarderCommand: (output: __HttpRespon
390
425
  * deserializeAws_json1_1CreateDirectoryCommand
391
426
  */
392
427
  export declare const de_CreateDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDirectoryCommandOutput>;
428
+ /**
429
+ * deserializeAws_json1_1CreateHybridADCommand
430
+ */
431
+ export declare const de_CreateHybridADCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateHybridADCommandOutput>;
393
432
  /**
394
433
  * deserializeAws_json1_1CreateLogSubscriptionCommand
395
434
  */
@@ -406,6 +445,10 @@ export declare const de_CreateSnapshotCommand: (output: __HttpResponse, context:
406
445
  * deserializeAws_json1_1CreateTrustCommand
407
446
  */
408
447
  export declare const de_CreateTrustCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTrustCommandOutput>;
448
+ /**
449
+ * deserializeAws_json1_1DeleteADAssessmentCommand
450
+ */
451
+ export declare const de_DeleteADAssessmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteADAssessmentCommandOutput>;
409
452
  /**
410
453
  * deserializeAws_json1_1DeleteConditionalForwarderCommand
411
454
  */
@@ -434,6 +477,10 @@ export declare const de_DeregisterCertificateCommand: (output: __HttpResponse, c
434
477
  * deserializeAws_json1_1DeregisterEventTopicCommand
435
478
  */
436
479
  export declare const de_DeregisterEventTopicCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterEventTopicCommandOutput>;
480
+ /**
481
+ * deserializeAws_json1_1DescribeADAssessmentCommand
482
+ */
483
+ export declare const de_DescribeADAssessmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeADAssessmentCommandOutput>;
437
484
  /**
438
485
  * deserializeAws_json1_1DescribeCertificateCommand
439
486
  */
@@ -462,6 +509,10 @@ export declare const de_DescribeDomainControllersCommand: (output: __HttpRespons
462
509
  * deserializeAws_json1_1DescribeEventTopicsCommand
463
510
  */
464
511
  export declare const de_DescribeEventTopicsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventTopicsCommandOutput>;
512
+ /**
513
+ * deserializeAws_json1_1DescribeHybridADUpdateCommand
514
+ */
515
+ export declare const de_DescribeHybridADUpdateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeHybridADUpdateCommandOutput>;
465
516
  /**
466
517
  * deserializeAws_json1_1DescribeLDAPSSettingsCommand
467
518
  */
@@ -538,6 +589,10 @@ export declare const de_GetDirectoryLimitsCommand: (output: __HttpResponse, cont
538
589
  * deserializeAws_json1_1GetSnapshotLimitsCommand
539
590
  */
540
591
  export declare const de_GetSnapshotLimitsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSnapshotLimitsCommandOutput>;
592
+ /**
593
+ * deserializeAws_json1_1ListADAssessmentsCommand
594
+ */
595
+ export declare const de_ListADAssessmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListADAssessmentsCommandOutput>;
541
596
  /**
542
597
  * deserializeAws_json1_1ListCertificatesCommand
543
598
  */
@@ -594,6 +649,10 @@ export declare const de_RestoreFromSnapshotCommand: (output: __HttpResponse, con
594
649
  * deserializeAws_json1_1ShareDirectoryCommand
595
650
  */
596
651
  export declare const de_ShareDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ShareDirectoryCommandOutput>;
652
+ /**
653
+ * deserializeAws_json1_1StartADAssessmentCommand
654
+ */
655
+ export declare const de_StartADAssessmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartADAssessmentCommandOutput>;
597
656
  /**
598
657
  * deserializeAws_json1_1StartSchemaExtensionCommand
599
658
  */
@@ -610,6 +669,10 @@ export declare const de_UpdateConditionalForwarderCommand: (output: __HttpRespon
610
669
  * deserializeAws_json1_1UpdateDirectorySetupCommand
611
670
  */
612
671
  export declare const de_UpdateDirectorySetupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDirectorySetupCommandOutput>;
672
+ /**
673
+ * deserializeAws_json1_1UpdateHybridADCommand
674
+ */
675
+ export declare const de_UpdateHybridADCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateHybridADCommandOutput>;
613
676
  /**
614
677
  * deserializeAws_json1_1UpdateNumberOfDomainControllersCommand
615
678
  */
@@ -39,6 +39,10 @@ import {
39
39
  CreateDirectoryCommandInput,
40
40
  CreateDirectoryCommandOutput,
41
41
  } from "./commands/CreateDirectoryCommand";
42
+ import {
43
+ CreateHybridADCommandInput,
44
+ CreateHybridADCommandOutput,
45
+ } from "./commands/CreateHybridADCommand";
42
46
  import {
43
47
  CreateLogSubscriptionCommandInput,
44
48
  CreateLogSubscriptionCommandOutput,
@@ -55,6 +59,10 @@ import {
55
59
  CreateTrustCommandInput,
56
60
  CreateTrustCommandOutput,
57
61
  } from "./commands/CreateTrustCommand";
62
+ import {
63
+ DeleteADAssessmentCommandInput,
64
+ DeleteADAssessmentCommandOutput,
65
+ } from "./commands/DeleteADAssessmentCommand";
58
66
  import {
59
67
  DeleteConditionalForwarderCommandInput,
60
68
  DeleteConditionalForwarderCommandOutput,
@@ -83,6 +91,10 @@ import {
83
91
  DeregisterEventTopicCommandInput,
84
92
  DeregisterEventTopicCommandOutput,
85
93
  } from "./commands/DeregisterEventTopicCommand";
94
+ import {
95
+ DescribeADAssessmentCommandInput,
96
+ DescribeADAssessmentCommandOutput,
97
+ } from "./commands/DescribeADAssessmentCommand";
86
98
  import {
87
99
  DescribeCertificateCommandInput,
88
100
  DescribeCertificateCommandOutput,
@@ -111,6 +123,10 @@ import {
111
123
  DescribeEventTopicsCommandInput,
112
124
  DescribeEventTopicsCommandOutput,
113
125
  } from "./commands/DescribeEventTopicsCommand";
126
+ import {
127
+ DescribeHybridADUpdateCommandInput,
128
+ DescribeHybridADUpdateCommandOutput,
129
+ } from "./commands/DescribeHybridADUpdateCommand";
114
130
  import {
115
131
  DescribeLDAPSSettingsCommandInput,
116
132
  DescribeLDAPSSettingsCommandOutput,
@@ -187,6 +203,10 @@ import {
187
203
  GetSnapshotLimitsCommandInput,
188
204
  GetSnapshotLimitsCommandOutput,
189
205
  } from "./commands/GetSnapshotLimitsCommand";
206
+ import {
207
+ ListADAssessmentsCommandInput,
208
+ ListADAssessmentsCommandOutput,
209
+ } from "./commands/ListADAssessmentsCommand";
190
210
  import {
191
211
  ListCertificatesCommandInput,
192
212
  ListCertificatesCommandOutput,
@@ -243,6 +263,10 @@ import {
243
263
  ShareDirectoryCommandInput,
244
264
  ShareDirectoryCommandOutput,
245
265
  } from "./commands/ShareDirectoryCommand";
266
+ import {
267
+ StartADAssessmentCommandInput,
268
+ StartADAssessmentCommandOutput,
269
+ } from "./commands/StartADAssessmentCommand";
246
270
  import {
247
271
  StartSchemaExtensionCommandInput,
248
272
  StartSchemaExtensionCommandOutput,
@@ -259,6 +283,10 @@ import {
259
283
  UpdateDirectorySetupCommandInput,
260
284
  UpdateDirectorySetupCommandOutput,
261
285
  } from "./commands/UpdateDirectorySetupCommand";
286
+ import {
287
+ UpdateHybridADCommandInput,
288
+ UpdateHybridADCommandOutput,
289
+ } from "./commands/UpdateHybridADCommand";
262
290
  import {
263
291
  UpdateNumberOfDomainControllersCommandInput,
264
292
  UpdateNumberOfDomainControllersCommandOutput,
@@ -411,6 +439,19 @@ export interface DirectoryService {
411
439
  options: __HttpHandlerOptions,
412
440
  cb: (err: any, data?: CreateDirectoryCommandOutput) => void
413
441
  ): void;
442
+ createHybridAD(
443
+ args: CreateHybridADCommandInput,
444
+ options?: __HttpHandlerOptions
445
+ ): Promise<CreateHybridADCommandOutput>;
446
+ createHybridAD(
447
+ args: CreateHybridADCommandInput,
448
+ cb: (err: any, data?: CreateHybridADCommandOutput) => void
449
+ ): void;
450
+ createHybridAD(
451
+ args: CreateHybridADCommandInput,
452
+ options: __HttpHandlerOptions,
453
+ cb: (err: any, data?: CreateHybridADCommandOutput) => void
454
+ ): void;
414
455
  createLogSubscription(
415
456
  args: CreateLogSubscriptionCommandInput,
416
457
  options?: __HttpHandlerOptions
@@ -463,6 +504,19 @@ export interface DirectoryService {
463
504
  options: __HttpHandlerOptions,
464
505
  cb: (err: any, data?: CreateTrustCommandOutput) => void
465
506
  ): void;
507
+ deleteADAssessment(
508
+ args: DeleteADAssessmentCommandInput,
509
+ options?: __HttpHandlerOptions
510
+ ): Promise<DeleteADAssessmentCommandOutput>;
511
+ deleteADAssessment(
512
+ args: DeleteADAssessmentCommandInput,
513
+ cb: (err: any, data?: DeleteADAssessmentCommandOutput) => void
514
+ ): void;
515
+ deleteADAssessment(
516
+ args: DeleteADAssessmentCommandInput,
517
+ options: __HttpHandlerOptions,
518
+ cb: (err: any, data?: DeleteADAssessmentCommandOutput) => void
519
+ ): void;
466
520
  deleteConditionalForwarder(
467
521
  args: DeleteConditionalForwarderCommandInput,
468
522
  options?: __HttpHandlerOptions
@@ -554,6 +608,19 @@ export interface DirectoryService {
554
608
  options: __HttpHandlerOptions,
555
609
  cb: (err: any, data?: DeregisterEventTopicCommandOutput) => void
556
610
  ): void;
611
+ describeADAssessment(
612
+ args: DescribeADAssessmentCommandInput,
613
+ options?: __HttpHandlerOptions
614
+ ): Promise<DescribeADAssessmentCommandOutput>;
615
+ describeADAssessment(
616
+ args: DescribeADAssessmentCommandInput,
617
+ cb: (err: any, data?: DescribeADAssessmentCommandOutput) => void
618
+ ): void;
619
+ describeADAssessment(
620
+ args: DescribeADAssessmentCommandInput,
621
+ options: __HttpHandlerOptions,
622
+ cb: (err: any, data?: DescribeADAssessmentCommandOutput) => void
623
+ ): void;
557
624
  describeCertificate(
558
625
  args: DescribeCertificateCommandInput,
559
626
  options?: __HttpHandlerOptions
@@ -653,6 +720,19 @@ export interface DirectoryService {
653
720
  options: __HttpHandlerOptions,
654
721
  cb: (err: any, data?: DescribeEventTopicsCommandOutput) => void
655
722
  ): void;
723
+ describeHybridADUpdate(
724
+ args: DescribeHybridADUpdateCommandInput,
725
+ options?: __HttpHandlerOptions
726
+ ): Promise<DescribeHybridADUpdateCommandOutput>;
727
+ describeHybridADUpdate(
728
+ args: DescribeHybridADUpdateCommandInput,
729
+ cb: (err: any, data?: DescribeHybridADUpdateCommandOutput) => void
730
+ ): void;
731
+ describeHybridADUpdate(
732
+ args: DescribeHybridADUpdateCommandInput,
733
+ options: __HttpHandlerOptions,
734
+ cb: (err: any, data?: DescribeHybridADUpdateCommandOutput) => void
735
+ ): void;
656
736
  describeLDAPSSettings(
657
737
  args: DescribeLDAPSSettingsCommandInput,
658
738
  options?: __HttpHandlerOptions
@@ -903,6 +983,20 @@ export interface DirectoryService {
903
983
  options: __HttpHandlerOptions,
904
984
  cb: (err: any, data?: GetSnapshotLimitsCommandOutput) => void
905
985
  ): void;
986
+ listADAssessments(): Promise<ListADAssessmentsCommandOutput>;
987
+ listADAssessments(
988
+ args: ListADAssessmentsCommandInput,
989
+ options?: __HttpHandlerOptions
990
+ ): Promise<ListADAssessmentsCommandOutput>;
991
+ listADAssessments(
992
+ args: ListADAssessmentsCommandInput,
993
+ cb: (err: any, data?: ListADAssessmentsCommandOutput) => void
994
+ ): void;
995
+ listADAssessments(
996
+ args: ListADAssessmentsCommandInput,
997
+ options: __HttpHandlerOptions,
998
+ cb: (err: any, data?: ListADAssessmentsCommandOutput) => void
999
+ ): void;
906
1000
  listCertificates(
907
1001
  args: ListCertificatesCommandInput,
908
1002
  options?: __HttpHandlerOptions
@@ -1086,6 +1180,20 @@ export interface DirectoryService {
1086
1180
  options: __HttpHandlerOptions,
1087
1181
  cb: (err: any, data?: ShareDirectoryCommandOutput) => void
1088
1182
  ): void;
1183
+ startADAssessment(): Promise<StartADAssessmentCommandOutput>;
1184
+ startADAssessment(
1185
+ args: StartADAssessmentCommandInput,
1186
+ options?: __HttpHandlerOptions
1187
+ ): Promise<StartADAssessmentCommandOutput>;
1188
+ startADAssessment(
1189
+ args: StartADAssessmentCommandInput,
1190
+ cb: (err: any, data?: StartADAssessmentCommandOutput) => void
1191
+ ): void;
1192
+ startADAssessment(
1193
+ args: StartADAssessmentCommandInput,
1194
+ options: __HttpHandlerOptions,
1195
+ cb: (err: any, data?: StartADAssessmentCommandOutput) => void
1196
+ ): void;
1089
1197
  startSchemaExtension(
1090
1198
  args: StartSchemaExtensionCommandInput,
1091
1199
  options?: __HttpHandlerOptions
@@ -1138,6 +1246,19 @@ export interface DirectoryService {
1138
1246
  options: __HttpHandlerOptions,
1139
1247
  cb: (err: any, data?: UpdateDirectorySetupCommandOutput) => void
1140
1248
  ): void;
1249
+ updateHybridAD(
1250
+ args: UpdateHybridADCommandInput,
1251
+ options?: __HttpHandlerOptions
1252
+ ): Promise<UpdateHybridADCommandOutput>;
1253
+ updateHybridAD(
1254
+ args: UpdateHybridADCommandInput,
1255
+ cb: (err: any, data?: UpdateHybridADCommandOutput) => void
1256
+ ): void;
1257
+ updateHybridAD(
1258
+ args: UpdateHybridADCommandInput,
1259
+ options: __HttpHandlerOptions,
1260
+ cb: (err: any, data?: UpdateHybridADCommandOutput) => void
1261
+ ): void;
1141
1262
  updateNumberOfDomainControllers(
1142
1263
  args: UpdateNumberOfDomainControllersCommandInput,
1143
1264
  options?: __HttpHandlerOptions
@@ -85,6 +85,10 @@ import {
85
85
  CreateDirectoryCommandInput,
86
86
  CreateDirectoryCommandOutput,
87
87
  } from "./commands/CreateDirectoryCommand";
88
+ import {
89
+ CreateHybridADCommandInput,
90
+ CreateHybridADCommandOutput,
91
+ } from "./commands/CreateHybridADCommand";
88
92
  import {
89
93
  CreateLogSubscriptionCommandInput,
90
94
  CreateLogSubscriptionCommandOutput,
@@ -101,6 +105,10 @@ import {
101
105
  CreateTrustCommandInput,
102
106
  CreateTrustCommandOutput,
103
107
  } from "./commands/CreateTrustCommand";
108
+ import {
109
+ DeleteADAssessmentCommandInput,
110
+ DeleteADAssessmentCommandOutput,
111
+ } from "./commands/DeleteADAssessmentCommand";
104
112
  import {
105
113
  DeleteConditionalForwarderCommandInput,
106
114
  DeleteConditionalForwarderCommandOutput,
@@ -129,6 +137,10 @@ import {
129
137
  DeregisterEventTopicCommandInput,
130
138
  DeregisterEventTopicCommandOutput,
131
139
  } from "./commands/DeregisterEventTopicCommand";
140
+ import {
141
+ DescribeADAssessmentCommandInput,
142
+ DescribeADAssessmentCommandOutput,
143
+ } from "./commands/DescribeADAssessmentCommand";
132
144
  import {
133
145
  DescribeCertificateCommandInput,
134
146
  DescribeCertificateCommandOutput,
@@ -157,6 +169,10 @@ import {
157
169
  DescribeEventTopicsCommandInput,
158
170
  DescribeEventTopicsCommandOutput,
159
171
  } from "./commands/DescribeEventTopicsCommand";
172
+ import {
173
+ DescribeHybridADUpdateCommandInput,
174
+ DescribeHybridADUpdateCommandOutput,
175
+ } from "./commands/DescribeHybridADUpdateCommand";
160
176
  import {
161
177
  DescribeLDAPSSettingsCommandInput,
162
178
  DescribeLDAPSSettingsCommandOutput,
@@ -233,6 +249,10 @@ import {
233
249
  GetSnapshotLimitsCommandInput,
234
250
  GetSnapshotLimitsCommandOutput,
235
251
  } from "./commands/GetSnapshotLimitsCommand";
252
+ import {
253
+ ListADAssessmentsCommandInput,
254
+ ListADAssessmentsCommandOutput,
255
+ } from "./commands/ListADAssessmentsCommand";
236
256
  import {
237
257
  ListCertificatesCommandInput,
238
258
  ListCertificatesCommandOutput,
@@ -289,6 +309,10 @@ import {
289
309
  ShareDirectoryCommandInput,
290
310
  ShareDirectoryCommandOutput,
291
311
  } from "./commands/ShareDirectoryCommand";
312
+ import {
313
+ StartADAssessmentCommandInput,
314
+ StartADAssessmentCommandOutput,
315
+ } from "./commands/StartADAssessmentCommand";
292
316
  import {
293
317
  StartSchemaExtensionCommandInput,
294
318
  StartSchemaExtensionCommandOutput,
@@ -305,6 +329,10 @@ import {
305
329
  UpdateDirectorySetupCommandInput,
306
330
  UpdateDirectorySetupCommandOutput,
307
331
  } from "./commands/UpdateDirectorySetupCommand";
332
+ import {
333
+ UpdateHybridADCommandInput,
334
+ UpdateHybridADCommandOutput,
335
+ } from "./commands/UpdateHybridADCommand";
308
336
  import {
309
337
  UpdateNumberOfDomainControllersCommandInput,
310
338
  UpdateNumberOfDomainControllersCommandOutput,
@@ -343,10 +371,12 @@ export type ServiceInputTypes =
343
371
  | CreateComputerCommandInput
344
372
  | CreateConditionalForwarderCommandInput
345
373
  | CreateDirectoryCommandInput
374
+ | CreateHybridADCommandInput
346
375
  | CreateLogSubscriptionCommandInput
347
376
  | CreateMicrosoftADCommandInput
348
377
  | CreateSnapshotCommandInput
349
378
  | CreateTrustCommandInput
379
+ | DeleteADAssessmentCommandInput
350
380
  | DeleteConditionalForwarderCommandInput
351
381
  | DeleteDirectoryCommandInput
352
382
  | DeleteLogSubscriptionCommandInput
@@ -354,6 +384,7 @@ export type ServiceInputTypes =
354
384
  | DeleteTrustCommandInput
355
385
  | DeregisterCertificateCommandInput
356
386
  | DeregisterEventTopicCommandInput
387
+ | DescribeADAssessmentCommandInput
357
388
  | DescribeCertificateCommandInput
358
389
  | DescribeClientAuthenticationSettingsCommandInput
359
390
  | DescribeConditionalForwardersCommandInput
@@ -361,6 +392,7 @@ export type ServiceInputTypes =
361
392
  | DescribeDirectoryDataAccessCommandInput
362
393
  | DescribeDomainControllersCommandInput
363
394
  | DescribeEventTopicsCommandInput
395
+ | DescribeHybridADUpdateCommandInput
364
396
  | DescribeLDAPSSettingsCommandInput
365
397
  | DescribeRegionsCommandInput
366
398
  | DescribeSettingsCommandInput
@@ -380,6 +412,7 @@ export type ServiceInputTypes =
380
412
  | EnableSsoCommandInput
381
413
  | GetDirectoryLimitsCommandInput
382
414
  | GetSnapshotLimitsCommandInput
415
+ | ListADAssessmentsCommandInput
383
416
  | ListCertificatesCommandInput
384
417
  | ListIpRoutesCommandInput
385
418
  | ListLogSubscriptionsCommandInput
@@ -394,10 +427,12 @@ export type ServiceInputTypes =
394
427
  | ResetUserPasswordCommandInput
395
428
  | RestoreFromSnapshotCommandInput
396
429
  | ShareDirectoryCommandInput
430
+ | StartADAssessmentCommandInput
397
431
  | StartSchemaExtensionCommandInput
398
432
  | UnshareDirectoryCommandInput
399
433
  | UpdateConditionalForwarderCommandInput
400
434
  | UpdateDirectorySetupCommandInput
435
+ | UpdateHybridADCommandInput
401
436
  | UpdateNumberOfDomainControllersCommandInput
402
437
  | UpdateRadiusCommandInput
403
438
  | UpdateSettingsCommandInput
@@ -414,10 +449,12 @@ export type ServiceOutputTypes =
414
449
  | CreateComputerCommandOutput
415
450
  | CreateConditionalForwarderCommandOutput
416
451
  | CreateDirectoryCommandOutput
452
+ | CreateHybridADCommandOutput
417
453
  | CreateLogSubscriptionCommandOutput
418
454
  | CreateMicrosoftADCommandOutput
419
455
  | CreateSnapshotCommandOutput
420
456
  | CreateTrustCommandOutput
457
+ | DeleteADAssessmentCommandOutput
421
458
  | DeleteConditionalForwarderCommandOutput
422
459
  | DeleteDirectoryCommandOutput
423
460
  | DeleteLogSubscriptionCommandOutput
@@ -425,6 +462,7 @@ export type ServiceOutputTypes =
425
462
  | DeleteTrustCommandOutput
426
463
  | DeregisterCertificateCommandOutput
427
464
  | DeregisterEventTopicCommandOutput
465
+ | DescribeADAssessmentCommandOutput
428
466
  | DescribeCertificateCommandOutput
429
467
  | DescribeClientAuthenticationSettingsCommandOutput
430
468
  | DescribeConditionalForwardersCommandOutput
@@ -432,6 +470,7 @@ export type ServiceOutputTypes =
432
470
  | DescribeDirectoryDataAccessCommandOutput
433
471
  | DescribeDomainControllersCommandOutput
434
472
  | DescribeEventTopicsCommandOutput
473
+ | DescribeHybridADUpdateCommandOutput
435
474
  | DescribeLDAPSSettingsCommandOutput
436
475
  | DescribeRegionsCommandOutput
437
476
  | DescribeSettingsCommandOutput
@@ -451,6 +490,7 @@ export type ServiceOutputTypes =
451
490
  | EnableSsoCommandOutput
452
491
  | GetDirectoryLimitsCommandOutput
453
492
  | GetSnapshotLimitsCommandOutput
493
+ | ListADAssessmentsCommandOutput
454
494
  | ListCertificatesCommandOutput
455
495
  | ListIpRoutesCommandOutput
456
496
  | ListLogSubscriptionsCommandOutput
@@ -465,10 +505,12 @@ export type ServiceOutputTypes =
465
505
  | ResetUserPasswordCommandOutput
466
506
  | RestoreFromSnapshotCommandOutput
467
507
  | ShareDirectoryCommandOutput
508
+ | StartADAssessmentCommandOutput
468
509
  | StartSchemaExtensionCommandOutput
469
510
  | UnshareDirectoryCommandOutput
470
511
  | UpdateConditionalForwarderCommandOutput
471
512
  | UpdateDirectorySetupCommandOutput
513
+ | UpdateHybridADCommandOutput
472
514
  | UpdateNumberOfDomainControllersCommandOutput
473
515
  | UpdateRadiusCommandOutput
474
516
  | UpdateSettingsCommandOutput
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DirectoryServiceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DirectoryServiceClient";
8
+ import {
9
+ CreateHybridADRequest,
10
+ CreateHybridADResult,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateHybridADCommandInput extends CreateHybridADRequest {}
15
+ export interface CreateHybridADCommandOutput
16
+ extends CreateHybridADResult,
17
+ __MetadataBearer {}
18
+ declare const CreateHybridADCommand_base: {
19
+ new (
20
+ input: CreateHybridADCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateHybridADCommandInput,
23
+ CreateHybridADCommandOutput,
24
+ DirectoryServiceClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: CreateHybridADCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateHybridADCommandInput,
32
+ CreateHybridADCommandOutput,
33
+ DirectoryServiceClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateHybridADCommand extends CreateHybridADCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateHybridADRequest;
43
+ output: CreateHybridADResult;
44
+ };
45
+ sdk: {
46
+ input: CreateHybridADCommandInput;
47
+ output: CreateHybridADCommandOutput;
48
+ };
49
+ };
50
+ }