the-moby-effect
Version:
Moby/Docker API client built using effect-ts
15 lines • 615 B
JavaScript
import * as Schema from "effect/Schema";
export class SwarmTLSInfo extends /*#__PURE__*/Schema.Class("SwarmTLSInfo")({
TrustRoot: /*#__PURE__*/Schema.optional(Schema.String),
CertIssuerSubject: /*#__PURE__*/Schema.optionalWith(Schema.String, {
nullable: true
}),
CertIssuerPublicKey: /*#__PURE__*/Schema.optionalWith(Schema.String, {
nullable: true
})
}, {
identifier: "SwarmTLSInfo",
title: "swarm.TLSInfo",
documentation: "https://github.com/moby/moby/blob/7d861e889cd2214b38c8f1f3f997bf003c77739d/api/types/swarm/common.go#L37-L48"
}) {}
//# sourceMappingURL=SwarmTLSInfo.generated.js.map