> +public class Pool {
> +
> + // Load balancing methods that must be supported by all providers.
> + // Not an enum type because any provider may support additional balancing
> methods.
> + public static String ROUND_ROBIN = "ROUND_ROBIN";
> + public static String LEAST_CONNECTIONS = "LEAST_CONNECTIONS";
> + public static String SOURCE_IP = "SOURCE_IP";
> +
> + // Mandatory attributes when creating
> + @Named("tenant_id")
> + private String tenantId;
> + @Named("subnet_id")
> + private String subnetId;
> + @Named("protocol")
> + private Protocol protocol;
> + // Mandatory attributes that can be updated
Are these required to be present when updating? If so, they need to be included
in the updateBuilder params, etc.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/146/files#r17864827