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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c0089a3a2a2027550ea4271911e176b7d88a739ef7d3558fc468a62493d1062
|
4
|
+
data.tar.gz: 3ee137b27568eec90df5805fc8647bdf7e5156b612d3069611df8dc40d48106f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4ce649c0617759f28810845cb211f8183d45f202eded0e032f67aa10bb30f8d6bdcf0722edd9aa2235ce26414c057f02e14ed33f01dbbb419b1a68ed708f9cd
|
7
|
+
data.tar.gz: 8920624922633539e7165c41ce1befd9dcf44562c49cd93b1b83d18c9ab428f4b7f82c7bfa20c5f298e9bcb2c56fdfa34449bfac2afd34c50feb6e8b9f1a8170
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.94.0 (2025-09-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS Directory service now supports IPv6-native and dual-stack configurations for AWS Managed Microsoft AD, AD Connector, and Simple AD (dual-stack only). Additionally, AWS Managed Microsoft AD Standard Edition directories can be upgraded to Enterprise Edition directories through a single API call.
|
8
|
+
|
9
|
+
1.93.0 (2025-08-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add APIs for CA AutoEnrollment support: DescribeCAEnrollmentPolicy, EnableCAEnrollmentPolicy and DisableCAEnrollmentPolicy.
|
13
|
+
|
4
14
|
1.92.0 (2025-08-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.94.0
|
@@ -644,6 +644,7 @@ module Aws::DirectoryService
|
|
644
644
|
# ip_routes: [ # required
|
645
645
|
# {
|
646
646
|
# cidr_ip: "CidrIp",
|
647
|
+
# cidr_ipv_6: "CidrIpv6",
|
647
648
|
# description: "Description",
|
648
649
|
# },
|
649
650
|
# ],
|
@@ -828,6 +829,10 @@ module Aws::DirectoryService
|
|
828
829
|
# @option params [Array<Types::Tag>] :tags
|
829
830
|
# The tags to be assigned to AD Connector.
|
830
831
|
#
|
832
|
+
# @option params [String] :network_type
|
833
|
+
# The network type for your directory. The default value is `IPv4` or
|
834
|
+
# `IPv6` based on the provided subnet capabilities.
|
835
|
+
#
|
831
836
|
# @return [Types::ConnectDirectoryResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
832
837
|
#
|
833
838
|
# * {Types::ConnectDirectoryResult#directory_id #directory_id} => String
|
@@ -872,7 +877,8 @@ module Aws::DirectoryService
|
|
872
877
|
# connect_settings: { # required
|
873
878
|
# vpc_id: "VpcId", # required
|
874
879
|
# subnet_ids: ["SubnetId"], # required
|
875
|
-
# customer_dns_ips: ["IpAddr"],
|
880
|
+
# customer_dns_ips: ["IpAddr"],
|
881
|
+
# customer_dns_ips_v6: ["Ipv6Addr"],
|
876
882
|
# customer_user_name: "UserName", # required
|
877
883
|
# },
|
878
884
|
# tags: [
|
@@ -881,6 +887,7 @@ module Aws::DirectoryService
|
|
881
887
|
# value: "TagValue", # required
|
882
888
|
# },
|
883
889
|
# ],
|
890
|
+
# network_type: "Dual-stack", # accepts Dual-stack, IPv4, IPv6
|
884
891
|
# })
|
885
892
|
#
|
886
893
|
# @example Response structure
|
@@ -1063,10 +1070,14 @@ module Aws::DirectoryService
|
|
1063
1070
|
# The fully qualified domain name (FQDN) of the remote domain with which
|
1064
1071
|
# you will set up a trust relationship.
|
1065
1072
|
#
|
1066
|
-
# @option params [
|
1073
|
+
# @option params [Array<String>] :dns_ip_addrs
|
1067
1074
|
# The IP addresses of the remote DNS server associated with
|
1068
1075
|
# RemoteDomainName.
|
1069
1076
|
#
|
1077
|
+
# @option params [Array<String>] :dns_ipv_6_addrs
|
1078
|
+
# The IPv6 addresses of the remote DNS server associated with
|
1079
|
+
# RemoteDomainName.
|
1080
|
+
#
|
1070
1081
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1071
1082
|
#
|
1072
1083
|
#
|
@@ -1091,7 +1102,8 @@ module Aws::DirectoryService
|
|
1091
1102
|
# resp = client.create_conditional_forwarder({
|
1092
1103
|
# directory_id: "DirectoryId", # required
|
1093
1104
|
# remote_domain_name: "RemoteDomainName", # required
|
1094
|
-
# dns_ip_addrs: ["IpAddr"],
|
1105
|
+
# dns_ip_addrs: ["IpAddr"],
|
1106
|
+
# dns_ipv_6_addrs: ["Ipv6Addr"],
|
1095
1107
|
# })
|
1096
1108
|
#
|
1097
1109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/CreateConditionalForwarder AWS API Documentation
|
@@ -1175,6 +1187,10 @@ module Aws::DirectoryService
|
|
1175
1187
|
# @option params [Array<Types::Tag>] :tags
|
1176
1188
|
# The tags to be assigned to the Simple AD directory.
|
1177
1189
|
#
|
1190
|
+
# @option params [String] :network_type
|
1191
|
+
# The network type for your directory. Simple AD supports IPv4 and
|
1192
|
+
# Dual-stack only.
|
1193
|
+
#
|
1178
1194
|
# @return [Types::CreateDirectoryResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1179
1195
|
#
|
1180
1196
|
# * {Types::CreateDirectoryResult#directory_id #directory_id} => String
|
@@ -1222,6 +1238,7 @@ module Aws::DirectoryService
|
|
1222
1238
|
# value: "TagValue", # required
|
1223
1239
|
# },
|
1224
1240
|
# ],
|
1241
|
+
# network_type: "Dual-stack", # accepts Dual-stack, IPv4, IPv6
|
1225
1242
|
# })
|
1226
1243
|
#
|
1227
1244
|
# @example Response structure
|
@@ -1375,6 +1392,10 @@ module Aws::DirectoryService
|
|
1375
1392
|
# @option params [Array<Types::Tag>] :tags
|
1376
1393
|
# The tags to be assigned to the Managed Microsoft AD directory.
|
1377
1394
|
#
|
1395
|
+
# @option params [String] :network_type
|
1396
|
+
# The network type for your domain. The default value is `IPv4` or
|
1397
|
+
# `IPv6` based on the provided subnet capabilities.
|
1398
|
+
#
|
1378
1399
|
# @return [Types::CreateMicrosoftADResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1379
1400
|
#
|
1380
1401
|
# * {Types::CreateMicrosoftADResult#directory_id #directory_id} => String
|
@@ -1414,13 +1435,14 @@ module Aws::DirectoryService
|
|
1414
1435
|
# vpc_id: "VpcId", # required
|
1415
1436
|
# subnet_ids: ["SubnetId"], # required
|
1416
1437
|
# },
|
1417
|
-
# edition: "Enterprise", # accepts Enterprise, Standard
|
1438
|
+
# edition: "Enterprise", # accepts Enterprise, Standard, Hybrid
|
1418
1439
|
# tags: [
|
1419
1440
|
# {
|
1420
1441
|
# key: "TagKey", # required
|
1421
1442
|
# value: "TagValue", # required
|
1422
1443
|
# },
|
1423
1444
|
# ],
|
1445
|
+
# network_type: "Dual-stack", # accepts Dual-stack, IPv4, IPv6
|
1424
1446
|
# })
|
1425
1447
|
#
|
1426
1448
|
# @example Response structure
|
@@ -1522,6 +1544,10 @@ module Aws::DirectoryService
|
|
1522
1544
|
# The IP addresses of the remote DNS server associated with
|
1523
1545
|
# RemoteDomainName.
|
1524
1546
|
#
|
1547
|
+
# @option params [Array<String>] :conditional_forwarder_ipv_6_addrs
|
1548
|
+
# The IPv6 addresses of the remote DNS server associated with
|
1549
|
+
# RemoteDomainName.
|
1550
|
+
#
|
1525
1551
|
# @option params [String] :selective_auth
|
1526
1552
|
# Optional parameter to enable selective authentication for the trust.
|
1527
1553
|
#
|
@@ -1559,6 +1585,7 @@ module Aws::DirectoryService
|
|
1559
1585
|
# trust_direction: "One-Way: Outgoing", # required, accepts One-Way: Outgoing, One-Way: Incoming, Two-Way
|
1560
1586
|
# trust_type: "Forest", # accepts Forest, External
|
1561
1587
|
# conditional_forwarder_ip_addrs: ["IpAddr"],
|
1588
|
+
# conditional_forwarder_ipv_6_addrs: ["Ipv6Addr"],
|
1562
1589
|
# selective_auth: "Enabled", # accepts Enabled, Disabled
|
1563
1590
|
# })
|
1564
1591
|
#
|
@@ -1943,6 +1970,46 @@ module Aws::DirectoryService
|
|
1943
1970
|
req.send_request(options)
|
1944
1971
|
end
|
1945
1972
|
|
1973
|
+
# Retrieves detailed information about the certificate authority (CA)
|
1974
|
+
# enrollment policy for the specified directory. This policy determines
|
1975
|
+
# how client certificates are automatically enrolled and managed through
|
1976
|
+
# Amazon Web Services Private Certificate Authority.
|
1977
|
+
#
|
1978
|
+
# @option params [required, String] :directory_id
|
1979
|
+
# The identifier of the directory for which to retrieve the CA
|
1980
|
+
# enrollment policy information.
|
1981
|
+
#
|
1982
|
+
# @return [Types::DescribeCAEnrollmentPolicyResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1983
|
+
#
|
1984
|
+
# * {Types::DescribeCAEnrollmentPolicyResult#directory_id #directory_id} => String
|
1985
|
+
# * {Types::DescribeCAEnrollmentPolicyResult#pca_connector_arn #pca_connector_arn} => String
|
1986
|
+
# * {Types::DescribeCAEnrollmentPolicyResult#ca_enrollment_policy_status #ca_enrollment_policy_status} => String
|
1987
|
+
# * {Types::DescribeCAEnrollmentPolicyResult#last_updated_date_time #last_updated_date_time} => Time
|
1988
|
+
# * {Types::DescribeCAEnrollmentPolicyResult#ca_enrollment_policy_status_reason #ca_enrollment_policy_status_reason} => String
|
1989
|
+
#
|
1990
|
+
# @example Request syntax with placeholder values
|
1991
|
+
#
|
1992
|
+
# resp = client.describe_ca_enrollment_policy({
|
1993
|
+
# directory_id: "DirectoryId", # required
|
1994
|
+
# })
|
1995
|
+
#
|
1996
|
+
# @example Response structure
|
1997
|
+
#
|
1998
|
+
# resp.directory_id #=> String
|
1999
|
+
# resp.pca_connector_arn #=> String
|
2000
|
+
# resp.ca_enrollment_policy_status #=> String, one of "InProgress", "Success", "Failed", "Disabling", "Disabled", "Impaired"
|
2001
|
+
# resp.last_updated_date_time #=> Time
|
2002
|
+
# resp.ca_enrollment_policy_status_reason #=> String
|
2003
|
+
#
|
2004
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DescribeCAEnrollmentPolicy AWS API Documentation
|
2005
|
+
#
|
2006
|
+
# @overload describe_ca_enrollment_policy(params = {})
|
2007
|
+
# @param [Hash] params ({})
|
2008
|
+
def describe_ca_enrollment_policy(params = {}, options = {})
|
2009
|
+
req = build_request(:describe_ca_enrollment_policy, params)
|
2010
|
+
req.send_request(options)
|
2011
|
+
end
|
2012
|
+
|
1946
2013
|
# Displays information about the certificate registered for secure LDAP
|
1947
2014
|
# or client certificate authentication.
|
1948
2015
|
#
|
@@ -2090,6 +2157,8 @@ module Aws::DirectoryService
|
|
2090
2157
|
# resp.conditional_forwarders[0].remote_domain_name #=> String
|
2091
2158
|
# resp.conditional_forwarders[0].dns_ip_addrs #=> Array
|
2092
2159
|
# resp.conditional_forwarders[0].dns_ip_addrs[0] #=> String
|
2160
|
+
# resp.conditional_forwarders[0].dns_ipv_6_addrs #=> Array
|
2161
|
+
# resp.conditional_forwarders[0].dns_ipv_6_addrs[0] #=> String
|
2093
2162
|
# resp.conditional_forwarders[0].replication_scope #=> String, one of "Domain"
|
2094
2163
|
#
|
2095
2164
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DescribeConditionalForwarders AWS API Documentation
|
@@ -2199,12 +2268,14 @@ module Aws::DirectoryService
|
|
2199
2268
|
# resp.directory_descriptions[0].name #=> String
|
2200
2269
|
# resp.directory_descriptions[0].short_name #=> String
|
2201
2270
|
# resp.directory_descriptions[0].size #=> String, one of "Small", "Large"
|
2202
|
-
# resp.directory_descriptions[0].edition #=> String, one of "Enterprise", "Standard"
|
2271
|
+
# resp.directory_descriptions[0].edition #=> String, one of "Enterprise", "Standard", "Hybrid"
|
2203
2272
|
# resp.directory_descriptions[0].alias #=> String
|
2204
2273
|
# resp.directory_descriptions[0].access_url #=> String
|
2205
2274
|
# resp.directory_descriptions[0].description #=> String
|
2206
2275
|
# resp.directory_descriptions[0].dns_ip_addrs #=> Array
|
2207
2276
|
# resp.directory_descriptions[0].dns_ip_addrs[0] #=> String
|
2277
|
+
# resp.directory_descriptions[0].dns_ipv_6_addrs #=> Array
|
2278
|
+
# resp.directory_descriptions[0].dns_ipv_6_addrs[0] #=> String
|
2208
2279
|
# resp.directory_descriptions[0].stage #=> String, one of "Requested", "Creating", "Created", "Active", "Inoperable", "Impaired", "Restoring", "RestoreFailed", "Deleting", "Deleted", "Failed", "Updating"
|
2209
2280
|
# resp.directory_descriptions[0].share_status #=> String, one of "Shared", "PendingAcceptance", "Rejected", "Rejecting", "RejectFailed", "Sharing", "ShareFailed", "Deleted", "Deleting"
|
2210
2281
|
# resp.directory_descriptions[0].share_method #=> String, one of "ORGANIZATIONS", "HANDSHAKE"
|
@@ -2227,8 +2298,12 @@ module Aws::DirectoryService
|
|
2227
2298
|
# resp.directory_descriptions[0].connect_settings.availability_zones[0] #=> String
|
2228
2299
|
# resp.directory_descriptions[0].connect_settings.connect_ips #=> Array
|
2229
2300
|
# resp.directory_descriptions[0].connect_settings.connect_ips[0] #=> String
|
2301
|
+
# resp.directory_descriptions[0].connect_settings.connect_ips_v6 #=> Array
|
2302
|
+
# resp.directory_descriptions[0].connect_settings.connect_ips_v6[0] #=> String
|
2230
2303
|
# resp.directory_descriptions[0].radius_settings.radius_servers #=> Array
|
2231
2304
|
# resp.directory_descriptions[0].radius_settings.radius_servers[0] #=> String
|
2305
|
+
# resp.directory_descriptions[0].radius_settings.radius_servers_ipv_6 #=> Array
|
2306
|
+
# resp.directory_descriptions[0].radius_settings.radius_servers_ipv_6[0] #=> String
|
2232
2307
|
# resp.directory_descriptions[0].radius_settings.radius_port #=> Integer
|
2233
2308
|
# resp.directory_descriptions[0].radius_settings.radius_timeout #=> Integer
|
2234
2309
|
# resp.directory_descriptions[0].radius_settings.radius_retries #=> Integer
|
@@ -2244,6 +2319,8 @@ module Aws::DirectoryService
|
|
2244
2319
|
# resp.directory_descriptions[0].owner_directory_description.account_id #=> String
|
2245
2320
|
# resp.directory_descriptions[0].owner_directory_description.dns_ip_addrs #=> Array
|
2246
2321
|
# resp.directory_descriptions[0].owner_directory_description.dns_ip_addrs[0] #=> String
|
2322
|
+
# resp.directory_descriptions[0].owner_directory_description.dns_ipv_6_addrs #=> Array
|
2323
|
+
# resp.directory_descriptions[0].owner_directory_description.dns_ipv_6_addrs[0] #=> String
|
2247
2324
|
# resp.directory_descriptions[0].owner_directory_description.vpc_settings.vpc_id #=> String
|
2248
2325
|
# resp.directory_descriptions[0].owner_directory_description.vpc_settings.subnet_ids #=> Array
|
2249
2326
|
# resp.directory_descriptions[0].owner_directory_description.vpc_settings.subnet_ids[0] #=> String
|
@@ -2252,6 +2329,8 @@ module Aws::DirectoryService
|
|
2252
2329
|
# resp.directory_descriptions[0].owner_directory_description.vpc_settings.availability_zones[0] #=> String
|
2253
2330
|
# resp.directory_descriptions[0].owner_directory_description.radius_settings.radius_servers #=> Array
|
2254
2331
|
# resp.directory_descriptions[0].owner_directory_description.radius_settings.radius_servers[0] #=> String
|
2332
|
+
# resp.directory_descriptions[0].owner_directory_description.radius_settings.radius_servers_ipv_6 #=> Array
|
2333
|
+
# resp.directory_descriptions[0].owner_directory_description.radius_settings.radius_servers_ipv_6[0] #=> String
|
2255
2334
|
# resp.directory_descriptions[0].owner_directory_description.radius_settings.radius_port #=> Integer
|
2256
2335
|
# resp.directory_descriptions[0].owner_directory_description.radius_settings.radius_timeout #=> Integer
|
2257
2336
|
# resp.directory_descriptions[0].owner_directory_description.radius_settings.radius_retries #=> Integer
|
@@ -2260,6 +2339,7 @@ module Aws::DirectoryService
|
|
2260
2339
|
# resp.directory_descriptions[0].owner_directory_description.radius_settings.display_label #=> String
|
2261
2340
|
# resp.directory_descriptions[0].owner_directory_description.radius_settings.use_same_username #=> Boolean
|
2262
2341
|
# resp.directory_descriptions[0].owner_directory_description.radius_status #=> String, one of "Creating", "Completed", "Failed"
|
2342
|
+
# resp.directory_descriptions[0].owner_directory_description.network_type #=> String, one of "Dual-stack", "IPv4", "IPv6"
|
2263
2343
|
# resp.directory_descriptions[0].regions_info.primary_region #=> String
|
2264
2344
|
# resp.directory_descriptions[0].regions_info.additional_regions #=> Array
|
2265
2345
|
# resp.directory_descriptions[0].regions_info.additional_regions[0] #=> String
|
@@ -2268,6 +2348,7 @@ module Aws::DirectoryService
|
|
2268
2348
|
# resp.directory_descriptions[0].hybrid_settings.self_managed_dns_ip_addrs[0] #=> String
|
2269
2349
|
# resp.directory_descriptions[0].hybrid_settings.self_managed_instance_ids #=> Array
|
2270
2350
|
# resp.directory_descriptions[0].hybrid_settings.self_managed_instance_ids[0] #=> String
|
2351
|
+
# resp.directory_descriptions[0].network_type #=> String, one of "Dual-stack", "IPv4", "IPv6"
|
2271
2352
|
# resp.next_token #=> String
|
2272
2353
|
#
|
2273
2354
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DescribeDirectories AWS API Documentation
|
@@ -2347,6 +2428,7 @@ module Aws::DirectoryService
|
|
2347
2428
|
# resp.domain_controllers[0].directory_id #=> String
|
2348
2429
|
# resp.domain_controllers[0].domain_controller_id #=> String
|
2349
2430
|
# resp.domain_controllers[0].dns_ip_addr #=> String
|
2431
|
+
# resp.domain_controllers[0].dns_ipv_6_addr #=> String
|
2350
2432
|
# resp.domain_controllers[0].vpc_id #=> String
|
2351
2433
|
# resp.domain_controllers[0].subnet_id #=> String
|
2352
2434
|
# resp.domain_controllers[0].availability_zone #=> String
|
@@ -2937,7 +3019,7 @@ module Aws::DirectoryService
|
|
2937
3019
|
#
|
2938
3020
|
# resp = client.describe_update_directory({
|
2939
3021
|
# directory_id: "DirectoryId", # required
|
2940
|
-
# update_type: "OS", # required, accepts OS
|
3022
|
+
# update_type: "OS", # required, accepts OS, NETWORK, SIZE
|
2941
3023
|
# region_name: "RegionName",
|
2942
3024
|
# next_token: "NextToken",
|
2943
3025
|
# })
|
@@ -2964,6 +3046,36 @@ module Aws::DirectoryService
|
|
2964
3046
|
req.send_request(options)
|
2965
3047
|
end
|
2966
3048
|
|
3049
|
+
# Disables the certificate authority (CA) enrollment policy for the
|
3050
|
+
# specified directory. This stops automatic certificate enrollment and
|
3051
|
+
# management for domain-joined clients, but does not affect existing
|
3052
|
+
# certificates.
|
3053
|
+
#
|
3054
|
+
# Disabling the CA enrollment policy prevents new certificates from
|
3055
|
+
# being automatically enrolled, but existing certificates remain valid
|
3056
|
+
# and functional until they expire.
|
3057
|
+
#
|
3058
|
+
# @option params [required, String] :directory_id
|
3059
|
+
# The identifier of the directory for which to disable the CA enrollment
|
3060
|
+
# policy.
|
3061
|
+
#
|
3062
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3063
|
+
#
|
3064
|
+
# @example Request syntax with placeholder values
|
3065
|
+
#
|
3066
|
+
# resp = client.disable_ca_enrollment_policy({
|
3067
|
+
# directory_id: "DirectoryId", # required
|
3068
|
+
# })
|
3069
|
+
#
|
3070
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DisableCAEnrollmentPolicy AWS API Documentation
|
3071
|
+
#
|
3072
|
+
# @overload disable_ca_enrollment_policy(params = {})
|
3073
|
+
# @param [Hash] params ({})
|
3074
|
+
def disable_ca_enrollment_policy(params = {}, options = {})
|
3075
|
+
req = build_request(:disable_ca_enrollment_policy, params)
|
3076
|
+
req.send_request(options)
|
3077
|
+
end
|
3078
|
+
|
2967
3079
|
# Disables alternative client authentication methods for the specified
|
2968
3080
|
# directory.
|
2969
3081
|
#
|
@@ -3140,6 +3252,48 @@ module Aws::DirectoryService
|
|
3140
3252
|
req.send_request(options)
|
3141
3253
|
end
|
3142
3254
|
|
3255
|
+
# Enables certificate authority (CA) enrollment policy for the specified
|
3256
|
+
# directory. This allows domain-joined clients to automatically request
|
3257
|
+
# and receive certificates from the specified Amazon Web Services
|
3258
|
+
# Private Certificate Authority.
|
3259
|
+
#
|
3260
|
+
# <note markdown="1"> Before enabling CA enrollment, ensure that the PCA connector is
|
3261
|
+
# properly configured and accessible from the directory. The connector
|
3262
|
+
# must be in an active state and have the necessary permissions.
|
3263
|
+
#
|
3264
|
+
# </note>
|
3265
|
+
#
|
3266
|
+
# @option params [required, String] :directory_id
|
3267
|
+
# The identifier of the directory for which to enable the CA enrollment
|
3268
|
+
# policy.
|
3269
|
+
#
|
3270
|
+
# @option params [required, String] :pca_connector_arn
|
3271
|
+
# The Amazon Resource Name (ARN) of the Private Certificate Authority
|
3272
|
+
# (PCA) connector to use for automatic certificate enrollment. This
|
3273
|
+
# connector must be properly configured and accessible from the
|
3274
|
+
# directory.
|
3275
|
+
#
|
3276
|
+
# The ARN format is:
|
3277
|
+
# `arn:aws:pca-connector-ad:region:account-id:connector/connector-id `
|
3278
|
+
#
|
3279
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3280
|
+
#
|
3281
|
+
# @example Request syntax with placeholder values
|
3282
|
+
#
|
3283
|
+
# resp = client.enable_ca_enrollment_policy({
|
3284
|
+
# directory_id: "DirectoryId", # required
|
3285
|
+
# pca_connector_arn: "PcaConnectorArn", # required
|
3286
|
+
# })
|
3287
|
+
#
|
3288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/EnableCAEnrollmentPolicy AWS API Documentation
|
3289
|
+
#
|
3290
|
+
# @overload enable_ca_enrollment_policy(params = {})
|
3291
|
+
# @param [Hash] params ({})
|
3292
|
+
def enable_ca_enrollment_policy(params = {}, options = {})
|
3293
|
+
req = build_request(:enable_ca_enrollment_policy, params)
|
3294
|
+
req.send_request(options)
|
3295
|
+
end
|
3296
|
+
|
3143
3297
|
# Enables alternative client authentication methods for the specified
|
3144
3298
|
# directory.
|
3145
3299
|
#
|
@@ -3271,6 +3425,7 @@ module Aws::DirectoryService
|
|
3271
3425
|
# directory_id: "DirectoryId", # required
|
3272
3426
|
# radius_settings: { # required
|
3273
3427
|
# radius_servers: ["Server"],
|
3428
|
+
# radius_servers_ipv_6: ["Server"],
|
3274
3429
|
# radius_port: 1,
|
3275
3430
|
# radius_timeout: 1,
|
3276
3431
|
# radius_retries: 1,
|
@@ -3605,6 +3760,7 @@ module Aws::DirectoryService
|
|
3605
3760
|
# resp.ip_routes_info #=> Array
|
3606
3761
|
# resp.ip_routes_info[0].directory_id #=> String
|
3607
3762
|
# resp.ip_routes_info[0].cidr_ip #=> String
|
3763
|
+
# resp.ip_routes_info[0].cidr_ipv_6 #=> String
|
3608
3764
|
# resp.ip_routes_info[0].ip_route_status_msg #=> String, one of "Adding", "Added", "Removing", "Removed", "AddFailed", "RemoveFailed"
|
3609
3765
|
# resp.ip_routes_info[0].added_date_time #=> Time
|
3610
3766
|
# resp.ip_routes_info[0].ip_route_status_reason #=> String
|
@@ -3934,9 +4090,12 @@ module Aws::DirectoryService
|
|
3934
4090
|
# Identifier (ID) of the directory from which you want to remove the IP
|
3935
4091
|
# addresses.
|
3936
4092
|
#
|
3937
|
-
# @option params [
|
4093
|
+
# @option params [Array<String>] :cidr_ips
|
3938
4094
|
# IP address blocks that you want to remove.
|
3939
4095
|
#
|
4096
|
+
# @option params [Array<String>] :cidr_ipv_6s
|
4097
|
+
# IPv6 address blocks that you want to remove.
|
4098
|
+
#
|
3940
4099
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3941
4100
|
#
|
3942
4101
|
#
|
@@ -3959,7 +4118,8 @@ module Aws::DirectoryService
|
|
3959
4118
|
#
|
3960
4119
|
# resp = client.remove_ip_routes({
|
3961
4120
|
# directory_id: "DirectoryId", # required
|
3962
|
-
# cidr_ips: ["CidrIp"],
|
4121
|
+
# cidr_ips: ["CidrIp"],
|
4122
|
+
# cidr_ipv_6s: ["CidrIpv6"],
|
3963
4123
|
# })
|
3964
4124
|
#
|
3965
4125
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/RemoveIpRoutes AWS API Documentation
|
@@ -4382,10 +4542,14 @@ module Aws::DirectoryService
|
|
4382
4542
|
# The fully qualified domain name (FQDN) of the remote domain with which
|
4383
4543
|
# you will set up a trust relationship.
|
4384
4544
|
#
|
4385
|
-
# @option params [
|
4545
|
+
# @option params [Array<String>] :dns_ip_addrs
|
4386
4546
|
# The updated IP addresses of the remote DNS server associated with the
|
4387
4547
|
# conditional forwarder.
|
4388
4548
|
#
|
4549
|
+
# @option params [Array<String>] :dns_ipv_6_addrs
|
4550
|
+
# The updated IPv6 addresses of the remote DNS server associated with
|
4551
|
+
# the conditional forwarder.
|
4552
|
+
#
|
4389
4553
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4390
4554
|
#
|
4391
4555
|
#
|
@@ -4410,7 +4574,8 @@ module Aws::DirectoryService
|
|
4410
4574
|
# resp = client.update_conditional_forwarder({
|
4411
4575
|
# directory_id: "DirectoryId", # required
|
4412
4576
|
# remote_domain_name: "RemoteDomainName", # required
|
4413
|
-
# dns_ip_addrs: ["IpAddr"],
|
4577
|
+
# dns_ip_addrs: ["IpAddr"],
|
4578
|
+
# dns_ipv_6_addrs: ["Ipv6Addr"],
|
4414
4579
|
# })
|
4415
4580
|
#
|
4416
4581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/UpdateConditionalForwarder AWS API Documentation
|
@@ -4422,23 +4587,27 @@ module Aws::DirectoryService
|
|
4422
4587
|
req.send_request(options)
|
4423
4588
|
end
|
4424
4589
|
|
4425
|
-
# Updates
|
4590
|
+
# Updates directory configuration for the specified update type.
|
4426
4591
|
#
|
4427
4592
|
# @option params [required, String] :directory_id
|
4428
|
-
# The identifier of the directory
|
4429
|
-
# update.
|
4593
|
+
# The identifier of the directory to update.
|
4430
4594
|
#
|
4431
4595
|
# @option params [required, String] :update_type
|
4432
|
-
# The type of update
|
4433
|
-
# example, OS.
|
4596
|
+
# The type of update to perform on the directory.
|
4434
4597
|
#
|
4435
4598
|
# @option params [Types::OSUpdateSettings] :os_update_settings
|
4436
|
-
#
|
4437
|
-
#
|
4599
|
+
# Operating system configuration to apply during the directory update
|
4600
|
+
# operation.
|
4601
|
+
#
|
4602
|
+
# @option params [Types::DirectorySizeUpdateSettings] :directory_size_update_settings
|
4603
|
+
# Directory size configuration to apply during the update operation.
|
4604
|
+
#
|
4605
|
+
# @option params [Types::NetworkUpdateSettings] :network_update_settings
|
4606
|
+
# Network configuration to apply during the directory update operation.
|
4438
4607
|
#
|
4439
4608
|
# @option params [Boolean] :create_snapshot_before_update
|
4440
|
-
#
|
4441
|
-
#
|
4609
|
+
# Specifies whether to create a directory snapshot before performing the
|
4610
|
+
# update.
|
4442
4611
|
#
|
4443
4612
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4444
4613
|
#
|
@@ -4446,10 +4615,17 @@ module Aws::DirectoryService
|
|
4446
4615
|
#
|
4447
4616
|
# resp = client.update_directory_setup({
|
4448
4617
|
# directory_id: "DirectoryId", # required
|
4449
|
-
# update_type: "OS", # required, accepts OS
|
4618
|
+
# update_type: "OS", # required, accepts OS, NETWORK, SIZE
|
4450
4619
|
# os_update_settings: {
|
4451
4620
|
# os_version: "SERVER_2012", # accepts SERVER_2012, SERVER_2019
|
4452
4621
|
# },
|
4622
|
+
# directory_size_update_settings: {
|
4623
|
+
# directory_size: "Small", # accepts Small, Large
|
4624
|
+
# },
|
4625
|
+
# network_update_settings: {
|
4626
|
+
# network_type: "Dual-stack", # accepts Dual-stack, IPv4, IPv6
|
4627
|
+
# customer_dns_ips_v6: ["Ipv6Addr"],
|
4628
|
+
# },
|
4453
4629
|
# create_snapshot_before_update: false,
|
4454
4630
|
# })
|
4455
4631
|
#
|
@@ -4615,6 +4791,7 @@ module Aws::DirectoryService
|
|
4615
4791
|
# directory_id: "DirectoryId", # required
|
4616
4792
|
# radius_settings: { # required
|
4617
4793
|
# radius_servers: ["Server"],
|
4794
|
+
# radius_servers_ipv_6: ["Server"],
|
4618
4795
|
# radius_port: 1,
|
4619
4796
|
# radius_timeout: 1,
|
4620
4797
|
# radius_retries: 1,
|
@@ -4770,7 +4947,7 @@ module Aws::DirectoryService
|
|
4770
4947
|
tracer: tracer
|
4771
4948
|
)
|
4772
4949
|
context[:gem_name] = 'aws-sdk-directoryservice'
|
4773
|
-
context[:gem_version] = '1.
|
4950
|
+
context[:gem_version] = '1.94.0'
|
4774
4951
|
Seahorse::Client::Request.new(handlers, context)
|
4775
4952
|
end
|
4776
4953
|
|