@aws-sdk/client-directory-service 3.899.0 → 3.901.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.
@@ -101,6 +101,7 @@ export declare class ADAssessmentLimitExceededException extends __BaseException
101
101
  }
102
102
  export interface IpRoute {
103
103
  CidrIp?: string | undefined;
104
+ CidrIpv6?: string | undefined;
104
105
  Description?: string | undefined;
105
106
  }
106
107
  export interface AddIpRoutesRequest {
@@ -389,14 +390,22 @@ export type ReplicationScope =
389
390
  export interface ConditionalForwarder {
390
391
  RemoteDomainName?: string | undefined;
391
392
  DnsIpAddrs?: string[] | undefined;
393
+ DnsIpv6Addrs?: string[] | undefined;
392
394
  ReplicationScope?: ReplicationScope | undefined;
393
395
  }
394
396
  export interface DirectoryConnectSettings {
395
397
  VpcId: string | undefined;
396
398
  SubnetIds: string[] | undefined;
397
- CustomerDnsIps: string[] | undefined;
399
+ CustomerDnsIps?: string[] | undefined;
400
+ CustomerDnsIpsV6?: string[] | undefined;
398
401
  CustomerUserName: string | undefined;
399
402
  }
403
+ export declare const NetworkType: {
404
+ readonly DUAL_STACK: "Dual-stack";
405
+ readonly IPV4_ONLY: "IPv4";
406
+ readonly IPV6_ONLY: "IPv6";
407
+ };
408
+ export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
400
409
  export declare const DirectorySize: {
401
410
  readonly LARGE: "Large";
402
411
  readonly SMALL: "Small";
@@ -410,6 +419,7 @@ export interface ConnectDirectoryRequest {
410
419
  Size: DirectorySize | undefined;
411
420
  ConnectSettings: DirectoryConnectSettings | undefined;
412
421
  Tags?: Tag[] | undefined;
422
+ NetworkType?: NetworkType | undefined;
413
423
  }
414
424
  export interface ConnectDirectoryResult {
415
425
  DirectoryId?: string | undefined;
@@ -447,7 +457,8 @@ export interface CreateComputerResult {
447
457
  export interface CreateConditionalForwarderRequest {
448
458
  DirectoryId: string | undefined;
449
459
  RemoteDomainName: string | undefined;
450
- DnsIpAddrs: string[] | undefined;
460
+ DnsIpAddrs?: string[] | undefined;
461
+ DnsIpv6Addrs?: string[] | undefined;
451
462
  }
452
463
  export interface CreateConditionalForwarderResult {}
453
464
  export interface CreateDirectoryRequest {
@@ -458,6 +469,7 @@ export interface CreateDirectoryRequest {
458
469
  Size: DirectorySize | undefined;
459
470
  VpcSettings?: DirectoryVpcSettings | undefined;
460
471
  Tags?: Tag[] | undefined;
472
+ NetworkType?: NetworkType | undefined;
461
473
  }
462
474
  export interface CreateDirectoryResult {
463
475
  DirectoryId?: string | undefined;
@@ -489,6 +501,7 @@ export declare class InsufficientPermissionsException extends __BaseException {
489
501
  }
490
502
  export declare const DirectoryEdition: {
491
503
  readonly ENTERPRISE: "Enterprise";
504
+ readonly HYBRID: "Hybrid";
492
505
  readonly STANDARD: "Standard";
493
506
  };
494
507
  export type DirectoryEdition =
@@ -501,6 +514,7 @@ export interface CreateMicrosoftADRequest {
501
514
  VpcSettings: DirectoryVpcSettings | undefined;
502
515
  Edition?: DirectoryEdition | undefined;
503
516
  Tags?: Tag[] | undefined;
517
+ NetworkType?: NetworkType | undefined;
504
518
  }
505
519
  export interface CreateMicrosoftADResult {
506
520
  DirectoryId?: string | undefined;
@@ -545,6 +559,7 @@ export interface CreateTrustRequest {
545
559
  TrustDirection: TrustDirection | undefined;
546
560
  TrustType?: TrustType | undefined;
547
561
  ConditionalForwarderIpAddrs?: string[] | undefined;
562
+ ConditionalForwarderIpv6Addrs?: string[] | undefined;
548
563
  SelectiveAuth?: SelectiveAuth | undefined;
549
564
  }
550
565
  export interface CreateTrustResult {
@@ -658,6 +673,7 @@ export interface DirectoryConnectSettingsDescription {
658
673
  SecurityGroupId?: string | undefined;
659
674
  AvailabilityZones?: string[] | undefined;
660
675
  ConnectIps?: string[] | undefined;
676
+ ConnectIpsV6?: string[] | undefined;
661
677
  }
662
678
  export interface HybridSettingsDescription {
663
679
  SelfManagedDnsIpAddrs?: string[] | undefined;
@@ -678,6 +694,7 @@ export type RadiusAuthenticationProtocol =
678
694
  (typeof RadiusAuthenticationProtocol)[keyof typeof RadiusAuthenticationProtocol];
679
695
  export interface RadiusSettings {
680
696
  RadiusServers?: string[] | undefined;
697
+ RadiusServersIpv6?: string[] | undefined;
681
698
  RadiusPort?: number | undefined;
682
699
  RadiusTimeout?: number | undefined;
683
700
  RadiusRetries?: number | undefined;
@@ -702,9 +719,11 @@ export interface OwnerDirectoryDescription {
702
719
  DirectoryId?: string | undefined;
703
720
  AccountId?: string | undefined;
704
721
  DnsIpAddrs?: string[] | undefined;
722
+ DnsIpv6Addrs?: string[] | undefined;
705
723
  VpcSettings?: DirectoryVpcSettingsDescription | undefined;
706
724
  RadiusSettings?: RadiusSettings | undefined;
707
725
  RadiusStatus?: RadiusStatus | undefined;
726
+ NetworkType?: NetworkType | undefined;
708
727
  }
709
728
  export interface RegionsInfo {
710
729
  PrimaryRegion?: string | undefined;
@@ -743,6 +762,7 @@ export interface DirectoryDescription {
743
762
  AccessUrl?: string | undefined;
744
763
  Description?: string | undefined;
745
764
  DnsIpAddrs?: string[] | undefined;
765
+ DnsIpv6Addrs?: string[] | undefined;
746
766
  Stage?: DirectoryStage | undefined;
747
767
  ShareStatus?: ShareStatus | undefined;
748
768
  ShareMethod?: ShareMethod | undefined;
@@ -761,6 +781,7 @@ export interface DirectoryDescription {
761
781
  RegionsInfo?: RegionsInfo | undefined;
762
782
  OsVersion?: OSVersion | undefined;
763
783
  HybridSettings?: HybridSettingsDescription | undefined;
784
+ NetworkType?: NetworkType | undefined;
764
785
  }
765
786
  export interface DescribeDirectoriesResult {
766
787
  DirectoryDescriptions?: DirectoryDescription[] | undefined;
@@ -803,6 +824,7 @@ export interface DomainController {
803
824
  DirectoryId?: string | undefined;
804
825
  DomainControllerId?: string | undefined;
805
826
  DnsIpAddr?: string | undefined;
827
+ DnsIpv6Addr?: string | undefined;
806
828
  VpcId?: string | undefined;
807
829
  SubnetId?: string | undefined;
808
830
  AvailabilityZone?: string | undefined;
@@ -1038,7 +1060,9 @@ export interface DescribeTrustsResult {
1038
1060
  NextToken?: string | undefined;
1039
1061
  }
1040
1062
  export declare const UpdateType: {
1063
+ readonly NETWORK: "NETWORK";
1041
1064
  readonly OS: "OS";
1065
+ readonly SIZE: "SIZE";
1042
1066
  };
1043
1067
  export type UpdateType = (typeof UpdateType)[keyof typeof UpdateType];
1044
1068
  export interface DescribeUpdateDirectoryRequest {
@@ -1265,6 +1289,7 @@ export type IpRouteStatusMsg =
1265
1289
  export interface IpRouteInfo {
1266
1290
  DirectoryId?: string | undefined;
1267
1291
  CidrIp?: string | undefined;
1292
+ CidrIpv6?: string | undefined;
1268
1293
  IpRouteStatusMsg?: IpRouteStatusMsg | undefined;
1269
1294
  AddedDateTime?: Date | undefined;
1270
1295
  IpRouteStatusReason?: string | undefined;
@@ -1359,7 +1384,8 @@ export interface RejectSharedDirectoryResult {
1359
1384
  }
1360
1385
  export interface RemoveIpRoutesRequest {
1361
1386
  DirectoryId: string | undefined;
1362
- CidrIps: string[] | undefined;
1387
+ CidrIps?: string[] | undefined;
1388
+ CidrIpv6s?: string[] | undefined;
1363
1389
  }
1364
1390
  export interface RemoveIpRoutesResult {}
1365
1391
  export interface RemoveRegionRequest {
@@ -1473,13 +1499,23 @@ export interface UnshareDirectoryResult {
1473
1499
  export interface UpdateConditionalForwarderRequest {
1474
1500
  DirectoryId: string | undefined;
1475
1501
  RemoteDomainName: string | undefined;
1476
- DnsIpAddrs: string[] | undefined;
1502
+ DnsIpAddrs?: string[] | undefined;
1503
+ DnsIpv6Addrs?: string[] | undefined;
1477
1504
  }
1478
1505
  export interface UpdateConditionalForwarderResult {}
1506
+ export interface DirectorySizeUpdateSettings {
1507
+ DirectorySize?: DirectorySize | undefined;
1508
+ }
1509
+ export interface NetworkUpdateSettings {
1510
+ NetworkType?: NetworkType | undefined;
1511
+ CustomerDnsIpsV6?: string[] | undefined;
1512
+ }
1479
1513
  export interface UpdateDirectorySetupRequest {
1480
1514
  DirectoryId: string | undefined;
1481
1515
  UpdateType: UpdateType | undefined;
1482
1516
  OSUpdateSettings?: OSUpdateSettings | undefined;
1517
+ DirectorySizeUpdateSettings?: DirectorySizeUpdateSettings | undefined;
1518
+ NetworkUpdateSettings?: NetworkUpdateSettings | undefined;
1483
1519
  CreateSnapshotBeforeUpdate?: boolean | undefined;
1484
1520
  }
1485
1521
  export interface UpdateDirectorySetupResult {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-directory-service",
3
3
  "description": "AWS SDK for JavaScript Directory Service Client for Node.js, Browser and React Native",
4
- "version": "3.899.0",
4
+ "version": "3.901.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-directory-service",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.899.0",
24
- "@aws-sdk/credential-provider-node": "3.899.0",
25
- "@aws-sdk/middleware-host-header": "3.893.0",
26
- "@aws-sdk/middleware-logger": "3.893.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.893.0",
28
- "@aws-sdk/middleware-user-agent": "3.899.0",
29
- "@aws-sdk/region-config-resolver": "3.893.0",
30
- "@aws-sdk/types": "3.893.0",
31
- "@aws-sdk/util-endpoints": "3.895.0",
32
- "@aws-sdk/util-user-agent-browser": "3.893.0",
33
- "@aws-sdk/util-user-agent-node": "3.899.0",
34
- "@smithy/config-resolver": "^4.2.2",
35
- "@smithy/core": "^3.13.0",
36
- "@smithy/fetch-http-handler": "^5.2.1",
37
- "@smithy/hash-node": "^4.1.1",
38
- "@smithy/invalid-dependency": "^4.1.1",
39
- "@smithy/middleware-content-length": "^4.1.1",
40
- "@smithy/middleware-endpoint": "^4.2.5",
41
- "@smithy/middleware-retry": "^4.3.1",
42
- "@smithy/middleware-serde": "^4.1.1",
43
- "@smithy/middleware-stack": "^4.1.1",
44
- "@smithy/node-config-provider": "^4.2.2",
45
- "@smithy/node-http-handler": "^4.2.1",
46
- "@smithy/protocol-http": "^5.2.1",
47
- "@smithy/smithy-client": "^4.6.5",
48
- "@smithy/types": "^4.5.0",
49
- "@smithy/url-parser": "^4.1.1",
50
- "@smithy/util-base64": "^4.1.0",
51
- "@smithy/util-body-length-browser": "^4.1.0",
52
- "@smithy/util-body-length-node": "^4.1.0",
53
- "@smithy/util-defaults-mode-browser": "^4.1.5",
54
- "@smithy/util-defaults-mode-node": "^4.1.5",
55
- "@smithy/util-endpoints": "^3.1.2",
56
- "@smithy/util-middleware": "^4.1.1",
57
- "@smithy/util-retry": "^4.1.2",
58
- "@smithy/util-utf8": "^4.1.0",
59
- "@smithy/util-waiter": "^4.1.1",
23
+ "@aws-sdk/core": "3.901.0",
24
+ "@aws-sdk/credential-provider-node": "3.901.0",
25
+ "@aws-sdk/middleware-host-header": "3.901.0",
26
+ "@aws-sdk/middleware-logger": "3.901.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.901.0",
28
+ "@aws-sdk/middleware-user-agent": "3.901.0",
29
+ "@aws-sdk/region-config-resolver": "3.901.0",
30
+ "@aws-sdk/types": "3.901.0",
31
+ "@aws-sdk/util-endpoints": "3.901.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.901.0",
33
+ "@aws-sdk/util-user-agent-node": "3.901.0",
34
+ "@smithy/config-resolver": "^4.3.0",
35
+ "@smithy/core": "^3.14.0",
36
+ "@smithy/fetch-http-handler": "^5.3.0",
37
+ "@smithy/hash-node": "^4.2.0",
38
+ "@smithy/invalid-dependency": "^4.2.0",
39
+ "@smithy/middleware-content-length": "^4.2.0",
40
+ "@smithy/middleware-endpoint": "^4.3.0",
41
+ "@smithy/middleware-retry": "^4.4.0",
42
+ "@smithy/middleware-serde": "^4.2.0",
43
+ "@smithy/middleware-stack": "^4.2.0",
44
+ "@smithy/node-config-provider": "^4.3.0",
45
+ "@smithy/node-http-handler": "^4.3.0",
46
+ "@smithy/protocol-http": "^5.3.0",
47
+ "@smithy/smithy-client": "^4.7.0",
48
+ "@smithy/types": "^4.6.0",
49
+ "@smithy/url-parser": "^4.2.0",
50
+ "@smithy/util-base64": "^4.2.0",
51
+ "@smithy/util-body-length-browser": "^4.2.0",
52
+ "@smithy/util-body-length-node": "^4.2.0",
53
+ "@smithy/util-defaults-mode-browser": "^4.2.0",
54
+ "@smithy/util-defaults-mode-node": "^4.2.0",
55
+ "@smithy/util-endpoints": "^3.2.0",
56
+ "@smithy/util-middleware": "^4.2.0",
57
+ "@smithy/util-retry": "^4.2.0",
58
+ "@smithy/util-utf8": "^4.2.0",
59
+ "@smithy/util-waiter": "^4.2.0",
60
60
  "tslib": "^2.6.2"
61
61
  },
62
62
  "devDependencies": {