Package io.fabric8.kubernetes.api.model
Class LinuxContainerUser
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.LinuxContainerUser
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<LinuxContainerUserBuilder>
,KubernetesResource
,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class LinuxContainerUser extends Object implements io.fabric8.kubernetes.api.builder.Editable<LinuxContainerUserBuilder>, KubernetesResource
LinuxContainerUser represents user identity information in Linux containers- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LinuxContainerUser()
No args constructor for use in serializationLinuxContainerUser(Long gid, List<Long> supplementalGroups, Long uid)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LinuxContainerUserBuilder
edit()
Map<String,Object>
getAdditionalProperties()
Long
getGid()
GID is the primary gid initially attached to the first process in the containerList<Long>
getSupplementalGroups()
SupplementalGroups are the supplemental groups initially attached to the first process in the containerLong
getUid()
UID is the primary uid initially attached to the first process in the containervoid
setAdditionalProperties(Map<String,Object> additionalProperties)
void
setAdditionalProperty(String name, Object value)
void
setGid(Long gid)
GID is the primary gid initially attached to the first process in the containervoid
setSupplementalGroups(List<Long> supplementalGroups)
SupplementalGroups are the supplemental groups initially attached to the first process in the containervoid
setUid(Long uid)
UID is the primary uid initially attached to the first process in the containerLinuxContainerUserBuilder
toBuilder()
-
-
-
Method Detail
-
getGid
public Long getGid()
GID is the primary gid initially attached to the first process in the container
-
setGid
public void setGid(Long gid)
GID is the primary gid initially attached to the first process in the container
-
getSupplementalGroups
public List<Long> getSupplementalGroups()
SupplementalGroups are the supplemental groups initially attached to the first process in the container
-
setSupplementalGroups
public void setSupplementalGroups(List<Long> supplementalGroups)
SupplementalGroups are the supplemental groups initially attached to the first process in the container
-
getUid
public Long getUid()
UID is the primary uid initially attached to the first process in the container
-
setUid
public void setUid(Long uid)
UID is the primary uid initially attached to the first process in the container
-
edit
public LinuxContainerUserBuilder edit()
- Specified by:
edit
in interfaceio.fabric8.kubernetes.api.builder.Editable<LinuxContainerUserBuilder>
-
toBuilder
public LinuxContainerUserBuilder toBuilder()
-
-