/** * BGPWellKnownCommunity type represents a value of the "standard" 32-bit BGP Communities Attribute (RFC 1997) * as a well-known string alias to its numeric value. Allowed values and their mapping to the numeric values: * * internet = 0x00000000 (0:0) * planned-shut = 0xffff0000 (65535:0) * accept-own = 0xffff0001 (65535:1) * route-filter-translated-v4 = 0xffff0002 (65535:2) * route-filter-v4 = 0xffff0003 (65535:3) * route-filter-translated-v6 = 0xffff0004 (65535:4) * route-filter-v6 = 0xffff0005 (65535:5) * llgr-stale = 0xffff0006 (65535:6) * no-llgr = 0xffff0007 (65535:7) * blackhole = 0xffff029a (65535:666) * no-export = 0xffffff01 (65535:65281) * no-advertise = 0xffffff02 (65535:65282) * no-export-subconfed = 0xffffff03 (65535:65283) * no-peer = 0xffffff04 (65535:65284) */ export type IBGPWellKnownCommunity = "internet" | "planned-shut" | "accept-own" | "route-filter-translated-v4" | "route-filter-v4" | "route-filter-translated-v6" | "route-filter-v6" | "llgr-stale" | "no-llgr" | "blackhole" | "no-export" | "no-advertise" | "no-export-subconfed" | "no-peer"; export type BGPWellKnownCommunity = IBGPWellKnownCommunity; export type { IBGPWellKnownCommunity as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2alpha1BGPWellKnownCommunity, BGPWellKnownCommunity as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2alpha1BGPWellKnownCommunity };