import { IDevKnativeEventingPkgApisSourcesV1ContainerSource } from "./ContainerSource.js"; import { IIoK8sApimachineryPkgApisMetaV1ListMeta } from "@kubernetes-models/apimachinery/apis/meta/v1/ListMeta"; import { ModelData, TypeMeta, Model } from "@kubernetes-models/base"; /** * ContainerSourceList contains a list of ContainerSource */ export interface IContainerSourceList extends TypeMeta { "apiVersion": "sources.knative.dev/v1"; "items": Array; "kind": "ContainerSourceList"; "metadata"?: IIoK8sApimachineryPkgApisMetaV1ListMeta; } /** * ContainerSourceList contains a list of ContainerSource */ export declare class ContainerSourceList extends Model implements IContainerSourceList { "apiVersion": "sources.knative.dev/v1"; "items": Array; "kind": "ContainerSourceList"; "metadata"?: IIoK8sApimachineryPkgApisMetaV1ListMeta; static apiVersion: IContainerSourceList["apiVersion"]; static kind: IContainerSourceList["kind"]; static is: import("@kubernetes-models/base").TypeMetaGuard; constructor(data?: ModelData); } export type { IContainerSourceList as IDevKnativeEventingPkgApisSourcesV1ContainerSourceList, ContainerSourceList as DevKnativeEventingPkgApisSourcesV1ContainerSourceList };