UserAccountAuthInfoArgs

data class UserAccountAuthInfoArgs(val authMode: Output<Either<String, AuthMode>>? = null, val authType: Output<String>, val deleteOrUpdateBehavior: Output<Either<String, DeleteOrUpdateBehavior>>? = null, val principalId: Output<String>? = null, val roles: Output<List<String>>? = null, val userName: Output<String>? = null) : ConvertibleToJava<UserAccountAuthInfoArgs>

The authentication info when authType is user account

Constructors

Link copied to clipboard
constructor(authMode: Output<Either<String, AuthMode>>? = null, authType: Output<String>, deleteOrUpdateBehavior: Output<Either<String, DeleteOrUpdateBehavior>>? = null, principalId: Output<String>? = null, roles: Output<List<String>>? = null, userName: Output<String>? = null)

Properties

Link copied to clipboard
val authMode: Output<Either<String, AuthMode>>? = null

Optional. Indicates how to configure authentication. If optInAllAuth, service linker configures authentication such as enabling identity on source resource and granting RBAC roles. If optOutAllAuth, opt out authentication setup. Default is optInAllAuth.

Link copied to clipboard
val authType: Output<String>

The authentication type. Expected value is 'userAccount'.

Link copied to clipboard

Indicates whether to clean up previous operation when Linker is updating or deleting

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

Principal Id for user account.

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

Optional, this value specifies the Azure roles to be assigned. Automatically

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

Username created in the database which is mapped to a user in AAD.

Functions

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