Examples of LbaasServer


Examples of io.fathom.cloud.openstack.client.loadbalance.model.LbaasServer

        return record;
    }

    @Override
    public LbaasServer toModel(LbaasServerData data) {
        LbaasServer model = new LbaasServer();

        if (data.hasIp()) {
            model.ip = data.getIp();
        }
View Full Code Here

Examples of io.fathom.cloud.openstack.client.loadbalance.model.LbaasServer

                } else {
                    if (publicIps.size() != 1) {
                        log.warn("Multiple public IPs found for load balancer instance, will only use first: {}",
                                instance);
                    }
                    LbaasServer lbaasServer = new LbaasServer();
                    lbaasServer.ip = InetAddresses.toAddrString(publicIps.get(0));
                    lbaasServers.add(lbaasServer);
                }
            } else {
                log.info("Ignoring unknown role: " + role);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.