the-moby-effect
Version:
Moby/Docker API client built using effect-ts
16 lines • 791 B
JavaScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
import * as SwarmTopology from "./SwarmTopology.generated.js";
export class SwarmNodeCSIInfo extends /*#__PURE__*/Schema.Class("SwarmNodeCSIInfo")({
PluginName: /*#__PURE__*/Schema.optional(Schema.String),
NodeID: /*#__PURE__*/Schema.optional(Schema.String),
MaxVolumesPerNode: /*#__PURE__*/Schema.optional(MobySchemas.Int64),
AccessibleTopology: /*#__PURE__*/Schema.optionalWith(SwarmTopology.SwarmTopology, {
nullable: true
})
}, {
identifier: "SwarmNodeCSIInfo",
title: "swarm.NodeCSIInfo",
documentation: "https://github.com/moby/moby/blob/7d861e889cd2214b38c8f1f3f997bf003c77739d/api/types/swarm/node.go#L72-L85"
}) {}
//# sourceMappingURL=SwarmNodeCSIInfo.generated.js.map