import { IComGithubCiliumCiliumPkgK8sApisCiliumIoV2AddressPairList } from "./AddressPairList.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * EndpointNetworking is the addressing information of an endpoint. */ export interface IEndpointNetworking { /** * IP4/6 addresses assigned to this Endpoint */ "addressing": IComGithubCiliumCiliumPkgK8sApisCiliumIoV2AddressPairList; /** * NodeIP is the IP of the node the endpoint is running on. The IP must * be reachable between nodes. */ "node"?: string; } /** * EndpointNetworking is the addressing information of an endpoint. */ export declare class EndpointNetworking extends Model implements IEndpointNetworking { "addressing": IComGithubCiliumCiliumPkgK8sApisCiliumIoV2AddressPairList; "node"?: string; constructor(data?: ModelData); } export type { IEndpointNetworking as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2EndpointNetworking, EndpointNetworking as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2EndpointNetworking };