the-moby-effect
Version:
Moby/Docker API client built using effect-ts
15 lines • 716 B
JavaScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
export class SwarmUpdateConfig extends /*#__PURE__*/Schema.Class("SwarmUpdateConfig")({
Parallelism: MobySchemas.UInt64,
Delay: /*#__PURE__*/Schema.optional(MobySchemas.Int64),
FailureAction: /*#__PURE__*/Schema.optional(Schema.String),
Monitor: /*#__PURE__*/Schema.optional(MobySchemas.Int64),
MaxFailureRatio: Schema.Number,
Order: Schema.String
}, {
identifier: "SwarmUpdateConfig",
title: "swarm.UpdateConfig",
documentation: "https://github.com/moby/moby/blob/7d861e889cd2214b38c8f1f3f997bf003c77739d/api/types/swarm/service.go#L126-L163"
}) {}
//# sourceMappingURL=SwarmUpdateConfig.generated.js.map