UNPKG

the-moby-effect

Version:
19 lines 869 B
import * as Schema from "effect/Schema"; import * as MobyIdentifiers from "../schemas/id.js"; import * as MobyNumber from "../schemas/number.js"; export class SwarmContainerStatus extends /*#__PURE__*/Schema.Class("SwarmContainerStatus")({ ContainerID: MobyIdentifiers.ContainerIdentifier, PID: /*#__PURE__*/MobyNumber.BigIntFromWireString.check(/*#__PURE__*/Schema.isBetweenBigInt({ minimum: -(2n ** 63n), maximum: 2n ** 63n - 1n })), ExitCode: /*#__PURE__*/MobyNumber.BigIntFromWireString.check(/*#__PURE__*/Schema.isBetweenBigInt({ minimum: -(2n ** 63n), maximum: 2n ** 63n - 1n })) }, { identifier: "SwarmContainerStatus", title: "swarm.ContainerStatus", documentation: "https://pkg.go.dev/github.com/docker/docker@v28.4.0+incompatible/api/types/swarm#ContainerStatus" }) {} //# sourceMappingURL=SwarmContainerStatus.generated.js.map