AuthConfigArgs

data class AuthConfigArgs(val activeDirectoryAuth: Output<Either<String, ActiveDirectoryAuthEnum>>? = null, val passwordAuth: Output<Either<String, PasswordAuthEnum>>? = null, val tenantId: Output<String>? = null) : ConvertibleToJava<AuthConfigArgs>

Authentication configuration properties of a server

Constructors

Link copied to clipboard
constructor(activeDirectoryAuth: Output<Either<String, ActiveDirectoryAuthEnum>>? = null, passwordAuth: Output<Either<String, PasswordAuthEnum>>? = null, tenantId: Output<String>? = null)

Properties

Link copied to clipboard
val activeDirectoryAuth: Output<Either<String, ActiveDirectoryAuthEnum>>? = null

If Enabled, Azure Active Directory authentication is enabled.

Link copied to clipboard
val passwordAuth: Output<Either<String, PasswordAuthEnum>>? = null

If Enabled, Password authentication is enabled.

Link copied to clipboard
val tenantId: Output<String>? = null

Tenant id of the server.

Functions

Link copied to clipboard
open override fun toJava(): AuthConfigArgs