import { StateEnum } from './StateEnum';
import { Zone } from './Zone';
/** 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