import { ModelData, Model } from "@kubernetes-models/base"; /** * CiliumBGPTransport defines the BGP transport parameters for the peer. */ export interface ICiliumBGPTransport { /** * Deprecated * LocalPort is the local port to be used for the BGP session. * * If not specified, ephemeral port will be picked to initiate a connection. * * This field is deprecated and will be removed in a future release. * Local port configuration is unnecessary and is not recommended. */ "localPort"?: number; /** * PeerPort is the peer port to be used for the BGP session. * * If not specified, defaults to TCP port 179. */ "peerPort"?: number; } /** * CiliumBGPTransport defines the BGP transport parameters for the peer. */ export declare class CiliumBGPTransport extends Model implements ICiliumBGPTransport { "localPort"?: number; "peerPort"?: number; constructor(data?: ModelData); } export type { ICiliumBGPTransport as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2alpha1CiliumBGPTransport, CiliumBGPTransport as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2alpha1CiliumBGPTransport };