import { IComGithubCiliumCiliumApiV1ModelsEndpointState } from "./EndpointState.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * EndpointStatusChange Indication of a change of status * * swagger:model EndpointStatusChange */ export interface IEndpointStatusChange { /** * Code indicate type of status change * Enum: ["ok","failed"] */ "code"?: string; /** * Status message */ "message"?: string; /** * state */ "state"?: IComGithubCiliumCiliumApiV1ModelsEndpointState; /** * Timestamp when status change occurred */ "timestamp"?: string; } /** * EndpointStatusChange Indication of a change of status * * swagger:model EndpointStatusChange */ export declare class EndpointStatusChange extends Model implements IEndpointStatusChange { "code"?: string; "message"?: string; "state"?: IComGithubCiliumCiliumApiV1ModelsEndpointState; "timestamp"?: string; constructor(data?: ModelData); } export type { IEndpointStatusChange as IComGithubCiliumCiliumApiV1ModelsEndpointStatusChange, EndpointStatusChange as ComGithubCiliumCiliumApiV1ModelsEndpointStatusChange };