import { ModelData, Model } from "@kubernetes-models/base"; export interface ICiliumBGPNeighborGracefulRestart { /** * Enabled flag, when set enables graceful restart capability. */ "enabled": boolean; /** * RestartTimeSeconds is the estimated time it will take for the BGP * session to be re-established with peer after a restart. * After this period, peer will remove stale routes. This is * described RFC 4724 section 4.2. */ "restartTimeSeconds"?: number; } export declare class CiliumBGPNeighborGracefulRestart extends Model implements ICiliumBGPNeighborGracefulRestart { "enabled": boolean; "restartTimeSeconds"?: number; constructor(data?: ModelData); } export type { ICiliumBGPNeighborGracefulRestart as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2alpha1CiliumBGPNeighborGracefulRestart, CiliumBGPNeighborGracefulRestart as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2alpha1CiliumBGPNeighborGracefulRestart };