UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

10 lines 419 B
import { CreateGatewaySummary } from '../network/CreateGatewaySummary'; import { Ip } from '../../Ip'; /** Parameters to create a floating IP for a loadbalancer */ export interface CreateFloatingIp { /** Parameters to create a gateway if required */ gateway?: CreateGatewaySummary; /** Private loadbalancer IP to associate the floating IP with */ ip: Ip; } //# sourceMappingURL=CreateFloatingIp.d.ts.map