import { IDevKnativeNetworkingPkgApisNetworkingV1alpha1Certificate } from "./Certificate.js"; import { IIoK8sApimachineryPkgApisMetaV1ListMeta } from "@kubernetes-models/apimachinery/apis/meta/v1/ListMeta"; import { ModelData, TypeMeta, Model } from "@kubernetes-models/base"; /** * CertificateList is a collection of `Certificate`. */ export interface ICertificateList extends TypeMeta { "apiVersion": "networking.internal.knative.dev/v1alpha1"; /** * Items is the list of `Certificate`. */ "items": Array; "kind": "CertificateList"; /** * Standard object's metadata. * More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata */ "metadata"?: IIoK8sApimachineryPkgApisMetaV1ListMeta; } /** * CertificateList is a collection of `Certificate`. */ export declare class CertificateList extends Model implements ICertificateList { "apiVersion": "networking.internal.knative.dev/v1alpha1"; "items": Array; "kind": "CertificateList"; "metadata"?: IIoK8sApimachineryPkgApisMetaV1ListMeta; static apiVersion: ICertificateList["apiVersion"]; static kind: ICertificateList["kind"]; static is: import("@kubernetes-models/base").TypeMetaGuard; constructor(data?: ModelData); } export type { ICertificateList as IDevKnativeNetworkingPkgApisNetworkingV1alpha1CertificateList, CertificateList as DevKnativeNetworkingPkgApisNetworkingV1alpha1CertificateList };