import { ModelData, Model } from "@kubernetes-models/base"; /** * EndpointIdentifiers Unique identifiers for this endpoint from outside cilium * * swagger:model EndpointIdentifiers */ export interface IEndpointIdentifiers { /** * ID assigned to this attachment by container runtime */ "cni-attachment-id"?: string; /** * ID assigned by container runtime (deprecated, may not be unique) */ "container-id"?: string; /** * Name assigned to container (deprecated, may not be unique) */ "container-name"?: string; /** * Docker endpoint ID */ "docker-endpoint-id"?: string; /** * Docker network ID */ "docker-network-id"?: string; /** * K8s namespace for this endpoint (deprecated, may not be unique) */ "k8s-namespace"?: string; /** * K8s pod name for this endpoint (deprecated, may not be unique) */ "k8s-pod-name"?: string; /** * K8s pod for this endpoint (deprecated, may not be unique) */ "pod-name"?: string; } /** * EndpointIdentifiers Unique identifiers for this endpoint from outside cilium * * swagger:model EndpointIdentifiers */ export declare class EndpointIdentifiers extends Model implements IEndpointIdentifiers { "cni-attachment-id"?: string; "container-id"?: string; "container-name"?: string; "docker-endpoint-id"?: string; "docker-network-id"?: string; "k8s-namespace"?: string; "k8s-pod-name"?: string; "pod-name"?: string; constructor(data?: ModelData); } export type { IEndpointIdentifiers as IComGithubCiliumCiliumApiV1ModelsEndpointIdentifiers, EndpointIdentifiers as ComGithubCiliumCiliumApiV1ModelsEndpointIdentifiers };