the-moby-effect
Version:
Moby/Docker API client built using effect-ts
16 lines (14 loc) • 632 B
text/typescript
import * as Schema from "effect/Schema";
import * as SystemContainerdNamespaces from "./SystemContainerdNamespaces.generated.js";
export class SystemContainerdInfo extends Schema.Class<SystemContainerdInfo>("SystemContainerdInfo")(
{
Address: Schema.optional(Schema.String),
Namespaces: Schema.NullOr(SystemContainerdNamespaces.SystemContainerdNamespaces),
},
{
identifier: "SystemContainerdInfo",
title: "system.ContainerdInfo",
documentation:
"https://github.com/moby/moby/blob/7d861e889cd2214b38c8f1f3f997bf003c77739d/api/types/system/info.go#L87-L93",
}
) {}