import { ModelData, Model } from "@kubernetes-models/base"; /** * HealthAddressingSpec is the addressing information required to do * connectivity health checking. */ export interface IHealthAddressingSpec { /** * IPv4 is the IPv4 address of the IPv4 health endpoint. */ "ipv4"?: string; /** * IPv6 is the IPv6 address of the IPv4 health endpoint. */ "ipv6"?: string; } /** * HealthAddressingSpec is the addressing information required to do * connectivity health checking. */ export declare class HealthAddressingSpec extends Model implements IHealthAddressingSpec { "ipv4"?: string; "ipv6"?: string; constructor(data?: ModelData); } export type { IHealthAddressingSpec as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2HealthAddressingSpec, HealthAddressingSpec as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2HealthAddressingSpec };