the-moby-effect
Version:
Moby/Docker API client built using effect-ts
16 lines • 766 B
JavaScript
import * as Schema from "effect/Schema";
import * as SwarmDriver from "./SwarmDriver.generated.js";
import * as SwarmIPAMConfig from "./SwarmIPAMConfig.generated.js";
export class SwarmIPAMOptions extends /*#__PURE__*/Schema.Class("SwarmIPAMOptions")({
Driver: /*#__PURE__*/Schema.optionalWith(SwarmDriver.SwarmDriver, {
nullable: true
}),
Configs: /*#__PURE__*/Schema.optionalWith(/*#__PURE__*/Schema.Array(/*#__PURE__*/Schema.NullOr(SwarmIPAMConfig.SwarmIPAMConfig)), {
nullable: true
})
}, {
identifier: "SwarmIPAMOptions",
title: "swarm.IPAMOptions",
documentation: "https://github.com/moby/moby/blob/7d861e889cd2214b38c8f1f3f997bf003c77739d/api/types/swarm/network.go#L110-L114"
}) {}
//# sourceMappingURL=SwarmIPAMOptions.generated.js.map