LinuxUserConfigurationResponse

data class LinuxUserConfigurationResponse(val gid: Int? = null, val sshPrivateKey: String? = null, val uid: Int? = null)

Constructors

Link copied to clipboard
constructor(gid: Int? = null, sshPrivateKey: String? = null, uid: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val gid: Int? = null

The uid and gid properties must be specified together or not at all. If not specified the underlying operating system picks the gid.

Link copied to clipboard
val sshPrivateKey: String? = null

The private key must not be password protected. The private key is used to automatically configure asymmetric-key based authentication for SSH between nodes in a Linux pool when the pool's enableInterNodeCommunication property is true (it is ignored if enableInterNodeCommunication is false). It does this by placing the key pair into the user's .ssh directory. If not specified, password-less SSH is not configured between nodes (no modification of the user's .ssh directory is done).

Link copied to clipboard
val uid: Int? = null

The uid and gid properties must be specified together or not at all. If not specified the underlying operating system picks the uid.