the-moby-effect
Version:
Moby/Docker API client built using effect-ts
16 lines • 693 B
JavaScript
import * as Schema from "effect/Schema";
export class SwarmUpdateStatus extends /*#__PURE__*/Schema.Class("SwarmUpdateStatus")({
State: /*#__PURE__*/Schema.optional(Schema.String),
StartedAt: /*#__PURE__*/Schema.optionalWith(Schema.DateFromString, {
nullable: true
}),
CompletedAt: /*#__PURE__*/Schema.optionalWith(Schema.DateFromString, {
nullable: true
}),
Message: /*#__PURE__*/Schema.optional(Schema.String)
}, {
identifier: "SwarmUpdateStatus",
title: "swarm.UpdateStatus",
documentation: "https://github.com/moby/moby/blob/7d861e889cd2214b38c8f1f3f997bf003c77739d/api/types/swarm/service.go#L70-L76"
}) {}
//# sourceMappingURL=SwarmUpdateStatus.generated.js.map