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