@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 627 B
TypeScript
import { Destination } from './Destination';
/** A structure given all services allowed as a destination for this ip */
export interface Destinations {
/** list of public cloud projects */
cloudProject?: Destination[];
/** list of dedicated clouds */
dedicatedCloud?: Destination[];
/** list of dedicated servers */
dedicatedServer?: Destination[];
/** list of hosting reseller services */
hostingReseller?: Destination[];
/** list of load balancing services */
ipLoadbalancing?: Destination[];
/** list of vps */
vps?: Destination[];
}
//# sourceMappingURL=Destinations.d.ts.map