UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

21 lines 623 B
import { TypeEnum } from './config/TypeEnum'; /** Config detail */ export interface ConfigDetail { /** Configuration available values */ availableValues: string[]; /** Configuration default value */ defaultValue: string; /** Configuration description */ description: string; /** Configuration key name */ key: string; /** Configuration last update */ lastUpdate: string; /** Configuration value type */ type: TypeEnum; /** Configuration unit type */ unit?: string; /** Configuration current value */ value: string; } //# sourceMappingURL=ConfigDetail.d.ts.map