/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace DirectoryService { namespace Model { /** *

Contains the inputs for the DisableSso operation.

See * Also:

AWS * API Reference

*/ class DisableSsoRequest : public DirectoryServiceRequest { public: AWS_DIRECTORYSERVICE_API DisableSsoRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DisableSso"; } AWS_DIRECTORYSERVICE_API Aws::String SerializePayload() const override; AWS_DIRECTORYSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The identifier of the directory for which to disable single-sign on.

*/ inline const Aws::String& GetDirectoryId() const{ return m_directoryId; } /** *

The identifier of the directory for which to disable single-sign on.

*/ inline bool DirectoryIdHasBeenSet() const { return m_directoryIdHasBeenSet; } /** *

The identifier of the directory for which to disable single-sign on.

*/ inline void SetDirectoryId(const Aws::String& value) { m_directoryIdHasBeenSet = true; m_directoryId = value; } /** *

The identifier of the directory for which to disable single-sign on.

*/ inline void SetDirectoryId(Aws::String&& value) { m_directoryIdHasBeenSet = true; m_directoryId = std::move(value); } /** *

The identifier of the directory for which to disable single-sign on.

*/ inline void SetDirectoryId(const char* value) { m_directoryIdHasBeenSet = true; m_directoryId.assign(value); } /** *

The identifier of the directory for which to disable single-sign on.

*/ inline DisableSsoRequest& WithDirectoryId(const Aws::String& value) { SetDirectoryId(value); return *this;} /** *

The identifier of the directory for which to disable single-sign on.

*/ inline DisableSsoRequest& WithDirectoryId(Aws::String&& value) { SetDirectoryId(std::move(value)); return *this;} /** *

The identifier of the directory for which to disable single-sign on.

*/ inline DisableSsoRequest& WithDirectoryId(const char* value) { SetDirectoryId(value); return *this;} /** *

The username of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. This account must have privileges to * remove a service principal name.

If the AD Connector service account does * not have privileges to remove a service principal name, you can specify an * alternate account with the UserName and Password parameters. These * credentials are only used to disable single sign-on and are not stored by the * service. The AD Connector service account is not changed.

*/ inline const Aws::String& GetUserName() const{ return m_userName; } /** *

The username of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. This account must have privileges to * remove a service principal name.

If the AD Connector service account does * not have privileges to remove a service principal name, you can specify an * alternate account with the UserName and Password parameters. These * credentials are only used to disable single sign-on and are not stored by the * service. The AD Connector service account is not changed.

*/ inline bool UserNameHasBeenSet() const { return m_userNameHasBeenSet; } /** *

The username of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. This account must have privileges to * remove a service principal name.

If the AD Connector service account does * not have privileges to remove a service principal name, you can specify an * alternate account with the UserName and Password parameters. These * credentials are only used to disable single sign-on and are not stored by the * service. The AD Connector service account is not changed.

*/ inline void SetUserName(const Aws::String& value) { m_userNameHasBeenSet = true; m_userName = value; } /** *

The username of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. This account must have privileges to * remove a service principal name.

If the AD Connector service account does * not have privileges to remove a service principal name, you can specify an * alternate account with the UserName and Password parameters. These * credentials are only used to disable single sign-on and are not stored by the * service. The AD Connector service account is not changed.

*/ inline void SetUserName(Aws::String&& value) { m_userNameHasBeenSet = true; m_userName = std::move(value); } /** *

The username of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. This account must have privileges to * remove a service principal name.

If the AD Connector service account does * not have privileges to remove a service principal name, you can specify an * alternate account with the UserName and Password parameters. These * credentials are only used to disable single sign-on and are not stored by the * service. The AD Connector service account is not changed.

*/ inline void SetUserName(const char* value) { m_userNameHasBeenSet = true; m_userName.assign(value); } /** *

The username of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. This account must have privileges to * remove a service principal name.

If the AD Connector service account does * not have privileges to remove a service principal name, you can specify an * alternate account with the UserName and Password parameters. These * credentials are only used to disable single sign-on and are not stored by the * service. The AD Connector service account is not changed.

*/ inline DisableSsoRequest& WithUserName(const Aws::String& value) { SetUserName(value); return *this;} /** *

The username of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. This account must have privileges to * remove a service principal name.

If the AD Connector service account does * not have privileges to remove a service principal name, you can specify an * alternate account with the UserName and Password parameters. These * credentials are only used to disable single sign-on and are not stored by the * service. The AD Connector service account is not changed.

*/ inline DisableSsoRequest& WithUserName(Aws::String&& value) { SetUserName(std::move(value)); return *this;} /** *

The username of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. This account must have privileges to * remove a service principal name.

If the AD Connector service account does * not have privileges to remove a service principal name, you can specify an * alternate account with the UserName and Password parameters. These * credentials are only used to disable single sign-on and are not stored by the * service. The AD Connector service account is not changed.

*/ inline DisableSsoRequest& WithUserName(const char* value) { SetUserName(value); return *this;} /** *

The password of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. For more information, see the * UserName parameter.

*/ inline const Aws::String& GetPassword() const{ return m_password; } /** *

The password of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. For more information, see the * UserName parameter.

*/ inline bool PasswordHasBeenSet() const { return m_passwordHasBeenSet; } /** *

The password of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. For more information, see the * UserName parameter.

*/ inline void SetPassword(const Aws::String& value) { m_passwordHasBeenSet = true; m_password = value; } /** *

The password of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. For more information, see the * UserName parameter.

*/ inline void SetPassword(Aws::String&& value) { m_passwordHasBeenSet = true; m_password = std::move(value); } /** *

The password of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. For more information, see the * UserName parameter.

*/ inline void SetPassword(const char* value) { m_passwordHasBeenSet = true; m_password.assign(value); } /** *

The password of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. For more information, see the * UserName parameter.

*/ inline DisableSsoRequest& WithPassword(const Aws::String& value) { SetPassword(value); return *this;} /** *

The password of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. For more information, see the * UserName parameter.

*/ inline DisableSsoRequest& WithPassword(Aws::String&& value) { SetPassword(std::move(value)); return *this;} /** *

The password of an alternate account to use to disable single-sign on. This * is only used for AD Connector directories. For more information, see the * UserName parameter.

*/ inline DisableSsoRequest& WithPassword(const char* value) { SetPassword(value); return *this;} private: Aws::String m_directoryId; bool m_directoryIdHasBeenSet = false; Aws::String m_userName; bool m_userNameHasBeenSet = false; Aws::String m_password; bool m_passwordHasBeenSet = false; }; } // namespace Model } // namespace DirectoryService } // namespace Aws