the-moby-effect
Version:
Moby/Docker API client built using effect-ts
19 lines • 754 B
JavaScript
import * as Schema from "effect/Schema";
export class SystemRuntime extends /*#__PURE__*/Schema.Class("SystemRuntime")({
path: /*#__PURE__*/Schema.optional(Schema.String),
runtimeArgs: /*#__PURE__*/Schema.optionalWith(/*#__PURE__*/Schema.Array(Schema.String), {
nullable: true
}),
runtimeType: /*#__PURE__*/Schema.optional(Schema.String),
options: /*#__PURE__*/Schema.optionalWith(/*#__PURE__*/Schema.Record({
key: Schema.String,
value: Schema.Object
}), {
nullable: true
})
}, {
identifier: "SystemRuntime",
title: "system.Runtime",
documentation: "https://github.com/moby/moby/blob/7d861e889cd2214b38c8f1f3f997bf003c77739d/api/types/system/runtime.go#L3-L14"
}) {}
//# sourceMappingURL=SystemRuntime.generated.js.map