UNPKG

@kubernetes-models/flux-cd

Version:
38 lines (37 loc) 1.69 kB
import { IComGithubFluxcdPkgApisMetaReconcileRequestStatus } from "../../github.com/fluxcd/pkg/apis/meta/ReconcileRequestStatus.js"; import { IComGithubFluxcdSourceControllerApiV1beta1Artifact } from "./Artifact.js"; import { IIoK8sApimachineryPkgApisMetaV1Condition } from "@kubernetes-models/apimachinery/apis/meta/v1/Condition"; import { ModelData, Model } from "@kubernetes-models/base"; /** * HelmChartStatus defines the observed state of the HelmChart. */ export interface IHelmChartStatus extends IComGithubFluxcdPkgApisMetaReconcileRequestStatus { /** * Artifact represents the output of the last successful chart sync. */ "artifact"?: IComGithubFluxcdSourceControllerApiV1beta1Artifact; /** * Conditions holds the conditions for the HelmChart. */ "conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>; /** * ObservedGeneration is the last observed generation. */ "observedGeneration"?: number; /** * URL is the download link for the last chart pulled. */ "url"?: string; } /** * HelmChartStatus defines the observed state of the HelmChart. */ export declare class HelmChartStatus extends Model<IHelmChartStatus> implements IHelmChartStatus { "lastHandledReconcileAt"?: string; "artifact"?: IComGithubFluxcdSourceControllerApiV1beta1Artifact; "conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>; "observedGeneration"?: number; "url"?: string; constructor(data?: ModelData<IHelmChartStatus>); } export type { IHelmChartStatus as IComGithubFluxcdSourceControllerApiV1beta1HelmChartStatus, HelmChartStatus as ComGithubFluxcdSourceControllerApiV1beta1HelmChartStatus };