Package com.woorea.openstack.nova.model

Examples of com.woorea.openstack.nova.model.ServerForCreate$SecurityGroup


      Images images = nova.images().list(true).execute();

      Flavors flavors = nova.flavors().list(true).execute();

      ServerForCreate serverForCreate = new ServerForCreate();
      serverForCreate.setName("woorea");
      serverForCreate.setFlavorRef(flavors.getList().get(0).getId());
      serverForCreate.setImageRef(images.getList().get(1).getId());
      serverForCreate.setKeyName(keysPairs.getList().get(0).getName());
      serverForCreate.getSecurityGroups()
          .add(new ServerForCreate.SecurityGroup("default"));
      // serverForCreate.getSecurityGroups().add(new
      // ServerForCreate.SecurityGroup(securityGroup.getName()));

      Server server = nova.servers().boot(serverForCreate).execute();
View Full Code Here

TOP

Related Classes of com.woorea.openstack.nova.model.ServerForCreate$SecurityGroup

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.