aws-sdk-directoryservice 1.92.0 → 1.94.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-directoryservice/client.rb +198 -21
- data/lib/aws-sdk-directoryservice/client_api.rb +130 -4
- data/lib/aws-sdk-directoryservice/customizations.rb +0 -8
- data/lib/aws-sdk-directoryservice/errors.rb +42 -0
- data/lib/aws-sdk-directoryservice/types.rb +367 -53
- data/lib/aws-sdk-directoryservice.rb +1 -1
- data/sig/client.rbs +61 -10
- data/sig/errors.rbs +8 -0
- data/sig/types.rbs +78 -4
- metadata +1 -1
@@ -828,6 +828,12 @@ module Aws::DirectoryService
|
|
828
828
|
# conditional forwarder points to.
|
829
829
|
# @return [Array<String>]
|
830
830
|
#
|
831
|
+
# @!attribute [rw] dns_ipv_6_addrs
|
832
|
+
# The IPv6 addresses of the remote DNS server associated with
|
833
|
+
# RemoteDomainName. This is the IPv6 address of the DNS server that
|
834
|
+
# your conditional forwarder points to.
|
835
|
+
# @return [Array<String>]
|
836
|
+
#
|
831
837
|
# @!attribute [rw] replication_scope
|
832
838
|
# The replication scope of the conditional forwarder. The only allowed
|
833
839
|
# value is `Domain`, which will replicate the conditional forwarder to
|
@@ -840,6 +846,7 @@ module Aws::DirectoryService
|
|
840
846
|
class ConditionalForwarder < Struct.new(
|
841
847
|
:remote_domain_name,
|
842
848
|
:dns_ip_addrs,
|
849
|
+
:dns_ipv_6_addrs,
|
843
850
|
:replication_scope)
|
844
851
|
SENSITIVE = []
|
845
852
|
include Aws::Structure
|
@@ -877,6 +884,11 @@ module Aws::DirectoryService
|
|
877
884
|
# The tags to be assigned to AD Connector.
|
878
885
|
# @return [Array<Types::Tag>]
|
879
886
|
#
|
887
|
+
# @!attribute [rw] network_type
|
888
|
+
# The network type for your directory. The default value is `IPv4` or
|
889
|
+
# `IPv6` based on the provided subnet capabilities.
|
890
|
+
# @return [String]
|
891
|
+
#
|
880
892
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/ConnectDirectoryRequest AWS API Documentation
|
881
893
|
#
|
882
894
|
class ConnectDirectoryRequest < Struct.new(
|
@@ -886,7 +898,8 @@ module Aws::DirectoryService
|
|
886
898
|
:description,
|
887
899
|
:size,
|
888
900
|
:connect_settings,
|
889
|
-
:tags
|
901
|
+
:tags,
|
902
|
+
:network_type)
|
890
903
|
SENSITIVE = [:password]
|
891
904
|
include Aws::Structure
|
892
905
|
end
|
@@ -1019,12 +1032,18 @@ module Aws::DirectoryService
|
|
1019
1032
|
# RemoteDomainName.
|
1020
1033
|
# @return [Array<String>]
|
1021
1034
|
#
|
1035
|
+
# @!attribute [rw] dns_ipv_6_addrs
|
1036
|
+
# The IPv6 addresses of the remote DNS server associated with
|
1037
|
+
# RemoteDomainName.
|
1038
|
+
# @return [Array<String>]
|
1039
|
+
#
|
1022
1040
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/CreateConditionalForwarderRequest AWS API Documentation
|
1023
1041
|
#
|
1024
1042
|
class CreateConditionalForwarderRequest < Struct.new(
|
1025
1043
|
:directory_id,
|
1026
1044
|
:remote_domain_name,
|
1027
|
-
:dns_ip_addrs
|
1045
|
+
:dns_ip_addrs,
|
1046
|
+
:dns_ipv_6_addrs)
|
1028
1047
|
SENSITIVE = []
|
1029
1048
|
include Aws::Structure
|
1030
1049
|
end
|
@@ -1102,6 +1121,11 @@ module Aws::DirectoryService
|
|
1102
1121
|
# The tags to be assigned to the Simple AD directory.
|
1103
1122
|
# @return [Array<Types::Tag>]
|
1104
1123
|
#
|
1124
|
+
# @!attribute [rw] network_type
|
1125
|
+
# The network type for your directory. Simple AD supports IPv4 and
|
1126
|
+
# Dual-stack only.
|
1127
|
+
# @return [String]
|
1128
|
+
#
|
1105
1129
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/CreateDirectoryRequest AWS API Documentation
|
1106
1130
|
#
|
1107
1131
|
class CreateDirectoryRequest < Struct.new(
|
@@ -1111,7 +1135,8 @@ module Aws::DirectoryService
|
|
1111
1135
|
:description,
|
1112
1136
|
:size,
|
1113
1137
|
:vpc_settings,
|
1114
|
-
:tags
|
1138
|
+
:tags,
|
1139
|
+
:network_type)
|
1115
1140
|
SENSITIVE = [:password]
|
1116
1141
|
include Aws::Structure
|
1117
1142
|
end
|
@@ -1241,6 +1266,11 @@ module Aws::DirectoryService
|
|
1241
1266
|
# The tags to be assigned to the Managed Microsoft AD directory.
|
1242
1267
|
# @return [Array<Types::Tag>]
|
1243
1268
|
#
|
1269
|
+
# @!attribute [rw] network_type
|
1270
|
+
# The network type for your domain. The default value is `IPv4` or
|
1271
|
+
# `IPv6` based on the provided subnet capabilities.
|
1272
|
+
# @return [String]
|
1273
|
+
#
|
1244
1274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/CreateMicrosoftADRequest AWS API Documentation
|
1245
1275
|
#
|
1246
1276
|
class CreateMicrosoftADRequest < Struct.new(
|
@@ -1250,7 +1280,8 @@ module Aws::DirectoryService
|
|
1250
1280
|
:description,
|
1251
1281
|
:vpc_settings,
|
1252
1282
|
:edition,
|
1253
|
-
:tags
|
1283
|
+
:tags,
|
1284
|
+
:network_type)
|
1254
1285
|
SENSITIVE = [:password]
|
1255
1286
|
include Aws::Structure
|
1256
1287
|
end
|
@@ -1342,6 +1373,11 @@ module Aws::DirectoryService
|
|
1342
1373
|
# RemoteDomainName.
|
1343
1374
|
# @return [Array<String>]
|
1344
1375
|
#
|
1376
|
+
# @!attribute [rw] conditional_forwarder_ipv_6_addrs
|
1377
|
+
# The IPv6 addresses of the remote DNS server associated with
|
1378
|
+
# RemoteDomainName.
|
1379
|
+
# @return [Array<String>]
|
1380
|
+
#
|
1345
1381
|
# @!attribute [rw] selective_auth
|
1346
1382
|
# Optional parameter to enable selective authentication for the trust.
|
1347
1383
|
# @return [String]
|
@@ -1355,6 +1391,7 @@ module Aws::DirectoryService
|
|
1355
1391
|
:trust_direction,
|
1356
1392
|
:trust_type,
|
1357
1393
|
:conditional_forwarder_ip_addrs,
|
1394
|
+
:conditional_forwarder_ipv_6_addrs,
|
1358
1395
|
:selective_auth)
|
1359
1396
|
SENSITIVE = [:trust_password]
|
1360
1397
|
include Aws::Structure
|
@@ -1613,6 +1650,79 @@ module Aws::DirectoryService
|
|
1613
1650
|
include Aws::Structure
|
1614
1651
|
end
|
1615
1652
|
|
1653
|
+
# Contains the inputs for the DescribeCAEnrollmentPolicy operation.
|
1654
|
+
#
|
1655
|
+
# @!attribute [rw] directory_id
|
1656
|
+
# The identifier of the directory for which to retrieve the CA
|
1657
|
+
# enrollment policy information.
|
1658
|
+
# @return [String]
|
1659
|
+
#
|
1660
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DescribeCAEnrollmentPolicyRequest AWS API Documentation
|
1661
|
+
#
|
1662
|
+
class DescribeCAEnrollmentPolicyRequest < Struct.new(
|
1663
|
+
:directory_id)
|
1664
|
+
SENSITIVE = []
|
1665
|
+
include Aws::Structure
|
1666
|
+
end
|
1667
|
+
|
1668
|
+
# Contains the results of the DescribeCAEnrollmentPolicy operation.
|
1669
|
+
#
|
1670
|
+
# @!attribute [rw] directory_id
|
1671
|
+
# The identifier of the directory associated with this CA enrollment
|
1672
|
+
# policy.
|
1673
|
+
# @return [String]
|
1674
|
+
#
|
1675
|
+
# @!attribute [rw] pca_connector_arn
|
1676
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Private
|
1677
|
+
# Certificate Authority (PCA) connector that is configured for
|
1678
|
+
# automatic certificate enrollment in this directory.
|
1679
|
+
# @return [String]
|
1680
|
+
#
|
1681
|
+
# @!attribute [rw] ca_enrollment_policy_status
|
1682
|
+
# The current status of the CA enrollment policy. This indicates if
|
1683
|
+
# automatic certificate enrollment is currently active, inactive, or
|
1684
|
+
# in a transitional state.
|
1685
|
+
#
|
1686
|
+
# Valid values:
|
1687
|
+
#
|
1688
|
+
# * `IN_PROGRESS` - The policy is being activated T
|
1689
|
+
#
|
1690
|
+
# * `SUCCESS` - The policy is active and automatic certificate
|
1691
|
+
# enrollment is operational
|
1692
|
+
#
|
1693
|
+
# * `FAILED` - The policy activation or deactivation failed
|
1694
|
+
#
|
1695
|
+
# * `DISABLING` - The policy is being deactivated
|
1696
|
+
#
|
1697
|
+
# * `DISABLED` - The policy is inactive and automatic certificate
|
1698
|
+
# enrollment is not available
|
1699
|
+
#
|
1700
|
+
# * `IMPAIRED` - Network connectivity is impaired.
|
1701
|
+
# @return [String]
|
1702
|
+
#
|
1703
|
+
# @!attribute [rw] last_updated_date_time
|
1704
|
+
# The date and time when the CA enrollment policy was last modified or
|
1705
|
+
# updated.
|
1706
|
+
# @return [Time]
|
1707
|
+
#
|
1708
|
+
# @!attribute [rw] ca_enrollment_policy_status_reason
|
1709
|
+
# Additional information explaining the current status of the CA
|
1710
|
+
# enrollment policy, particularly useful when the policy is in an
|
1711
|
+
# error or transitional state.
|
1712
|
+
# @return [String]
|
1713
|
+
#
|
1714
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DescribeCAEnrollmentPolicyResult AWS API Documentation
|
1715
|
+
#
|
1716
|
+
class DescribeCAEnrollmentPolicyResult < Struct.new(
|
1717
|
+
:directory_id,
|
1718
|
+
:pca_connector_arn,
|
1719
|
+
:ca_enrollment_policy_status,
|
1720
|
+
:last_updated_date_time,
|
1721
|
+
:ca_enrollment_policy_status_reason)
|
1722
|
+
SENSITIVE = []
|
1723
|
+
include Aws::Structure
|
1724
|
+
end
|
1725
|
+
|
1616
1726
|
# @!attribute [rw] directory_id
|
1617
1727
|
# The identifier of the directory.
|
1618
1728
|
# @return [String]
|
@@ -2359,8 +2469,8 @@ module Aws::DirectoryService
|
|
2359
2469
|
include Aws::Structure
|
2360
2470
|
end
|
2361
2471
|
|
2362
|
-
# Contains
|
2363
|
-
#
|
2472
|
+
# Contains connection settings for creating an AD Connector with the
|
2473
|
+
# ConnectDirectory action.
|
2364
2474
|
#
|
2365
2475
|
# @!attribute [rw] vpc_id
|
2366
2476
|
# The identifier of the VPC in which the AD Connector is created.
|
@@ -2372,8 +2482,13 @@ module Aws::DirectoryService
|
|
2372
2482
|
# @return [Array<String>]
|
2373
2483
|
#
|
2374
2484
|
# @!attribute [rw] customer_dns_ips
|
2375
|
-
#
|
2376
|
-
#
|
2485
|
+
# The IP addresses of DNS servers or domain controllers in your
|
2486
|
+
# self-managed directory.
|
2487
|
+
# @return [Array<String>]
|
2488
|
+
#
|
2489
|
+
# @!attribute [rw] customer_dns_ips_v6
|
2490
|
+
# The IPv6 addresses of DNS servers or domain controllers in your
|
2491
|
+
# self-managed directory.
|
2377
2492
|
# @return [Array<String>]
|
2378
2493
|
#
|
2379
2494
|
# @!attribute [rw] customer_user_name
|
@@ -2394,6 +2509,7 @@ module Aws::DirectoryService
|
|
2394
2509
|
:vpc_id,
|
2395
2510
|
:subnet_ids,
|
2396
2511
|
:customer_dns_ips,
|
2512
|
+
:customer_dns_ips_v6,
|
2397
2513
|
:customer_user_name)
|
2398
2514
|
SENSITIVE = []
|
2399
2515
|
include Aws::Structure
|
@@ -2418,13 +2534,17 @@ module Aws::DirectoryService
|
|
2418
2534
|
# @return [String]
|
2419
2535
|
#
|
2420
2536
|
# @!attribute [rw] availability_zones
|
2421
|
-
#
|
2537
|
+
# The Availability Zones that the directory is in.
|
2422
2538
|
# @return [Array<String>]
|
2423
2539
|
#
|
2424
2540
|
# @!attribute [rw] connect_ips
|
2425
2541
|
# The IP addresses of the AD Connector servers.
|
2426
2542
|
# @return [Array<String>]
|
2427
2543
|
#
|
2544
|
+
# @!attribute [rw] connect_ips_v6
|
2545
|
+
# The IPv6 addresses of the AD Connector servers.
|
2546
|
+
# @return [Array<String>]
|
2547
|
+
#
|
2428
2548
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DirectoryConnectSettingsDescription AWS API Documentation
|
2429
2549
|
#
|
2430
2550
|
class DirectoryConnectSettingsDescription < Struct.new(
|
@@ -2433,7 +2553,8 @@ module Aws::DirectoryService
|
|
2433
2553
|
:customer_user_name,
|
2434
2554
|
:security_group_id,
|
2435
2555
|
:availability_zones,
|
2436
|
-
:connect_ips
|
2556
|
+
:connect_ips,
|
2557
|
+
:connect_ips_v6)
|
2437
2558
|
SENSITIVE = []
|
2438
2559
|
include Aws::Structure
|
2439
2560
|
end
|
@@ -2461,16 +2582,14 @@ module Aws::DirectoryService
|
|
2461
2582
|
# @return [String]
|
2462
2583
|
#
|
2463
2584
|
# @!attribute [rw] alias
|
2464
|
-
# The alias for the directory. If no alias
|
2465
|
-
# directory
|
2466
|
-
# `d-XXXXXXXXXX`.
|
2585
|
+
# The alias for the directory. If no alias exists, the alias is the
|
2586
|
+
# directory identifier, such as `d-XXXXXXXXXX`.
|
2467
2587
|
# @return [String]
|
2468
2588
|
#
|
2469
2589
|
# @!attribute [rw] access_url
|
2470
2590
|
# The access URL for the directory, such as
|
2471
|
-
# `http://<alias>.awsapps.com`. If no alias
|
2472
|
-
# directory
|
2473
|
-
# `d-XXXXXXXXXX`.
|
2591
|
+
# `http://<alias>.awsapps.com`. If no alias exists, `<alias>` is the
|
2592
|
+
# directory identifier, such as `d-XXXXXXXXXX`.
|
2474
2593
|
# @return [String]
|
2475
2594
|
#
|
2476
2595
|
# @!attribute [rw] description
|
@@ -2481,7 +2600,15 @@ module Aws::DirectoryService
|
|
2481
2600
|
# The IP addresses of the DNS servers for the directory. For a Simple
|
2482
2601
|
# AD or Microsoft AD directory, these are the IP addresses of the
|
2483
2602
|
# Simple AD or Microsoft AD directory servers. For an AD Connector
|
2484
|
-
# directory, these are the IP addresses of
|
2603
|
+
# directory, these are the IP addresses of self-managed directory to
|
2604
|
+
# which the AD Connector is connected.
|
2605
|
+
# @return [Array<String>]
|
2606
|
+
#
|
2607
|
+
# @!attribute [rw] dns_ipv_6_addrs
|
2608
|
+
# The IPv6 addresses of the DNS servers for the directory. For a
|
2609
|
+
# Simple AD or Microsoft AD directory, these are the IPv6 addresses of
|
2610
|
+
# the Simple AD or Microsoft AD directory servers. For an AD Connector
|
2611
|
+
# directory, these are the IPv6 addresses of the DNS servers or domain
|
2485
2612
|
# controllers in your self-managed directory to which the AD Connector
|
2486
2613
|
# is connected.
|
2487
2614
|
# @return [Array<String>]
|
@@ -2510,11 +2637,11 @@ module Aws::DirectoryService
|
|
2510
2637
|
# @return [String]
|
2511
2638
|
#
|
2512
2639
|
# @!attribute [rw] launch_time
|
2513
|
-
#
|
2640
|
+
# The date and time when the directory was created.
|
2514
2641
|
# @return [Time]
|
2515
2642
|
#
|
2516
2643
|
# @!attribute [rw] stage_last_updated_date_time
|
2517
|
-
# The date and time
|
2644
|
+
# The date and time when the stage was last updated.
|
2518
2645
|
# @return [Time]
|
2519
2646
|
#
|
2520
2647
|
# @!attribute [rw] type
|
@@ -2523,19 +2650,19 @@ module Aws::DirectoryService
|
|
2523
2650
|
#
|
2524
2651
|
# @!attribute [rw] vpc_settings
|
2525
2652
|
# A DirectoryVpcSettingsDescription object that contains additional
|
2526
|
-
# information about a directory.
|
2527
|
-
#
|
2653
|
+
# information about a directory. Present only for Simple AD and
|
2654
|
+
# Managed Microsoft AD directories.
|
2528
2655
|
# @return [Types::DirectoryVpcSettingsDescription]
|
2529
2656
|
#
|
2530
2657
|
# @!attribute [rw] connect_settings
|
2531
|
-
#
|
2532
|
-
#
|
2533
|
-
#
|
2658
|
+
# DirectoryConnectSettingsDescription object that contains additional
|
2659
|
+
# information about an AD Connector directory. Present only for AD
|
2660
|
+
# Connector directories.
|
2534
2661
|
# @return [Types::DirectoryConnectSettingsDescription]
|
2535
2662
|
#
|
2536
2663
|
# @!attribute [rw] radius_settings
|
2537
|
-
#
|
2538
|
-
#
|
2664
|
+
# Information about the RadiusSettings object configured for this
|
2665
|
+
# directory.
|
2539
2666
|
# @return [Types::RadiusSettings]
|
2540
2667
|
#
|
2541
2668
|
# @!attribute [rw] radius_status
|
@@ -2547,8 +2674,8 @@ module Aws::DirectoryService
|
|
2547
2674
|
# @return [String]
|
2548
2675
|
#
|
2549
2676
|
# @!attribute [rw] sso_enabled
|
2550
|
-
# Indicates
|
2551
|
-
# information, see EnableSso and DisableSso.
|
2677
|
+
# Indicates whether single sign-on is enabled for the directory. For
|
2678
|
+
# more information, see EnableSso and DisableSso.
|
2552
2679
|
# @return [Boolean]
|
2553
2680
|
#
|
2554
2681
|
# @!attribute [rw] desired_number_of_domain_controllers
|
@@ -2575,6 +2702,10 @@ module Aws::DirectoryService
|
|
2575
2702
|
# node identifiers and DNS IPs.
|
2576
2703
|
# @return [Types::HybridSettingsDescription]
|
2577
2704
|
#
|
2705
|
+
# @!attribute [rw] network_type
|
2706
|
+
# The network type of the directory.
|
2707
|
+
# @return [String]
|
2708
|
+
#
|
2578
2709
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DirectoryDescription AWS API Documentation
|
2579
2710
|
#
|
2580
2711
|
class DirectoryDescription < Struct.new(
|
@@ -2587,6 +2718,7 @@ module Aws::DirectoryService
|
|
2587
2718
|
:access_url,
|
2588
2719
|
:description,
|
2589
2720
|
:dns_ip_addrs,
|
2721
|
+
:dns_ipv_6_addrs,
|
2590
2722
|
:stage,
|
2591
2723
|
:share_status,
|
2592
2724
|
:share_method,
|
@@ -2604,7 +2736,8 @@ module Aws::DirectoryService
|
|
2604
2736
|
:owner_directory_description,
|
2605
2737
|
:regions_info,
|
2606
2738
|
:os_version,
|
2607
|
-
:hybrid_settings
|
2739
|
+
:hybrid_settings,
|
2740
|
+
:network_type)
|
2608
2741
|
SENSITIVE = [:share_notes]
|
2609
2742
|
include Aws::Structure
|
2610
2743
|
end
|
@@ -2745,6 +2878,20 @@ module Aws::DirectoryService
|
|
2745
2878
|
include Aws::Structure
|
2746
2879
|
end
|
2747
2880
|
|
2881
|
+
# Contains the directory size configuration for update operations.
|
2882
|
+
#
|
2883
|
+
# @!attribute [rw] directory_size
|
2884
|
+
# The target directory size for the update operation.
|
2885
|
+
# @return [String]
|
2886
|
+
#
|
2887
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DirectorySizeUpdateSettings AWS API Documentation
|
2888
|
+
#
|
2889
|
+
class DirectorySizeUpdateSettings < Struct.new(
|
2890
|
+
:directory_size)
|
2891
|
+
SENSITIVE = []
|
2892
|
+
include Aws::Structure
|
2893
|
+
end
|
2894
|
+
|
2748
2895
|
# The specified directory is unavailable.
|
2749
2896
|
#
|
2750
2897
|
# @!attribute [rw] message
|
@@ -2816,6 +2963,47 @@ module Aws::DirectoryService
|
|
2816
2963
|
include Aws::Structure
|
2817
2964
|
end
|
2818
2965
|
|
2966
|
+
# A disable operation for CA enrollment policy is already in progress
|
2967
|
+
# for this directory.
|
2968
|
+
#
|
2969
|
+
# @!attribute [rw] message
|
2970
|
+
# The descriptive message for the exception.
|
2971
|
+
# @return [String]
|
2972
|
+
#
|
2973
|
+
# @!attribute [rw] request_id
|
2974
|
+
# The Amazon Web Services request identifier.
|
2975
|
+
# @return [String]
|
2976
|
+
#
|
2977
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DisableAlreadyInProgressException AWS API Documentation
|
2978
|
+
#
|
2979
|
+
class DisableAlreadyInProgressException < Struct.new(
|
2980
|
+
:message,
|
2981
|
+
:request_id)
|
2982
|
+
SENSITIVE = []
|
2983
|
+
include Aws::Structure
|
2984
|
+
end
|
2985
|
+
|
2986
|
+
# Contains the inputs for the DisableCAEnrollmentPolicy operation.
|
2987
|
+
#
|
2988
|
+
# @!attribute [rw] directory_id
|
2989
|
+
# The identifier of the directory for which to disable the CA
|
2990
|
+
# enrollment policy.
|
2991
|
+
# @return [String]
|
2992
|
+
#
|
2993
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DisableCAEnrollmentPolicyRequest AWS API Documentation
|
2994
|
+
#
|
2995
|
+
class DisableCAEnrollmentPolicyRequest < Struct.new(
|
2996
|
+
:directory_id)
|
2997
|
+
SENSITIVE = []
|
2998
|
+
include Aws::Structure
|
2999
|
+
end
|
3000
|
+
|
3001
|
+
# Contains the results of the DisableCAEnrollmentPolicy operation.
|
3002
|
+
#
|
3003
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DisableCAEnrollmentPolicyResult AWS API Documentation
|
3004
|
+
#
|
3005
|
+
class DisableCAEnrollmentPolicyResult < Aws::EmptyStructure; end
|
3006
|
+
|
2819
3007
|
# @!attribute [rw] directory_id
|
2820
3008
|
# The identifier of the directory
|
2821
3009
|
# @return [String]
|
@@ -2952,6 +3140,10 @@ module Aws::DirectoryService
|
|
2952
3140
|
# The IP address of the domain controller.
|
2953
3141
|
# @return [String]
|
2954
3142
|
#
|
3143
|
+
# @!attribute [rw] dns_ipv_6_addr
|
3144
|
+
# The IPv6 address of the domain controller.
|
3145
|
+
# @return [String]
|
3146
|
+
#
|
2955
3147
|
# @!attribute [rw] vpc_id
|
2956
3148
|
# The identifier of the VPC that contains the domain controller.
|
2957
3149
|
# @return [String]
|
@@ -2987,6 +3179,7 @@ module Aws::DirectoryService
|
|
2987
3179
|
:directory_id,
|
2988
3180
|
:domain_controller_id,
|
2989
3181
|
:dns_ip_addr,
|
3182
|
+
:dns_ipv_6_addr,
|
2990
3183
|
:vpc_id,
|
2991
3184
|
:subnet_id,
|
2992
3185
|
:availability_zone,
|
@@ -3018,6 +3211,58 @@ module Aws::DirectoryService
|
|
3018
3211
|
include Aws::Structure
|
3019
3212
|
end
|
3020
3213
|
|
3214
|
+
# An enable operation for CA enrollment policy is already in progress
|
3215
|
+
# for this directory.
|
3216
|
+
#
|
3217
|
+
# @!attribute [rw] message
|
3218
|
+
# The descriptive message for the exception.
|
3219
|
+
# @return [String]
|
3220
|
+
#
|
3221
|
+
# @!attribute [rw] request_id
|
3222
|
+
# The Amazon Web Services request identifier.
|
3223
|
+
# @return [String]
|
3224
|
+
#
|
3225
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/EnableAlreadyInProgressException AWS API Documentation
|
3226
|
+
#
|
3227
|
+
class EnableAlreadyInProgressException < Struct.new(
|
3228
|
+
:message,
|
3229
|
+
:request_id)
|
3230
|
+
SENSITIVE = []
|
3231
|
+
include Aws::Structure
|
3232
|
+
end
|
3233
|
+
|
3234
|
+
# Contains the inputs for the EnableCAEnrollmentPolicy operation.
|
3235
|
+
#
|
3236
|
+
# @!attribute [rw] directory_id
|
3237
|
+
# The identifier of the directory for which to enable the CA
|
3238
|
+
# enrollment policy.
|
3239
|
+
# @return [String]
|
3240
|
+
#
|
3241
|
+
# @!attribute [rw] pca_connector_arn
|
3242
|
+
# The Amazon Resource Name (ARN) of the Private Certificate Authority
|
3243
|
+
# (PCA) connector to use for automatic certificate enrollment. This
|
3244
|
+
# connector must be properly configured and accessible from the
|
3245
|
+
# directory.
|
3246
|
+
#
|
3247
|
+
# The ARN format is:
|
3248
|
+
# `arn:aws:pca-connector-ad:region:account-id:connector/connector-id `
|
3249
|
+
# @return [String]
|
3250
|
+
#
|
3251
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/EnableCAEnrollmentPolicyRequest AWS API Documentation
|
3252
|
+
#
|
3253
|
+
class EnableCAEnrollmentPolicyRequest < Struct.new(
|
3254
|
+
:directory_id,
|
3255
|
+
:pca_connector_arn)
|
3256
|
+
SENSITIVE = []
|
3257
|
+
include Aws::Structure
|
3258
|
+
end
|
3259
|
+
|
3260
|
+
# Contains the results of the EnableCAEnrollmentPolicy operation.
|
3261
|
+
#
|
3262
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/EnableCAEnrollmentPolicyResult AWS API Documentation
|
3263
|
+
#
|
3264
|
+
class EnableCAEnrollmentPolicyResult < Aws::EmptyStructure; end
|
3265
|
+
|
3021
3266
|
# @!attribute [rw] directory_id
|
3022
3267
|
# The identifier of the specified directory.
|
3023
3268
|
# @return [String]
|
@@ -3614,14 +3859,21 @@ module Aws::DirectoryService
|
|
3614
3859
|
include Aws::Structure
|
3615
3860
|
end
|
3616
3861
|
|
3617
|
-
# IP address block. This is often the address block of the
|
3618
|
-
# used for your self-managed domain.
|
3862
|
+
# Contains the IP address block. This is often the address block of the
|
3863
|
+
# DNS server used for your self-managed domain.
|
3619
3864
|
#
|
3620
3865
|
# @!attribute [rw] cidr_ip
|
3621
|
-
# IP address block
|
3866
|
+
# IP address block in CIDR format, such as 10.0.0.0/24. This is often
|
3867
|
+
# the address block of the DNS server used for your self-managed
|
3868
|
+
# domain. For a single IP address, use a CIDR address block with /32.
|
3869
|
+
# For example, 10.0.0.0/32.
|
3870
|
+
# @return [String]
|
3871
|
+
#
|
3872
|
+
# @!attribute [rw] cidr_ipv_6
|
3873
|
+
# IPv6 address block in CIDR format, such as 2001:db8::/32. This is
|
3622
3874
|
# often the address block of the DNS server used for your self-managed
|
3623
|
-
# domain. For a single
|
3624
|
-
# For example
|
3875
|
+
# domain. For a single IPv6 address, use a CIDR address block with
|
3876
|
+
# /128. For example, 2001:db8::1/128.
|
3625
3877
|
# @return [String]
|
3626
3878
|
#
|
3627
3879
|
# @!attribute [rw] description
|
@@ -3632,6 +3884,7 @@ module Aws::DirectoryService
|
|
3632
3884
|
#
|
3633
3885
|
class IpRoute < Struct.new(
|
3634
3886
|
:cidr_ip,
|
3887
|
+
:cidr_ipv_6,
|
3635
3888
|
:description)
|
3636
3889
|
SENSITIVE = []
|
3637
3890
|
include Aws::Structure
|
@@ -3647,6 +3900,10 @@ module Aws::DirectoryService
|
|
3647
3900
|
# IP address block in the IpRoute.
|
3648
3901
|
# @return [String]
|
3649
3902
|
#
|
3903
|
+
# @!attribute [rw] cidr_ipv_6
|
3904
|
+
# IPv6 address block in the IpRoute.
|
3905
|
+
# @return [String]
|
3906
|
+
#
|
3650
3907
|
# @!attribute [rw] ip_route_status_msg
|
3651
3908
|
# The status of the IP address block.
|
3652
3909
|
# @return [String]
|
@@ -3668,6 +3925,7 @@ module Aws::DirectoryService
|
|
3668
3925
|
class IpRouteInfo < Struct.new(
|
3669
3926
|
:directory_id,
|
3670
3927
|
:cidr_ip,
|
3928
|
+
:cidr_ipv_6,
|
3671
3929
|
:ip_route_status_msg,
|
3672
3930
|
:added_date_time,
|
3673
3931
|
:ip_route_status_reason,
|
@@ -4007,6 +4265,27 @@ module Aws::DirectoryService
|
|
4007
4265
|
include Aws::Structure
|
4008
4266
|
end
|
4009
4267
|
|
4268
|
+
# Contains the network configuration for directory update operations.
|
4269
|
+
#
|
4270
|
+
# @!attribute [rw] network_type
|
4271
|
+
# The target network type for the directory update.
|
4272
|
+
# @return [String]
|
4273
|
+
#
|
4274
|
+
# @!attribute [rw] customer_dns_ips_v6
|
4275
|
+
# IPv6 addresses of DNS servers or domain controllers in the
|
4276
|
+
# self-managed directory. Required only when updating an AD Connector
|
4277
|
+
# directory.
|
4278
|
+
# @return [Array<String>]
|
4279
|
+
#
|
4280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/NetworkUpdateSettings AWS API Documentation
|
4281
|
+
#
|
4282
|
+
class NetworkUpdateSettings < Struct.new(
|
4283
|
+
:network_type,
|
4284
|
+
:customer_dns_ips_v6)
|
4285
|
+
SENSITIVE = []
|
4286
|
+
include Aws::Structure
|
4287
|
+
end
|
4288
|
+
|
4010
4289
|
# Client authentication setup could not be completed because at least
|
4011
4290
|
# one valid certificate must be registered in the system.
|
4012
4291
|
#
|
@@ -4061,8 +4340,8 @@ module Aws::DirectoryService
|
|
4061
4340
|
include Aws::Structure
|
4062
4341
|
end
|
4063
4342
|
|
4064
|
-
#
|
4065
|
-
#
|
4343
|
+
# Contains the directory owner account details shared with the directory
|
4344
|
+
# consumer account.
|
4066
4345
|
#
|
4067
4346
|
# @!attribute [rw] directory_id
|
4068
4347
|
# Identifier of the Managed Microsoft AD directory in the directory
|
@@ -4077,17 +4356,24 @@ module Aws::DirectoryService
|
|
4077
4356
|
# IP address of the directory’s domain controllers.
|
4078
4357
|
# @return [Array<String>]
|
4079
4358
|
#
|
4359
|
+
# @!attribute [rw] dns_ipv_6_addrs
|
4360
|
+
# IPv6 addresses of the directory’s domain controllers.
|
4361
|
+
# @return [Array<String>]
|
4362
|
+
#
|
4080
4363
|
# @!attribute [rw] vpc_settings
|
4081
4364
|
# Information about the VPC settings for the directory.
|
4082
4365
|
# @return [Types::DirectoryVpcSettingsDescription]
|
4083
4366
|
#
|
4084
4367
|
# @!attribute [rw] radius_settings
|
4085
|
-
#
|
4086
|
-
# server.
|
4368
|
+
# Information about the RadiusSettings object server configuration.
|
4087
4369
|
# @return [Types::RadiusSettings]
|
4088
4370
|
#
|
4089
4371
|
# @!attribute [rw] radius_status
|
4090
|
-
#
|
4372
|
+
# The status of the RADIUS server.
|
4373
|
+
# @return [String]
|
4374
|
+
#
|
4375
|
+
# @!attribute [rw] network_type
|
4376
|
+
# Network type of the directory in the directory owner account.
|
4091
4377
|
# @return [String]
|
4092
4378
|
#
|
4093
4379
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/OwnerDirectoryDescription AWS API Documentation
|
@@ -4096,9 +4382,11 @@ module Aws::DirectoryService
|
|
4096
4382
|
:directory_id,
|
4097
4383
|
:account_id,
|
4098
4384
|
:dns_ip_addrs,
|
4385
|
+
:dns_ipv_6_addrs,
|
4099
4386
|
:vpc_settings,
|
4100
4387
|
:radius_settings,
|
4101
|
-
:radius_status
|
4388
|
+
:radius_status,
|
4389
|
+
:network_type)
|
4102
4390
|
SENSITIVE = []
|
4103
4391
|
include Aws::Structure
|
4104
4392
|
end
|
@@ -4107,9 +4395,14 @@ module Aws::DirectoryService
|
|
4107
4395
|
# Service (RADIUS) server.
|
4108
4396
|
#
|
4109
4397
|
# @!attribute [rw] radius_servers
|
4110
|
-
#
|
4111
|
-
#
|
4112
|
-
#
|
4398
|
+
# The fully qualified domain name (FQDN) or IP addresses of the RADIUS
|
4399
|
+
# server endpoints, or the FQDN or IP addresses of your RADIUS server
|
4400
|
+
# load balancer.
|
4401
|
+
# @return [Array<String>]
|
4402
|
+
#
|
4403
|
+
# @!attribute [rw] radius_servers_ipv_6
|
4404
|
+
# The IPv6 addresses of the RADIUS server endpoints or RADIUS server
|
4405
|
+
# load balancer.
|
4113
4406
|
# @return [Array<String>]
|
4114
4407
|
#
|
4115
4408
|
# @!attribute [rw] radius_port
|
@@ -4148,6 +4441,7 @@ module Aws::DirectoryService
|
|
4148
4441
|
#
|
4149
4442
|
class RadiusSettings < Struct.new(
|
4150
4443
|
:radius_servers,
|
4444
|
+
:radius_servers_ipv_6,
|
4151
4445
|
:radius_port,
|
4152
4446
|
:radius_timeout,
|
4153
4447
|
:radius_retries,
|
@@ -4364,11 +4658,16 @@ module Aws::DirectoryService
|
|
4364
4658
|
# IP address blocks that you want to remove.
|
4365
4659
|
# @return [Array<String>]
|
4366
4660
|
#
|
4661
|
+
# @!attribute [rw] cidr_ipv_6s
|
4662
|
+
# IPv6 address blocks that you want to remove.
|
4663
|
+
# @return [Array<String>]
|
4664
|
+
#
|
4367
4665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/RemoveIpRoutesRequest AWS API Documentation
|
4368
4666
|
#
|
4369
4667
|
class RemoveIpRoutesRequest < Struct.new(
|
4370
4668
|
:directory_id,
|
4371
|
-
:cidr_ips
|
4669
|
+
:cidr_ips,
|
4670
|
+
:cidr_ipv_6s)
|
4372
4671
|
SENSITIVE = []
|
4373
4672
|
include Aws::Structure
|
4374
4673
|
end
|
@@ -5167,12 +5466,18 @@ module Aws::DirectoryService
|
|
5167
5466
|
# the conditional forwarder.
|
5168
5467
|
# @return [Array<String>]
|
5169
5468
|
#
|
5469
|
+
# @!attribute [rw] dns_ipv_6_addrs
|
5470
|
+
# The updated IPv6 addresses of the remote DNS server associated with
|
5471
|
+
# the conditional forwarder.
|
5472
|
+
# @return [Array<String>]
|
5473
|
+
#
|
5170
5474
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/UpdateConditionalForwarderRequest AWS API Documentation
|
5171
5475
|
#
|
5172
5476
|
class UpdateConditionalForwarderRequest < Struct.new(
|
5173
5477
|
:directory_id,
|
5174
5478
|
:remote_domain_name,
|
5175
|
-
:dns_ip_addrs
|
5479
|
+
:dns_ip_addrs,
|
5480
|
+
:dns_ipv_6_addrs)
|
5176
5481
|
SENSITIVE = []
|
5177
5482
|
include Aws::Structure
|
5178
5483
|
end
|
@@ -5184,23 +5489,30 @@ module Aws::DirectoryService
|
|
5184
5489
|
class UpdateConditionalForwarderResult < Aws::EmptyStructure; end
|
5185
5490
|
|
5186
5491
|
# @!attribute [rw] directory_id
|
5187
|
-
# The identifier of the directory
|
5188
|
-
# update.
|
5492
|
+
# The identifier of the directory to update.
|
5189
5493
|
# @return [String]
|
5190
5494
|
#
|
5191
5495
|
# @!attribute [rw] update_type
|
5192
|
-
# The type of update
|
5193
|
-
# example, OS.
|
5496
|
+
# The type of update to perform on the directory.
|
5194
5497
|
# @return [String]
|
5195
5498
|
#
|
5196
5499
|
# @!attribute [rw] os_update_settings
|
5197
|
-
#
|
5198
|
-
#
|
5500
|
+
# Operating system configuration to apply during the directory update
|
5501
|
+
# operation.
|
5199
5502
|
# @return [Types::OSUpdateSettings]
|
5200
5503
|
#
|
5504
|
+
# @!attribute [rw] directory_size_update_settings
|
5505
|
+
# Directory size configuration to apply during the update operation.
|
5506
|
+
# @return [Types::DirectorySizeUpdateSettings]
|
5507
|
+
#
|
5508
|
+
# @!attribute [rw] network_update_settings
|
5509
|
+
# Network configuration to apply during the directory update
|
5510
|
+
# operation.
|
5511
|
+
# @return [Types::NetworkUpdateSettings]
|
5512
|
+
#
|
5201
5513
|
# @!attribute [rw] create_snapshot_before_update
|
5202
|
-
#
|
5203
|
-
#
|
5514
|
+
# Specifies whether to create a directory snapshot before performing
|
5515
|
+
# the update.
|
5204
5516
|
# @return [Boolean]
|
5205
5517
|
#
|
5206
5518
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/UpdateDirectorySetupRequest AWS API Documentation
|
@@ -5209,6 +5521,8 @@ module Aws::DirectoryService
|
|
5209
5521
|
:directory_id,
|
5210
5522
|
:update_type,
|
5211
5523
|
:os_update_settings,
|
5524
|
+
:directory_size_update_settings,
|
5525
|
+
:network_update_settings,
|
5212
5526
|
:create_snapshot_before_update)
|
5213
5527
|
SENSITIVE = []
|
5214
5528
|
include Aws::Structure
|