> + */
> + public static class CreateBuilder extends Builder<CreateBuilder> {
> + /**
> + * Supply required properties for creating a HealthMonitor's
> CreateBuilder.
> + *
> + * @param type the probe type.
> + * @param delay the delay.
> + * @param timeout the timeout.
> + * @param maxRetries the max retries.
> + */
> + private CreateBuilder(ProbeType type, Integer delay, Integer timeout,
> Integer maxRetries) {
> + type(type).delay(delay).timeout(timeout).maxRetries(maxRetries);
> + }
> +
> + /**
> + * Provide the tenantId for this HealthMonitor's CreateBuilder.
> Admin-only.
Done
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/146/files#r17913799