UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

15 lines 431 B
import { ComputeQuota } from './ComputeQuota'; import { NetworkQuota } from './NetworkQuota'; import { VolumeQuota } from './VolumeQuota'; /** Quotas */ export interface AllowedQuota { /** Quotas for compute */ compute: ComputeQuota; /** Name */ name: string; /** Quotas for network */ network: NetworkQuota; /** Quotas for volume */ volume: VolumeQuota; } //# sourceMappingURL=AllowedQuota.d.ts.map