the-moby-effect
Version:
Moby/Docker API client built using effect-ts
13 lines • 755 B
JavaScript
import * as Schema from "effect/Schema";
import * as MobySchemas from "../schemas/index.js";
export class ContainerStorageStats extends /*#__PURE__*/Schema.Class("ContainerStorageStats")({
read_count_normalized: /*#__PURE__*/Schema.optional(MobySchemas.UInt64),
read_size_bytes: /*#__PURE__*/Schema.optional(MobySchemas.UInt64),
write_count_normalized: /*#__PURE__*/Schema.optional(MobySchemas.UInt64),
write_size_bytes: /*#__PURE__*/Schema.optional(MobySchemas.UInt64)
}, {
identifier: "ContainerStorageStats",
title: "container.StorageStats",
documentation: "https://github.com/moby/moby/blob/a21b1a2d12e2c01542cb191eb526d7bfad0641e3/api/types/container/stats.go#L107-L113"
}) {}
//# sourceMappingURL=ContainerStorageStats.generated.js.map