@aws-sdk/client-directory-service 3.1136.0 → 3.1138.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 +3 -3
- package/dist-es/schemas/schemas_0.js +2 -2
- package/dist-types/DirectoryService.d.ts +167 -161
- package/dist-types/ts3.4/DirectoryService.d.ts +164 -160
- package/package.json +8 -8
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { WaiterResult } from "@smithy/core/client";
|
|
2
2
|
import {
|
|
3
3
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
4
|
+
MetricsRecorder as __MetricsRecorder,
|
|
4
5
|
PaginationConfiguration,
|
|
5
6
|
Paginator,
|
|
6
7
|
WaiterConfiguration,
|
|
@@ -296,10 +297,13 @@ import {
|
|
|
296
297
|
import { UpdateTrustCommandInput, UpdateTrustCommandOutput } from "./commands/UpdateTrustCommand";
|
|
297
298
|
import { VerifyTrustCommandInput, VerifyTrustCommandOutput } from "./commands/VerifyTrustCommand";
|
|
298
299
|
import { DirectoryServiceClient } from "./DirectoryServiceClient";
|
|
300
|
+
export interface DirectoryServiceRequestOptions extends __HttpHandlerOptions {
|
|
301
|
+
metricsRecorder?: __MetricsRecorder<unknown>;
|
|
302
|
+
}
|
|
299
303
|
export interface DirectoryService {
|
|
300
304
|
acceptSharedDirectory(
|
|
301
305
|
args: AcceptSharedDirectoryCommandInput,
|
|
302
|
-
options?:
|
|
306
|
+
options?: DirectoryServiceRequestOptions,
|
|
303
307
|
): Promise<AcceptSharedDirectoryCommandOutput>;
|
|
304
308
|
acceptSharedDirectory(
|
|
305
309
|
args: AcceptSharedDirectoryCommandInput,
|
|
@@ -307,12 +311,12 @@ export interface DirectoryService {
|
|
|
307
311
|
): void;
|
|
308
312
|
acceptSharedDirectory(
|
|
309
313
|
args: AcceptSharedDirectoryCommandInput,
|
|
310
|
-
options:
|
|
314
|
+
options: DirectoryServiceRequestOptions,
|
|
311
315
|
cb: (err: any, data?: AcceptSharedDirectoryCommandOutput) => void,
|
|
312
316
|
): void;
|
|
313
317
|
addIpRoutes(
|
|
314
318
|
args: AddIpRoutesCommandInput,
|
|
315
|
-
options?:
|
|
319
|
+
options?: DirectoryServiceRequestOptions,
|
|
316
320
|
): Promise<AddIpRoutesCommandOutput>;
|
|
317
321
|
addIpRoutes(
|
|
318
322
|
args: AddIpRoutesCommandInput,
|
|
@@ -320,12 +324,12 @@ export interface DirectoryService {
|
|
|
320
324
|
): void;
|
|
321
325
|
addIpRoutes(
|
|
322
326
|
args: AddIpRoutesCommandInput,
|
|
323
|
-
options:
|
|
327
|
+
options: DirectoryServiceRequestOptions,
|
|
324
328
|
cb: (err: any, data?: AddIpRoutesCommandOutput) => void,
|
|
325
329
|
): void;
|
|
326
330
|
addRegion(
|
|
327
331
|
args: AddRegionCommandInput,
|
|
328
|
-
options?:
|
|
332
|
+
options?: DirectoryServiceRequestOptions,
|
|
329
333
|
): Promise<AddRegionCommandOutput>;
|
|
330
334
|
addRegion(
|
|
331
335
|
args: AddRegionCommandInput,
|
|
@@ -333,12 +337,12 @@ export interface DirectoryService {
|
|
|
333
337
|
): void;
|
|
334
338
|
addRegion(
|
|
335
339
|
args: AddRegionCommandInput,
|
|
336
|
-
options:
|
|
340
|
+
options: DirectoryServiceRequestOptions,
|
|
337
341
|
cb: (err: any, data?: AddRegionCommandOutput) => void,
|
|
338
342
|
): void;
|
|
339
343
|
addTagsToResource(
|
|
340
344
|
args: AddTagsToResourceCommandInput,
|
|
341
|
-
options?:
|
|
345
|
+
options?: DirectoryServiceRequestOptions,
|
|
342
346
|
): Promise<AddTagsToResourceCommandOutput>;
|
|
343
347
|
addTagsToResource(
|
|
344
348
|
args: AddTagsToResourceCommandInput,
|
|
@@ -346,12 +350,12 @@ export interface DirectoryService {
|
|
|
346
350
|
): void;
|
|
347
351
|
addTagsToResource(
|
|
348
352
|
args: AddTagsToResourceCommandInput,
|
|
349
|
-
options:
|
|
353
|
+
options: DirectoryServiceRequestOptions,
|
|
350
354
|
cb: (err: any, data?: AddTagsToResourceCommandOutput) => void,
|
|
351
355
|
): void;
|
|
352
356
|
cancelSchemaExtension(
|
|
353
357
|
args: CancelSchemaExtensionCommandInput,
|
|
354
|
-
options?:
|
|
358
|
+
options?: DirectoryServiceRequestOptions,
|
|
355
359
|
): Promise<CancelSchemaExtensionCommandOutput>;
|
|
356
360
|
cancelSchemaExtension(
|
|
357
361
|
args: CancelSchemaExtensionCommandInput,
|
|
@@ -359,12 +363,12 @@ export interface DirectoryService {
|
|
|
359
363
|
): void;
|
|
360
364
|
cancelSchemaExtension(
|
|
361
365
|
args: CancelSchemaExtensionCommandInput,
|
|
362
|
-
options:
|
|
366
|
+
options: DirectoryServiceRequestOptions,
|
|
363
367
|
cb: (err: any, data?: CancelSchemaExtensionCommandOutput) => void,
|
|
364
368
|
): void;
|
|
365
369
|
connectDirectory(
|
|
366
370
|
args: ConnectDirectoryCommandInput,
|
|
367
|
-
options?:
|
|
371
|
+
options?: DirectoryServiceRequestOptions,
|
|
368
372
|
): Promise<ConnectDirectoryCommandOutput>;
|
|
369
373
|
connectDirectory(
|
|
370
374
|
args: ConnectDirectoryCommandInput,
|
|
@@ -372,12 +376,12 @@ export interface DirectoryService {
|
|
|
372
376
|
): void;
|
|
373
377
|
connectDirectory(
|
|
374
378
|
args: ConnectDirectoryCommandInput,
|
|
375
|
-
options:
|
|
379
|
+
options: DirectoryServiceRequestOptions,
|
|
376
380
|
cb: (err: any, data?: ConnectDirectoryCommandOutput) => void,
|
|
377
381
|
): void;
|
|
378
382
|
createAlias(
|
|
379
383
|
args: CreateAliasCommandInput,
|
|
380
|
-
options?:
|
|
384
|
+
options?: DirectoryServiceRequestOptions,
|
|
381
385
|
): Promise<CreateAliasCommandOutput>;
|
|
382
386
|
createAlias(
|
|
383
387
|
args: CreateAliasCommandInput,
|
|
@@ -385,12 +389,12 @@ export interface DirectoryService {
|
|
|
385
389
|
): void;
|
|
386
390
|
createAlias(
|
|
387
391
|
args: CreateAliasCommandInput,
|
|
388
|
-
options:
|
|
392
|
+
options: DirectoryServiceRequestOptions,
|
|
389
393
|
cb: (err: any, data?: CreateAliasCommandOutput) => void,
|
|
390
394
|
): void;
|
|
391
395
|
createComputer(
|
|
392
396
|
args: CreateComputerCommandInput,
|
|
393
|
-
options?:
|
|
397
|
+
options?: DirectoryServiceRequestOptions,
|
|
394
398
|
): Promise<CreateComputerCommandOutput>;
|
|
395
399
|
createComputer(
|
|
396
400
|
args: CreateComputerCommandInput,
|
|
@@ -398,12 +402,12 @@ export interface DirectoryService {
|
|
|
398
402
|
): void;
|
|
399
403
|
createComputer(
|
|
400
404
|
args: CreateComputerCommandInput,
|
|
401
|
-
options:
|
|
405
|
+
options: DirectoryServiceRequestOptions,
|
|
402
406
|
cb: (err: any, data?: CreateComputerCommandOutput) => void,
|
|
403
407
|
): void;
|
|
404
408
|
createConditionalForwarder(
|
|
405
409
|
args: CreateConditionalForwarderCommandInput,
|
|
406
|
-
options?:
|
|
410
|
+
options?: DirectoryServiceRequestOptions,
|
|
407
411
|
): Promise<CreateConditionalForwarderCommandOutput>;
|
|
408
412
|
createConditionalForwarder(
|
|
409
413
|
args: CreateConditionalForwarderCommandInput,
|
|
@@ -411,12 +415,12 @@ export interface DirectoryService {
|
|
|
411
415
|
): void;
|
|
412
416
|
createConditionalForwarder(
|
|
413
417
|
args: CreateConditionalForwarderCommandInput,
|
|
414
|
-
options:
|
|
418
|
+
options: DirectoryServiceRequestOptions,
|
|
415
419
|
cb: (err: any, data?: CreateConditionalForwarderCommandOutput) => void,
|
|
416
420
|
): void;
|
|
417
421
|
createDirectory(
|
|
418
422
|
args: CreateDirectoryCommandInput,
|
|
419
|
-
options?:
|
|
423
|
+
options?: DirectoryServiceRequestOptions,
|
|
420
424
|
): Promise<CreateDirectoryCommandOutput>;
|
|
421
425
|
createDirectory(
|
|
422
426
|
args: CreateDirectoryCommandInput,
|
|
@@ -424,12 +428,12 @@ export interface DirectoryService {
|
|
|
424
428
|
): void;
|
|
425
429
|
createDirectory(
|
|
426
430
|
args: CreateDirectoryCommandInput,
|
|
427
|
-
options:
|
|
431
|
+
options: DirectoryServiceRequestOptions,
|
|
428
432
|
cb: (err: any, data?: CreateDirectoryCommandOutput) => void,
|
|
429
433
|
): void;
|
|
430
434
|
createHybridAD(
|
|
431
435
|
args: CreateHybridADCommandInput,
|
|
432
|
-
options?:
|
|
436
|
+
options?: DirectoryServiceRequestOptions,
|
|
433
437
|
): Promise<CreateHybridADCommandOutput>;
|
|
434
438
|
createHybridAD(
|
|
435
439
|
args: CreateHybridADCommandInput,
|
|
@@ -437,12 +441,12 @@ export interface DirectoryService {
|
|
|
437
441
|
): void;
|
|
438
442
|
createHybridAD(
|
|
439
443
|
args: CreateHybridADCommandInput,
|
|
440
|
-
options:
|
|
444
|
+
options: DirectoryServiceRequestOptions,
|
|
441
445
|
cb: (err: any, data?: CreateHybridADCommandOutput) => void,
|
|
442
446
|
): void;
|
|
443
447
|
createLogSubscription(
|
|
444
448
|
args: CreateLogSubscriptionCommandInput,
|
|
445
|
-
options?:
|
|
449
|
+
options?: DirectoryServiceRequestOptions,
|
|
446
450
|
): Promise<CreateLogSubscriptionCommandOutput>;
|
|
447
451
|
createLogSubscription(
|
|
448
452
|
args: CreateLogSubscriptionCommandInput,
|
|
@@ -450,12 +454,12 @@ export interface DirectoryService {
|
|
|
450
454
|
): void;
|
|
451
455
|
createLogSubscription(
|
|
452
456
|
args: CreateLogSubscriptionCommandInput,
|
|
453
|
-
options:
|
|
457
|
+
options: DirectoryServiceRequestOptions,
|
|
454
458
|
cb: (err: any, data?: CreateLogSubscriptionCommandOutput) => void,
|
|
455
459
|
): void;
|
|
456
460
|
createMicrosoftAD(
|
|
457
461
|
args: CreateMicrosoftADCommandInput,
|
|
458
|
-
options?:
|
|
462
|
+
options?: DirectoryServiceRequestOptions,
|
|
459
463
|
): Promise<CreateMicrosoftADCommandOutput>;
|
|
460
464
|
createMicrosoftAD(
|
|
461
465
|
args: CreateMicrosoftADCommandInput,
|
|
@@ -463,12 +467,12 @@ export interface DirectoryService {
|
|
|
463
467
|
): void;
|
|
464
468
|
createMicrosoftAD(
|
|
465
469
|
args: CreateMicrosoftADCommandInput,
|
|
466
|
-
options:
|
|
470
|
+
options: DirectoryServiceRequestOptions,
|
|
467
471
|
cb: (err: any, data?: CreateMicrosoftADCommandOutput) => void,
|
|
468
472
|
): void;
|
|
469
473
|
createSnapshot(
|
|
470
474
|
args: CreateSnapshotCommandInput,
|
|
471
|
-
options?:
|
|
475
|
+
options?: DirectoryServiceRequestOptions,
|
|
472
476
|
): Promise<CreateSnapshotCommandOutput>;
|
|
473
477
|
createSnapshot(
|
|
474
478
|
args: CreateSnapshotCommandInput,
|
|
@@ -476,12 +480,12 @@ export interface DirectoryService {
|
|
|
476
480
|
): void;
|
|
477
481
|
createSnapshot(
|
|
478
482
|
args: CreateSnapshotCommandInput,
|
|
479
|
-
options:
|
|
483
|
+
options: DirectoryServiceRequestOptions,
|
|
480
484
|
cb: (err: any, data?: CreateSnapshotCommandOutput) => void,
|
|
481
485
|
): void;
|
|
482
486
|
createTrust(
|
|
483
487
|
args: CreateTrustCommandInput,
|
|
484
|
-
options?:
|
|
488
|
+
options?: DirectoryServiceRequestOptions,
|
|
485
489
|
): Promise<CreateTrustCommandOutput>;
|
|
486
490
|
createTrust(
|
|
487
491
|
args: CreateTrustCommandInput,
|
|
@@ -489,12 +493,12 @@ export interface DirectoryService {
|
|
|
489
493
|
): void;
|
|
490
494
|
createTrust(
|
|
491
495
|
args: CreateTrustCommandInput,
|
|
492
|
-
options:
|
|
496
|
+
options: DirectoryServiceRequestOptions,
|
|
493
497
|
cb: (err: any, data?: CreateTrustCommandOutput) => void,
|
|
494
498
|
): void;
|
|
495
499
|
deleteADAssessment(
|
|
496
500
|
args: DeleteADAssessmentCommandInput,
|
|
497
|
-
options?:
|
|
501
|
+
options?: DirectoryServiceRequestOptions,
|
|
498
502
|
): Promise<DeleteADAssessmentCommandOutput>;
|
|
499
503
|
deleteADAssessment(
|
|
500
504
|
args: DeleteADAssessmentCommandInput,
|
|
@@ -502,12 +506,12 @@ export interface DirectoryService {
|
|
|
502
506
|
): void;
|
|
503
507
|
deleteADAssessment(
|
|
504
508
|
args: DeleteADAssessmentCommandInput,
|
|
505
|
-
options:
|
|
509
|
+
options: DirectoryServiceRequestOptions,
|
|
506
510
|
cb: (err: any, data?: DeleteADAssessmentCommandOutput) => void,
|
|
507
511
|
): void;
|
|
508
512
|
deleteConditionalForwarder(
|
|
509
513
|
args: DeleteConditionalForwarderCommandInput,
|
|
510
|
-
options?:
|
|
514
|
+
options?: DirectoryServiceRequestOptions,
|
|
511
515
|
): Promise<DeleteConditionalForwarderCommandOutput>;
|
|
512
516
|
deleteConditionalForwarder(
|
|
513
517
|
args: DeleteConditionalForwarderCommandInput,
|
|
@@ -515,12 +519,12 @@ export interface DirectoryService {
|
|
|
515
519
|
): void;
|
|
516
520
|
deleteConditionalForwarder(
|
|
517
521
|
args: DeleteConditionalForwarderCommandInput,
|
|
518
|
-
options:
|
|
522
|
+
options: DirectoryServiceRequestOptions,
|
|
519
523
|
cb: (err: any, data?: DeleteConditionalForwarderCommandOutput) => void,
|
|
520
524
|
): void;
|
|
521
525
|
deleteDirectory(
|
|
522
526
|
args: DeleteDirectoryCommandInput,
|
|
523
|
-
options?:
|
|
527
|
+
options?: DirectoryServiceRequestOptions,
|
|
524
528
|
): Promise<DeleteDirectoryCommandOutput>;
|
|
525
529
|
deleteDirectory(
|
|
526
530
|
args: DeleteDirectoryCommandInput,
|
|
@@ -528,12 +532,12 @@ export interface DirectoryService {
|
|
|
528
532
|
): void;
|
|
529
533
|
deleteDirectory(
|
|
530
534
|
args: DeleteDirectoryCommandInput,
|
|
531
|
-
options:
|
|
535
|
+
options: DirectoryServiceRequestOptions,
|
|
532
536
|
cb: (err: any, data?: DeleteDirectoryCommandOutput) => void,
|
|
533
537
|
): void;
|
|
534
538
|
deleteLogSubscription(
|
|
535
539
|
args: DeleteLogSubscriptionCommandInput,
|
|
536
|
-
options?:
|
|
540
|
+
options?: DirectoryServiceRequestOptions,
|
|
537
541
|
): Promise<DeleteLogSubscriptionCommandOutput>;
|
|
538
542
|
deleteLogSubscription(
|
|
539
543
|
args: DeleteLogSubscriptionCommandInput,
|
|
@@ -541,12 +545,12 @@ export interface DirectoryService {
|
|
|
541
545
|
): void;
|
|
542
546
|
deleteLogSubscription(
|
|
543
547
|
args: DeleteLogSubscriptionCommandInput,
|
|
544
|
-
options:
|
|
548
|
+
options: DirectoryServiceRequestOptions,
|
|
545
549
|
cb: (err: any, data?: DeleteLogSubscriptionCommandOutput) => void,
|
|
546
550
|
): void;
|
|
547
551
|
deleteSnapshot(
|
|
548
552
|
args: DeleteSnapshotCommandInput,
|
|
549
|
-
options?:
|
|
553
|
+
options?: DirectoryServiceRequestOptions,
|
|
550
554
|
): Promise<DeleteSnapshotCommandOutput>;
|
|
551
555
|
deleteSnapshot(
|
|
552
556
|
args: DeleteSnapshotCommandInput,
|
|
@@ -554,12 +558,12 @@ export interface DirectoryService {
|
|
|
554
558
|
): void;
|
|
555
559
|
deleteSnapshot(
|
|
556
560
|
args: DeleteSnapshotCommandInput,
|
|
557
|
-
options:
|
|
561
|
+
options: DirectoryServiceRequestOptions,
|
|
558
562
|
cb: (err: any, data?: DeleteSnapshotCommandOutput) => void,
|
|
559
563
|
): void;
|
|
560
564
|
deleteTrust(
|
|
561
565
|
args: DeleteTrustCommandInput,
|
|
562
|
-
options?:
|
|
566
|
+
options?: DirectoryServiceRequestOptions,
|
|
563
567
|
): Promise<DeleteTrustCommandOutput>;
|
|
564
568
|
deleteTrust(
|
|
565
569
|
args: DeleteTrustCommandInput,
|
|
@@ -567,12 +571,12 @@ export interface DirectoryService {
|
|
|
567
571
|
): void;
|
|
568
572
|
deleteTrust(
|
|
569
573
|
args: DeleteTrustCommandInput,
|
|
570
|
-
options:
|
|
574
|
+
options: DirectoryServiceRequestOptions,
|
|
571
575
|
cb: (err: any, data?: DeleteTrustCommandOutput) => void,
|
|
572
576
|
): void;
|
|
573
577
|
deregisterCertificate(
|
|
574
578
|
args: DeregisterCertificateCommandInput,
|
|
575
|
-
options?:
|
|
579
|
+
options?: DirectoryServiceRequestOptions,
|
|
576
580
|
): Promise<DeregisterCertificateCommandOutput>;
|
|
577
581
|
deregisterCertificate(
|
|
578
582
|
args: DeregisterCertificateCommandInput,
|
|
@@ -580,12 +584,12 @@ export interface DirectoryService {
|
|
|
580
584
|
): void;
|
|
581
585
|
deregisterCertificate(
|
|
582
586
|
args: DeregisterCertificateCommandInput,
|
|
583
|
-
options:
|
|
587
|
+
options: DirectoryServiceRequestOptions,
|
|
584
588
|
cb: (err: any, data?: DeregisterCertificateCommandOutput) => void,
|
|
585
589
|
): void;
|
|
586
590
|
deregisterEventTopic(
|
|
587
591
|
args: DeregisterEventTopicCommandInput,
|
|
588
|
-
options?:
|
|
592
|
+
options?: DirectoryServiceRequestOptions,
|
|
589
593
|
): Promise<DeregisterEventTopicCommandOutput>;
|
|
590
594
|
deregisterEventTopic(
|
|
591
595
|
args: DeregisterEventTopicCommandInput,
|
|
@@ -593,12 +597,12 @@ export interface DirectoryService {
|
|
|
593
597
|
): void;
|
|
594
598
|
deregisterEventTopic(
|
|
595
599
|
args: DeregisterEventTopicCommandInput,
|
|
596
|
-
options:
|
|
600
|
+
options: DirectoryServiceRequestOptions,
|
|
597
601
|
cb: (err: any, data?: DeregisterEventTopicCommandOutput) => void,
|
|
598
602
|
): void;
|
|
599
603
|
describeADAssessment(
|
|
600
604
|
args: DescribeADAssessmentCommandInput,
|
|
601
|
-
options?:
|
|
605
|
+
options?: DirectoryServiceRequestOptions,
|
|
602
606
|
): Promise<DescribeADAssessmentCommandOutput>;
|
|
603
607
|
describeADAssessment(
|
|
604
608
|
args: DescribeADAssessmentCommandInput,
|
|
@@ -606,12 +610,12 @@ export interface DirectoryService {
|
|
|
606
610
|
): void;
|
|
607
611
|
describeADAssessment(
|
|
608
612
|
args: DescribeADAssessmentCommandInput,
|
|
609
|
-
options:
|
|
613
|
+
options: DirectoryServiceRequestOptions,
|
|
610
614
|
cb: (err: any, data?: DescribeADAssessmentCommandOutput) => void,
|
|
611
615
|
): void;
|
|
612
616
|
describeCAEnrollmentPolicy(
|
|
613
617
|
args: DescribeCAEnrollmentPolicyCommandInput,
|
|
614
|
-
options?:
|
|
618
|
+
options?: DirectoryServiceRequestOptions,
|
|
615
619
|
): Promise<DescribeCAEnrollmentPolicyCommandOutput>;
|
|
616
620
|
describeCAEnrollmentPolicy(
|
|
617
621
|
args: DescribeCAEnrollmentPolicyCommandInput,
|
|
@@ -619,12 +623,12 @@ export interface DirectoryService {
|
|
|
619
623
|
): void;
|
|
620
624
|
describeCAEnrollmentPolicy(
|
|
621
625
|
args: DescribeCAEnrollmentPolicyCommandInput,
|
|
622
|
-
options:
|
|
626
|
+
options: DirectoryServiceRequestOptions,
|
|
623
627
|
cb: (err: any, data?: DescribeCAEnrollmentPolicyCommandOutput) => void,
|
|
624
628
|
): void;
|
|
625
629
|
describeCertificate(
|
|
626
630
|
args: DescribeCertificateCommandInput,
|
|
627
|
-
options?:
|
|
631
|
+
options?: DirectoryServiceRequestOptions,
|
|
628
632
|
): Promise<DescribeCertificateCommandOutput>;
|
|
629
633
|
describeCertificate(
|
|
630
634
|
args: DescribeCertificateCommandInput,
|
|
@@ -632,12 +636,12 @@ export interface DirectoryService {
|
|
|
632
636
|
): void;
|
|
633
637
|
describeCertificate(
|
|
634
638
|
args: DescribeCertificateCommandInput,
|
|
635
|
-
options:
|
|
639
|
+
options: DirectoryServiceRequestOptions,
|
|
636
640
|
cb: (err: any, data?: DescribeCertificateCommandOutput) => void,
|
|
637
641
|
): void;
|
|
638
642
|
describeClientAuthenticationSettings(
|
|
639
643
|
args: DescribeClientAuthenticationSettingsCommandInput,
|
|
640
|
-
options?:
|
|
644
|
+
options?: DirectoryServiceRequestOptions,
|
|
641
645
|
): Promise<DescribeClientAuthenticationSettingsCommandOutput>;
|
|
642
646
|
describeClientAuthenticationSettings(
|
|
643
647
|
args: DescribeClientAuthenticationSettingsCommandInput,
|
|
@@ -645,12 +649,12 @@ export interface DirectoryService {
|
|
|
645
649
|
): void;
|
|
646
650
|
describeClientAuthenticationSettings(
|
|
647
651
|
args: DescribeClientAuthenticationSettingsCommandInput,
|
|
648
|
-
options:
|
|
652
|
+
options: DirectoryServiceRequestOptions,
|
|
649
653
|
cb: (err: any, data?: DescribeClientAuthenticationSettingsCommandOutput) => void,
|
|
650
654
|
): void;
|
|
651
655
|
describeConditionalForwarders(
|
|
652
656
|
args: DescribeConditionalForwardersCommandInput,
|
|
653
|
-
options?:
|
|
657
|
+
options?: DirectoryServiceRequestOptions,
|
|
654
658
|
): Promise<DescribeConditionalForwardersCommandOutput>;
|
|
655
659
|
describeConditionalForwarders(
|
|
656
660
|
args: DescribeConditionalForwardersCommandInput,
|
|
@@ -658,13 +662,13 @@ export interface DirectoryService {
|
|
|
658
662
|
): void;
|
|
659
663
|
describeConditionalForwarders(
|
|
660
664
|
args: DescribeConditionalForwardersCommandInput,
|
|
661
|
-
options:
|
|
665
|
+
options: DirectoryServiceRequestOptions,
|
|
662
666
|
cb: (err: any, data?: DescribeConditionalForwardersCommandOutput) => void,
|
|
663
667
|
): void;
|
|
664
668
|
describeDirectories(): Promise<DescribeDirectoriesCommandOutput>;
|
|
665
669
|
describeDirectories(
|
|
666
670
|
args: DescribeDirectoriesCommandInput,
|
|
667
|
-
options?:
|
|
671
|
+
options?: DirectoryServiceRequestOptions,
|
|
668
672
|
): Promise<DescribeDirectoriesCommandOutput>;
|
|
669
673
|
describeDirectories(
|
|
670
674
|
args: DescribeDirectoriesCommandInput,
|
|
@@ -672,12 +676,12 @@ export interface DirectoryService {
|
|
|
672
676
|
): void;
|
|
673
677
|
describeDirectories(
|
|
674
678
|
args: DescribeDirectoriesCommandInput,
|
|
675
|
-
options:
|
|
679
|
+
options: DirectoryServiceRequestOptions,
|
|
676
680
|
cb: (err: any, data?: DescribeDirectoriesCommandOutput) => void,
|
|
677
681
|
): void;
|
|
678
682
|
describeDirectoryDataAccess(
|
|
679
683
|
args: DescribeDirectoryDataAccessCommandInput,
|
|
680
|
-
options?:
|
|
684
|
+
options?: DirectoryServiceRequestOptions,
|
|
681
685
|
): Promise<DescribeDirectoryDataAccessCommandOutput>;
|
|
682
686
|
describeDirectoryDataAccess(
|
|
683
687
|
args: DescribeDirectoryDataAccessCommandInput,
|
|
@@ -685,12 +689,12 @@ export interface DirectoryService {
|
|
|
685
689
|
): void;
|
|
686
690
|
describeDirectoryDataAccess(
|
|
687
691
|
args: DescribeDirectoryDataAccessCommandInput,
|
|
688
|
-
options:
|
|
692
|
+
options: DirectoryServiceRequestOptions,
|
|
689
693
|
cb: (err: any, data?: DescribeDirectoryDataAccessCommandOutput) => void,
|
|
690
694
|
): void;
|
|
691
695
|
describeDomainControllers(
|
|
692
696
|
args: DescribeDomainControllersCommandInput,
|
|
693
|
-
options?:
|
|
697
|
+
options?: DirectoryServiceRequestOptions,
|
|
694
698
|
): Promise<DescribeDomainControllersCommandOutput>;
|
|
695
699
|
describeDomainControllers(
|
|
696
700
|
args: DescribeDomainControllersCommandInput,
|
|
@@ -698,13 +702,13 @@ export interface DirectoryService {
|
|
|
698
702
|
): void;
|
|
699
703
|
describeDomainControllers(
|
|
700
704
|
args: DescribeDomainControllersCommandInput,
|
|
701
|
-
options:
|
|
705
|
+
options: DirectoryServiceRequestOptions,
|
|
702
706
|
cb: (err: any, data?: DescribeDomainControllersCommandOutput) => void,
|
|
703
707
|
): void;
|
|
704
708
|
describeEventTopics(): Promise<DescribeEventTopicsCommandOutput>;
|
|
705
709
|
describeEventTopics(
|
|
706
710
|
args: DescribeEventTopicsCommandInput,
|
|
707
|
-
options?:
|
|
711
|
+
options?: DirectoryServiceRequestOptions,
|
|
708
712
|
): Promise<DescribeEventTopicsCommandOutput>;
|
|
709
713
|
describeEventTopics(
|
|
710
714
|
args: DescribeEventTopicsCommandInput,
|
|
@@ -712,12 +716,12 @@ export interface DirectoryService {
|
|
|
712
716
|
): void;
|
|
713
717
|
describeEventTopics(
|
|
714
718
|
args: DescribeEventTopicsCommandInput,
|
|
715
|
-
options:
|
|
719
|
+
options: DirectoryServiceRequestOptions,
|
|
716
720
|
cb: (err: any, data?: DescribeEventTopicsCommandOutput) => void,
|
|
717
721
|
): void;
|
|
718
722
|
describeHybridADUpdate(
|
|
719
723
|
args: DescribeHybridADUpdateCommandInput,
|
|
720
|
-
options?:
|
|
724
|
+
options?: DirectoryServiceRequestOptions,
|
|
721
725
|
): Promise<DescribeHybridADUpdateCommandOutput>;
|
|
722
726
|
describeHybridADUpdate(
|
|
723
727
|
args: DescribeHybridADUpdateCommandInput,
|
|
@@ -725,12 +729,12 @@ export interface DirectoryService {
|
|
|
725
729
|
): void;
|
|
726
730
|
describeHybridADUpdate(
|
|
727
731
|
args: DescribeHybridADUpdateCommandInput,
|
|
728
|
-
options:
|
|
732
|
+
options: DirectoryServiceRequestOptions,
|
|
729
733
|
cb: (err: any, data?: DescribeHybridADUpdateCommandOutput) => void,
|
|
730
734
|
): void;
|
|
731
735
|
describeLDAPSSettings(
|
|
732
736
|
args: DescribeLDAPSSettingsCommandInput,
|
|
733
|
-
options?:
|
|
737
|
+
options?: DirectoryServiceRequestOptions,
|
|
734
738
|
): Promise<DescribeLDAPSSettingsCommandOutput>;
|
|
735
739
|
describeLDAPSSettings(
|
|
736
740
|
args: DescribeLDAPSSettingsCommandInput,
|
|
@@ -738,12 +742,12 @@ export interface DirectoryService {
|
|
|
738
742
|
): void;
|
|
739
743
|
describeLDAPSSettings(
|
|
740
744
|
args: DescribeLDAPSSettingsCommandInput,
|
|
741
|
-
options:
|
|
745
|
+
options: DirectoryServiceRequestOptions,
|
|
742
746
|
cb: (err: any, data?: DescribeLDAPSSettingsCommandOutput) => void,
|
|
743
747
|
): void;
|
|
744
748
|
describeRegions(
|
|
745
749
|
args: DescribeRegionsCommandInput,
|
|
746
|
-
options?:
|
|
750
|
+
options?: DirectoryServiceRequestOptions,
|
|
747
751
|
): Promise<DescribeRegionsCommandOutput>;
|
|
748
752
|
describeRegions(
|
|
749
753
|
args: DescribeRegionsCommandInput,
|
|
@@ -751,12 +755,12 @@ export interface DirectoryService {
|
|
|
751
755
|
): void;
|
|
752
756
|
describeRegions(
|
|
753
757
|
args: DescribeRegionsCommandInput,
|
|
754
|
-
options:
|
|
758
|
+
options: DirectoryServiceRequestOptions,
|
|
755
759
|
cb: (err: any, data?: DescribeRegionsCommandOutput) => void,
|
|
756
760
|
): void;
|
|
757
761
|
describeSettings(
|
|
758
762
|
args: DescribeSettingsCommandInput,
|
|
759
|
-
options?:
|
|
763
|
+
options?: DirectoryServiceRequestOptions,
|
|
760
764
|
): Promise<DescribeSettingsCommandOutput>;
|
|
761
765
|
describeSettings(
|
|
762
766
|
args: DescribeSettingsCommandInput,
|
|
@@ -764,12 +768,12 @@ export interface DirectoryService {
|
|
|
764
768
|
): void;
|
|
765
769
|
describeSettings(
|
|
766
770
|
args: DescribeSettingsCommandInput,
|
|
767
|
-
options:
|
|
771
|
+
options: DirectoryServiceRequestOptions,
|
|
768
772
|
cb: (err: any, data?: DescribeSettingsCommandOutput) => void,
|
|
769
773
|
): void;
|
|
770
774
|
describeSharedDirectories(
|
|
771
775
|
args: DescribeSharedDirectoriesCommandInput,
|
|
772
|
-
options?:
|
|
776
|
+
options?: DirectoryServiceRequestOptions,
|
|
773
777
|
): Promise<DescribeSharedDirectoriesCommandOutput>;
|
|
774
778
|
describeSharedDirectories(
|
|
775
779
|
args: DescribeSharedDirectoriesCommandInput,
|
|
@@ -777,13 +781,13 @@ export interface DirectoryService {
|
|
|
777
781
|
): void;
|
|
778
782
|
describeSharedDirectories(
|
|
779
783
|
args: DescribeSharedDirectoriesCommandInput,
|
|
780
|
-
options:
|
|
784
|
+
options: DirectoryServiceRequestOptions,
|
|
781
785
|
cb: (err: any, data?: DescribeSharedDirectoriesCommandOutput) => void,
|
|
782
786
|
): void;
|
|
783
787
|
describeSnapshots(): Promise<DescribeSnapshotsCommandOutput>;
|
|
784
788
|
describeSnapshots(
|
|
785
789
|
args: DescribeSnapshotsCommandInput,
|
|
786
|
-
options?:
|
|
790
|
+
options?: DirectoryServiceRequestOptions,
|
|
787
791
|
): Promise<DescribeSnapshotsCommandOutput>;
|
|
788
792
|
describeSnapshots(
|
|
789
793
|
args: DescribeSnapshotsCommandInput,
|
|
@@ -791,13 +795,13 @@ export interface DirectoryService {
|
|
|
791
795
|
): void;
|
|
792
796
|
describeSnapshots(
|
|
793
797
|
args: DescribeSnapshotsCommandInput,
|
|
794
|
-
options:
|
|
798
|
+
options: DirectoryServiceRequestOptions,
|
|
795
799
|
cb: (err: any, data?: DescribeSnapshotsCommandOutput) => void,
|
|
796
800
|
): void;
|
|
797
801
|
describeTrusts(): Promise<DescribeTrustsCommandOutput>;
|
|
798
802
|
describeTrusts(
|
|
799
803
|
args: DescribeTrustsCommandInput,
|
|
800
|
-
options?:
|
|
804
|
+
options?: DirectoryServiceRequestOptions,
|
|
801
805
|
): Promise<DescribeTrustsCommandOutput>;
|
|
802
806
|
describeTrusts(
|
|
803
807
|
args: DescribeTrustsCommandInput,
|
|
@@ -805,12 +809,12 @@ export interface DirectoryService {
|
|
|
805
809
|
): void;
|
|
806
810
|
describeTrusts(
|
|
807
811
|
args: DescribeTrustsCommandInput,
|
|
808
|
-
options:
|
|
812
|
+
options: DirectoryServiceRequestOptions,
|
|
809
813
|
cb: (err: any, data?: DescribeTrustsCommandOutput) => void,
|
|
810
814
|
): void;
|
|
811
815
|
describeUpdateDirectory(
|
|
812
816
|
args: DescribeUpdateDirectoryCommandInput,
|
|
813
|
-
options?:
|
|
817
|
+
options?: DirectoryServiceRequestOptions,
|
|
814
818
|
): Promise<DescribeUpdateDirectoryCommandOutput>;
|
|
815
819
|
describeUpdateDirectory(
|
|
816
820
|
args: DescribeUpdateDirectoryCommandInput,
|
|
@@ -818,12 +822,12 @@ export interface DirectoryService {
|
|
|
818
822
|
): void;
|
|
819
823
|
describeUpdateDirectory(
|
|
820
824
|
args: DescribeUpdateDirectoryCommandInput,
|
|
821
|
-
options:
|
|
825
|
+
options: DirectoryServiceRequestOptions,
|
|
822
826
|
cb: (err: any, data?: DescribeUpdateDirectoryCommandOutput) => void,
|
|
823
827
|
): void;
|
|
824
828
|
disableCAEnrollmentPolicy(
|
|
825
829
|
args: DisableCAEnrollmentPolicyCommandInput,
|
|
826
|
-
options?:
|
|
830
|
+
options?: DirectoryServiceRequestOptions,
|
|
827
831
|
): Promise<DisableCAEnrollmentPolicyCommandOutput>;
|
|
828
832
|
disableCAEnrollmentPolicy(
|
|
829
833
|
args: DisableCAEnrollmentPolicyCommandInput,
|
|
@@ -831,12 +835,12 @@ export interface DirectoryService {
|
|
|
831
835
|
): void;
|
|
832
836
|
disableCAEnrollmentPolicy(
|
|
833
837
|
args: DisableCAEnrollmentPolicyCommandInput,
|
|
834
|
-
options:
|
|
838
|
+
options: DirectoryServiceRequestOptions,
|
|
835
839
|
cb: (err: any, data?: DisableCAEnrollmentPolicyCommandOutput) => void,
|
|
836
840
|
): void;
|
|
837
841
|
disableClientAuthentication(
|
|
838
842
|
args: DisableClientAuthenticationCommandInput,
|
|
839
|
-
options?:
|
|
843
|
+
options?: DirectoryServiceRequestOptions,
|
|
840
844
|
): Promise<DisableClientAuthenticationCommandOutput>;
|
|
841
845
|
disableClientAuthentication(
|
|
842
846
|
args: DisableClientAuthenticationCommandInput,
|
|
@@ -844,12 +848,12 @@ export interface DirectoryService {
|
|
|
844
848
|
): void;
|
|
845
849
|
disableClientAuthentication(
|
|
846
850
|
args: DisableClientAuthenticationCommandInput,
|
|
847
|
-
options:
|
|
851
|
+
options: DirectoryServiceRequestOptions,
|
|
848
852
|
cb: (err: any, data?: DisableClientAuthenticationCommandOutput) => void,
|
|
849
853
|
): void;
|
|
850
854
|
disableDirectoryDataAccess(
|
|
851
855
|
args: DisableDirectoryDataAccessCommandInput,
|
|
852
|
-
options?:
|
|
856
|
+
options?: DirectoryServiceRequestOptions,
|
|
853
857
|
): Promise<DisableDirectoryDataAccessCommandOutput>;
|
|
854
858
|
disableDirectoryDataAccess(
|
|
855
859
|
args: DisableDirectoryDataAccessCommandInput,
|
|
@@ -857,12 +861,12 @@ export interface DirectoryService {
|
|
|
857
861
|
): void;
|
|
858
862
|
disableDirectoryDataAccess(
|
|
859
863
|
args: DisableDirectoryDataAccessCommandInput,
|
|
860
|
-
options:
|
|
864
|
+
options: DirectoryServiceRequestOptions,
|
|
861
865
|
cb: (err: any, data?: DisableDirectoryDataAccessCommandOutput) => void,
|
|
862
866
|
): void;
|
|
863
867
|
disableLDAPS(
|
|
864
868
|
args: DisableLDAPSCommandInput,
|
|
865
|
-
options?:
|
|
869
|
+
options?: DirectoryServiceRequestOptions,
|
|
866
870
|
): Promise<DisableLDAPSCommandOutput>;
|
|
867
871
|
disableLDAPS(
|
|
868
872
|
args: DisableLDAPSCommandInput,
|
|
@@ -870,12 +874,12 @@ export interface DirectoryService {
|
|
|
870
874
|
): void;
|
|
871
875
|
disableLDAPS(
|
|
872
876
|
args: DisableLDAPSCommandInput,
|
|
873
|
-
options:
|
|
877
|
+
options: DirectoryServiceRequestOptions,
|
|
874
878
|
cb: (err: any, data?: DisableLDAPSCommandOutput) => void,
|
|
875
879
|
): void;
|
|
876
880
|
disableRadius(
|
|
877
881
|
args: DisableRadiusCommandInput,
|
|
878
|
-
options?:
|
|
882
|
+
options?: DirectoryServiceRequestOptions,
|
|
879
883
|
): Promise<DisableRadiusCommandOutput>;
|
|
880
884
|
disableRadius(
|
|
881
885
|
args: DisableRadiusCommandInput,
|
|
@@ -883,12 +887,12 @@ export interface DirectoryService {
|
|
|
883
887
|
): void;
|
|
884
888
|
disableRadius(
|
|
885
889
|
args: DisableRadiusCommandInput,
|
|
886
|
-
options:
|
|
890
|
+
options: DirectoryServiceRequestOptions,
|
|
887
891
|
cb: (err: any, data?: DisableRadiusCommandOutput) => void,
|
|
888
892
|
): void;
|
|
889
893
|
disableSso(
|
|
890
894
|
args: DisableSsoCommandInput,
|
|
891
|
-
options?:
|
|
895
|
+
options?: DirectoryServiceRequestOptions,
|
|
892
896
|
): Promise<DisableSsoCommandOutput>;
|
|
893
897
|
disableSso(
|
|
894
898
|
args: DisableSsoCommandInput,
|
|
@@ -896,12 +900,12 @@ export interface DirectoryService {
|
|
|
896
900
|
): void;
|
|
897
901
|
disableSso(
|
|
898
902
|
args: DisableSsoCommandInput,
|
|
899
|
-
options:
|
|
903
|
+
options: DirectoryServiceRequestOptions,
|
|
900
904
|
cb: (err: any, data?: DisableSsoCommandOutput) => void,
|
|
901
905
|
): void;
|
|
902
906
|
enableCAEnrollmentPolicy(
|
|
903
907
|
args: EnableCAEnrollmentPolicyCommandInput,
|
|
904
|
-
options?:
|
|
908
|
+
options?: DirectoryServiceRequestOptions,
|
|
905
909
|
): Promise<EnableCAEnrollmentPolicyCommandOutput>;
|
|
906
910
|
enableCAEnrollmentPolicy(
|
|
907
911
|
args: EnableCAEnrollmentPolicyCommandInput,
|
|
@@ -909,12 +913,12 @@ export interface DirectoryService {
|
|
|
909
913
|
): void;
|
|
910
914
|
enableCAEnrollmentPolicy(
|
|
911
915
|
args: EnableCAEnrollmentPolicyCommandInput,
|
|
912
|
-
options:
|
|
916
|
+
options: DirectoryServiceRequestOptions,
|
|
913
917
|
cb: (err: any, data?: EnableCAEnrollmentPolicyCommandOutput) => void,
|
|
914
918
|
): void;
|
|
915
919
|
enableClientAuthentication(
|
|
916
920
|
args: EnableClientAuthenticationCommandInput,
|
|
917
|
-
options?:
|
|
921
|
+
options?: DirectoryServiceRequestOptions,
|
|
918
922
|
): Promise<EnableClientAuthenticationCommandOutput>;
|
|
919
923
|
enableClientAuthentication(
|
|
920
924
|
args: EnableClientAuthenticationCommandInput,
|
|
@@ -922,12 +926,12 @@ export interface DirectoryService {
|
|
|
922
926
|
): void;
|
|
923
927
|
enableClientAuthentication(
|
|
924
928
|
args: EnableClientAuthenticationCommandInput,
|
|
925
|
-
options:
|
|
929
|
+
options: DirectoryServiceRequestOptions,
|
|
926
930
|
cb: (err: any, data?: EnableClientAuthenticationCommandOutput) => void,
|
|
927
931
|
): void;
|
|
928
932
|
enableDirectoryDataAccess(
|
|
929
933
|
args: EnableDirectoryDataAccessCommandInput,
|
|
930
|
-
options?:
|
|
934
|
+
options?: DirectoryServiceRequestOptions,
|
|
931
935
|
): Promise<EnableDirectoryDataAccessCommandOutput>;
|
|
932
936
|
enableDirectoryDataAccess(
|
|
933
937
|
args: EnableDirectoryDataAccessCommandInput,
|
|
@@ -935,12 +939,12 @@ export interface DirectoryService {
|
|
|
935
939
|
): void;
|
|
936
940
|
enableDirectoryDataAccess(
|
|
937
941
|
args: EnableDirectoryDataAccessCommandInput,
|
|
938
|
-
options:
|
|
942
|
+
options: DirectoryServiceRequestOptions,
|
|
939
943
|
cb: (err: any, data?: EnableDirectoryDataAccessCommandOutput) => void,
|
|
940
944
|
): void;
|
|
941
945
|
enableLDAPS(
|
|
942
946
|
args: EnableLDAPSCommandInput,
|
|
943
|
-
options?:
|
|
947
|
+
options?: DirectoryServiceRequestOptions,
|
|
944
948
|
): Promise<EnableLDAPSCommandOutput>;
|
|
945
949
|
enableLDAPS(
|
|
946
950
|
args: EnableLDAPSCommandInput,
|
|
@@ -948,12 +952,12 @@ export interface DirectoryService {
|
|
|
948
952
|
): void;
|
|
949
953
|
enableLDAPS(
|
|
950
954
|
args: EnableLDAPSCommandInput,
|
|
951
|
-
options:
|
|
955
|
+
options: DirectoryServiceRequestOptions,
|
|
952
956
|
cb: (err: any, data?: EnableLDAPSCommandOutput) => void,
|
|
953
957
|
): void;
|
|
954
958
|
enableRadius(
|
|
955
959
|
args: EnableRadiusCommandInput,
|
|
956
|
-
options?:
|
|
960
|
+
options?: DirectoryServiceRequestOptions,
|
|
957
961
|
): Promise<EnableRadiusCommandOutput>;
|
|
958
962
|
enableRadius(
|
|
959
963
|
args: EnableRadiusCommandInput,
|
|
@@ -961,12 +965,12 @@ export interface DirectoryService {
|
|
|
961
965
|
): void;
|
|
962
966
|
enableRadius(
|
|
963
967
|
args: EnableRadiusCommandInput,
|
|
964
|
-
options:
|
|
968
|
+
options: DirectoryServiceRequestOptions,
|
|
965
969
|
cb: (err: any, data?: EnableRadiusCommandOutput) => void,
|
|
966
970
|
): void;
|
|
967
971
|
enableSso(
|
|
968
972
|
args: EnableSsoCommandInput,
|
|
969
|
-
options?:
|
|
973
|
+
options?: DirectoryServiceRequestOptions,
|
|
970
974
|
): Promise<EnableSsoCommandOutput>;
|
|
971
975
|
enableSso(
|
|
972
976
|
args: EnableSsoCommandInput,
|
|
@@ -974,13 +978,13 @@ export interface DirectoryService {
|
|
|
974
978
|
): void;
|
|
975
979
|
enableSso(
|
|
976
980
|
args: EnableSsoCommandInput,
|
|
977
|
-
options:
|
|
981
|
+
options: DirectoryServiceRequestOptions,
|
|
978
982
|
cb: (err: any, data?: EnableSsoCommandOutput) => void,
|
|
979
983
|
): void;
|
|
980
984
|
getDirectoryLimits(): Promise<GetDirectoryLimitsCommandOutput>;
|
|
981
985
|
getDirectoryLimits(
|
|
982
986
|
args: GetDirectoryLimitsCommandInput,
|
|
983
|
-
options?:
|
|
987
|
+
options?: DirectoryServiceRequestOptions,
|
|
984
988
|
): Promise<GetDirectoryLimitsCommandOutput>;
|
|
985
989
|
getDirectoryLimits(
|
|
986
990
|
args: GetDirectoryLimitsCommandInput,
|
|
@@ -988,12 +992,12 @@ export interface DirectoryService {
|
|
|
988
992
|
): void;
|
|
989
993
|
getDirectoryLimits(
|
|
990
994
|
args: GetDirectoryLimitsCommandInput,
|
|
991
|
-
options:
|
|
995
|
+
options: DirectoryServiceRequestOptions,
|
|
992
996
|
cb: (err: any, data?: GetDirectoryLimitsCommandOutput) => void,
|
|
993
997
|
): void;
|
|
994
998
|
getSnapshotLimits(
|
|
995
999
|
args: GetSnapshotLimitsCommandInput,
|
|
996
|
-
options?:
|
|
1000
|
+
options?: DirectoryServiceRequestOptions,
|
|
997
1001
|
): Promise<GetSnapshotLimitsCommandOutput>;
|
|
998
1002
|
getSnapshotLimits(
|
|
999
1003
|
args: GetSnapshotLimitsCommandInput,
|
|
@@ -1001,13 +1005,13 @@ export interface DirectoryService {
|
|
|
1001
1005
|
): void;
|
|
1002
1006
|
getSnapshotLimits(
|
|
1003
1007
|
args: GetSnapshotLimitsCommandInput,
|
|
1004
|
-
options:
|
|
1008
|
+
options: DirectoryServiceRequestOptions,
|
|
1005
1009
|
cb: (err: any, data?: GetSnapshotLimitsCommandOutput) => void,
|
|
1006
1010
|
): void;
|
|
1007
1011
|
listADAssessments(): Promise<ListADAssessmentsCommandOutput>;
|
|
1008
1012
|
listADAssessments(
|
|
1009
1013
|
args: ListADAssessmentsCommandInput,
|
|
1010
|
-
options?:
|
|
1014
|
+
options?: DirectoryServiceRequestOptions,
|
|
1011
1015
|
): Promise<ListADAssessmentsCommandOutput>;
|
|
1012
1016
|
listADAssessments(
|
|
1013
1017
|
args: ListADAssessmentsCommandInput,
|
|
@@ -1015,12 +1019,12 @@ export interface DirectoryService {
|
|
|
1015
1019
|
): void;
|
|
1016
1020
|
listADAssessments(
|
|
1017
1021
|
args: ListADAssessmentsCommandInput,
|
|
1018
|
-
options:
|
|
1022
|
+
options: DirectoryServiceRequestOptions,
|
|
1019
1023
|
cb: (err: any, data?: ListADAssessmentsCommandOutput) => void,
|
|
1020
1024
|
): void;
|
|
1021
1025
|
listCertificates(
|
|
1022
1026
|
args: ListCertificatesCommandInput,
|
|
1023
|
-
options?:
|
|
1027
|
+
options?: DirectoryServiceRequestOptions,
|
|
1024
1028
|
): Promise<ListCertificatesCommandOutput>;
|
|
1025
1029
|
listCertificates(
|
|
1026
1030
|
args: ListCertificatesCommandInput,
|
|
@@ -1028,12 +1032,12 @@ export interface DirectoryService {
|
|
|
1028
1032
|
): void;
|
|
1029
1033
|
listCertificates(
|
|
1030
1034
|
args: ListCertificatesCommandInput,
|
|
1031
|
-
options:
|
|
1035
|
+
options: DirectoryServiceRequestOptions,
|
|
1032
1036
|
cb: (err: any, data?: ListCertificatesCommandOutput) => void,
|
|
1033
1037
|
): void;
|
|
1034
1038
|
listIpRoutes(
|
|
1035
1039
|
args: ListIpRoutesCommandInput,
|
|
1036
|
-
options?:
|
|
1040
|
+
options?: DirectoryServiceRequestOptions,
|
|
1037
1041
|
): Promise<ListIpRoutesCommandOutput>;
|
|
1038
1042
|
listIpRoutes(
|
|
1039
1043
|
args: ListIpRoutesCommandInput,
|
|
@@ -1041,13 +1045,13 @@ export interface DirectoryService {
|
|
|
1041
1045
|
): void;
|
|
1042
1046
|
listIpRoutes(
|
|
1043
1047
|
args: ListIpRoutesCommandInput,
|
|
1044
|
-
options:
|
|
1048
|
+
options: DirectoryServiceRequestOptions,
|
|
1045
1049
|
cb: (err: any, data?: ListIpRoutesCommandOutput) => void,
|
|
1046
1050
|
): void;
|
|
1047
1051
|
listLogSubscriptions(): Promise<ListLogSubscriptionsCommandOutput>;
|
|
1048
1052
|
listLogSubscriptions(
|
|
1049
1053
|
args: ListLogSubscriptionsCommandInput,
|
|
1050
|
-
options?:
|
|
1054
|
+
options?: DirectoryServiceRequestOptions,
|
|
1051
1055
|
): Promise<ListLogSubscriptionsCommandOutput>;
|
|
1052
1056
|
listLogSubscriptions(
|
|
1053
1057
|
args: ListLogSubscriptionsCommandInput,
|
|
@@ -1055,12 +1059,12 @@ export interface DirectoryService {
|
|
|
1055
1059
|
): void;
|
|
1056
1060
|
listLogSubscriptions(
|
|
1057
1061
|
args: ListLogSubscriptionsCommandInput,
|
|
1058
|
-
options:
|
|
1062
|
+
options: DirectoryServiceRequestOptions,
|
|
1059
1063
|
cb: (err: any, data?: ListLogSubscriptionsCommandOutput) => void,
|
|
1060
1064
|
): void;
|
|
1061
1065
|
listSchemaExtensions(
|
|
1062
1066
|
args: ListSchemaExtensionsCommandInput,
|
|
1063
|
-
options?:
|
|
1067
|
+
options?: DirectoryServiceRequestOptions,
|
|
1064
1068
|
): Promise<ListSchemaExtensionsCommandOutput>;
|
|
1065
1069
|
listSchemaExtensions(
|
|
1066
1070
|
args: ListSchemaExtensionsCommandInput,
|
|
@@ -1068,12 +1072,12 @@ export interface DirectoryService {
|
|
|
1068
1072
|
): void;
|
|
1069
1073
|
listSchemaExtensions(
|
|
1070
1074
|
args: ListSchemaExtensionsCommandInput,
|
|
1071
|
-
options:
|
|
1075
|
+
options: DirectoryServiceRequestOptions,
|
|
1072
1076
|
cb: (err: any, data?: ListSchemaExtensionsCommandOutput) => void,
|
|
1073
1077
|
): void;
|
|
1074
1078
|
listTagsForResource(
|
|
1075
1079
|
args: ListTagsForResourceCommandInput,
|
|
1076
|
-
options?:
|
|
1080
|
+
options?: DirectoryServiceRequestOptions,
|
|
1077
1081
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
1078
1082
|
listTagsForResource(
|
|
1079
1083
|
args: ListTagsForResourceCommandInput,
|
|
@@ -1081,12 +1085,12 @@ export interface DirectoryService {
|
|
|
1081
1085
|
): void;
|
|
1082
1086
|
listTagsForResource(
|
|
1083
1087
|
args: ListTagsForResourceCommandInput,
|
|
1084
|
-
options:
|
|
1088
|
+
options: DirectoryServiceRequestOptions,
|
|
1085
1089
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
1086
1090
|
): void;
|
|
1087
1091
|
registerCertificate(
|
|
1088
1092
|
args: RegisterCertificateCommandInput,
|
|
1089
|
-
options?:
|
|
1093
|
+
options?: DirectoryServiceRequestOptions,
|
|
1090
1094
|
): Promise<RegisterCertificateCommandOutput>;
|
|
1091
1095
|
registerCertificate(
|
|
1092
1096
|
args: RegisterCertificateCommandInput,
|
|
@@ -1094,12 +1098,12 @@ export interface DirectoryService {
|
|
|
1094
1098
|
): void;
|
|
1095
1099
|
registerCertificate(
|
|
1096
1100
|
args: RegisterCertificateCommandInput,
|
|
1097
|
-
options:
|
|
1101
|
+
options: DirectoryServiceRequestOptions,
|
|
1098
1102
|
cb: (err: any, data?: RegisterCertificateCommandOutput) => void,
|
|
1099
1103
|
): void;
|
|
1100
1104
|
registerEventTopic(
|
|
1101
1105
|
args: RegisterEventTopicCommandInput,
|
|
1102
|
-
options?:
|
|
1106
|
+
options?: DirectoryServiceRequestOptions,
|
|
1103
1107
|
): Promise<RegisterEventTopicCommandOutput>;
|
|
1104
1108
|
registerEventTopic(
|
|
1105
1109
|
args: RegisterEventTopicCommandInput,
|
|
@@ -1107,12 +1111,12 @@ export interface DirectoryService {
|
|
|
1107
1111
|
): void;
|
|
1108
1112
|
registerEventTopic(
|
|
1109
1113
|
args: RegisterEventTopicCommandInput,
|
|
1110
|
-
options:
|
|
1114
|
+
options: DirectoryServiceRequestOptions,
|
|
1111
1115
|
cb: (err: any, data?: RegisterEventTopicCommandOutput) => void,
|
|
1112
1116
|
): void;
|
|
1113
1117
|
rejectSharedDirectory(
|
|
1114
1118
|
args: RejectSharedDirectoryCommandInput,
|
|
1115
|
-
options?:
|
|
1119
|
+
options?: DirectoryServiceRequestOptions,
|
|
1116
1120
|
): Promise<RejectSharedDirectoryCommandOutput>;
|
|
1117
1121
|
rejectSharedDirectory(
|
|
1118
1122
|
args: RejectSharedDirectoryCommandInput,
|
|
@@ -1120,12 +1124,12 @@ export interface DirectoryService {
|
|
|
1120
1124
|
): void;
|
|
1121
1125
|
rejectSharedDirectory(
|
|
1122
1126
|
args: RejectSharedDirectoryCommandInput,
|
|
1123
|
-
options:
|
|
1127
|
+
options: DirectoryServiceRequestOptions,
|
|
1124
1128
|
cb: (err: any, data?: RejectSharedDirectoryCommandOutput) => void,
|
|
1125
1129
|
): void;
|
|
1126
1130
|
removeIpRoutes(
|
|
1127
1131
|
args: RemoveIpRoutesCommandInput,
|
|
1128
|
-
options?:
|
|
1132
|
+
options?: DirectoryServiceRequestOptions,
|
|
1129
1133
|
): Promise<RemoveIpRoutesCommandOutput>;
|
|
1130
1134
|
removeIpRoutes(
|
|
1131
1135
|
args: RemoveIpRoutesCommandInput,
|
|
@@ -1133,12 +1137,12 @@ export interface DirectoryService {
|
|
|
1133
1137
|
): void;
|
|
1134
1138
|
removeIpRoutes(
|
|
1135
1139
|
args: RemoveIpRoutesCommandInput,
|
|
1136
|
-
options:
|
|
1140
|
+
options: DirectoryServiceRequestOptions,
|
|
1137
1141
|
cb: (err: any, data?: RemoveIpRoutesCommandOutput) => void,
|
|
1138
1142
|
): void;
|
|
1139
1143
|
removeRegion(
|
|
1140
1144
|
args: RemoveRegionCommandInput,
|
|
1141
|
-
options?:
|
|
1145
|
+
options?: DirectoryServiceRequestOptions,
|
|
1142
1146
|
): Promise<RemoveRegionCommandOutput>;
|
|
1143
1147
|
removeRegion(
|
|
1144
1148
|
args: RemoveRegionCommandInput,
|
|
@@ -1146,12 +1150,12 @@ export interface DirectoryService {
|
|
|
1146
1150
|
): void;
|
|
1147
1151
|
removeRegion(
|
|
1148
1152
|
args: RemoveRegionCommandInput,
|
|
1149
|
-
options:
|
|
1153
|
+
options: DirectoryServiceRequestOptions,
|
|
1150
1154
|
cb: (err: any, data?: RemoveRegionCommandOutput) => void,
|
|
1151
1155
|
): void;
|
|
1152
1156
|
removeTagsFromResource(
|
|
1153
1157
|
args: RemoveTagsFromResourceCommandInput,
|
|
1154
|
-
options?:
|
|
1158
|
+
options?: DirectoryServiceRequestOptions,
|
|
1155
1159
|
): Promise<RemoveTagsFromResourceCommandOutput>;
|
|
1156
1160
|
removeTagsFromResource(
|
|
1157
1161
|
args: RemoveTagsFromResourceCommandInput,
|
|
@@ -1159,12 +1163,12 @@ export interface DirectoryService {
|
|
|
1159
1163
|
): void;
|
|
1160
1164
|
removeTagsFromResource(
|
|
1161
1165
|
args: RemoveTagsFromResourceCommandInput,
|
|
1162
|
-
options:
|
|
1166
|
+
options: DirectoryServiceRequestOptions,
|
|
1163
1167
|
cb: (err: any, data?: RemoveTagsFromResourceCommandOutput) => void,
|
|
1164
1168
|
): void;
|
|
1165
1169
|
resetUserPassword(
|
|
1166
1170
|
args: ResetUserPasswordCommandInput,
|
|
1167
|
-
options?:
|
|
1171
|
+
options?: DirectoryServiceRequestOptions,
|
|
1168
1172
|
): Promise<ResetUserPasswordCommandOutput>;
|
|
1169
1173
|
resetUserPassword(
|
|
1170
1174
|
args: ResetUserPasswordCommandInput,
|
|
@@ -1172,12 +1176,12 @@ export interface DirectoryService {
|
|
|
1172
1176
|
): void;
|
|
1173
1177
|
resetUserPassword(
|
|
1174
1178
|
args: ResetUserPasswordCommandInput,
|
|
1175
|
-
options:
|
|
1179
|
+
options: DirectoryServiceRequestOptions,
|
|
1176
1180
|
cb: (err: any, data?: ResetUserPasswordCommandOutput) => void,
|
|
1177
1181
|
): void;
|
|
1178
1182
|
restoreFromSnapshot(
|
|
1179
1183
|
args: RestoreFromSnapshotCommandInput,
|
|
1180
|
-
options?:
|
|
1184
|
+
options?: DirectoryServiceRequestOptions,
|
|
1181
1185
|
): Promise<RestoreFromSnapshotCommandOutput>;
|
|
1182
1186
|
restoreFromSnapshot(
|
|
1183
1187
|
args: RestoreFromSnapshotCommandInput,
|
|
@@ -1185,12 +1189,12 @@ export interface DirectoryService {
|
|
|
1185
1189
|
): void;
|
|
1186
1190
|
restoreFromSnapshot(
|
|
1187
1191
|
args: RestoreFromSnapshotCommandInput,
|
|
1188
|
-
options:
|
|
1192
|
+
options: DirectoryServiceRequestOptions,
|
|
1189
1193
|
cb: (err: any, data?: RestoreFromSnapshotCommandOutput) => void,
|
|
1190
1194
|
): void;
|
|
1191
1195
|
shareDirectory(
|
|
1192
1196
|
args: ShareDirectoryCommandInput,
|
|
1193
|
-
options?:
|
|
1197
|
+
options?: DirectoryServiceRequestOptions,
|
|
1194
1198
|
): Promise<ShareDirectoryCommandOutput>;
|
|
1195
1199
|
shareDirectory(
|
|
1196
1200
|
args: ShareDirectoryCommandInput,
|
|
@@ -1198,13 +1202,13 @@ export interface DirectoryService {
|
|
|
1198
1202
|
): void;
|
|
1199
1203
|
shareDirectory(
|
|
1200
1204
|
args: ShareDirectoryCommandInput,
|
|
1201
|
-
options:
|
|
1205
|
+
options: DirectoryServiceRequestOptions,
|
|
1202
1206
|
cb: (err: any, data?: ShareDirectoryCommandOutput) => void,
|
|
1203
1207
|
): void;
|
|
1204
1208
|
startADAssessment(): Promise<StartADAssessmentCommandOutput>;
|
|
1205
1209
|
startADAssessment(
|
|
1206
1210
|
args: StartADAssessmentCommandInput,
|
|
1207
|
-
options?:
|
|
1211
|
+
options?: DirectoryServiceRequestOptions,
|
|
1208
1212
|
): Promise<StartADAssessmentCommandOutput>;
|
|
1209
1213
|
startADAssessment(
|
|
1210
1214
|
args: StartADAssessmentCommandInput,
|
|
@@ -1212,12 +1216,12 @@ export interface DirectoryService {
|
|
|
1212
1216
|
): void;
|
|
1213
1217
|
startADAssessment(
|
|
1214
1218
|
args: StartADAssessmentCommandInput,
|
|
1215
|
-
options:
|
|
1219
|
+
options: DirectoryServiceRequestOptions,
|
|
1216
1220
|
cb: (err: any, data?: StartADAssessmentCommandOutput) => void,
|
|
1217
1221
|
): void;
|
|
1218
1222
|
startSchemaExtension(
|
|
1219
1223
|
args: StartSchemaExtensionCommandInput,
|
|
1220
|
-
options?:
|
|
1224
|
+
options?: DirectoryServiceRequestOptions,
|
|
1221
1225
|
): Promise<StartSchemaExtensionCommandOutput>;
|
|
1222
1226
|
startSchemaExtension(
|
|
1223
1227
|
args: StartSchemaExtensionCommandInput,
|
|
@@ -1225,12 +1229,12 @@ export interface DirectoryService {
|
|
|
1225
1229
|
): void;
|
|
1226
1230
|
startSchemaExtension(
|
|
1227
1231
|
args: StartSchemaExtensionCommandInput,
|
|
1228
|
-
options:
|
|
1232
|
+
options: DirectoryServiceRequestOptions,
|
|
1229
1233
|
cb: (err: any, data?: StartSchemaExtensionCommandOutput) => void,
|
|
1230
1234
|
): void;
|
|
1231
1235
|
unshareDirectory(
|
|
1232
1236
|
args: UnshareDirectoryCommandInput,
|
|
1233
|
-
options?:
|
|
1237
|
+
options?: DirectoryServiceRequestOptions,
|
|
1234
1238
|
): Promise<UnshareDirectoryCommandOutput>;
|
|
1235
1239
|
unshareDirectory(
|
|
1236
1240
|
args: UnshareDirectoryCommandInput,
|
|
@@ -1238,12 +1242,12 @@ export interface DirectoryService {
|
|
|
1238
1242
|
): void;
|
|
1239
1243
|
unshareDirectory(
|
|
1240
1244
|
args: UnshareDirectoryCommandInput,
|
|
1241
|
-
options:
|
|
1245
|
+
options: DirectoryServiceRequestOptions,
|
|
1242
1246
|
cb: (err: any, data?: UnshareDirectoryCommandOutput) => void,
|
|
1243
1247
|
): void;
|
|
1244
1248
|
updateConditionalForwarder(
|
|
1245
1249
|
args: UpdateConditionalForwarderCommandInput,
|
|
1246
|
-
options?:
|
|
1250
|
+
options?: DirectoryServiceRequestOptions,
|
|
1247
1251
|
): Promise<UpdateConditionalForwarderCommandOutput>;
|
|
1248
1252
|
updateConditionalForwarder(
|
|
1249
1253
|
args: UpdateConditionalForwarderCommandInput,
|
|
@@ -1251,12 +1255,12 @@ export interface DirectoryService {
|
|
|
1251
1255
|
): void;
|
|
1252
1256
|
updateConditionalForwarder(
|
|
1253
1257
|
args: UpdateConditionalForwarderCommandInput,
|
|
1254
|
-
options:
|
|
1258
|
+
options: DirectoryServiceRequestOptions,
|
|
1255
1259
|
cb: (err: any, data?: UpdateConditionalForwarderCommandOutput) => void,
|
|
1256
1260
|
): void;
|
|
1257
1261
|
updateDirectorySetup(
|
|
1258
1262
|
args: UpdateDirectorySetupCommandInput,
|
|
1259
|
-
options?:
|
|
1263
|
+
options?: DirectoryServiceRequestOptions,
|
|
1260
1264
|
): Promise<UpdateDirectorySetupCommandOutput>;
|
|
1261
1265
|
updateDirectorySetup(
|
|
1262
1266
|
args: UpdateDirectorySetupCommandInput,
|
|
@@ -1264,12 +1268,12 @@ export interface DirectoryService {
|
|
|
1264
1268
|
): void;
|
|
1265
1269
|
updateDirectorySetup(
|
|
1266
1270
|
args: UpdateDirectorySetupCommandInput,
|
|
1267
|
-
options:
|
|
1271
|
+
options: DirectoryServiceRequestOptions,
|
|
1268
1272
|
cb: (err: any, data?: UpdateDirectorySetupCommandOutput) => void,
|
|
1269
1273
|
): void;
|
|
1270
1274
|
updateHybridAD(
|
|
1271
1275
|
args: UpdateHybridADCommandInput,
|
|
1272
|
-
options?:
|
|
1276
|
+
options?: DirectoryServiceRequestOptions,
|
|
1273
1277
|
): Promise<UpdateHybridADCommandOutput>;
|
|
1274
1278
|
updateHybridAD(
|
|
1275
1279
|
args: UpdateHybridADCommandInput,
|
|
@@ -1277,12 +1281,12 @@ export interface DirectoryService {
|
|
|
1277
1281
|
): void;
|
|
1278
1282
|
updateHybridAD(
|
|
1279
1283
|
args: UpdateHybridADCommandInput,
|
|
1280
|
-
options:
|
|
1284
|
+
options: DirectoryServiceRequestOptions,
|
|
1281
1285
|
cb: (err: any, data?: UpdateHybridADCommandOutput) => void,
|
|
1282
1286
|
): void;
|
|
1283
1287
|
updateNumberOfDomainControllers(
|
|
1284
1288
|
args: UpdateNumberOfDomainControllersCommandInput,
|
|
1285
|
-
options?:
|
|
1289
|
+
options?: DirectoryServiceRequestOptions,
|
|
1286
1290
|
): Promise<UpdateNumberOfDomainControllersCommandOutput>;
|
|
1287
1291
|
updateNumberOfDomainControllers(
|
|
1288
1292
|
args: UpdateNumberOfDomainControllersCommandInput,
|
|
@@ -1290,12 +1294,12 @@ export interface DirectoryService {
|
|
|
1290
1294
|
): void;
|
|
1291
1295
|
updateNumberOfDomainControllers(
|
|
1292
1296
|
args: UpdateNumberOfDomainControllersCommandInput,
|
|
1293
|
-
options:
|
|
1297
|
+
options: DirectoryServiceRequestOptions,
|
|
1294
1298
|
cb: (err: any, data?: UpdateNumberOfDomainControllersCommandOutput) => void,
|
|
1295
1299
|
): void;
|
|
1296
1300
|
updateRadius(
|
|
1297
1301
|
args: UpdateRadiusCommandInput,
|
|
1298
|
-
options?:
|
|
1302
|
+
options?: DirectoryServiceRequestOptions,
|
|
1299
1303
|
): Promise<UpdateRadiusCommandOutput>;
|
|
1300
1304
|
updateRadius(
|
|
1301
1305
|
args: UpdateRadiusCommandInput,
|
|
@@ -1303,12 +1307,12 @@ export interface DirectoryService {
|
|
|
1303
1307
|
): void;
|
|
1304
1308
|
updateRadius(
|
|
1305
1309
|
args: UpdateRadiusCommandInput,
|
|
1306
|
-
options:
|
|
1310
|
+
options: DirectoryServiceRequestOptions,
|
|
1307
1311
|
cb: (err: any, data?: UpdateRadiusCommandOutput) => void,
|
|
1308
1312
|
): void;
|
|
1309
1313
|
updateSettings(
|
|
1310
1314
|
args: UpdateSettingsCommandInput,
|
|
1311
|
-
options?:
|
|
1315
|
+
options?: DirectoryServiceRequestOptions,
|
|
1312
1316
|
): Promise<UpdateSettingsCommandOutput>;
|
|
1313
1317
|
updateSettings(
|
|
1314
1318
|
args: UpdateSettingsCommandInput,
|
|
@@ -1316,12 +1320,12 @@ export interface DirectoryService {
|
|
|
1316
1320
|
): void;
|
|
1317
1321
|
updateSettings(
|
|
1318
1322
|
args: UpdateSettingsCommandInput,
|
|
1319
|
-
options:
|
|
1323
|
+
options: DirectoryServiceRequestOptions,
|
|
1320
1324
|
cb: (err: any, data?: UpdateSettingsCommandOutput) => void,
|
|
1321
1325
|
): void;
|
|
1322
1326
|
updateTrust(
|
|
1323
1327
|
args: UpdateTrustCommandInput,
|
|
1324
|
-
options?:
|
|
1328
|
+
options?: DirectoryServiceRequestOptions,
|
|
1325
1329
|
): Promise<UpdateTrustCommandOutput>;
|
|
1326
1330
|
updateTrust(
|
|
1327
1331
|
args: UpdateTrustCommandInput,
|
|
@@ -1329,12 +1333,12 @@ export interface DirectoryService {
|
|
|
1329
1333
|
): void;
|
|
1330
1334
|
updateTrust(
|
|
1331
1335
|
args: UpdateTrustCommandInput,
|
|
1332
|
-
options:
|
|
1336
|
+
options: DirectoryServiceRequestOptions,
|
|
1333
1337
|
cb: (err: any, data?: UpdateTrustCommandOutput) => void,
|
|
1334
1338
|
): void;
|
|
1335
1339
|
verifyTrust(
|
|
1336
1340
|
args: VerifyTrustCommandInput,
|
|
1337
|
-
options?:
|
|
1341
|
+
options?: DirectoryServiceRequestOptions,
|
|
1338
1342
|
): Promise<VerifyTrustCommandOutput>;
|
|
1339
1343
|
verifyTrust(
|
|
1340
1344
|
args: VerifyTrustCommandInput,
|
|
@@ -1342,7 +1346,7 @@ export interface DirectoryService {
|
|
|
1342
1346
|
): void;
|
|
1343
1347
|
verifyTrust(
|
|
1344
1348
|
args: VerifyTrustCommandInput,
|
|
1345
|
-
options:
|
|
1349
|
+
options: DirectoryServiceRequestOptions,
|
|
1346
1350
|
cb: (err: any, data?: VerifyTrustCommandOutput) => void,
|
|
1347
1351
|
): void;
|
|
1348
1352
|
paginateDescribeClientAuthenticationSettings(
|