the-moby-effect
Version:
Moby/Docker API client built using effect-ts
14 lines • 709 B
JavaScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
export class TmpfsOptions extends /*#__PURE__*/Schema.Class("TmpfsOptions")({
SizeBytes: /*#__PURE__*/Schema.optional(MobySchemas.Int64),
Mode: /*#__PURE__*/Schema.optional(MobySchemas.UInt32),
Options: /*#__PURE__*/Schema.optionalWith(/*#__PURE__*/Schema.Array(/*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Array(Schema.String))), {
nullable: true
})
}, {
identifier: "TmpfsOptions",
title: "mount.TmpfsOptions",
documentation: "https://github.com/moby/moby/blob/733755d7cb18a4dbea7c290cc56e61d05502aca0/api/types/mount/mount.go#L109-L145"
}) {}
//# sourceMappingURL=TmpfsOptions.generated.js.map