UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

12 lines 489 B
import { CreateGatewaySummary } from '../network/CreateGatewaySummary'; import { Ip } from '../../Ip'; /** Parameters to associate an existing floating IP to a loadbalancer */ export interface AssociateFloatingIp { /** Floating IP ID */ floatingIpId: string; /** Parameters to create a gateway if required */ gateway?: CreateGatewaySummary; /** Private loadbalancer IP to associate the floating IP with */ ip: Ip; } //# sourceMappingURL=AssociateFloatingIp.d.ts.map