@kubernetes-models/flux-cd
Version:
40 lines (39 loc) • 1.71 kB
TypeScript
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";
/**
* ReceiverStatus defines the observed state of the Receiver.
*/
export interface IReceiverStatus extends IComGithubFluxcdPkgApisMetaReconcileRequestStatus {
/**
* Conditions holds the conditions for the Receiver.
*/
"conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>;
/**
* ObservedGeneration is the last observed generation of the Receiver object.
*/
"observedGeneration"?: number;
/**
* URL is the generated incoming webhook address in the format
* of '/hook/sha256sum(token+name+namespace)'.
* Deprecated: Replaced by WebhookPath.
*/
"url"?: string;
/**
* WebhookPath is the generated incoming webhook address in the format
* of '/hook/sha256sum(token+name+namespace)'.
*/
"webhookPath"?: string;
}
/**
* ReceiverStatus defines the observed state of the Receiver.
*/
export declare class ReceiverStatus extends Model<IReceiverStatus> implements IReceiverStatus {
"lastHandledReconcileAt"?: string;
"conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>;
"observedGeneration"?: number;
"url"?: string;
"webhookPath"?: string;
constructor(data?: ModelData<IReceiverStatus>);
}
export type { IReceiverStatus as IComGithubFluxcdNotificationControllerApiV1beta2ReceiverStatus, ReceiverStatus as ComGithubFluxcdNotificationControllerApiV1beta2ReceiverStatus };