import { ModelData, Model } from "@kubernetes-models/base"; /** * CiliumBGPTimersState is the state of the negotiated BGP timers for a peer. */ export interface ICiliumBGPTimersState { /** * AppliedHoldTimeSeconds is the negotiated hold time for this peer. */ "appliedHoldTimeSeconds"?: number; /** * AppliedKeepaliveSeconds is the negotiated keepalive time for this peer. */ "appliedKeepaliveSeconds"?: number; } /** * CiliumBGPTimersState is the state of the negotiated BGP timers for a peer. */ export declare class CiliumBGPTimersState extends Model implements ICiliumBGPTimersState { "appliedHoldTimeSeconds"?: number; "appliedKeepaliveSeconds"?: number; constructor(data?: ModelData); } export type { ICiliumBGPTimersState as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2alpha1CiliumBGPTimersState, CiliumBGPTimersState as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2alpha1CiliumBGPTimersState };