UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 459 B
import { StatusEnum } from './cdn/StatusEnum'; /** CDN service */ export interface Cdn { /** Domain of this CDN */ domain: string; /** Option CDN free with the hosting ? */ free: boolean; /** Status of the CDN option */ status: StatusEnum; /** The task ID working on this CDN */ taskId?: number; /** Type of the CDN */ type: string; /** Version of the CDN */ version: string; } //# sourceMappingURL=Cdn.d.ts.map