hcloud-js
Version:
A Node.js module for the Hetzner Cloud API
13 lines (11 loc) • 336 B
JavaScript
class LoadBalancerHealthCheck {
constructor (healthCheck) {
this.protocol = healthCheck.protocol
this.port = healthCheck.port
this.interval = healthCheck.interval
this.timeout = healthCheck.timeout
this.retries = healthCheck.retries
this.http = healthCheck.http
}
}
module.exports = LoadBalancerHealthCheck