UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

20 lines 518 B
import { Features } from './Features'; import { Limits } from './Limits'; /** Plan of the registry */ export interface Plan { /** Plan code from catalog */ code: string; /** Plan creation date */ createdAt: string; /** Features of the plan */ features: Features; /** Plan ID */ id: string; /** Plan name */ name: string; /** Container registry limits */ registryLimits: Limits; /** Plan last update date */ updatedAt: string; } //# sourceMappingURL=Plan.d.ts.map