@kubernetes-models/flux-cd
Version:
46 lines (45 loc) • 1.97 kB
TypeScript
import { IComGithubFluxcdPkgApisMetaReconcileRequestStatus } from "../../github.com/fluxcd/pkg/apis/meta/ReconcileRequestStatus.js";
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";
/**
* BucketStatus records the observed state of a Bucket.
*/
export interface IBucketStatus extends IComGithubFluxcdPkgApisMetaReconcileRequestStatus {
/**
* Artifact represents the last successful Bucket reconciliation.
*/
"artifact"?: IComGithubFluxcdPkgApisMetaArtifact;
/**
* Conditions holds the conditions for the Bucket.
*/
"conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>;
/**
* ObservedGeneration is the last observed generation of the Bucket object.
*/
"observedGeneration"?: number;
/**
* ObservedIgnore is the observed exclusion patterns used for constructing
* the source artifact.
*/
"observedIgnore"?: string;
/**
* URL is the dynamic fetch link for the latest Artifact.
* It is provided on a "best effort" basis, and using the precise
* BucketStatus.Artifact data is recommended.
*/
"url"?: string;
}
/**
* BucketStatus records the observed state of a Bucket.
*/
export declare class BucketStatus extends Model<IBucketStatus> implements IBucketStatus {
"lastHandledReconcileAt"?: string;
"artifact"?: IComGithubFluxcdPkgApisMetaArtifact;
"conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>;
"observedGeneration"?: number;
"observedIgnore"?: string;
"url"?: string;
constructor(data?: ModelData<IBucketStatus>);
}
export type { IBucketStatus as IComGithubFluxcdSourceControllerApiV1beta2BucketStatus, BucketStatus as ComGithubFluxcdSourceControllerApiV1beta2BucketStatus };