import { IComGithubCiliumCiliumPkgK8sApisCiliumIoV2CiliumBGPNodePeerStatus } from "./CiliumBGPNodePeerStatus.js"; import { ModelData, Model } from "@kubernetes-models/base"; export interface ICiliumBGPNodeInstanceStatus { /** * LocalASN is the ASN of this BGP instance. */ "localASN"?: number; /** * Name is the name of the BGP instance. This name is used to identify the BGP instance on the node. */ "name": string; /** * PeerStatuses is the state of the BGP peers for this BGP instance. */ "peers"?: Array; } export declare class CiliumBGPNodeInstanceStatus extends Model implements ICiliumBGPNodeInstanceStatus { "localASN"?: number; "name": string; "peers"?: Array; constructor(data?: ModelData); } export type { ICiliumBGPNodeInstanceStatus as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2CiliumBGPNodeInstanceStatus, CiliumBGPNodeInstanceStatus as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2CiliumBGPNodeInstanceStatus };