@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
18 lines • 726 B
TypeScript
import { DrpTypeEnum } from './DrpTypeEnum';
import { LocalSiteDetails } from './LocalSiteDetails';
import { RemoteSiteDetails } from './RemoteSiteDetails';
import { StateEnum } from '../StateEnum';
/** State of the disaster recovery option */
export interface Profile {
/** Disaster Recovery Plan Type */
drpType?: DrpTypeEnum;
/** Information about the site installed on this Dedicated Cloud */
localSiteInformation?: LocalSiteDetails;
/** Information about the remote paired site */
remoteSiteInformation?: RemoteSiteDetails;
/** State of the disaster recovery service */
state: StateEnum;
/** Technical solution used */
systemVersion: string;
}
//# sourceMappingURL=Profile.d.ts.map