the-moby-effect
Version:
Moby/Docker API client built using effect-ts
16 lines (14 loc) • 612 B
text/typescript
import * as Schema from "effect/Schema";
export class NetworkEndpointIPAMConfig extends Schema.Class<NetworkEndpointIPAMConfig>("NetworkEndpointIPAMConfig")(
{
IPv4Address: Schema.optional(Schema.String),
IPv6Address: Schema.optional(Schema.String),
LinkLocalIPs: Schema.optional(Schema.NullOr(Schema.Array(Schema.String))),
},
{
identifier: "NetworkEndpointIPAMConfig",
title: "network.EndpointIPAMConfig",
documentation:
"https://pkg.go.dev/github.com/docker/docker@v28.4.0+incompatible/api/types/network#EndpointIPAMConfig",
}
) {}