Package io.fathom.cloud.protobuf.CloudModel

Examples of io.fathom.cloud.protobuf.CloudModel.VirtualIpPoolData


        ipPools.deallocateFloatingIp(getProject(), vip.getData().getIp());
    }

    @POST
    public WrappedFloatingIp allocate(FloatingIp template) throws CloudException {
        VirtualIpPoolData pool = findPool(template.pool);
        if (pool == null) {
            throw new IllegalArgumentException();
        }

        VirtualIp vip = ipPools.allocateFloatingIp(getProject(), pool);
View Full Code Here


            }

            b.setHostGroupId(hostGroup.getId());
        }

        VirtualIpPoolData created = ipPools.createVipPool(b);

        return created;
    }
View Full Code Here

TOP

Related Classes of io.fathom.cloud.protobuf.CloudModel.VirtualIpPoolData

Copyright © 2018 www.massapicom. 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.