/** * BGPStandardCommunity type represents a value of the "standard" 32-bit BGP Communities Attribute (RFC 1997) * as a 4-byte decimal number or two 2-byte decimal numbers separated by a colon (<0-65535>:<0-65535>). * For example, no-export community value is 65553:65281. */ export type IBGPStandardCommunity = string; export type BGPStandardCommunity = IBGPStandardCommunity; export type { IBGPStandardCommunity as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2BGPStandardCommunity, BGPStandardCommunity as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2BGPStandardCommunity };