import { ModelData, Model } from "@kubernetes-models/base"; /** * BGPInterfaceOptions defines the configuration for the Interface advertisement type. */ export interface IBGPInterfaceOptions { /** * Name of local interface of whose IP addresses will be advertised via BGP. * Each IP address applied on the interface is advertised as a /32 prefix (for IPv4) or a /128 prefix (for IPv6). */ "name": string; } /** * BGPInterfaceOptions defines the configuration for the Interface advertisement type. */ export declare class BGPInterfaceOptions extends Model implements IBGPInterfaceOptions { "name": string; constructor(data?: ModelData); } export type { IBGPInterfaceOptions as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2BGPInterfaceOptions, BGPInterfaceOptions as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2BGPInterfaceOptions };