UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

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