Examples of domainName()


Examples of org.jclouds.softlayer.compute.options.SoftLayerTemplateOptions.domainName()

      //templateBuilder.minRam(8192);

      Template template = templateBuilder.build();
      // test passing custom options
      SoftLayerTemplateOptions options = template.getOptions().as(SoftLayerTemplateOptions.class);
      options.domainName("live.org");
      //options.diskType("SAN");
      //options.portSpeed(10);
      // multi-disk option
      options.blockDevices(ImmutableSet.of(100));
      //tags
View Full Code Here

Examples of org.jclouds.softlayer.compute.options.SoftLayerTemplateOptions.domainName()

      templateBuilder.locationId("dal01");

      Template template = templateBuilder.build();
      // test passing custom options
      SoftLayerTemplateOptions options = template.getOptions().as(SoftLayerTemplateOptions.class);
      options.domainName("live.org");
      // multi-disk option
      //options.blockDevices(ImmutableList.of(25, 400, 400));
      //options.diskType("SAN");
      //tags
      options.tags(ImmutableList.of("jclouds"));
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.