> +
> + @ConstructorProperties({
> + "id", "creationTimestamp", "selfLink", "name", "description",
> "host", "requestPath", "port",
> + "checkIntervalSec", "timeoutSec", "unhealthyThreshold",
> "healthyThreshold"
> + })
> + private HttpHealthCheck(String id, Date creationTimestamp, URI selfLink,
> String name, String description,
> + String host, String requestPath, int port, int
> checkIntervalSec,
> + int timeoutSec, int unhealthyThreshold, int
> healthyThreshold) {
> + super(Kind.HTTP_HEALTH_CHECK, id, creationTimestamp, selfLink, name,
> description);
> + this.host = fromNullable(host);
> + this.requestPath = fromNullable(requestPath);
> + this.port = fromNullable(port);
> + this.checkIntervalSec = fromNullable(checkIntervalSec);
> + this.timeoutSec = fromNullable(timeoutSec);
> + this.unhealthyThreshold = fromNullable(unhealthyThreshold);
> + this.healthyThreshold = fromNullable(healthyThreshold);
See @nacx's comments from above
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/22/files#r18015220