@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
11 lines • 391 B
TypeScript
import { Ipv4Block } from '../Ipv4Block';
/** Informations about the extra IP range during address move */
export interface ExtraIpRangeMove {
/** Date of the migration */
date: string;
/** IPv4 CIDR notation (e.g., 192.0.2.0/24) */
ipRange: Ipv4Block;
/** Access where the IP range will be moved to */
moveTo: string;
}
//# sourceMappingURL=ExtraIpRangeMove.d.ts.map