the-moby-effect
Version:
Moby/Docker API client built using effect-ts
21 lines • 934 B
JavaScript
import * as Schema from "effect/Schema";
import * as MobyIdentifiers from "../schemas/id.js";
import * as MobyNumber from "../schemas/number.js";
export class ContainerExecInspect extends /*#__PURE__*/Schema.Class("ContainerExecInspect")({
ID: MobyIdentifiers.ExecIdentifier,
ContainerID: MobyIdentifiers.ContainerIdentifier,
Running: Schema.Boolean,
ExitCode: /*#__PURE__*/MobyNumber.BigIntFromWireString.check(/*#__PURE__*/Schema.isBetweenBigInt({
minimum: -(2n ** 63n),
maximum: 2n ** 63n - 1n
})),
Pid: /*#__PURE__*/MobyNumber.BigIntFromWireString.check(/*#__PURE__*/Schema.isBetweenBigInt({
minimum: -(2n ** 63n),
maximum: 2n ** 63n - 1n
}))
}, {
identifier: "ContainerExecInspect",
title: "container.ExecInspect",
documentation: "https://pkg.go.dev/github.com/docker/docker@v28.4.0+incompatible/api/types/container#ExecInspect"
}) {}
//# sourceMappingURL=ContainerExecInspect.generated.js.map