UNPKG

@kubernetes-models/flux-cd

Version:
40 lines (39 loc) 2.08 kB
import { IComGithubFluxcdPkgApisMetaReconcileRequestStatus } from "../../github.com/fluxcd/pkg/apis/meta/ReconcileRequestStatus.js"; import { IIoK8sApimachineryPkgApisMetaV1Condition } from "@kubernetes-models/apimachinery/apis/meta/v1/Condition"; import { IIoK8sApimachineryPkgApisMetaV1Time } from "@kubernetes-models/apimachinery/apis/meta/v1/Time"; import { ModelData, Model } from "@kubernetes-models/base"; /** * ImageUpdateAutomationStatus defines the observed state of ImageUpdateAutomation */ export interface IImageUpdateAutomationStatus extends IComGithubFluxcdPkgApisMetaReconcileRequestStatus { "conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>; /** * LastAutomationRunTime records the last time the controller ran * this automation through to completion (even if no updates were * made). */ "lastAutomationRunTime"?: IIoK8sApimachineryPkgApisMetaV1Time; /** * LastPushCommit records the SHA1 of the last commit made by the * controller, for this automation object */ "lastPushCommit"?: string; /** * LastPushTime records the time of the last pushed change. */ "lastPushTime"?: IIoK8sApimachineryPkgApisMetaV1Time; "observedGeneration"?: number; } /** * ImageUpdateAutomationStatus defines the observed state of ImageUpdateAutomation */ export declare class ImageUpdateAutomationStatus extends Model<IImageUpdateAutomationStatus> implements IImageUpdateAutomationStatus { "lastHandledReconcileAt"?: string; "conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>; "lastAutomationRunTime"?: IIoK8sApimachineryPkgApisMetaV1Time; "lastPushCommit"?: string; "lastPushTime"?: IIoK8sApimachineryPkgApisMetaV1Time; "observedGeneration"?: number; constructor(data?: ModelData<IImageUpdateAutomationStatus>); } export type { IImageUpdateAutomationStatus as IComGithubFluxcdImageAutomationControllerApiV1beta1ImageUpdateAutomationStatus, ImageUpdateAutomationStatus as ComGithubFluxcdImageAutomationControllerApiV1beta1ImageUpdateAutomationStatus };