> + */
> + public static CreateBuilder createBuilder(ProbeType type, Integer delay,
> Integer timeout, Integer maxRetries) {
> + return new CreateBuilder(type, delay, timeout, maxRetries);
> + }
> +
> + /**
> + * @return the Builder for updating a HealthMonitor.
> + */
> + public static UpdateBuilder updateBuilder() {
> + return new UpdateBuilder();
> + }
> +
> + /**
> + * @return the Builder for associating a HealthMonitor to a Pool.
> + */
> + public static AssociateBuilder associateBuilder(String id) {
Do we need a "parameter object" for the "associate" call?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/146/files#r17817360