/** * BGPAdvertisementType defines type of advertisement. * * Note list of supported advertisements is not exhaustive and can be extended in the future. * Consumer of this API should be able to handle unknown values. */ export type IBGPAdvertisementType = "PodCIDR" | "CiliumPodIPPool" | "Service" | "Interface"; export type BGPAdvertisementType = IBGPAdvertisementType; export type { IBGPAdvertisementType as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2BGPAdvertisementType, BGPAdvertisementType as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2BGPAdvertisementType };