UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

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