LinuxContainerUserArgs

data class LinuxContainerUserArgs(val gid: Output<Int>, val supplementalGroups: Output<List<Int>>? = null, val uid: Output<Int>) : ConvertibleToJava<LinuxContainerUserArgs>

LinuxContainerUser represents user identity information in Linux containers

Constructors

Link copied to clipboard
constructor(gid: Output<Int>, supplementalGroups: Output<List<Int>>? = null, uid: Output<Int>)

Properties

Link copied to clipboard
val gid: Output<Int>

GID is the primary gid initially attached to the first process in the container

Link copied to clipboard
val supplementalGroups: Output<List<Int>>? = null

SupplementalGroups are the supplemental groups initially attached to the first process in the container

Link copied to clipboard
val uid: Output<Int>

UID is the primary uid initially attached to the first process in the container

Functions

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