the-moby-effect
Version:
Moby/Docker API client built using effect-ts
20 lines • 779 B
JavaScript
import * as Schema from "effect/Schema";
import * as Driver from "./Driver.generated.js";
export class VolumeOptions extends /*#__PURE__*/Schema.Class("VolumeOptions")({
NoCopy: /*#__PURE__*/Schema.optional(Schema.Boolean),
Labels: /*#__PURE__*/Schema.optionalWith(/*#__PURE__*/Schema.Record({
key: Schema.String,
value: Schema.String
}), {
nullable: true
}),
Subpath: /*#__PURE__*/Schema.optional(Schema.String),
DriverConfig: /*#__PURE__*/Schema.optionalWith(Driver.Driver, {
nullable: true
})
}, {
identifier: "VolumeOptions",
title: "mount.VolumeOptions",
documentation: "https://github.com/moby/moby/blob/733755d7cb18a4dbea7c290cc56e61d05502aca0/api/types/mount/mount.go#L95-L101"
}) {}
//# sourceMappingURL=VolumeOptions.generated.js.map