Packages
aws
0.13.3
1.0.14
1.0.13
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.14.1
0.14.0
0.13.3
0.13.2
0.13.1
0.13.0
0.12.0
0.11.0
0.10.1
0.10.0
0.9.2
0.9.1
0.9.0
0.8.0
0.7.0
0.6.0
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
0.0.12
0.0.11
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
AWS clients for Elixir
Current section
Files
Jump to
Current section
Files
lib/aws/generated/directory.ex
# WARNING: DO NOT EDIT, AUTO-GENERATED CODE!
# See https://github.com/aws-beam/aws-codegen for more details.
defmodule AWS.Directory do
@moduledoc """
Directory Service
Directory Service is a web service that makes it easy for you to setup and run
directories in the Amazon Web Services cloud, or connect your Amazon Web
Services resources with an existing self-managed Microsoft Active Directory.
This guide provides detailed information about Directory Service operations,
data types, parameters, and errors. For information about Directory Services
features, see [Directory Service](https://aws.amazon.com/directoryservice/) and the [Directory Service Administration
Guide](http://docs.aws.amazon.com/directoryservice/latest/admin-guide/what_is.html).
Amazon Web Services provides SDKs that consist of libraries and sample code for
various programming languages and platforms (Java, Ruby, .Net, iOS, Android,
etc.). The SDKs provide a convenient way to create programmatic access to
Directory Service and other Amazon Web Services services. For more information
about the Amazon Web Services SDKs, including how to download and install them,
see [Tools for Amazon Web Services](http://aws.amazon.com/tools/).
"""
alias AWS.Client
alias AWS.Request
def metadata do
%{
abbreviation: "Directory Service",
api_version: "2015-04-16",
content_type: "application/x-amz-json-1.1",
credential_scope: nil,
endpoint_prefix: "ds",
global?: false,
protocol: "json",
service_id: "Directory Service",
signature_version: "v4",
signing_name: "ds",
target_prefix: "DirectoryService_20150416"
}
end
@doc """
Accepts a directory sharing request that was sent from the directory owner
account.
"""
def accept_shared_directory(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "AcceptSharedDirectory", input, options)
end
@doc """
If the DNS server for your self-managed domain uses a publicly addressable IP
address, you must add a CIDR address block to correctly route traffic to and
from your Microsoft AD on Amazon Web Services.
*AddIpRoutes* adds this address block. You can also use *AddIpRoutes* to
facilitate routing traffic that uses public IP ranges from your Microsoft AD on
Amazon Web Services to a peer VPC.
Before you call *AddIpRoutes*, ensure that all of the required permissions have
been explicitly granted through a policy. For details about what permissions are
required to run the *AddIpRoutes* operation, see [Directory Service API Permissions: Actions, Resources, and Conditions
Reference](http://docs.aws.amazon.com/directoryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html).
"""
def add_ip_routes(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "AddIpRoutes", input, options)
end
@doc """
Adds two domain controllers in the specified Region for the specified directory.
"""
def add_region(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "AddRegion", input, options)
end
@doc """
Adds or overwrites one or more tags for the specified directory.
Each directory can have a maximum of 50 tags. Each tag consists of a key and
optional value. Tag keys must be unique to each resource.
"""
def add_tags_to_resource(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "AddTagsToResource", input, options)
end
@doc """
Cancels an in-progress schema extension to a Microsoft AD directory.
Once a schema extension has started replicating to all domain controllers, the
task can no longer be canceled. A schema extension can be canceled during any of
the following states; `Initializing`, `CreatingSnapshot`, and `UpdatingSchema`.
"""
def cancel_schema_extension(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "CancelSchemaExtension", input, options)
end
@doc """
Creates an AD Connector to connect to a self-managed directory.
Before you call `ConnectDirectory`, ensure that all of the required permissions
have been explicitly granted through a policy. For details about what
permissions are required to run the `ConnectDirectory` operation, see [Directory Service API Permissions: Actions, Resources, and Conditions
Reference](http://docs.aws.amazon.com/directoryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html).
"""
def connect_directory(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "ConnectDirectory", input, options)
end
@doc """
Creates an alias for a directory and assigns the alias to the directory.
The alias is used to construct the access URL for the directory, such as
`http://<alias>.awsapps.com`.
After an alias has been created, it cannot be deleted or reused, so this
operation should only be used when absolutely necessary.
"""
def create_alias(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "CreateAlias", input, options)
end
@doc """
Creates an Active Directory computer object in the specified directory.
"""
def create_computer(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "CreateComputer", input, options)
end
@doc """
Creates a conditional forwarder associated with your Amazon Web Services
directory.
Conditional forwarders are required in order to set up a trust relationship with
another domain. The conditional forwarder points to the trusted domain.
"""
def create_conditional_forwarder(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "CreateConditionalForwarder", input, options)
end
@doc """
Creates a Simple AD directory.
For more information, see [Simple Active Directory](https://docs.aws.amazon.com/directoryservice/latest/admin-guide/directory_simple_ad.html)
in the *Directory Service Admin Guide*.
Before you call `CreateDirectory`, ensure that all of the required permissions
have been explicitly granted through a policy. For details about what
permissions are required to run the `CreateDirectory` operation, see [Directory Service API Permissions: Actions, Resources, and Conditions
Reference](http://docs.aws.amazon.com/directoryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html).
"""
def create_directory(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "CreateDirectory", input, options)
end
@doc """
Creates a subscription to forward real-time Directory Service domain controller
security logs to the specified Amazon CloudWatch log group in your Amazon Web
Services account.
"""
def create_log_subscription(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "CreateLogSubscription", input, options)
end
@doc """
Creates a Microsoft AD directory in the Amazon Web Services Cloud.
For more information, see [Managed Microsoft AD](https://docs.aws.amazon.com/directoryservice/latest/admin-guide/directory_microsoft_ad.html)
in the *Directory Service Admin Guide*.
Before you call *CreateMicrosoftAD*, ensure that all of the required permissions
have been explicitly granted through a policy. For details about what
permissions are required to run the *CreateMicrosoftAD* operation, see
[Directory Service API Permissions: Actions, Resources, and Conditions Reference](http://docs.aws.amazon.com/directoryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html).
"""
def create_microsoft_ad(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "CreateMicrosoftAD", input, options)
end
@doc """
Creates a snapshot of a Simple AD or Microsoft AD directory in the Amazon Web
Services cloud.
You cannot take snapshots of AD Connector directories.
"""
def create_snapshot(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "CreateSnapshot", input, options)
end
@doc """
Directory Service for Microsoft Active Directory allows you to configure trust
relationships.
For example, you can establish a trust between your Managed Microsoft AD
directory, and your existing self-managed Microsoft Active Directory. This would
allow you to provide users and groups access to resources in either domain, with
a single set of credentials.
This action initiates the creation of the Amazon Web Services side of a trust
relationship between an Managed Microsoft AD directory and an external domain.
You can create either a forest trust or an external trust.
"""
def create_trust(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "CreateTrust", input, options)
end
@doc """
Deletes a conditional forwarder that has been set up for your Amazon Web
Services directory.
"""
def delete_conditional_forwarder(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DeleteConditionalForwarder", input, options)
end
@doc """
Deletes an Directory Service directory.
Before you call `DeleteDirectory`, ensure that all of the required permissions
have been explicitly granted through a policy. For details about what
permissions are required to run the `DeleteDirectory` operation, see [Directory Service API Permissions: Actions, Resources, and Conditions
Reference](http://docs.aws.amazon.com/directoryservice/latest/admin-guide/UsingWithDS_IAM_ResourcePermissions.html).
"""
def delete_directory(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DeleteDirectory", input, options)
end
@doc """
Deletes the specified log subscription.
"""
def delete_log_subscription(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DeleteLogSubscription", input, options)
end
@doc """
Deletes a directory snapshot.
"""
def delete_snapshot(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DeleteSnapshot", input, options)
end
@doc """
Deletes an existing trust relationship between your Managed Microsoft AD
directory and an external domain.
"""
def delete_trust(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DeleteTrust", input, options)
end
@doc """
Deletes from the system the certificate that was registered for secure LDAP or
client certificate authentication.
"""
def deregister_certificate(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DeregisterCertificate", input, options)
end
@doc """
Removes the specified directory as a publisher to the specified Amazon SNS
topic.
"""
def deregister_event_topic(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DeregisterEventTopic", input, options)
end
@doc """
Displays information about the certificate registered for secure LDAP or client
certificate authentication.
"""
def describe_certificate(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DescribeCertificate", input, options)
end
@doc """
Retrieves information about the type of client authentication for the specified
directory, if the type is specified.
If no type is specified, information about all client authentication types that
are supported for the specified directory is retrieved. Currently, only
`SmartCard` is supported.
"""
def describe_client_authentication_settings(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DescribeClientAuthenticationSettings", input, options)
end
@doc """
Obtains information about the conditional forwarders for this account.
If no input parameters are provided for RemoteDomainNames, this request
describes all conditional forwarders for the specified directory ID.
"""
def describe_conditional_forwarders(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DescribeConditionalForwarders", input, options)
end
@doc """
Obtains information about the directories that belong to this account.
You can retrieve information about specific directories by passing the directory
identifiers in the `DirectoryIds` parameter. Otherwise, all directories that
belong to the current account are returned.
This operation supports pagination with the use of the `NextToken` request and
response parameters. If more results are available, the
`DescribeDirectoriesResult.NextToken` member contains a token that you pass in
the next call to `DescribeDirectories` to retrieve the next set of items.
You can also specify a maximum number of return results with the `Limit`
parameter.
"""
def describe_directories(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DescribeDirectories", input, options)
end
@doc """
Provides information about any domain controllers in your directory.
"""
def describe_domain_controllers(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DescribeDomainControllers", input, options)
end
@doc """
Obtains information about which Amazon SNS topics receive status messages from
the specified directory.
If no input parameters are provided, such as DirectoryId or TopicName, this
request describes all of the associations in the account.
"""
def describe_event_topics(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DescribeEventTopics", input, options)
end
@doc """
Describes the status of LDAP security for the specified directory.
"""
def describe_ldaps_settings(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DescribeLDAPSSettings", input, options)
end
@doc """
Provides information about the Regions that are configured for multi-Region
replication.
"""
def describe_regions(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DescribeRegions", input, options)
end
@doc """
Retrieves information about the configurable settings for the specified
directory.
"""
def describe_settings(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DescribeSettings", input, options)
end
@doc """
Returns the shared directories in your account.
"""
def describe_shared_directories(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DescribeSharedDirectories", input, options)
end
@doc """
Obtains information about the directory snapshots that belong to this account.
This operation supports pagination with the use of the *NextToken* request and
response parameters. If more results are available, the
*DescribeSnapshots.NextToken* member contains a token that you pass in the next
call to `DescribeSnapshots` to retrieve the next set of items.
You can also specify a maximum number of return results with the *Limit*
parameter.
"""
def describe_snapshots(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DescribeSnapshots", input, options)
end
@doc """
Obtains information about the trust relationships for this account.
If no input parameters are provided, such as DirectoryId or TrustIds, this
request describes all the trust relationships belonging to the account.
"""
def describe_trusts(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DescribeTrusts", input, options)
end
@doc """
Describes the updates of a directory for a particular update type.
"""
def describe_update_directory(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DescribeUpdateDirectory", input, options)
end
@doc """
Disables alternative client authentication methods for the specified directory.
"""
def disable_client_authentication(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DisableClientAuthentication", input, options)
end
@doc """
Deactivates LDAP secure calls for the specified directory.
"""
def disable_ldaps(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DisableLDAPS", input, options)
end
@doc """
Disables multi-factor authentication (MFA) with the Remote Authentication Dial
In User Service (RADIUS) server for an AD Connector or Microsoft AD directory.
"""
def disable_radius(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DisableRadius", input, options)
end
@doc """
Disables single-sign on for a directory.
"""
def disable_sso(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "DisableSso", input, options)
end
@doc """
Enables alternative client authentication methods for the specified directory.
"""
def enable_client_authentication(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "EnableClientAuthentication", input, options)
end
@doc """
Activates the switch for the specific directory to always use LDAP secure calls.
"""
def enable_ldaps(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "EnableLDAPS", input, options)
end
@doc """
Enables multi-factor authentication (MFA) with the Remote Authentication Dial In
User Service (RADIUS) server for an AD Connector or Microsoft AD directory.
"""
def enable_radius(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "EnableRadius", input, options)
end
@doc """
Enables single sign-on for a directory.
Single sign-on allows users in your directory to access certain Amazon Web
Services services from a computer joined to the directory without having to
enter their credentials separately.
"""
def enable_sso(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "EnableSso", input, options)
end
@doc """
Obtains directory limit information for the current Region.
"""
def get_directory_limits(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "GetDirectoryLimits", input, options)
end
@doc """
Obtains the manual snapshot limits for a directory.
"""
def get_snapshot_limits(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "GetSnapshotLimits", input, options)
end
@doc """
For the specified directory, lists all the certificates registered for a secure
LDAP or client certificate authentication.
"""
def list_certificates(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "ListCertificates", input, options)
end
@doc """
Lists the address blocks that you have added to a directory.
"""
def list_ip_routes(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "ListIpRoutes", input, options)
end
@doc """
Lists the active log subscriptions for the Amazon Web Services account.
"""
def list_log_subscriptions(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "ListLogSubscriptions", input, options)
end
@doc """
Lists all schema extensions applied to a Microsoft AD Directory.
"""
def list_schema_extensions(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "ListSchemaExtensions", input, options)
end
@doc """
Lists all tags on a directory.
"""
def list_tags_for_resource(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "ListTagsForResource", input, options)
end
@doc """
Registers a certificate for a secure LDAP or client certificate authentication.
"""
def register_certificate(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "RegisterCertificate", input, options)
end
@doc """
Associates a directory with an Amazon SNS topic.
This establishes the directory as a publisher to the specified Amazon SNS topic.
You can then receive email or text (SMS) messages when the status of your
directory changes. You get notified if your directory goes from an Active status
to an Impaired or Inoperable status. You also receive a notification when the
directory returns to an Active status.
"""
def register_event_topic(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "RegisterEventTopic", input, options)
end
@doc """
Rejects a directory sharing request that was sent from the directory owner
account.
"""
def reject_shared_directory(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "RejectSharedDirectory", input, options)
end
@doc """
Removes IP address blocks from a directory.
"""
def remove_ip_routes(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "RemoveIpRoutes", input, options)
end
@doc """
Stops all replication and removes the domain controllers from the specified
Region.
You cannot remove the primary Region with this operation. Instead, use the
`DeleteDirectory` API.
"""
def remove_region(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "RemoveRegion", input, options)
end
@doc """
Removes tags from a directory.
"""
def remove_tags_from_resource(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "RemoveTagsFromResource", input, options)
end
@doc """
Resets the password for any user in your Managed Microsoft AD or Simple AD
directory.
You can reset the password for any user in your directory with the following
exceptions:
* For Simple AD, you cannot reset the password for any user that is
a member of either the **Domain Admins** or **Enterprise Admins** group except
for the administrator user.
* For Managed Microsoft AD, you can only reset the password for a
user that is in an OU based off of the NetBIOS name that you typed when you
created your directory. For example, you cannot reset the password for a user in
the **Amazon Web Services Reserved** OU. For more information about the OU
structure for an Managed Microsoft AD directory, see [What Gets Created](https://docs.aws.amazon.com/directoryservice/latest/admin-guide/ms_ad_getting_started_what_gets_created.html)
in the *Directory Service Administration Guide*.
"""
def reset_user_password(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "ResetUserPassword", input, options)
end
@doc """
Restores a directory using an existing directory snapshot.
When you restore a directory from a snapshot, any changes made to the directory
after the snapshot date are overwritten.
This action returns as soon as the restore operation is initiated. You can
monitor the progress of the restore operation by calling the
`DescribeDirectories` operation with the directory identifier. When the
**DirectoryDescription.Stage** value changes to `Active`, the restore operation
is complete.
"""
def restore_from_snapshot(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "RestoreFromSnapshot", input, options)
end
@doc """
Shares a specified directory (`DirectoryId`) in your Amazon Web Services account
(directory owner) with another Amazon Web Services account (directory consumer).
With this operation you can use your directory from any Amazon Web Services
account and from any Amazon VPC within an Amazon Web Services Region.
When you share your Managed Microsoft AD directory, Directory Service creates a
shared directory in the directory consumer account. This shared directory
contains the metadata to provide access to the directory within the directory
owner account. The shared directory is visible in all VPCs in the directory
consumer account.
The `ShareMethod` parameter determines whether the specified directory can be
shared between Amazon Web Services accounts inside the same Amazon Web Services
organization (`ORGANIZATIONS`). It also determines whether you can share the
directory with any other Amazon Web Services account either inside or outside of
the organization (`HANDSHAKE`).
The `ShareNotes` parameter is only used when `HANDSHAKE` is called, which sends
a directory sharing request to the directory consumer.
"""
def share_directory(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "ShareDirectory", input, options)
end
@doc """
Applies a schema extension to a Microsoft AD directory.
"""
def start_schema_extension(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "StartSchemaExtension", input, options)
end
@doc """
Stops the directory sharing between the directory owner and consumer accounts.
"""
def unshare_directory(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "UnshareDirectory", input, options)
end
@doc """
Updates a conditional forwarder that has been set up for your Amazon Web
Services directory.
"""
def update_conditional_forwarder(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "UpdateConditionalForwarder", input, options)
end
@doc """
Updates the directory for a particular update type.
"""
def update_directory_setup(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "UpdateDirectorySetup", input, options)
end
@doc """
Adds or removes domain controllers to or from the directory.
Based on the difference between current value and new value (provided through
this API call), domain controllers will be added or removed. It may take up to
45 minutes for any new domain controllers to become fully active once the
requested number of domain controllers is updated. During this time, you cannot
make another update request.
"""
def update_number_of_domain_controllers(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "UpdateNumberOfDomainControllers", input, options)
end
@doc """
Updates the Remote Authentication Dial In User Service (RADIUS) server
information for an AD Connector or Microsoft AD directory.
"""
def update_radius(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "UpdateRadius", input, options)
end
@doc """
Updates the configurable settings for the specified directory.
"""
def update_settings(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "UpdateSettings", input, options)
end
@doc """
Updates the trust that has been set up between your Managed Microsoft AD
directory and an self-managed Active Directory.
"""
def update_trust(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "UpdateTrust", input, options)
end
@doc """
Directory Service for Microsoft Active Directory allows you to configure and
verify trust relationships.
This action verifies a trust relationship between your Managed Microsoft AD
directory and an external domain.
"""
def verify_trust(%Client{} = client, input, options \\ []) do
meta = metadata()
Request.request_post(client, meta, "VerifyTrust", input, options)
end
end