import { IComGithubCiliumCiliumApiV1ModelsEndpointHealthStatus } from "./EndpointHealthStatus.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * EndpointHealth Health of the endpoint * * swagger:model EndpointHealth */ export interface IEndpointHealth { /** * bpf */ "bpf"?: IComGithubCiliumCiliumApiV1ModelsEndpointHealthStatus; /** * Is this endpoint reachable */ "connected"?: boolean; /** * overall health */ "overallHealth"?: IComGithubCiliumCiliumApiV1ModelsEndpointHealthStatus; /** * policy */ "policy"?: IComGithubCiliumCiliumApiV1ModelsEndpointHealthStatus; } /** * EndpointHealth Health of the endpoint * * swagger:model EndpointHealth */ export declare class EndpointHealth extends Model implements IEndpointHealth { "bpf"?: IComGithubCiliumCiliumApiV1ModelsEndpointHealthStatus; "connected"?: boolean; "overallHealth"?: IComGithubCiliumCiliumApiV1ModelsEndpointHealthStatus; "policy"?: IComGithubCiliumCiliumApiV1ModelsEndpointHealthStatus; constructor(data?: ModelData); } export type { IEndpointHealth as IComGithubCiliumCiliumApiV1ModelsEndpointHealth, EndpointHealth as ComGithubCiliumCiliumApiV1ModelsEndpointHealth };