Package k8s.io.api.core.v1
Interface Generated.LinuxContainerUserOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.LinuxContainerUser,Generated.LinuxContainerUser.Builder
- Enclosing class:
- Generated
public static interface Generated.LinuxContainerUserOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetGid()GID is the primary gid initially attached to the first process in the containerlonggetSupplementalGroups(int index)SupplementalGroups are the supplemental groups initially attached to the first process in the container +optional +listType=atomicintgetSupplementalGroupsCount()SupplementalGroups are the supplemental groups initially attached to the first process in the container +optional +listType=atomicList<Long>getSupplementalGroupsList()SupplementalGroups are the supplemental groups initially attached to the first process in the container +optional +listType=atomiclonggetUid()UID is the primary uid initially attached to the first process in the containerbooleanhasGid()GID is the primary gid initially attached to the first process in the containerbooleanhasUid()UID is the primary uid initially attached to the first process in the container-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasUid
boolean hasUid()
UID is the primary uid initially attached to the first process in the container
optional int64 uid = 1;- Returns:
- Whether the uid field is set.
-
getUid
long getUid()
UID is the primary uid initially attached to the first process in the container
optional int64 uid = 1;- Returns:
- The uid.
-
hasGid
boolean hasGid()
GID is the primary gid initially attached to the first process in the container
optional int64 gid = 2;- Returns:
- Whether the gid field is set.
-
getGid
long getGid()
GID is the primary gid initially attached to the first process in the container
optional int64 gid = 2;- Returns:
- The gid.
-
getSupplementalGroupsList
List<Long> getSupplementalGroupsList()
SupplementalGroups are the supplemental groups initially attached to the first process in the container +optional +listType=atomic
repeated int64 supplementalGroups = 3;- Returns:
- A list containing the supplementalGroups.
-
getSupplementalGroupsCount
int getSupplementalGroupsCount()
SupplementalGroups are the supplemental groups initially attached to the first process in the container +optional +listType=atomic
repeated int64 supplementalGroups = 3;- Returns:
- The count of supplementalGroups.
-
getSupplementalGroups
long getSupplementalGroups(int index)
SupplementalGroups are the supplemental groups initially attached to the first process in the container +optional +listType=atomic
repeated int64 supplementalGroups = 3;- Parameters:
index- The index of the element to return.- Returns:
- The supplementalGroups at the given index.
-
-