the-moby-effect
Version:
Moby/Docker API client built using effect-ts
13 lines • 693 B
JavaScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
export class ContainerPidsStats extends /*#__PURE__*/Schema.Class("ContainerPidsStats")({
/** Current is the number of pids in the cgroup */
current: /*#__PURE__*/Schema.optional(MobySchemas.UInt64),
/** Limit is the hard limit on the number of pids in the cgroup. */
limit: /*#__PURE__*/Schema.optional(MobySchemas.UInt64)
}, {
identifier: "ContainerPidsStats",
title: "container.PidsStats",
documentation: "https://github.com/moby/moby/blob/a21b1a2d12e2c01542cb191eb526d7bfad0641e3/api/types/container/stats.go#L141-L148"
}) {}
//# sourceMappingURL=ContainerPidsStats.generated.js.map