import { IComGithubCiliumCiliumPkgIpamTypesIPAMPodCIDR } from "./IPAMPodCIDR.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * IPAMPoolAllocation describes an allocation of an IPAM pool from the operator to the * node. It contains the assigned PodCIDRs allocated from this pool */ export interface IIPAMPoolAllocation { /** * CIDRs contains a list of pod CIDRs currently allocated from this pool */ "cidrs"?: Array; /** * Pool is the name of the IPAM pool backing this allocation */ "pool": string; } /** * IPAMPoolAllocation describes an allocation of an IPAM pool from the operator to the * node. It contains the assigned PodCIDRs allocated from this pool */ export declare class IPAMPoolAllocation extends Model implements IIPAMPoolAllocation { "cidrs"?: Array; "pool": string; constructor(data?: ModelData); } export type { IIPAMPoolAllocation as IComGithubCiliumCiliumPkgIpamTypesIPAMPoolAllocation, IPAMPoolAllocation as ComGithubCiliumCiliumPkgIpamTypesIPAMPoolAllocation };