the-moby-effect
Version:
Moby/Docker API client built using effect-ts
14 lines • 734 B
JavaScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
export class NetworkEndpointIPAMConfig extends /*#__PURE__*/Schema.Class("NetworkEndpointIPAMConfig")({
IPv4Address: /*#__PURE__*/Schema.optional(MobySchemas.IPv4),
IPv6Address: /*#__PURE__*/Schema.optional(MobySchemas.IPv6),
LinkLocalIPs: /*#__PURE__*/Schema.optionalWith(/*#__PURE__*/Schema.Array(MobySchemas.Address), {
nullable: true
})
}, {
identifier: "NetworkEndpointIPAMConfig",
title: "network.EndpointIPAMConfig",
documentation: "https://github.com/moby/moby/blob/733755d7cb18a4dbea7c290cc56e61d05502aca0/api/types/network/endpoint.go#L61-L66"
}) {}
//# sourceMappingURL=NetworkEndpointIPAMConfig.generated.js.map