UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

20 lines 697 B
/** Quotas on network */ export interface NetworkQuotas { /** Maximum number of floating ips allowed in your project */ maxFloatingIPs: number; /** Maximum number of gateways allowed in your project */ maxGateways: number; /** Maximum networks allowed in your project */ maxNetworks: number; /** Maximum subnets allowed in your project */ maxSubnets: number; /** Current number of used floating ips */ usedFloatingIPs: number; /** Current number of used gateways */ usedGateways: number; /** Current used networks */ usedNetworks: number; /** Current used subnets */ usedSubnets: number; } //# sourceMappingURL=NetworkQuotas.d.ts.map