the-moby-effect
Version:
Moby/Docker API client built using effect-ts
18 lines • 1.22 kB
JavaScript
import * as Schema from "effect/Schema";
export class V1ImageConfig extends /*#__PURE__*/Schema.Class("V1ImageConfig")({
User: /*#__PURE__*/Schema.optional(Schema.String),
ExposedPorts: /*#__PURE__*/Schema.optional(/*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Record(Schema.String, Schema.ObjectKeyword))),
Env: /*#__PURE__*/Schema.optional(/*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Array(Schema.String))),
Entrypoint: /*#__PURE__*/Schema.optional(/*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Array(Schema.String))),
Cmd: /*#__PURE__*/Schema.optional(/*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Array(Schema.String))),
Volumes: /*#__PURE__*/Schema.optional(/*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Record(Schema.String, Schema.ObjectKeyword))),
WorkingDir: /*#__PURE__*/Schema.optional(Schema.String),
Labels: /*#__PURE__*/Schema.optional(/*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Record(Schema.String, Schema.String))),
StopSignal: /*#__PURE__*/Schema.optional(Schema.String),
ArgsEscaped: /*#__PURE__*/Schema.optional(Schema.Boolean)
}, {
identifier: "V1ImageConfig",
title: "v1.ImageConfig",
documentation: ""
}) {}
//# sourceMappingURL=V1ImageConfig.generated.js.map