/** * ServerName allows using prefix only wildcards to match DNS names. * * - "\*" matches 0 or more DNS valid characters, and may only occur at the * beginning of the pattern. As a special case a "\*" as the leftmost character, * without a following "." matches all subdomains as well as the name to the right. * * Examples: * - `\*.cilium.io` matches exactly one subdomain of cilium at that level www.cilium.io and blog.cilium.io match, cilium.io and google.com do not. * - `\*\*.cilium.io` matches more than one subdomain of cilium, e.g. sub1.sub2.cilium.io and sub.cilium.io match, cilium.io do not. */ export type IServerName = string; export type ServerName = IServerName; export type { IServerName as IComGithubCiliumCiliumPkgPolicyApiServerName, ServerName as ComGithubCiliumCiliumPkgPolicyApiServerName };