Class LinuxUserConfiguration
- java.lang.Object
-
- com.microsoft.azure.management.batch.LinuxUserConfiguration
-
public class LinuxUserConfiguration extends Object
Properties used to create a user account on a Linux node.
-
-
Constructor Summary
Constructors Constructor Description LinuxUserConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integergid()Get the gid value.StringsshPrivateKey()Get the sshPrivateKey value.Integeruid()Get the uid value.LinuxUserConfigurationwithGid(Integer gid)Set the gid value.LinuxUserConfigurationwithSshPrivateKey(String sshPrivateKey)Set the sshPrivateKey value.LinuxUserConfigurationwithUid(Integer uid)Set the uid value.
-
-
-
Method Detail
-
uid
public Integer uid()
Get the uid value.- Returns:
- the uid value
-
withUid
public LinuxUserConfiguration withUid(Integer uid)
Set the uid value.- Parameters:
uid- the uid value to set- Returns:
- the LinuxUserConfiguration object itself.
-
gid
public Integer gid()
Get the gid value.- Returns:
- the gid value
-
withGid
public LinuxUserConfiguration withGid(Integer gid)
Set the gid value.- Parameters:
gid- the gid value to set- Returns:
- the LinuxUserConfiguration object itself.
-
sshPrivateKey
public String sshPrivateKey()
Get the sshPrivateKey value.- Returns:
- the sshPrivateKey value
-
withSshPrivateKey
public LinuxUserConfiguration withSshPrivateKey(String sshPrivateKey)
Set the sshPrivateKey value.- Parameters:
sshPrivateKey- the sshPrivateKey value to set- Returns:
- the LinuxUserConfiguration object itself.
-
-