Class GleSYSTemplateOptions

  • All Implemented Interfaces:
    Cloneable

    public class GleSYSTemplateOptions
    extends TemplateOptions
    implements Cloneable
    Contains options supported by the ComputeService#createNodesInGroup(String, int, TemplateOptions) and ComputeService#createNodesInGroup(String, int, TemplateOptions) operations on the glesys provider.

    Usage

    The recommended way to instantiate a GleSYSTemplateOptions object is to statically import GleSYSTemplateOptions.* and invoke a static creation method followed by an instance mutator (if needed):

     import static org.jclouds.compute.options.GleSYSTemplateOptions.Builder.*;
     ComputeService api = // get connection
     templateBuilder.options(rootPassword("caQu5rou"));
     Set<? extends NodeMetadata> set = api.createNodesInGroup(tag, 2, templateBuilder.build());