the-moby-effect
Version:
Moby/Docker API client built using effect-ts
16 lines • 833 B
JavaScript
import * as Schema from "effect/Schema";
export class ContainerMountPoint extends /*#__PURE__*/Schema.Class("ContainerMountPoint")({
Type: /*#__PURE__*/Schema.optional(/*#__PURE__*/Schema.Literals(["bind", "volume", "tmpfs", "npipe", "cluster", "image"])),
Name: /*#__PURE__*/Schema.optional(Schema.String),
Source: Schema.String,
Destination: Schema.String,
Driver: /*#__PURE__*/Schema.optional(Schema.String),
Mode: Schema.String,
RW: Schema.Boolean,
Propagation: /*#__PURE__*/Schema.Literals(["", "rprivate", "private", "rshared", "shared", "rslave", "slave"])
}, {
identifier: "ContainerMountPoint",
title: "container.MountPoint",
documentation: "https://pkg.go.dev/github.com/docker/docker@v28.4.0+incompatible/api/types/container#MountPoint"
}) {}
//# sourceMappingURL=ContainerMountPoint.generated.js.map