/** * BGPServiceAddressType defines type of service address to be advertised. * * Note list of supported service addresses is not exhaustive and can be extended in the future. * Consumer of this API should be able to handle unknown values. */ export type IBGPServiceAddressType = "LoadBalancerIP" | "ClusterIP" | "ExternalIP"; export type BGPServiceAddressType = IBGPServiceAddressType; export type { IBGPServiceAddressType as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2alpha1BGPServiceAddressType, BGPServiceAddressType as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2alpha1BGPServiceAddressType };