/** *

The ulimit settings to pass to the container.

*/ export interface _Ulimit { /** *

The type of the ulimit.

*/ name: "core" | "cpu" | "data" | "fsize" | "locks" | "memlock" | "msgqueue" | "nice" | "nofile" | "nproc" | "rss" | "rtprio" | "rttime" | "sigpending" | "stack" | string; /** *

The soft limit for the ulimit type.

*/ softLimit: number; /** *

The hard limit for the ulimit type.

*/ hardLimit: number; } export declare type _UnmarshalledUlimit = _Ulimit;