the-moby-effect
Version:
Moby/Docker API client built using effect-ts
18 lines • 890 B
JavaScript
import * as Schema from "effect/Schema";
import * as MobyNumber from "../schemas/number.js";
export class MountTmpfsOptions extends /*#__PURE__*/Schema.Class("MountTmpfsOptions")({
SizeBytes: /*#__PURE__*/Schema.optional(/*#__PURE__*/MobyNumber.BigIntFromWireString.check(/*#__PURE__*/Schema.isBetweenBigInt({
minimum: -(2n ** 63n),
maximum: 2n ** 63n - 1n
}))),
Mode: /*#__PURE__*/Schema.optional(/*#__PURE__*/MobyNumber.NumberFromWireString.check(/*#__PURE__*/Schema.isInt(), /*#__PURE__*/Schema.isBetween({
minimum: 0,
maximum: 2 ** 32 - 1
}))),
Options: /*#__PURE__*/Schema.optional(/*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Array(/*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Array(Schema.String)))))
}, {
identifier: "MountTmpfsOptions",
title: "mount.TmpfsOptions",
documentation: ""
}) {}
//# sourceMappingURL=MountTmpfsOptions.generated.js.map