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;
}
//# sourceMappingURL=ZertoRemoteVra.d.ts.map