UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

20 lines 710 B
import { Zone } from './Zone'; import { StateEnum } from './StateEnum'; /** Horizon View as a Service */ export interface DedicatedHorizon { /** The location of your administration servers in our datacenter */ masterZone: Zone; /** Your Horizon Dedicated Cloud */ privateCloudName: string; /** The location of your datacenter */ privateCloudZone: Zone; /** Url of your Dedicated Horizon */ publicUrl: string; /** Current state of your Dedicated Horizon */ state: StateEnum; /** View Storage Accelerator for Vcenter */ storageAccelerator: boolean; /** Version of your Dedicated Horizon */ version: string; } //# sourceMappingURL=DedicatedHorizon.d.ts.map