UNPKG

@kubernetes-models/flux-cd

Version:
27 lines (26 loc) 1.22 kB
import { IComGithubFluxcdPkgApisMetaReconcileRequestStatus } from "../../github.com/fluxcd/pkg/apis/meta/ReconcileRequestStatus.js"; import { IIoK8sApimachineryPkgApisMetaV1Condition } from "@kubernetes-models/apimachinery/apis/meta/v1/Condition"; import { ModelData, Model } from "@kubernetes-models/base"; /** * AlertStatus defines the observed state of the Alert. */ export interface IAlertStatus extends IComGithubFluxcdPkgApisMetaReconcileRequestStatus { /** * Conditions holds the conditions for the Alert. */ "conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>; /** * ObservedGeneration is the last observed generation. */ "observedGeneration"?: number; } /** * AlertStatus defines the observed state of the Alert. */ export declare class AlertStatus extends Model<IAlertStatus> implements IAlertStatus { "lastHandledReconcileAt"?: string; "conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>; "observedGeneration"?: number; constructor(data?: ModelData<IAlertStatus>); } export type { IAlertStatus as IComGithubFluxcdNotificationControllerApiV1beta2AlertStatus, AlertStatus as ComGithubFluxcdNotificationControllerApiV1beta2AlertStatus };