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 LinuxContainerUserBuilderedit()Map<String,Object>getAdditionalProperties()LonggetGid()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 containerLonggetUid()UID is the primary uid initially attached to the first process in the containervoidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetGid(Long gid)GID is the primary gid initially attached to the first process in the containervoidsetSupplementalGroups(List<Long> supplementalGroups)SupplementalGroups are the supplemental groups initially attached to the first process in the containervoidsetUid(Long uid)UID is the primary uid initially attached to the first process in the containerLinuxContainerUserBuildertoBuilder()
-
-
-
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:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<LinuxContainerUserBuilder>
-
toBuilder
public LinuxContainerUserBuilder toBuilder()
-
-