> + * <p> > + * > + * <pre> > + * import static > org.jclouds.compute.options.AzureComputeArmTemplateOptions.Builder.*; > + * ComputeService client = // get connection > + * templateBuilder.options(inboundPorts(22, 80, 8080, 443)); > + * Set<? extends NodeMetadata> set = client.createNodesInGroup(tag, 2, > templateBuilder.build()); > + * </pre> > + * > + */ > +public class AzureComputeArmTemplateOptions extends TemplateOptions > implements Cloneable { > + > + protected String virtualNetworkName; > + protected List<String> subnetNames = ImmutableList.of(); > + protected String storageAccountName; > + protected String storageAccountType;
You are right. I only see reference of `authorizePublicKey`, `inboundPorts`, `getPublicKey`, `getLoginUser`, `getLoginPassword`. @jtjk can you please take a look? --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/273/files/74f8e9bf66e7427298c5c3c9567aa7d8284e0987#r64491110