@kubernetes-models/flux-cd
Version:
27 lines (26 loc) • 1.3 kB
TypeScript
import { IComGithubFluxcdNotificationControllerApiV1beta3Alert } from "./Alert.js";
import { IIoK8sApimachineryPkgApisMetaV1ListMeta } from "@kubernetes-models/apimachinery/apis/meta/v1/ListMeta";
import { ModelData, TypeMeta, Model } from "@kubernetes-models/base";
/**
* AlertList contains a list of Alert
*/
export interface IAlertList extends TypeMeta {
"apiVersion": "notification.toolkit.fluxcd.io/v1beta3";
"items": Array<IComGithubFluxcdNotificationControllerApiV1beta3Alert>;
"kind": "AlertList";
"metadata"?: IIoK8sApimachineryPkgApisMetaV1ListMeta;
}
/**
* AlertList contains a list of Alert
*/
export declare class AlertList extends Model<IAlertList> implements IAlertList {
"apiVersion": "notification.toolkit.fluxcd.io/v1beta3";
"items": Array<IComGithubFluxcdNotificationControllerApiV1beta3Alert>;
"kind": "AlertList";
"metadata"?: IIoK8sApimachineryPkgApisMetaV1ListMeta;
static apiVersion: IAlertList["apiVersion"];
static kind: IAlertList["kind"];
static is: import("@kubernetes-models/base").TypeMetaGuard<IAlertList>;
constructor(data?: ModelData<IAlertList>);
}
export type { IAlertList as IComGithubFluxcdNotificationControllerApiV1beta3AlertList, AlertList as ComGithubFluxcdNotificationControllerApiV1beta3AlertList };