aws-sdk-directoryservice 1.41.0 → 1.45.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-directoryservice/client.rb +189 -119
- data/lib/aws-sdk-directoryservice/client_api.rb +36 -0
- data/lib/aws-sdk-directoryservice/types.rb +254 -155
- data/lib/aws-sdk-directoryservice.rb +1 -1
- metadata +5 -5
@@ -285,6 +285,15 @@ module Aws::DirectoryService
|
|
285
285
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
286
286
|
# requests are made, and retries are disabled.
|
287
287
|
#
|
288
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
289
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
290
|
+
# will be used if available.
|
291
|
+
#
|
292
|
+
# @option options [Boolean] :use_fips_endpoint
|
293
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
294
|
+
# When a `fips` region is used, the region is normalized and this config
|
295
|
+
# is set to `true`.
|
296
|
+
#
|
288
297
|
# @option options [Boolean] :validate_params (true)
|
289
298
|
# When `true`, request parameters are validated before
|
290
299
|
# sending the request.
|
@@ -375,18 +384,18 @@ module Aws::DirectoryService
|
|
375
384
|
req.send_request(options)
|
376
385
|
end
|
377
386
|
|
378
|
-
# If the DNS server for your
|
387
|
+
# If the DNS server for your self-managed domain uses a publicly
|
379
388
|
# addressable IP address, you must add a CIDR address block to correctly
|
380
389
|
# route traffic to and from your Microsoft AD on Amazon Web Services.
|
381
390
|
# *AddIpRoutes* adds this address block. You can also use *AddIpRoutes*
|
382
391
|
# to facilitate routing traffic that uses public IP ranges from your
|
383
|
-
# Microsoft AD on
|
392
|
+
# Microsoft AD on Amazon Web Services to a peer VPC.
|
384
393
|
#
|
385
394
|
# Before you call *AddIpRoutes*, ensure that all of the required
|
386
395
|
# permissions have been explicitly granted through a policy. For details
|
387
396
|
# about what permissions are required to run the *AddIpRoutes*
|
388
|
-
# operation, see [
|
389
|
-
#
|
397
|
+
# operation, see [Directory Service API Permissions: Actions, Resources,
|
398
|
+
# and Conditions Reference][1].
|
390
399
|
#
|
391
400
|
#
|
392
401
|
#
|
@@ -397,13 +406,14 @@ module Aws::DirectoryService
|
|
397
406
|
#
|
398
407
|
# @option params [required, Array<Types::IpRoute>] :ip_routes
|
399
408
|
# IP address blocks, using CIDR format, of the traffic to route. This is
|
400
|
-
# often the IP address block of the DNS server used for your
|
401
|
-
# domain.
|
409
|
+
# often the IP address block of the DNS server used for your
|
410
|
+
# self-managed domain.
|
402
411
|
#
|
403
412
|
# @option params [Boolean] :update_security_group_for_directory_controllers
|
404
413
|
# If set to true, updates the inbound and outbound rules of the security
|
405
|
-
# group that has the description: "
|
406
|
-
# *directory ID* directory controllers." Following are the
|
414
|
+
# group that has the description: "Amazon Web Services created security
|
415
|
+
# group for *directory ID* directory controllers." Following are the
|
416
|
+
# new rules:
|
407
417
|
#
|
408
418
|
# Inbound:
|
409
419
|
#
|
@@ -579,27 +589,27 @@ module Aws::DirectoryService
|
|
579
589
|
req.send_request(options)
|
580
590
|
end
|
581
591
|
|
582
|
-
# Creates an AD Connector to connect to
|
592
|
+
# Creates an AD Connector to connect to a self-managed directory.
|
583
593
|
#
|
584
594
|
# Before you call `ConnectDirectory`, ensure that all of the required
|
585
595
|
# permissions have been explicitly granted through a policy. For details
|
586
596
|
# about what permissions are required to run the `ConnectDirectory`
|
587
|
-
# operation, see [
|
588
|
-
#
|
597
|
+
# operation, see [Directory Service API Permissions: Actions, Resources,
|
598
|
+
# and Conditions Reference][1].
|
589
599
|
#
|
590
600
|
#
|
591
601
|
#
|
592
602
|
# [1]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html
|
593
603
|
#
|
594
604
|
# @option params [required, String] :name
|
595
|
-
# The fully qualified name of
|
605
|
+
# The fully qualified name of your self-managed directory, such as
|
596
606
|
# `corp.example.com`.
|
597
607
|
#
|
598
608
|
# @option params [String] :short_name
|
599
|
-
# The NetBIOS name of
|
609
|
+
# The NetBIOS name of your self-managed directory, such as `CORP`.
|
600
610
|
#
|
601
611
|
# @option params [required, String] :password
|
602
|
-
# The password for
|
612
|
+
# The password for your self-managed user account.
|
603
613
|
#
|
604
614
|
# @option params [String] :description
|
605
615
|
# A description for the directory.
|
@@ -666,9 +676,9 @@ module Aws::DirectoryService
|
|
666
676
|
# @option params [required, String] :alias
|
667
677
|
# The requested alias.
|
668
678
|
#
|
669
|
-
# The alias must be unique amongst all aliases in
|
670
|
-
# throws an `EntityAlreadyExistsException` error if the
|
671
|
-
# exists.
|
679
|
+
# The alias must be unique amongst all aliases in Amazon Web Services.
|
680
|
+
# This operation throws an `EntityAlreadyExistsException` error if the
|
681
|
+
# alias already exists.
|
672
682
|
#
|
673
683
|
# @return [Types::CreateAliasResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
674
684
|
#
|
@@ -755,14 +765,14 @@ module Aws::DirectoryService
|
|
755
765
|
req.send_request(options)
|
756
766
|
end
|
757
767
|
|
758
|
-
# Creates a conditional forwarder associated with your
|
759
|
-
# Conditional forwarders are required in order to
|
760
|
-
# relationship with another domain. The conditional
|
761
|
-
# the trusted domain.
|
768
|
+
# Creates a conditional forwarder associated with your Amazon Web
|
769
|
+
# Services directory. Conditional forwarders are required in order to
|
770
|
+
# set up a trust relationship with another domain. The conditional
|
771
|
+
# forwarder points to the trusted domain.
|
762
772
|
#
|
763
773
|
# @option params [required, String] :directory_id
|
764
|
-
# The directory ID of the
|
765
|
-
# conditional forwarder.
|
774
|
+
# The directory ID of the Amazon Web Services directory for which you
|
775
|
+
# are creating the conditional forwarder.
|
766
776
|
#
|
767
777
|
# @option params [required, String] :remote_domain_name
|
768
778
|
# The fully qualified domain name (FQDN) of the remote domain with which
|
@@ -792,13 +802,13 @@ module Aws::DirectoryService
|
|
792
802
|
end
|
793
803
|
|
794
804
|
# Creates a Simple AD directory. For more information, see [Simple
|
795
|
-
# Active Directory][1] in the *
|
805
|
+
# Active Directory][1] in the *Directory Service Admin Guide*.
|
796
806
|
#
|
797
807
|
# Before you call `CreateDirectory`, ensure that all of the required
|
798
808
|
# permissions have been explicitly granted through a policy. For details
|
799
809
|
# about what permissions are required to run the `CreateDirectory`
|
800
|
-
# operation, see [
|
801
|
-
#
|
810
|
+
# operation, see [Directory Service API Permissions: Actions, Resources,
|
811
|
+
# and Conditions Reference][2].
|
802
812
|
#
|
803
813
|
#
|
804
814
|
#
|
@@ -902,7 +912,7 @@ module Aws::DirectoryService
|
|
902
912
|
|
903
913
|
# Creates a subscription to forward real-time Directory Service domain
|
904
914
|
# controller security logs to the specified Amazon CloudWatch log group
|
905
|
-
# in your
|
915
|
+
# in your Amazon Web Services account.
|
906
916
|
#
|
907
917
|
# @option params [required, String] :directory_id
|
908
918
|
# Identifier of the directory to which you want to subscribe and receive
|
@@ -930,15 +940,15 @@ module Aws::DirectoryService
|
|
930
940
|
req.send_request(options)
|
931
941
|
end
|
932
942
|
|
933
|
-
# Creates a Microsoft AD directory in the
|
934
|
-
# information, see [
|
943
|
+
# Creates a Microsoft AD directory in the Amazon Web Services Cloud. For
|
944
|
+
# more information, see [Managed Microsoft AD][1] in the *Directory
|
935
945
|
# Service Admin Guide*.
|
936
946
|
#
|
937
947
|
# Before you call *CreateMicrosoftAD*, ensure that all of the required
|
938
948
|
# permissions have been explicitly granted through a policy. For details
|
939
949
|
# about what permissions are required to run the *CreateMicrosoftAD*
|
940
|
-
# operation, see [
|
941
|
-
#
|
950
|
+
# operation, see [Directory Service API Permissions: Actions, Resources,
|
951
|
+
# and Conditions Reference][2].
|
942
952
|
#
|
943
953
|
#
|
944
954
|
#
|
@@ -946,7 +956,7 @@ module Aws::DirectoryService
|
|
946
956
|
# [2]: http://docs.aws.amazon.com/directoryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html
|
947
957
|
#
|
948
958
|
# @option params [required, String] :name
|
949
|
-
# The fully qualified domain name for the
|
959
|
+
# The fully qualified domain name for the Managed Microsoft AD
|
950
960
|
# directory, such as `corp.example.com`. This name will resolve inside
|
951
961
|
# your VPC only. It does not need to be publicly resolvable.
|
952
962
|
#
|
@@ -963,19 +973,20 @@ module Aws::DirectoryService
|
|
963
973
|
# can use the ResetUserPassword API call.
|
964
974
|
#
|
965
975
|
# @option params [String] :description
|
966
|
-
# A description for the directory. This label will appear on the
|
967
|
-
# console `Directory Details` page after the directory is
|
976
|
+
# A description for the directory. This label will appear on the Amazon
|
977
|
+
# Web Services console `Directory Details` page after the directory is
|
978
|
+
# created.
|
968
979
|
#
|
969
980
|
# @option params [required, Types::DirectoryVpcSettings] :vpc_settings
|
970
981
|
# Contains VPC information for the CreateDirectory or CreateMicrosoftAD
|
971
982
|
# operation.
|
972
983
|
#
|
973
984
|
# @option params [String] :edition
|
974
|
-
#
|
985
|
+
# Managed Microsoft AD is available in two editions: `Standard` and
|
975
986
|
# `Enterprise`. `Enterprise` is the default.
|
976
987
|
#
|
977
988
|
# @option params [Array<Types::Tag>] :tags
|
978
|
-
# The tags to be assigned to the
|
989
|
+
# The tags to be assigned to the Managed Microsoft AD directory.
|
979
990
|
#
|
980
991
|
# @return [Types::CreateMicrosoftADResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
981
992
|
#
|
@@ -1014,8 +1025,8 @@ module Aws::DirectoryService
|
|
1014
1025
|
req.send_request(options)
|
1015
1026
|
end
|
1016
1027
|
|
1017
|
-
# Creates a snapshot of a Simple AD or Microsoft AD directory in the
|
1018
|
-
# cloud.
|
1028
|
+
# Creates a snapshot of a Simple AD or Microsoft AD directory in the
|
1029
|
+
# Amazon Web Services cloud.
|
1019
1030
|
#
|
1020
1031
|
# <note markdown="1"> You cannot take snapshots of AD Connector directories.
|
1021
1032
|
#
|
@@ -1051,21 +1062,21 @@ module Aws::DirectoryService
|
|
1051
1062
|
req.send_request(options)
|
1052
1063
|
end
|
1053
1064
|
|
1054
|
-
#
|
1065
|
+
# Directory Service for Microsoft Active Directory allows you to
|
1055
1066
|
# configure trust relationships. For example, you can establish a trust
|
1056
|
-
# between your
|
1057
|
-
#
|
1067
|
+
# between your Managed Microsoft AD directory, and your existing
|
1068
|
+
# self-managed Microsoft Active Directory. This would allow you to
|
1058
1069
|
# provide users and groups access to resources in either domain, with a
|
1059
1070
|
# single set of credentials.
|
1060
1071
|
#
|
1061
|
-
# This action initiates the creation of the
|
1062
|
-
# relationship between an
|
1072
|
+
# This action initiates the creation of the Amazon Web Services side of
|
1073
|
+
# a trust relationship between an Managed Microsoft AD directory and an
|
1063
1074
|
# external domain. You can create either a forest trust or an external
|
1064
1075
|
# trust.
|
1065
1076
|
#
|
1066
1077
|
# @option params [required, String] :directory_id
|
1067
|
-
# The Directory ID of the
|
1068
|
-
#
|
1078
|
+
# The Directory ID of the Managed Microsoft AD directory for which to
|
1079
|
+
# establish the trust relationship.
|
1069
1080
|
#
|
1070
1081
|
# @option params [required, String] :remote_domain_name
|
1071
1082
|
# The Fully Qualified Domain Name (FQDN) of the external domain for
|
@@ -1117,8 +1128,8 @@ module Aws::DirectoryService
|
|
1117
1128
|
req.send_request(options)
|
1118
1129
|
end
|
1119
1130
|
|
1120
|
-
# Deletes a conditional forwarder that has been set up for your
|
1121
|
-
# directory.
|
1131
|
+
# Deletes a conditional forwarder that has been set up for your Amazon
|
1132
|
+
# Web Services directory.
|
1122
1133
|
#
|
1123
1134
|
# @option params [required, String] :directory_id
|
1124
1135
|
# The directory ID for which you are deleting the conditional forwarder.
|
@@ -1145,13 +1156,13 @@ module Aws::DirectoryService
|
|
1145
1156
|
req.send_request(options)
|
1146
1157
|
end
|
1147
1158
|
|
1148
|
-
# Deletes an
|
1159
|
+
# Deletes an Directory Service directory.
|
1149
1160
|
#
|
1150
1161
|
# Before you call `DeleteDirectory`, ensure that all of the required
|
1151
1162
|
# permissions have been explicitly granted through a policy. For details
|
1152
1163
|
# about what permissions are required to run the `DeleteDirectory`
|
1153
|
-
# operation, see [
|
1154
|
-
#
|
1164
|
+
# operation, see [Directory Service API Permissions: Actions, Resources,
|
1165
|
+
# and Conditions Reference][1].
|
1155
1166
|
#
|
1156
1167
|
#
|
1157
1168
|
#
|
@@ -1233,8 +1244,8 @@ module Aws::DirectoryService
|
|
1233
1244
|
req.send_request(options)
|
1234
1245
|
end
|
1235
1246
|
|
1236
|
-
# Deletes an existing trust relationship between your
|
1237
|
-
#
|
1247
|
+
# Deletes an existing trust relationship between your Managed Microsoft
|
1248
|
+
# AD directory and an external domain.
|
1238
1249
|
#
|
1239
1250
|
# @option params [required, String] :trust_id
|
1240
1251
|
# The Trust ID of the trust relationship to be deleted.
|
@@ -1293,16 +1304,16 @@ module Aws::DirectoryService
|
|
1293
1304
|
req.send_request(options)
|
1294
1305
|
end
|
1295
1306
|
|
1296
|
-
# Removes the specified directory as a publisher to the specified
|
1297
|
-
# topic.
|
1307
|
+
# Removes the specified directory as a publisher to the specified Amazon
|
1308
|
+
# SNS topic.
|
1298
1309
|
#
|
1299
1310
|
# @option params [required, String] :directory_id
|
1300
1311
|
# The Directory ID to remove as a publisher. This directory will no
|
1301
|
-
# longer send messages to the specified SNS topic.
|
1312
|
+
# longer send messages to the specified Amazon SNS topic.
|
1302
1313
|
#
|
1303
1314
|
# @option params [required, String] :topic_name
|
1304
|
-
# The name of the SNS topic from which to remove the directory as
|
1305
|
-
# publisher.
|
1315
|
+
# The name of the Amazon SNS topic from which to remove the directory as
|
1316
|
+
# a publisher.
|
1306
1317
|
#
|
1307
1318
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1308
1319
|
#
|
@@ -1362,6 +1373,61 @@ module Aws::DirectoryService
|
|
1362
1373
|
req.send_request(options)
|
1363
1374
|
end
|
1364
1375
|
|
1376
|
+
# Retrieves information about the type of client authentication for the
|
1377
|
+
# specified directory, if the type is specified. If no type is
|
1378
|
+
# specified, information about all client authentication types that are
|
1379
|
+
# supported for the specified directory is retrieved. Currently, only
|
1380
|
+
# `SmartCard` is supported.
|
1381
|
+
#
|
1382
|
+
# @option params [required, String] :directory_id
|
1383
|
+
# The identifier of the directory for which to retrieve information.
|
1384
|
+
#
|
1385
|
+
# @option params [String] :type
|
1386
|
+
# The type of client authentication for which to retrieve information.
|
1387
|
+
# If no type is specified, a list of all client authentication types
|
1388
|
+
# that are supported for the specified directory is retrieved.
|
1389
|
+
#
|
1390
|
+
# @option params [String] :next_token
|
1391
|
+
# The *DescribeClientAuthenticationSettingsResult.NextToken* value from
|
1392
|
+
# a previous call to DescribeClientAuthenticationSettings. Pass null if
|
1393
|
+
# this is the first call.
|
1394
|
+
#
|
1395
|
+
# @option params [Integer] :limit
|
1396
|
+
# The maximum number of items to return. If this value is zero, the
|
1397
|
+
# maximum number of items is specified by the limitations of the
|
1398
|
+
# operation.
|
1399
|
+
#
|
1400
|
+
# @return [Types::DescribeClientAuthenticationSettingsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1401
|
+
#
|
1402
|
+
# * {Types::DescribeClientAuthenticationSettingsResult#client_authentication_settings_info #client_authentication_settings_info} => Array<Types::ClientAuthenticationSettingInfo>
|
1403
|
+
# * {Types::DescribeClientAuthenticationSettingsResult#next_token #next_token} => String
|
1404
|
+
#
|
1405
|
+
# @example Request syntax with placeholder values
|
1406
|
+
#
|
1407
|
+
# resp = client.describe_client_authentication_settings({
|
1408
|
+
# directory_id: "DirectoryId", # required
|
1409
|
+
# type: "SmartCard", # accepts SmartCard
|
1410
|
+
# next_token: "NextToken",
|
1411
|
+
# limit: 1,
|
1412
|
+
# })
|
1413
|
+
#
|
1414
|
+
# @example Response structure
|
1415
|
+
#
|
1416
|
+
# resp.client_authentication_settings_info #=> Array
|
1417
|
+
# resp.client_authentication_settings_info[0].type #=> String, one of "SmartCard"
|
1418
|
+
# resp.client_authentication_settings_info[0].status #=> String, one of "Enabled", "Disabled"
|
1419
|
+
# resp.client_authentication_settings_info[0].last_updated_date_time #=> Time
|
1420
|
+
# resp.next_token #=> String
|
1421
|
+
#
|
1422
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DescribeClientAuthenticationSettings AWS API Documentation
|
1423
|
+
#
|
1424
|
+
# @overload describe_client_authentication_settings(params = {})
|
1425
|
+
# @param [Hash] params ({})
|
1426
|
+
def describe_client_authentication_settings(params = {}, options = {})
|
1427
|
+
req = build_request(:describe_client_authentication_settings, params)
|
1428
|
+
req.send_request(options)
|
1429
|
+
end
|
1430
|
+
|
1365
1431
|
# Obtains information about the conditional forwarders for this account.
|
1366
1432
|
#
|
1367
1433
|
# If no input parameters are provided for RemoteDomainNames, this
|
@@ -1588,21 +1654,21 @@ module Aws::DirectoryService
|
|
1588
1654
|
req.send_request(options)
|
1589
1655
|
end
|
1590
1656
|
|
1591
|
-
# Obtains information about which SNS topics receive status
|
1592
|
-
# from the specified directory.
|
1657
|
+
# Obtains information about which Amazon SNS topics receive status
|
1658
|
+
# messages from the specified directory.
|
1593
1659
|
#
|
1594
1660
|
# If no input parameters are provided, such as DirectoryId or TopicName,
|
1595
1661
|
# this request describes all of the associations in the account.
|
1596
1662
|
#
|
1597
1663
|
# @option params [String] :directory_id
|
1598
|
-
# The Directory ID for which to get the list of associated SNS
|
1599
|
-
# If this member is null, associations for all Directory IDs are
|
1664
|
+
# The Directory ID for which to get the list of associated Amazon SNS
|
1665
|
+
# topics. If this member is null, associations for all Directory IDs are
|
1600
1666
|
# returned.
|
1601
1667
|
#
|
1602
1668
|
# @option params [Array<String>] :topic_names
|
1603
|
-
# A list of SNS topic names for which to obtain the information.
|
1604
|
-
# member is null, all associations for the specified Directory
|
1605
|
-
# returned.
|
1669
|
+
# A list of Amazon SNS topic names for which to obtain the information.
|
1670
|
+
# If this member is null, all associations for the specified Directory
|
1671
|
+
# ID are returned.
|
1606
1672
|
#
|
1607
1673
|
# An empty list results in an `InvalidParameterException` being thrown.
|
1608
1674
|
#
|
@@ -1854,8 +1920,8 @@ module Aws::DirectoryService
|
|
1854
1920
|
# account.
|
1855
1921
|
#
|
1856
1922
|
# @option params [String] :directory_id
|
1857
|
-
# The Directory ID of the
|
1858
|
-
# trust relationship.
|
1923
|
+
# The Directory ID of the Amazon Web Services directory that is a part
|
1924
|
+
# of the requested trust relationship.
|
1859
1925
|
#
|
1860
1926
|
# @option params [Array<String>] :trust_ids
|
1861
1927
|
# A list of identifiers of the trust relationships for which to obtain
|
@@ -2039,7 +2105,7 @@ module Aws::DirectoryService
|
|
2039
2105
|
# The type of client authentication to enable. Currently only the value
|
2040
2106
|
# `SmartCard` is supported. Smart card authentication in AD Connector
|
2041
2107
|
# requires that you enable Kerberos Constrained Delegation for the
|
2042
|
-
# Service User to the LDAP service in
|
2108
|
+
# Service User to the LDAP service in your self-managed AD.
|
2043
2109
|
#
|
2044
2110
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2045
2111
|
#
|
@@ -2126,8 +2192,9 @@ module Aws::DirectoryService
|
|
2126
2192
|
end
|
2127
2193
|
|
2128
2194
|
# Enables single sign-on for a directory. Single sign-on allows users in
|
2129
|
-
# your directory to access certain
|
2130
|
-
# to the directory without having to enter their
|
2195
|
+
# your directory to access certain Amazon Web Services services from a
|
2196
|
+
# computer joined to the directory without having to enter their
|
2197
|
+
# credentials separately.
|
2131
2198
|
#
|
2132
2199
|
# @option params [required, String] :directory_id
|
2133
2200
|
# The identifier of the directory for which to enable single-sign on.
|
@@ -2318,14 +2385,15 @@ module Aws::DirectoryService
|
|
2318
2385
|
req.send_request(options)
|
2319
2386
|
end
|
2320
2387
|
|
2321
|
-
# Lists the active log subscriptions for the
|
2388
|
+
# Lists the active log subscriptions for the Amazon Web Services
|
2389
|
+
# account.
|
2322
2390
|
#
|
2323
2391
|
# @option params [String] :directory_id
|
2324
2392
|
# If a *DirectoryID* is provided, lists only the log subscription
|
2325
2393
|
# associated with that directory. If no *DirectoryId* is provided, lists
|
2326
|
-
# all log subscriptions associated with your
|
2327
|
-
# no log subscriptions for the
|
2328
|
-
# list will be returned.
|
2394
|
+
# all log subscriptions associated with your Amazon Web Services
|
2395
|
+
# account. If there are no log subscriptions for the Amazon Web Services
|
2396
|
+
# account or the directory, an empty list will be returned.
|
2329
2397
|
#
|
2330
2398
|
# @option params [String] :next_token
|
2331
2399
|
# The token for the next set of items to return.
|
@@ -2496,20 +2564,21 @@ module Aws::DirectoryService
|
|
2496
2564
|
req.send_request(options)
|
2497
2565
|
end
|
2498
2566
|
|
2499
|
-
# Associates a directory with an SNS topic. This establishes the
|
2500
|
-
# directory as a publisher to the specified SNS topic. You can
|
2501
|
-
# receive email or text (SMS) messages when the status of your
|
2502
|
-
# changes. You get notified if your directory goes from an
|
2503
|
-
# to an Impaired or Inoperable status. You also receive a
|
2504
|
-
# when the directory returns to an Active status.
|
2567
|
+
# Associates a directory with an Amazon SNS topic. This establishes the
|
2568
|
+
# directory as a publisher to the specified Amazon SNS topic. You can
|
2569
|
+
# then receive email or text (SMS) messages when the status of your
|
2570
|
+
# directory changes. You get notified if your directory goes from an
|
2571
|
+
# Active status to an Impaired or Inoperable status. You also receive a
|
2572
|
+
# notification when the directory returns to an Active status.
|
2505
2573
|
#
|
2506
2574
|
# @option params [required, String] :directory_id
|
2507
|
-
# The Directory ID that will publish status messages to the SNS
|
2575
|
+
# The Directory ID that will publish status messages to the Amazon SNS
|
2576
|
+
# topic.
|
2508
2577
|
#
|
2509
2578
|
# @option params [required, String] :topic_name
|
2510
|
-
# The SNS topic name to which the directory will publish status
|
2511
|
-
# messages. This SNS topic must be in the same region as the
|
2512
|
-
# Directory ID.
|
2579
|
+
# The Amazon SNS topic name to which the directory will publish status
|
2580
|
+
# messages. This Amazon SNS topic must be in the same region as the
|
2581
|
+
# specified Directory ID.
|
2513
2582
|
#
|
2514
2583
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2515
2584
|
#
|
@@ -2637,7 +2706,7 @@ module Aws::DirectoryService
|
|
2637
2706
|
req.send_request(options)
|
2638
2707
|
end
|
2639
2708
|
|
2640
|
-
# Resets the password for any user in your
|
2709
|
+
# Resets the password for any user in your Managed Microsoft AD or
|
2641
2710
|
# Simple AD directory.
|
2642
2711
|
#
|
2643
2712
|
# You can reset the password for any user in your directory with the
|
@@ -2647,12 +2716,12 @@ module Aws::DirectoryService
|
|
2647
2716
|
# member of either the **Domain Admins** or **Enterprise Admins**
|
2648
2717
|
# group except for the administrator user.
|
2649
2718
|
#
|
2650
|
-
# * For
|
2651
|
-
#
|
2652
|
-
#
|
2653
|
-
# password for a user in the **
|
2654
|
-
# about the OU structure for an
|
2655
|
-
# see [What Gets Created][1] in the *
|
2719
|
+
# * For Managed Microsoft AD, you can only reset the password for a user
|
2720
|
+
# that is in an OU based off of the NetBIOS name that you typed when
|
2721
|
+
# you created your directory. For example, you cannot reset the
|
2722
|
+
# password for a user in the **Amazon Web Services Reserved** OU. For
|
2723
|
+
# more information about the OU structure for an Managed Microsoft AD
|
2724
|
+
# directory, see [What Gets Created][1] in the *Directory Service
|
2656
2725
|
# Administration Guide*.
|
2657
2726
|
#
|
2658
2727
|
#
|
@@ -2660,8 +2729,8 @@ module Aws::DirectoryService
|
|
2660
2729
|
# [1]: https://docs.aws.amazon.com/directoryservice/latest/admin-guide/ms_ad_getting_started_what_gets_created.html
|
2661
2730
|
#
|
2662
2731
|
# @option params [required, String] :directory_id
|
2663
|
-
# Identifier of the
|
2664
|
-
#
|
2732
|
+
# Identifier of the Managed Microsoft AD or Simple AD directory in which
|
2733
|
+
# the user resides.
|
2665
2734
|
#
|
2666
2735
|
# @option params [required, String] :user_name
|
2667
2736
|
# The user name of the user whose password will be reset.
|
@@ -2719,29 +2788,30 @@ module Aws::DirectoryService
|
|
2719
2788
|
req.send_request(options)
|
2720
2789
|
end
|
2721
2790
|
|
2722
|
-
# Shares a specified directory (`DirectoryId`) in your
|
2723
|
-
# (directory owner) with another
|
2724
|
-
# this operation you can use your
|
2725
|
-
# from any Amazon
|
2791
|
+
# Shares a specified directory (`DirectoryId`) in your Amazon Web
|
2792
|
+
# Services account (directory owner) with another Amazon Web Services
|
2793
|
+
# account (directory consumer). With this operation you can use your
|
2794
|
+
# directory from any Amazon Web Services account and from any Amazon VPC
|
2795
|
+
# within an Amazon Web Services Region.
|
2726
2796
|
#
|
2727
|
-
# When you share your
|
2728
|
-
#
|
2729
|
-
#
|
2797
|
+
# When you share your Managed Microsoft AD directory, Directory Service
|
2798
|
+
# creates a shared directory in the directory consumer account. This
|
2799
|
+
# shared directory contains the metadata to provide access to the
|
2730
2800
|
# directory within the directory owner account. The shared directory is
|
2731
2801
|
# visible in all VPCs in the directory consumer account.
|
2732
2802
|
#
|
2733
2803
|
# The `ShareMethod` parameter determines whether the specified directory
|
2734
|
-
# can be shared between
|
2735
|
-
# (`ORGANIZATIONS`). It also determines
|
2736
|
-
#
|
2737
|
-
# organization (`HANDSHAKE`).
|
2804
|
+
# can be shared between Amazon Web Services accounts inside the same
|
2805
|
+
# Amazon Web Services organization (`ORGANIZATIONS`). It also determines
|
2806
|
+
# whether you can share the directory with any other Amazon Web Services
|
2807
|
+
# account either inside or outside of the organization (`HANDSHAKE`).
|
2738
2808
|
#
|
2739
2809
|
# The `ShareNotes` parameter is only used when `HANDSHAKE` is called,
|
2740
2810
|
# which sends a directory sharing request to the directory consumer.
|
2741
2811
|
#
|
2742
2812
|
# @option params [required, String] :directory_id
|
2743
|
-
# Identifier of the
|
2744
|
-
# share with other
|
2813
|
+
# Identifier of the Managed Microsoft AD directory that you want to
|
2814
|
+
# share with other Amazon Web Services accounts.
|
2745
2815
|
#
|
2746
2816
|
# @option params [String] :share_notes
|
2747
2817
|
# A directory share request that is sent by the directory owner to the
|
@@ -2755,9 +2825,9 @@ module Aws::DirectoryService
|
|
2755
2825
|
#
|
2756
2826
|
# @option params [required, String] :share_method
|
2757
2827
|
# The method used when sharing a directory to determine whether the
|
2758
|
-
# directory should be shared within your
|
2759
|
-
# (`ORGANIZATIONS`) or with any
|
2760
|
-
# sharing request (`HANDSHAKE`).
|
2828
|
+
# directory should be shared within your Amazon Web Services
|
2829
|
+
# organization (`ORGANIZATIONS`) or with any Amazon Web Services account
|
2830
|
+
# by sending a directory sharing request (`HANDSHAKE`).
|
2761
2831
|
#
|
2762
2832
|
# @return [Types::ShareDirectoryResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2763
2833
|
#
|
@@ -2837,8 +2907,8 @@ module Aws::DirectoryService
|
|
2837
2907
|
# accounts.
|
2838
2908
|
#
|
2839
2909
|
# @option params [required, String] :directory_id
|
2840
|
-
# The identifier of the
|
2841
|
-
#
|
2910
|
+
# The identifier of the Managed Microsoft AD directory that you want to
|
2911
|
+
# stop sharing.
|
2842
2912
|
#
|
2843
2913
|
# @option params [required, Types::UnshareTarget] :unshare_target
|
2844
2914
|
# Identifier for the directory consumer account with whom the directory
|
@@ -2871,12 +2941,12 @@ module Aws::DirectoryService
|
|
2871
2941
|
req.send_request(options)
|
2872
2942
|
end
|
2873
2943
|
|
2874
|
-
# Updates a conditional forwarder that has been set up for your
|
2875
|
-
# directory.
|
2944
|
+
# Updates a conditional forwarder that has been set up for your Amazon
|
2945
|
+
# Web Services directory.
|
2876
2946
|
#
|
2877
2947
|
# @option params [required, String] :directory_id
|
2878
|
-
# The directory ID of the
|
2879
|
-
# conditional forwarder.
|
2948
|
+
# The directory ID of the Amazon Web Services directory for which to
|
2949
|
+
# update the conditional forwarder.
|
2880
2950
|
#
|
2881
2951
|
# @option params [required, String] :remote_domain_name
|
2882
2952
|
# The fully qualified domain name (FQDN) of the remote domain with which
|
@@ -2975,8 +3045,8 @@ module Aws::DirectoryService
|
|
2975
3045
|
req.send_request(options)
|
2976
3046
|
end
|
2977
3047
|
|
2978
|
-
# Updates the trust that has been set up between your
|
2979
|
-
#
|
3048
|
+
# Updates the trust that has been set up between your Managed Microsoft
|
3049
|
+
# AD directory and an self-managed Active Directory.
|
2980
3050
|
#
|
2981
3051
|
# @option params [required, String] :trust_id
|
2982
3052
|
# Identifier of the trust relationship.
|
@@ -3010,10 +3080,10 @@ module Aws::DirectoryService
|
|
3010
3080
|
req.send_request(options)
|
3011
3081
|
end
|
3012
3082
|
|
3013
|
-
#
|
3083
|
+
# Directory Service for Microsoft Active Directory allows you to
|
3014
3084
|
# configure and verify trust relationships.
|
3015
3085
|
#
|
3016
|
-
# This action verifies a trust relationship between your
|
3086
|
+
# This action verifies a trust relationship between your Managed
|
3017
3087
|
# Microsoft AD directory and an external domain.
|
3018
3088
|
#
|
3019
3089
|
# @option params [required, String] :trust_id
|
@@ -3055,7 +3125,7 @@ module Aws::DirectoryService
|
|
3055
3125
|
params: params,
|
3056
3126
|
config: config)
|
3057
3127
|
context[:gem_name] = 'aws-sdk-directoryservice'
|
3058
|
-
context[:gem_version] = '1.
|
3128
|
+
context[:gem_version] = '1.45.0'
|
3059
3129
|
Seahorse::Client::Request.new(handlers, context)
|
3060
3130
|
end
|
3061
3131
|
|