kubernetes-models
Version:
29 lines (28 loc) • 1.06 kB
TypeScript
import { ModelData, Model } from "@kubernetes-models/base";
/**
* LinuxContainerUser represents user identity information in Linux containers
*/
export interface ILinuxContainerUser {
/**
* GID is the primary gid initially attached to the first process in the container
*/
"gid": number;
/**
* SupplementalGroups are the supplemental groups initially attached to the first process in the container
*/
"supplementalGroups"?: Array<number>;
/**
* UID is the primary uid initially attached to the first process in the container
*/
"uid": number;
}
/**
* LinuxContainerUser represents user identity information in Linux containers
*/
export declare class LinuxContainerUser extends Model<ILinuxContainerUser> implements ILinuxContainerUser {
"gid": number;
"supplementalGroups"?: Array<number>;
"uid": number;
constructor(data?: ModelData<ILinuxContainerUser>);
}
export { ILinuxContainerUser as IIoK8sApiCoreV1LinuxContainerUser, LinuxContainerUser as IoK8sApiCoreV1LinuxContainerUser };