the-moby-effect
Version:
Moby/Docker API client built using effect-ts
17 lines • 721 B
JavaScript
import * as Schema from "effect/Schema";
export class NetworkIPAMConfig extends /*#__PURE__*/Schema.Class("NetworkIPAMConfig")({
Subnet: /*#__PURE__*/Schema.optional(Schema.String),
IPRange: /*#__PURE__*/Schema.optional(Schema.String),
Gateway: /*#__PURE__*/Schema.optional(Schema.String),
AuxiliaryAddresses: /*#__PURE__*/Schema.optionalWith(/*#__PURE__*/Schema.Record({
key: Schema.String,
value: Schema.String
}), {
nullable: true
})
}, {
identifier: "NetworkIPAMConfig",
title: "network.IPAMConfig",
documentation: "https://github.com/moby/moby/blob/7d861e889cd2214b38c8f1f3f997bf003c77739d/api/types/network/ipam.go#L18-L24"
}) {}
//# sourceMappingURL=NetworkIPAMConfig.generated.js.map