UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

19 lines 769 B
import { StateEnum } from '../optionAccessNetwork/StateEnum'; import { Ip } from '../../Ip'; import { IpBlock } from '../../IpBlock'; /** Zerto disaster recovery remote site */ export interface ZertoRemoteVra { /** ID of the remote Vra Network */ id: number; /** Name given to this network */ label: string; /** Your onsite endpoint public IP for the secured replication data tunnel */ remoteEndpointPublicIp: Ip; /** Internal zerto subnet of your onsite infrastructure (ip/cidr) */ remoteVraNetwork: IpBlock; /** Internal ZVM ip on your onsite infrastructure local network */ remoteZvmInternalIp: Ip; /** Current state of your current Zerto remote site */ state: StateEnum; } //# sourceMappingURL=ZertoRemoteVra.d.ts.map