Examples of LaunchSpecificationResponseType


Examples of org.nimbustools.messaging.gt4_0_elastic.generated.v2010_08_31.LaunchSpecificationResponseType

                instID = this.ids.newInstanceID(vmId, resID, result.getSshKeyName());
            }
            logger.info("id-" + vmId + "='" + instID + "'.");                  
        }
       
        LaunchSpecificationResponseType launchSpec = getLaunchSpec(result);
        String type = result.isPersistent()? PERSISTENT : ONE_TIME;
       
        SpotInstanceRequestSetItemType sirsi = new SpotInstanceRequestSetItemType();

        sirsi.setLaunchSpecification(launchSpec);
View Full Code Here

Examples of org.nimbustools.messaging.gt4_0_elastic.generated.v2010_08_31.LaunchSpecificationResponseType

        if (reqInfo == null) {
            throw new IllegalArgumentException("instID may not be null");
        }

        LaunchSpecificationResponseType launchSpec = new LaunchSpecificationResponseType();

        launchSpec.setGroupSet(DefaultRun.getGroupStub());
        launchSpec.setPlacement(this.describe.getPlacementReq());
        launchSpec.setImageId(this.describe.getImageID(reqInfo.getVMFiles()));
        launchSpec.setInstanceType(this.RAs.getSpotInstanceType());
        launchSpec.setKeyName(reqInfo.getSshKeyName());
        launchSpec.setKernelId("default"); // todo
       
        return launchSpec;
    }   
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.