import { ModelData, Model } from "@kubernetes-models/base"; /** * IPAMPoolRequest is a request from the agent to the operator, indicating how * may IPs it requires from a given pool */ export interface IIPAMPoolDemand { /** * IPv4Addrs contains the number of requested IPv4 addresses out of a given * pool */ "ipv4-addrs"?: number; /** * IPv6Addrs contains the number of requested IPv6 addresses out of a given * pool */ "ipv6-addrs"?: number; } /** * IPAMPoolRequest is a request from the agent to the operator, indicating how * may IPs it requires from a given pool */ export declare class IPAMPoolDemand extends Model implements IIPAMPoolDemand { "ipv4-addrs"?: number; "ipv6-addrs"?: number; constructor(data?: ModelData); } export type { IIPAMPoolDemand as IComGithubCiliumCiliumPkgIpamTypesIPAMPoolDemand, IPAMPoolDemand as ComGithubCiliumCiliumPkgIpamTypesIPAMPoolDemand };