UserSetArgs

data class UserSetArgs(val description: Output<String>? = null, val id: Output<String>? = null, val isBackup: Output<Boolean>? = null, val userType: Output<Either<String, UserType>>? = null) : ConvertibleToJava<UserSetArgs>

The detail of a user.

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, id: Output<String>? = null, isBackup: Output<Boolean>? = null, userType: Output<Either<String, UserType>>? = null)

Properties

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

The description of the user.

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

The object id of the user.

Link copied to clipboard
val isBackup: Output<Boolean>? = null

The value indicating whether the user is a backup fallback approver

Link copied to clipboard
val userType: Output<Either<String, UserType>>? = null

The type of user.

Functions

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