UNPKG

kubernetes-models

Version:
10 lines (9 loc) 393 B
import { Model, setSchema } from "@kubernetes-models/base"; import { addSchema } from "../_schemas/IoK8sApiCoreV1DaemonEndpoint.mjs"; /** * DaemonEndpoint contains information about a single Daemon endpoint. */ export class DaemonEndpoint extends Model { } setSchema(DaemonEndpoint, "io.k8s.api.core.v1.DaemonEndpoint", addSchema); export { DaemonEndpoint as IoK8sApiCoreV1DaemonEndpoint };