Package io.fathom.cloud.protobuf.CloudModel

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


        instance.virtualizationType = "paravirtual";
        instance.hypervisor = "xen";
        instance.ebsOptimized = false;

        if (instanceInfo.hasNetwork()) {
            InstanceNetworkData network = instanceInfo.getNetwork();

            NetworkAddressData bestPublic = null;
            NetworkAddressData bestPrivate = null;

            for (NetworkAddressData address : network.getAddressesList()) {
                if (address.getPublicAddress()) {
                    if (bestPublic == null) {
                        bestPublic = address;
                    } else {
                        log.warn("Selection between public addresses is primitive");
View Full Code Here

TOP

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

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.