@kubernetes-models/flux-cd
Version:
27 lines (26 loc) • 1.65 kB
TypeScript
import { IComGithubFluxcdImageAutomationControllerApiV1beta1ImageUpdateAutomation } from "./ImageUpdateAutomation.js";
import { IIoK8sApimachineryPkgApisMetaV1ListMeta } from "@kubernetes-models/apimachinery/apis/meta/v1/ListMeta";
import { ModelData, TypeMeta, Model } from "@kubernetes-models/base";
/**
* ImageUpdateAutomationList contains a list of ImageUpdateAutomation
*/
export interface IImageUpdateAutomationList extends TypeMeta {
"apiVersion": "image.toolkit.fluxcd.io/v1beta1";
"items": Array<IComGithubFluxcdImageAutomationControllerApiV1beta1ImageUpdateAutomation>;
"kind": "ImageUpdateAutomationList";
"metadata"?: IIoK8sApimachineryPkgApisMetaV1ListMeta;
}
/**
* ImageUpdateAutomationList contains a list of ImageUpdateAutomation
*/
export declare class ImageUpdateAutomationList extends Model<IImageUpdateAutomationList> implements IImageUpdateAutomationList {
"apiVersion": "image.toolkit.fluxcd.io/v1beta1";
"items": Array<IComGithubFluxcdImageAutomationControllerApiV1beta1ImageUpdateAutomation>;
"kind": "ImageUpdateAutomationList";
"metadata"?: IIoK8sApimachineryPkgApisMetaV1ListMeta;
static apiVersion: IImageUpdateAutomationList["apiVersion"];
static kind: IImageUpdateAutomationList["kind"];
static is: import("@kubernetes-models/base").TypeMetaGuard<IImageUpdateAutomationList>;
constructor(data?: ModelData<IImageUpdateAutomationList>);
}
export type { IImageUpdateAutomationList as IComGithubFluxcdImageAutomationControllerApiV1beta1ImageUpdateAutomationList, ImageUpdateAutomationList as ComGithubFluxcdImageAutomationControllerApiV1beta1ImageUpdateAutomationList };