import { ModelData, Model } from "@kubernetes-models/base"; /** * IdentityTuple specifies a peer by identity, destination port and protocol. */ export interface IIdentityTuple { "dest-port"?: number; "identity"?: number; "identity-labels"?: { [key: string]: string; }; "protocol"?: number; } /** * IdentityTuple specifies a peer by identity, destination port and protocol. */ export declare class IdentityTuple extends Model implements IIdentityTuple { "dest-port"?: number; "identity"?: number; "identity-labels"?: { [key: string]: string; }; "protocol"?: number; constructor(data?: ModelData); } export type { IIdentityTuple as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2IdentityTuple, IdentityTuple as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2IdentityTuple };