import { ModelData, Model } from "@kubernetes-models/base"; /** * OperatorStatus is the status used by cilium-operator to report * errors in case the allocation CIDR failed. */ export interface IOperatorStatus { /** * Error is the error message set by cilium-operator. */ "error"?: string; } /** * OperatorStatus is the status used by cilium-operator to report * errors in case the allocation CIDR failed. */ export declare class OperatorStatus extends Model implements IOperatorStatus { "error"?: string; constructor(data?: ModelData); } export type { IOperatorStatus as IComGithubCiliumCiliumPkgIpamTypesOperatorStatus, OperatorStatus as ComGithubCiliumCiliumPkgIpamTypesOperatorStatus };