the-moby-effect
Version:
Moby/Docker API client built using effect-ts
17 lines • 793 B
JavaScript
import * as Schema from "effect/Schema";
import * as MobyNumber from "../schemas/number.js";
export class ContainerPidsStats extends /*#__PURE__*/Schema.Class("ContainerPidsStats")({
current: /*#__PURE__*/Schema.optional(/*#__PURE__*/MobyNumber.BigIntFromWireString.check(/*#__PURE__*/Schema.isBetweenBigInt({
minimum: 0n,
maximum: 2n ** 64n - 1n
}))),
limit: /*#__PURE__*/Schema.optional(/*#__PURE__*/MobyNumber.BigIntFromWireString.check(/*#__PURE__*/Schema.isBetweenBigInt({
minimum: 0n,
maximum: 2n ** 64n - 1n
})))
}, {
identifier: "ContainerPidsStats",
title: "container.PidsStats",
documentation: "https://pkg.go.dev/github.com/docker/docker@v28.4.0+incompatible/api/types/container#PidsStats"
}) {}
//# sourceMappingURL=ContainerPidsStats.generated.js.map