Class UserAccount
- java.lang.Object
-
- com.microsoft.azure.management.batch.UserAccount
-
public class UserAccount extends Object
Properties used to create a user on an Azure Batch node.
-
-
Constructor Summary
Constructors Constructor Description UserAccount()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ElevationLevelelevationLevel()Get the elevationLevel value.LinuxUserConfigurationlinuxUserConfiguration()Get the linuxUserConfiguration value.Stringname()Get the name value.Stringpassword()Get the password value.UserAccountwithElevationLevel(ElevationLevel elevationLevel)Set the elevationLevel value.UserAccountwithLinuxUserConfiguration(LinuxUserConfiguration linuxUserConfiguration)Set the linuxUserConfiguration value.UserAccountwithName(String name)Set the name value.UserAccountwithPassword(String password)Set the password value.
-
-
-
Method Detail
-
name
public String name()
Get the name value.- Returns:
- the name value
-
withName
public UserAccount withName(String name)
Set the name value.- Parameters:
name- the name value to set- Returns:
- the UserAccount object itself.
-
password
public String password()
Get the password value.- Returns:
- the password value
-
withPassword
public UserAccount withPassword(String password)
Set the password value.- Parameters:
password- the password value to set- Returns:
- the UserAccount object itself.
-
elevationLevel
public ElevationLevel elevationLevel()
Get the elevationLevel value.- Returns:
- the elevationLevel value
-
withElevationLevel
public UserAccount withElevationLevel(ElevationLevel elevationLevel)
Set the elevationLevel value.- Parameters:
elevationLevel- the elevationLevel value to set- Returns:
- the UserAccount object itself.
-
linuxUserConfiguration
public LinuxUserConfiguration linuxUserConfiguration()
Get the linuxUserConfiguration value.- Returns:
- the linuxUserConfiguration value
-
withLinuxUserConfiguration
public UserAccount withLinuxUserConfiguration(LinuxUserConfiguration linuxUserConfiguration)
Set the linuxUserConfiguration value.- Parameters:
linuxUserConfiguration- the linuxUserConfiguration value to set- Returns:
- the UserAccount object itself.
-
-