import { ModelData, Model } from "@kubernetes-models/base"; /** * EndpointIdentity is the identity information of an endpoint. */ export interface IEndpointIdentity { /** * ID is the numeric identity of the endpoint */ "id"?: number; /** * Labels is the list of labels associated with the identity */ "labels"?: Array; } /** * EndpointIdentity is the identity information of an endpoint. */ export declare class EndpointIdentity extends Model implements IEndpointIdentity { "id"?: number; "labels"?: Array; constructor(data?: ModelData); } export type { IEndpointIdentity as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2EndpointIdentity, EndpointIdentity as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2EndpointIdentity };