/** * Entity specifies the class of receiver/sender endpoints that do not have * individual identities. Entities are used to describe "outside of cluster", * "host", etc. */ export type IEntity = "all" | "world" | "cluster" | "host" | "init" | "ingress" | "unmanaged" | "remote-node" | "health" | "none" | "kube-apiserver"; export type Entity = IEntity; export type { IEntity as IComGithubCiliumCiliumPkgPolicyApiEntity, Entity as ComGithubCiliumCiliumPkgPolicyApiEntity };