UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 598 B
import { FunctionEnum } from './diagnostic/FunctionEnum'; import { TypeEnum } from './diagnostic/TypeEnum'; /** OVHcloud Connect Service Diagnostic Configuration */ export interface DiagnosticConfiguration { /** ID of the Datacenter configuration */ dcConfigId: number; /** Name of the diagnostic */ diagnosticName: FunctionEnum; /** Type of the diagnostic */ diagnosticType: TypeEnum; /** ID of the extra configuration */ extraConfigId: number; /** ID of the Pop Configuration */ popConfigId: number; } //# sourceMappingURL=DiagnosticConfiguration.d.ts.map