aws-sdk-directoryservice 1.93.0 → 1.95.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 +86 -21
 - data/lib/aws-sdk-directoryservice/client_api.rb +45 -4
 - data/lib/aws-sdk-directoryservice/customizations.rb +0 -8
 - data/lib/aws-sdk-directoryservice/endpoint_parameters.rb +4 -4
 - data/lib/aws-sdk-directoryservice/types.rb +201 -53
 - data/lib/aws-sdk-directoryservice.rb +1 -1
 - data/sig/client.rbs +28 -10
 - data/sig/types.rbs +35 -4
 - metadata +1 -1
 
| 
         @@ -13,22 +13,22 @@ module Aws::DirectoryService 
     | 
|
| 
       13 
13 
     | 
    
         
             
              # @!attribute region
         
     | 
| 
       14 
14 
     | 
    
         
             
              #   The AWS region used to dispatch the request.
         
     | 
| 
       15 
15 
     | 
    
         
             
              #
         
     | 
| 
       16 
     | 
    
         
            -
              #   @return [ 
     | 
| 
      
 16 
     | 
    
         
            +
              #   @return [string]
         
     | 
| 
       17 
17 
     | 
    
         
             
              #
         
     | 
| 
       18 
18 
     | 
    
         
             
              # @!attribute use_dual_stack
         
     | 
| 
       19 
19 
     | 
    
         
             
              #   When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
         
     | 
| 
       20 
20 
     | 
    
         
             
              #
         
     | 
| 
       21 
     | 
    
         
            -
              #   @return [ 
     | 
| 
      
 21 
     | 
    
         
            +
              #   @return [boolean]
         
     | 
| 
       22 
22 
     | 
    
         
             
              #
         
     | 
| 
       23 
23 
     | 
    
         
             
              # @!attribute use_fips
         
     | 
| 
       24 
24 
     | 
    
         
             
              #   When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
         
     | 
| 
       25 
25 
     | 
    
         
             
              #
         
     | 
| 
       26 
     | 
    
         
            -
              #   @return [ 
     | 
| 
      
 26 
     | 
    
         
            +
              #   @return [boolean]
         
     | 
| 
       27 
27 
     | 
    
         
             
              #
         
     | 
| 
       28 
28 
     | 
    
         
             
              # @!attribute endpoint
         
     | 
| 
       29 
29 
     | 
    
         
             
              #   Override the endpoint used to send this request
         
     | 
| 
       30 
30 
     | 
    
         
             
              #
         
     | 
| 
       31 
     | 
    
         
            -
              #   @return [ 
     | 
| 
      
 31 
     | 
    
         
            +
              #   @return [string]
         
     | 
| 
       32 
32 
     | 
    
         
             
              #
         
     | 
| 
       33 
33 
     | 
    
         
             
              EndpointParameters = Struct.new(
         
     | 
| 
       34 
34 
     | 
    
         
             
                :region,
         
     | 
| 
         @@ -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
         
     | 
| 
         @@ -2432,8 +2469,8 @@ module Aws::DirectoryService 
     | 
|
| 
       2432 
2469 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2433 
2470 
     | 
    
         
             
                end
         
     | 
| 
       2434 
2471 
     | 
    
         | 
| 
       2435 
     | 
    
         
            -
                # Contains  
     | 
| 
       2436 
     | 
    
         
            -
                #  
     | 
| 
      
 2472 
     | 
    
         
            +
                # Contains connection settings for creating an AD Connector with the
         
     | 
| 
      
 2473 
     | 
    
         
            +
                # ConnectDirectory action.
         
     | 
| 
       2437 
2474 
     | 
    
         
             
                #
         
     | 
| 
       2438 
2475 
     | 
    
         
             
                # @!attribute [rw] vpc_id
         
     | 
| 
       2439 
2476 
     | 
    
         
             
                #   The identifier of the VPC in which the AD Connector is created.
         
     | 
| 
         @@ -2445,8 +2482,13 @@ module Aws::DirectoryService 
     | 
|
| 
       2445 
2482 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       2446 
2483 
     | 
    
         
             
                #
         
     | 
| 
       2447 
2484 
     | 
    
         
             
                # @!attribute [rw] customer_dns_ips
         
     | 
| 
       2448 
     | 
    
         
            -
                #    
     | 
| 
       2449 
     | 
    
         
            -
                #    
     | 
| 
      
 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.
         
     | 
| 
       2450 
2492 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       2451 
2493 
     | 
    
         
             
                #
         
     | 
| 
       2452 
2494 
     | 
    
         
             
                # @!attribute [rw] customer_user_name
         
     | 
| 
         @@ -2467,6 +2509,7 @@ module Aws::DirectoryService 
     | 
|
| 
       2467 
2509 
     | 
    
         
             
                  :vpc_id,
         
     | 
| 
       2468 
2510 
     | 
    
         
             
                  :subnet_ids,
         
     | 
| 
       2469 
2511 
     | 
    
         
             
                  :customer_dns_ips,
         
     | 
| 
      
 2512 
     | 
    
         
            +
                  :customer_dns_ips_v6,
         
     | 
| 
       2470 
2513 
     | 
    
         
             
                  :customer_user_name)
         
     | 
| 
       2471 
2514 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       2472 
2515 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
         @@ -2491,13 +2534,17 @@ module Aws::DirectoryService 
     | 
|
| 
       2491 
2534 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       2492 
2535 
     | 
    
         
             
                #
         
     | 
| 
       2493 
2536 
     | 
    
         
             
                # @!attribute [rw] availability_zones
         
     | 
| 
       2494 
     | 
    
         
            -
                #    
     | 
| 
      
 2537 
     | 
    
         
            +
                #   The Availability Zones that the directory is in.
         
     | 
| 
       2495 
2538 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       2496 
2539 
     | 
    
         
             
                #
         
     | 
| 
       2497 
2540 
     | 
    
         
             
                # @!attribute [rw] connect_ips
         
     | 
| 
       2498 
2541 
     | 
    
         
             
                #   The IP addresses of the AD Connector servers.
         
     | 
| 
       2499 
2542 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       2500 
2543 
     | 
    
         
             
                #
         
     | 
| 
      
 2544 
     | 
    
         
            +
                # @!attribute [rw] connect_ips_v6
         
     | 
| 
      
 2545 
     | 
    
         
            +
                #   The IPv6 addresses of the AD Connector servers.
         
     | 
| 
      
 2546 
     | 
    
         
            +
                #   @return [Array<String>]
         
     | 
| 
      
 2547 
     | 
    
         
            +
                #
         
     | 
| 
       2501 
2548 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DirectoryConnectSettingsDescription AWS API Documentation
         
     | 
| 
       2502 
2549 
     | 
    
         
             
                #
         
     | 
| 
       2503 
2550 
     | 
    
         
             
                class DirectoryConnectSettingsDescription < Struct.new(
         
     | 
| 
         @@ -2506,7 +2553,8 @@ module Aws::DirectoryService 
     | 
|
| 
       2506 
2553 
     | 
    
         
             
                  :customer_user_name,
         
     | 
| 
       2507 
2554 
     | 
    
         
             
                  :security_group_id,
         
     | 
| 
       2508 
2555 
     | 
    
         
             
                  :availability_zones,
         
     | 
| 
       2509 
     | 
    
         
            -
                  :connect_ips 
     | 
| 
      
 2556 
     | 
    
         
            +
                  :connect_ips,
         
     | 
| 
      
 2557 
     | 
    
         
            +
                  :connect_ips_v6)
         
     | 
| 
       2510 
2558 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       2511 
2559 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2512 
2560 
     | 
    
         
             
                end
         
     | 
| 
         @@ -2534,16 +2582,14 @@ module Aws::DirectoryService 
     | 
|
| 
       2534 
2582 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       2535 
2583 
     | 
    
         
             
                #
         
     | 
| 
       2536 
2584 
     | 
    
         
             
                # @!attribute [rw] alias
         
     | 
| 
       2537 
     | 
    
         
            -
                #   The alias for the directory. If no alias  
     | 
| 
       2538 
     | 
    
         
            -
                #   directory 
     | 
| 
       2539 
     | 
    
         
            -
                #   `d-XXXXXXXXXX`.
         
     | 
| 
      
 2585 
     | 
    
         
            +
                #   The alias for the directory. If no alias exists, the alias is the
         
     | 
| 
      
 2586 
     | 
    
         
            +
                #   directory identifier, such as `d-XXXXXXXXXX`.
         
     | 
| 
       2540 
2587 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       2541 
2588 
     | 
    
         
             
                #
         
     | 
| 
       2542 
2589 
     | 
    
         
             
                # @!attribute [rw] access_url
         
     | 
| 
       2543 
2590 
     | 
    
         
             
                #   The access URL for the directory, such as
         
     | 
| 
       2544 
     | 
    
         
            -
                #   `http://<alias>.awsapps.com`. If no alias  
     | 
| 
       2545 
     | 
    
         
            -
                #   directory 
     | 
| 
       2546 
     | 
    
         
            -
                #   `d-XXXXXXXXXX`.
         
     | 
| 
      
 2591 
     | 
    
         
            +
                #   `http://<alias>.awsapps.com`. If no alias exists, `<alias>` is the
         
     | 
| 
      
 2592 
     | 
    
         
            +
                #   directory identifier, such as `d-XXXXXXXXXX`.
         
     | 
| 
       2547 
2593 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       2548 
2594 
     | 
    
         
             
                #
         
     | 
| 
       2549 
2595 
     | 
    
         
             
                # @!attribute [rw] description
         
     | 
| 
         @@ -2554,7 +2600,15 @@ module Aws::DirectoryService 
     | 
|
| 
       2554 
2600 
     | 
    
         
             
                #   The IP addresses of the DNS servers for the directory. For a Simple
         
     | 
| 
       2555 
2601 
     | 
    
         
             
                #   AD or Microsoft AD directory, these are the IP addresses of the
         
     | 
| 
       2556 
2602 
     | 
    
         
             
                #   Simple AD or Microsoft AD directory servers. For an AD Connector
         
     | 
| 
       2557 
     | 
    
         
            -
                #   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
         
     | 
| 
       2558 
2612 
     | 
    
         
             
                #   controllers in your self-managed directory to which the AD Connector
         
     | 
| 
       2559 
2613 
     | 
    
         
             
                #   is connected.
         
     | 
| 
       2560 
2614 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
         @@ -2583,11 +2637,11 @@ module Aws::DirectoryService 
     | 
|
| 
       2583 
2637 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       2584 
2638 
     | 
    
         
             
                #
         
     | 
| 
       2585 
2639 
     | 
    
         
             
                # @!attribute [rw] launch_time
         
     | 
| 
       2586 
     | 
    
         
            -
                #    
     | 
| 
      
 2640 
     | 
    
         
            +
                #   The date and time when the directory was created.
         
     | 
| 
       2587 
2641 
     | 
    
         
             
                #   @return [Time]
         
     | 
| 
       2588 
2642 
     | 
    
         
             
                #
         
     | 
| 
       2589 
2643 
     | 
    
         
             
                # @!attribute [rw] stage_last_updated_date_time
         
     | 
| 
       2590 
     | 
    
         
            -
                #   The date and time  
     | 
| 
      
 2644 
     | 
    
         
            +
                #   The date and time when the stage was last updated.
         
     | 
| 
       2591 
2645 
     | 
    
         
             
                #   @return [Time]
         
     | 
| 
       2592 
2646 
     | 
    
         
             
                #
         
     | 
| 
       2593 
2647 
     | 
    
         
             
                # @!attribute [rw] type
         
     | 
| 
         @@ -2596,19 +2650,19 @@ module Aws::DirectoryService 
     | 
|
| 
       2596 
2650 
     | 
    
         
             
                #
         
     | 
| 
       2597 
2651 
     | 
    
         
             
                # @!attribute [rw] vpc_settings
         
     | 
| 
       2598 
2652 
     | 
    
         
             
                #   A DirectoryVpcSettingsDescription object that contains additional
         
     | 
| 
       2599 
     | 
    
         
            -
                #   information about a directory.  
     | 
| 
       2600 
     | 
    
         
            -
                #    
     | 
| 
      
 2653 
     | 
    
         
            +
                #   information about a directory. Present only for Simple AD and
         
     | 
| 
      
 2654 
     | 
    
         
            +
                #   Managed Microsoft AD directories.
         
     | 
| 
       2601 
2655 
     | 
    
         
             
                #   @return [Types::DirectoryVpcSettingsDescription]
         
     | 
| 
       2602 
2656 
     | 
    
         
             
                #
         
     | 
| 
       2603 
2657 
     | 
    
         
             
                # @!attribute [rw] connect_settings
         
     | 
| 
       2604 
     | 
    
         
            -
                #    
     | 
| 
       2605 
     | 
    
         
            -
                #    
     | 
| 
       2606 
     | 
    
         
            -
                #    
     | 
| 
      
 2658 
     | 
    
         
            +
                #   DirectoryConnectSettingsDescription object that contains additional
         
     | 
| 
      
 2659 
     | 
    
         
            +
                #   information about an AD Connector directory. Present only for AD
         
     | 
| 
      
 2660 
     | 
    
         
            +
                #   Connector directories.
         
     | 
| 
       2607 
2661 
     | 
    
         
             
                #   @return [Types::DirectoryConnectSettingsDescription]
         
     | 
| 
       2608 
2662 
     | 
    
         
             
                #
         
     | 
| 
       2609 
2663 
     | 
    
         
             
                # @!attribute [rw] radius_settings
         
     | 
| 
       2610 
     | 
    
         
            -
                #    
     | 
| 
       2611 
     | 
    
         
            -
                #    
     | 
| 
      
 2664 
     | 
    
         
            +
                #   Information about the RadiusSettings object configured for this
         
     | 
| 
      
 2665 
     | 
    
         
            +
                #   directory.
         
     | 
| 
       2612 
2666 
     | 
    
         
             
                #   @return [Types::RadiusSettings]
         
     | 
| 
       2613 
2667 
     | 
    
         
             
                #
         
     | 
| 
       2614 
2668 
     | 
    
         
             
                # @!attribute [rw] radius_status
         
     | 
| 
         @@ -2620,8 +2674,8 @@ module Aws::DirectoryService 
     | 
|
| 
       2620 
2674 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       2621 
2675 
     | 
    
         
             
                #
         
     | 
| 
       2622 
2676 
     | 
    
         
             
                # @!attribute [rw] sso_enabled
         
     | 
| 
       2623 
     | 
    
         
            -
                #   Indicates  
     | 
| 
       2624 
     | 
    
         
            -
                #   information, see EnableSso and DisableSso.
         
     | 
| 
      
 2677 
     | 
    
         
            +
                #   Indicates whether single sign-on is enabled for the directory. For
         
     | 
| 
      
 2678 
     | 
    
         
            +
                #   more information, see EnableSso and DisableSso.
         
     | 
| 
       2625 
2679 
     | 
    
         
             
                #   @return [Boolean]
         
     | 
| 
       2626 
2680 
     | 
    
         
             
                #
         
     | 
| 
       2627 
2681 
     | 
    
         
             
                # @!attribute [rw] desired_number_of_domain_controllers
         
     | 
| 
         @@ -2648,6 +2702,10 @@ module Aws::DirectoryService 
     | 
|
| 
       2648 
2702 
     | 
    
         
             
                #   node identifiers and DNS IPs.
         
     | 
| 
       2649 
2703 
     | 
    
         
             
                #   @return [Types::HybridSettingsDescription]
         
     | 
| 
       2650 
2704 
     | 
    
         
             
                #
         
     | 
| 
      
 2705 
     | 
    
         
            +
                # @!attribute [rw] network_type
         
     | 
| 
      
 2706 
     | 
    
         
            +
                #   The network type of the directory.
         
     | 
| 
      
 2707 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 2708 
     | 
    
         
            +
                #
         
     | 
| 
       2651 
2709 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DirectoryDescription AWS API Documentation
         
     | 
| 
       2652 
2710 
     | 
    
         
             
                #
         
     | 
| 
       2653 
2711 
     | 
    
         
             
                class DirectoryDescription < Struct.new(
         
     | 
| 
         @@ -2660,6 +2718,7 @@ module Aws::DirectoryService 
     | 
|
| 
       2660 
2718 
     | 
    
         
             
                  :access_url,
         
     | 
| 
       2661 
2719 
     | 
    
         
             
                  :description,
         
     | 
| 
       2662 
2720 
     | 
    
         
             
                  :dns_ip_addrs,
         
     | 
| 
      
 2721 
     | 
    
         
            +
                  :dns_ipv_6_addrs,
         
     | 
| 
       2663 
2722 
     | 
    
         
             
                  :stage,
         
     | 
| 
       2664 
2723 
     | 
    
         
             
                  :share_status,
         
     | 
| 
       2665 
2724 
     | 
    
         
             
                  :share_method,
         
     | 
| 
         @@ -2677,7 +2736,8 @@ module Aws::DirectoryService 
     | 
|
| 
       2677 
2736 
     | 
    
         
             
                  :owner_directory_description,
         
     | 
| 
       2678 
2737 
     | 
    
         
             
                  :regions_info,
         
     | 
| 
       2679 
2738 
     | 
    
         
             
                  :os_version,
         
     | 
| 
       2680 
     | 
    
         
            -
                  :hybrid_settings 
     | 
| 
      
 2739 
     | 
    
         
            +
                  :hybrid_settings,
         
     | 
| 
      
 2740 
     | 
    
         
            +
                  :network_type)
         
     | 
| 
       2681 
2741 
     | 
    
         
             
                  SENSITIVE = [:share_notes]
         
     | 
| 
       2682 
2742 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2683 
2743 
     | 
    
         
             
                end
         
     | 
| 
         @@ -2818,6 +2878,20 @@ module Aws::DirectoryService 
     | 
|
| 
       2818 
2878 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2819 
2879 
     | 
    
         
             
                end
         
     | 
| 
       2820 
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 
     | 
    
         
            +
             
     | 
| 
       2821 
2895 
     | 
    
         
             
                # The specified directory is unavailable.
         
     | 
| 
       2822 
2896 
     | 
    
         
             
                #
         
     | 
| 
       2823 
2897 
     | 
    
         
             
                # @!attribute [rw] message
         
     | 
| 
         @@ -3066,6 +3140,10 @@ module Aws::DirectoryService 
     | 
|
| 
       3066 
3140 
     | 
    
         
             
                #   The IP address of the domain controller.
         
     | 
| 
       3067 
3141 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       3068 
3142 
     | 
    
         
             
                #
         
     | 
| 
      
 3143 
     | 
    
         
            +
                # @!attribute [rw] dns_ipv_6_addr
         
     | 
| 
      
 3144 
     | 
    
         
            +
                #   The IPv6 address of the domain controller.
         
     | 
| 
      
 3145 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 3146 
     | 
    
         
            +
                #
         
     | 
| 
       3069 
3147 
     | 
    
         
             
                # @!attribute [rw] vpc_id
         
     | 
| 
       3070 
3148 
     | 
    
         
             
                #   The identifier of the VPC that contains the domain controller.
         
     | 
| 
       3071 
3149 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -3101,6 +3179,7 @@ module Aws::DirectoryService 
     | 
|
| 
       3101 
3179 
     | 
    
         
             
                  :directory_id,
         
     | 
| 
       3102 
3180 
     | 
    
         
             
                  :domain_controller_id,
         
     | 
| 
       3103 
3181 
     | 
    
         
             
                  :dns_ip_addr,
         
     | 
| 
      
 3182 
     | 
    
         
            +
                  :dns_ipv_6_addr,
         
     | 
| 
       3104 
3183 
     | 
    
         
             
                  :vpc_id,
         
     | 
| 
       3105 
3184 
     | 
    
         
             
                  :subnet_id,
         
     | 
| 
       3106 
3185 
     | 
    
         
             
                  :availability_zone,
         
     | 
| 
         @@ -3780,14 +3859,21 @@ module Aws::DirectoryService 
     | 
|
| 
       3780 
3859 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       3781 
3860 
     | 
    
         
             
                end
         
     | 
| 
       3782 
3861 
     | 
    
         | 
| 
       3783 
     | 
    
         
            -
                # IP address block. This is often the address block of the 
     | 
| 
       3784 
     | 
    
         
            -
                # 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.
         
     | 
| 
       3785 
3864 
     | 
    
         
             
                #
         
     | 
| 
       3786 
3865 
     | 
    
         
             
                # @!attribute [rw] cidr_ip
         
     | 
| 
       3787 
     | 
    
         
            -
                #   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
         
     | 
| 
       3788 
3874 
     | 
    
         
             
                #   often the address block of the DNS server used for your self-managed
         
     | 
| 
       3789 
     | 
    
         
            -
                #   domain. For a single  
     | 
| 
       3790 
     | 
    
         
            -
                #   For example  
     | 
| 
      
 3875 
     | 
    
         
            +
                #   domain. For a single IPv6 address, use a CIDR address block with
         
     | 
| 
      
 3876 
     | 
    
         
            +
                #   /128. For example, 2001:db8::1/128.
         
     | 
| 
       3791 
3877 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       3792 
3878 
     | 
    
         
             
                #
         
     | 
| 
       3793 
3879 
     | 
    
         
             
                # @!attribute [rw] description
         
     | 
| 
         @@ -3798,6 +3884,7 @@ module Aws::DirectoryService 
     | 
|
| 
       3798 
3884 
     | 
    
         
             
                #
         
     | 
| 
       3799 
3885 
     | 
    
         
             
                class IpRoute < Struct.new(
         
     | 
| 
       3800 
3886 
     | 
    
         
             
                  :cidr_ip,
         
     | 
| 
      
 3887 
     | 
    
         
            +
                  :cidr_ipv_6,
         
     | 
| 
       3801 
3888 
     | 
    
         
             
                  :description)
         
     | 
| 
       3802 
3889 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       3803 
3890 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
         @@ -3813,6 +3900,10 @@ module Aws::DirectoryService 
     | 
|
| 
       3813 
3900 
     | 
    
         
             
                #   IP address block in the IpRoute.
         
     | 
| 
       3814 
3901 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       3815 
3902 
     | 
    
         
             
                #
         
     | 
| 
      
 3903 
     | 
    
         
            +
                # @!attribute [rw] cidr_ipv_6
         
     | 
| 
      
 3904 
     | 
    
         
            +
                #   IPv6 address block in the IpRoute.
         
     | 
| 
      
 3905 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 3906 
     | 
    
         
            +
                #
         
     | 
| 
       3816 
3907 
     | 
    
         
             
                # @!attribute [rw] ip_route_status_msg
         
     | 
| 
       3817 
3908 
     | 
    
         
             
                #   The status of the IP address block.
         
     | 
| 
       3818 
3909 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -3834,6 +3925,7 @@ module Aws::DirectoryService 
     | 
|
| 
       3834 
3925 
     | 
    
         
             
                class IpRouteInfo < Struct.new(
         
     | 
| 
       3835 
3926 
     | 
    
         
             
                  :directory_id,
         
     | 
| 
       3836 
3927 
     | 
    
         
             
                  :cidr_ip,
         
     | 
| 
      
 3928 
     | 
    
         
            +
                  :cidr_ipv_6,
         
     | 
| 
       3837 
3929 
     | 
    
         
             
                  :ip_route_status_msg,
         
     | 
| 
       3838 
3930 
     | 
    
         
             
                  :added_date_time,
         
     | 
| 
       3839 
3931 
     | 
    
         
             
                  :ip_route_status_reason,
         
     | 
| 
         @@ -4173,6 +4265,27 @@ module Aws::DirectoryService 
     | 
|
| 
       4173 
4265 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       4174 
4266 
     | 
    
         
             
                end
         
     | 
| 
       4175 
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 
     | 
    
         
            +
             
     | 
| 
       4176 
4289 
     | 
    
         
             
                # Client authentication setup could not be completed because at least
         
     | 
| 
       4177 
4290 
     | 
    
         
             
                # one valid certificate must be registered in the system.
         
     | 
| 
       4178 
4291 
     | 
    
         
             
                #
         
     | 
| 
         @@ -4227,8 +4340,8 @@ module Aws::DirectoryService 
     | 
|
| 
       4227 
4340 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       4228 
4341 
     | 
    
         
             
                end
         
     | 
| 
       4229 
4342 
     | 
    
         | 
| 
       4230 
     | 
    
         
            -
                #  
     | 
| 
       4231 
     | 
    
         
            -
                #  
     | 
| 
      
 4343 
     | 
    
         
            +
                # Contains the directory owner account details shared with the directory
         
     | 
| 
      
 4344 
     | 
    
         
            +
                # consumer account.
         
     | 
| 
       4232 
4345 
     | 
    
         
             
                #
         
     | 
| 
       4233 
4346 
     | 
    
         
             
                # @!attribute [rw] directory_id
         
     | 
| 
       4234 
4347 
     | 
    
         
             
                #   Identifier of the Managed Microsoft AD directory in the directory
         
     | 
| 
         @@ -4243,17 +4356,24 @@ module Aws::DirectoryService 
     | 
|
| 
       4243 
4356 
     | 
    
         
             
                #   IP address of the directory’s domain controllers.
         
     | 
| 
       4244 
4357 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       4245 
4358 
     | 
    
         
             
                #
         
     | 
| 
      
 4359 
     | 
    
         
            +
                # @!attribute [rw] dns_ipv_6_addrs
         
     | 
| 
      
 4360 
     | 
    
         
            +
                #   IPv6 addresses of the directory’s domain controllers.
         
     | 
| 
      
 4361 
     | 
    
         
            +
                #   @return [Array<String>]
         
     | 
| 
      
 4362 
     | 
    
         
            +
                #
         
     | 
| 
       4246 
4363 
     | 
    
         
             
                # @!attribute [rw] vpc_settings
         
     | 
| 
       4247 
4364 
     | 
    
         
             
                #   Information about the VPC settings for the directory.
         
     | 
| 
       4248 
4365 
     | 
    
         
             
                #   @return [Types::DirectoryVpcSettingsDescription]
         
     | 
| 
       4249 
4366 
     | 
    
         
             
                #
         
     | 
| 
       4250 
4367 
     | 
    
         
             
                # @!attribute [rw] radius_settings
         
     | 
| 
       4251 
     | 
    
         
            -
                #    
     | 
| 
       4252 
     | 
    
         
            -
                #   server.
         
     | 
| 
      
 4368 
     | 
    
         
            +
                #   Information about the RadiusSettings object server configuration.
         
     | 
| 
       4253 
4369 
     | 
    
         
             
                #   @return [Types::RadiusSettings]
         
     | 
| 
       4254 
4370 
     | 
    
         
             
                #
         
     | 
| 
       4255 
4371 
     | 
    
         
             
                # @!attribute [rw] radius_status
         
     | 
| 
       4256 
     | 
    
         
            -
                #    
     | 
| 
      
 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.
         
     | 
| 
       4257 
4377 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       4258 
4378 
     | 
    
         
             
                #
         
     | 
| 
       4259 
4379 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/OwnerDirectoryDescription AWS API Documentation
         
     | 
| 
         @@ -4262,9 +4382,11 @@ module Aws::DirectoryService 
     | 
|
| 
       4262 
4382 
     | 
    
         
             
                  :directory_id,
         
     | 
| 
       4263 
4383 
     | 
    
         
             
                  :account_id,
         
     | 
| 
       4264 
4384 
     | 
    
         
             
                  :dns_ip_addrs,
         
     | 
| 
      
 4385 
     | 
    
         
            +
                  :dns_ipv_6_addrs,
         
     | 
| 
       4265 
4386 
     | 
    
         
             
                  :vpc_settings,
         
     | 
| 
       4266 
4387 
     | 
    
         
             
                  :radius_settings,
         
     | 
| 
       4267 
     | 
    
         
            -
                  :radius_status 
     | 
| 
      
 4388 
     | 
    
         
            +
                  :radius_status,
         
     | 
| 
      
 4389 
     | 
    
         
            +
                  :network_type)
         
     | 
| 
       4268 
4390 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       4269 
4391 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       4270 
4392 
     | 
    
         
             
                end
         
     | 
| 
         @@ -4273,9 +4395,14 @@ module Aws::DirectoryService 
     | 
|
| 
       4273 
4395 
     | 
    
         
             
                # Service (RADIUS) server.
         
     | 
| 
       4274 
4396 
     | 
    
         
             
                #
         
     | 
| 
       4275 
4397 
     | 
    
         
             
                # @!attribute [rw] radius_servers
         
     | 
| 
       4276 
     | 
    
         
            -
                #    
     | 
| 
       4277 
     | 
    
         
            -
                #    
     | 
| 
       4278 
     | 
    
         
            -
                #    
     | 
| 
      
 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.
         
     | 
| 
       4279 
4406 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       4280 
4407 
     | 
    
         
             
                #
         
     | 
| 
       4281 
4408 
     | 
    
         
             
                # @!attribute [rw] radius_port
         
     | 
| 
         @@ -4314,6 +4441,7 @@ module Aws::DirectoryService 
     | 
|
| 
       4314 
4441 
     | 
    
         
             
                #
         
     | 
| 
       4315 
4442 
     | 
    
         
             
                class RadiusSettings < Struct.new(
         
     | 
| 
       4316 
4443 
     | 
    
         
             
                  :radius_servers,
         
     | 
| 
      
 4444 
     | 
    
         
            +
                  :radius_servers_ipv_6,
         
     | 
| 
       4317 
4445 
     | 
    
         
             
                  :radius_port,
         
     | 
| 
       4318 
4446 
     | 
    
         
             
                  :radius_timeout,
         
     | 
| 
       4319 
4447 
     | 
    
         
             
                  :radius_retries,
         
     | 
| 
         @@ -4530,11 +4658,16 @@ module Aws::DirectoryService 
     | 
|
| 
       4530 
4658 
     | 
    
         
             
                #   IP address blocks that you want to remove.
         
     | 
| 
       4531 
4659 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       4532 
4660 
     | 
    
         
             
                #
         
     | 
| 
      
 4661 
     | 
    
         
            +
                # @!attribute [rw] cidr_ipv_6s
         
     | 
| 
      
 4662 
     | 
    
         
            +
                #   IPv6 address blocks that you want to remove.
         
     | 
| 
      
 4663 
     | 
    
         
            +
                #   @return [Array<String>]
         
     | 
| 
      
 4664 
     | 
    
         
            +
                #
         
     | 
| 
       4533 
4665 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/RemoveIpRoutesRequest AWS API Documentation
         
     | 
| 
       4534 
4666 
     | 
    
         
             
                #
         
     | 
| 
       4535 
4667 
     | 
    
         
             
                class RemoveIpRoutesRequest < Struct.new(
         
     | 
| 
       4536 
4668 
     | 
    
         
             
                  :directory_id,
         
     | 
| 
       4537 
     | 
    
         
            -
                  :cidr_ips 
     | 
| 
      
 4669 
     | 
    
         
            +
                  :cidr_ips,
         
     | 
| 
      
 4670 
     | 
    
         
            +
                  :cidr_ipv_6s)
         
     | 
| 
       4538 
4671 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       4539 
4672 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       4540 
4673 
     | 
    
         
             
                end
         
     | 
| 
         @@ -5333,12 +5466,18 @@ module Aws::DirectoryService 
     | 
|
| 
       5333 
5466 
     | 
    
         
             
                #   the conditional forwarder.
         
     | 
| 
       5334 
5467 
     | 
    
         
             
                #   @return [Array<String>]
         
     | 
| 
       5335 
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 
     | 
    
         
            +
                #
         
     | 
| 
       5336 
5474 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/UpdateConditionalForwarderRequest AWS API Documentation
         
     | 
| 
       5337 
5475 
     | 
    
         
             
                #
         
     | 
| 
       5338 
5476 
     | 
    
         
             
                class UpdateConditionalForwarderRequest < Struct.new(
         
     | 
| 
       5339 
5477 
     | 
    
         
             
                  :directory_id,
         
     | 
| 
       5340 
5478 
     | 
    
         
             
                  :remote_domain_name,
         
     | 
| 
       5341 
     | 
    
         
            -
                  :dns_ip_addrs 
     | 
| 
      
 5479 
     | 
    
         
            +
                  :dns_ip_addrs,
         
     | 
| 
      
 5480 
     | 
    
         
            +
                  :dns_ipv_6_addrs)
         
     | 
| 
       5342 
5481 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       5343 
5482 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       5344 
5483 
     | 
    
         
             
                end
         
     | 
| 
         @@ -5350,23 +5489,30 @@ module Aws::DirectoryService 
     | 
|
| 
       5350 
5489 
     | 
    
         
             
                class UpdateConditionalForwarderResult < Aws::EmptyStructure; end
         
     | 
| 
       5351 
5490 
     | 
    
         | 
| 
       5352 
5491 
     | 
    
         
             
                # @!attribute [rw] directory_id
         
     | 
| 
       5353 
     | 
    
         
            -
                #   The identifier of the directory  
     | 
| 
       5354 
     | 
    
         
            -
                #   update.
         
     | 
| 
      
 5492 
     | 
    
         
            +
                #   The identifier of the directory to update.
         
     | 
| 
       5355 
5493 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       5356 
5494 
     | 
    
         
             
                #
         
     | 
| 
       5357 
5495 
     | 
    
         
             
                # @!attribute [rw] update_type
         
     | 
| 
       5358 
     | 
    
         
            -
                #   The type of update  
     | 
| 
       5359 
     | 
    
         
            -
                #   example, OS.
         
     | 
| 
      
 5496 
     | 
    
         
            +
                #   The type of update to perform on the directory.
         
     | 
| 
       5360 
5497 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       5361 
5498 
     | 
    
         
             
                #
         
     | 
| 
       5362 
5499 
     | 
    
         
             
                # @!attribute [rw] os_update_settings
         
     | 
| 
       5363 
     | 
    
         
            -
                #    
     | 
| 
       5364 
     | 
    
         
            -
                #    
     | 
| 
      
 5500 
     | 
    
         
            +
                #   Operating system configuration to apply during the directory update
         
     | 
| 
      
 5501 
     | 
    
         
            +
                #   operation.
         
     | 
| 
       5365 
5502 
     | 
    
         
             
                #   @return [Types::OSUpdateSettings]
         
     | 
| 
       5366 
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 
     | 
    
         
            +
                #
         
     | 
| 
       5367 
5513 
     | 
    
         
             
                # @!attribute [rw] create_snapshot_before_update
         
     | 
| 
       5368 
     | 
    
         
            -
                #    
     | 
| 
       5369 
     | 
    
         
            -
                #    
     | 
| 
      
 5514 
     | 
    
         
            +
                #   Specifies whether to create a directory snapshot before performing
         
     | 
| 
      
 5515 
     | 
    
         
            +
                #   the update.
         
     | 
| 
       5370 
5516 
     | 
    
         
             
                #   @return [Boolean]
         
     | 
| 
       5371 
5517 
     | 
    
         
             
                #
         
     | 
| 
       5372 
5518 
     | 
    
         
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/UpdateDirectorySetupRequest AWS API Documentation
         
     | 
| 
         @@ -5375,6 +5521,8 @@ module Aws::DirectoryService 
     | 
|
| 
       5375 
5521 
     | 
    
         
             
                  :directory_id,
         
     | 
| 
       5376 
5522 
     | 
    
         
             
                  :update_type,
         
     | 
| 
       5377 
5523 
     | 
    
         
             
                  :os_update_settings,
         
     | 
| 
      
 5524 
     | 
    
         
            +
                  :directory_size_update_settings,
         
     | 
| 
      
 5525 
     | 
    
         
            +
                  :network_update_settings,
         
     | 
| 
       5378 
5526 
     | 
    
         
             
                  :create_snapshot_before_update)
         
     | 
| 
       5379 
5527 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
       5380 
5528 
     | 
    
         
             
                  include Aws::Structure
         
     |