import { IComGithubGoOpenapiStrfmtDuration } from "../../github.com/go-openapi/strfmt/Duration.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * ControllerStatusConfiguration Configuration of controller * * swagger:model ControllerStatusConfiguration */ export interface IControllerStatusConfiguration { /** * Retry on error */ "error-retry"?: boolean; /** * Base error retry back-off time * Format: duration */ "error-retry-base"?: IComGithubGoOpenapiStrfmtDuration; /** * Regular synchronization interval * Format: duration */ "interval"?: IComGithubGoOpenapiStrfmtDuration; } /** * ControllerStatusConfiguration Configuration of controller * * swagger:model ControllerStatusConfiguration */ export declare class ControllerStatusConfiguration extends Model implements IControllerStatusConfiguration { "error-retry"?: boolean; "error-retry-base"?: IComGithubGoOpenapiStrfmtDuration; "interval"?: IComGithubGoOpenapiStrfmtDuration; constructor(data?: ModelData); } export type { IControllerStatusConfiguration as IComGithubCiliumCiliumApiV1ModelsControllerStatusConfiguration, ControllerStatusConfiguration as ComGithubCiliumCiliumApiV1ModelsControllerStatusConfiguration };