> + * <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;
What are these options used for?
---
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#r64474828