the-moby-effect
Version:
Moby/Docker API client built using effect-ts
22 lines • 939 B
JavaScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
export class ImageSummary extends /*#__PURE__*/Schema.Class("ImageSummary")({
Containers: MobySchemas.Int64,
Created: MobySchemas.Int64,
Id: Schema.String,
Labels: /*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Record({
key: Schema.String,
value: Schema.String
})),
ParentId: Schema.String,
RepoDigests: /*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Array(Schema.String)),
RepoTags: /*#__PURE__*/Schema.NullOr(/*#__PURE__*/Schema.Array(Schema.String)),
SharedSize: MobySchemas.Int64,
Size: MobySchemas.Int64,
VirtualSize: /*#__PURE__*/Schema.optional(MobySchemas.Int64)
}, {
identifier: "ImageSummary",
title: "image.Summary",
documentation: "https://github.com/moby/moby/blob/a21b1a2d12e2c01542cb191eb526d7bfad0641e3/api/types/image/summary.go#L6-L89"
}) {}
//# sourceMappingURL=ImageSummary.generated.js.map