UserAccountArgs

data class UserAccountArgs(val elevationLevel: Output<ElevationLevel>? = null, val linuxUserConfiguration: Output<LinuxUserConfigurationArgs>? = null, val name: Output<String>, val password: Output<String>, val windowsUserConfiguration: Output<WindowsUserConfigurationArgs>? = null) : ConvertibleToJava<UserAccountArgs>

Constructors

Link copied to clipboard
constructor(elevationLevel: Output<ElevationLevel>? = null, linuxUserConfiguration: Output<LinuxUserConfigurationArgs>? = null, name: Output<String>, password: Output<String>, windowsUserConfiguration: Output<WindowsUserConfigurationArgs>? = null)

Properties

Link copied to clipboard
val elevationLevel: Output<ElevationLevel>? = null

nonAdmin - The auto user is a standard user without elevated access. admin - The auto user is a user with elevated access and operates with full Administrator permissions. The default value is nonAdmin.

Link copied to clipboard

This property is ignored if specified on a Windows pool. If not specified, the user is created with the default options.

Link copied to clipboard
val name: Output<String>
Link copied to clipboard
val password: Output<String>
Link copied to clipboard

This property can only be specified if the user is on a Windows pool. If not specified and on a Windows pool, the user is created with the default options.

Functions

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