UNPKG

@kubernetes-models/flux-cd

Version:
26 lines (25 loc) 1.28 kB
import { IComGithubFluxcdPkgApisMetaArtifact } from "../../github.com/fluxcd/pkg/apis/meta/Artifact.js"; import { IIoK8sApimachineryPkgApisMetaV1Condition } from "@kubernetes-models/apimachinery/apis/meta/v1/Condition"; import { ModelData, Model } from "@kubernetes-models/base"; /** * ExternalArtifactStatus defines the observed state of ExternalArtifact */ export interface IExternalArtifactStatus { /** * Artifact represents the output of an ExternalArtifact reconciliation. */ "artifact"?: IComGithubFluxcdPkgApisMetaArtifact; /** * Conditions holds the conditions for the ExternalArtifact. */ "conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>; } /** * ExternalArtifactStatus defines the observed state of ExternalArtifact */ export declare class ExternalArtifactStatus extends Model<IExternalArtifactStatus> implements IExternalArtifactStatus { "artifact"?: IComGithubFluxcdPkgApisMetaArtifact; "conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>; constructor(data?: ModelData<IExternalArtifactStatus>); } export type { IExternalArtifactStatus as IComGithubFluxcdSourceControllerApiV1ExternalArtifactStatus, ExternalArtifactStatus as ComGithubFluxcdSourceControllerApiV1ExternalArtifactStatus };